[U-Boot] [PATCH 3/3] armv8/fsl-layerscape: fdt: fixup LS1043A rev1 MSI node
Wenbin song
wenbin.song at nxp.com
Thu Oct 20 07:40:07 CEST 2016
The default MSI node in kernel tree is for LS1043A rev1.1 silicon,
if rev1.0 silicon used, need to fixup the MSI node to match it.
Signed-off-by: Wenbin Song <wenbin.song at nxp.com>
Signed-off-by: Mingkai Hu <mingkai.hu at nxp.com>
---
arch/arm/cpu/armv8/fsl-layerscape/fdt.c | 91 +++++++++++++++++++++++++++++++++
1 file changed, 91 insertions(+)
diff --git a/arch/arm/cpu/armv8/fsl-layerscape/fdt.c b/arch/arm/cpu/armv8/fsl-layerscape/fdt.c
index 5a80ff2..14458dc 100644
--- a/arch/arm/cpu/armv8/fsl-layerscape/fdt.c
+++ b/arch/arm/cpu/armv8/fsl-layerscape/fdt.c
@@ -170,6 +170,96 @@ static void fdt_fixup_gic(void *blob)
return;
}
+
+static int _fdt_fixup_msi_subnode(void *blob, int parentoffset,
+ const char *name, int irq_no)
+{
+ int err, offset;
+ u32 tmp[3];
+
+ offset = fdt_subnode_offset(blob, parentoffset, name);
+ if (offset < 0) {
+ printf("WARNING: fdt_subnode_offset can't find %s: %s\n",
+ name, fdt_strerror(offset));
+ return 0;
+ }
+
+ tmp[0] = cpu_to_fdt32(0x0);
+ tmp[1] = cpu_to_fdt32(irq_no);
+ tmp[2] = cpu_to_fdt32(0x4);
+
+ err = fdt_setprop(blob, offset, "interrupts", tmp, sizeof(tmp));
+ if (err < 0) {
+ printf("WARNING: fdt_setprop can't set %s from node %s: %s\n",
+ "interrupts", name, fdt_strerror(err));
+ return 0;
+ }
+
+ return 1;
+}
+
+static int _fdt_fixup_pci_msi(void *blob, const char *name)
+{
+ int offset, len, err;
+ void *p;
+ int val;
+ u32 tmp[4][8];
+
+ offset = fdt_path_offset(blob, name);
+ if (offset < 0) {
+ printf("WARNING: fdt_path_offset can't find path %s: %s\n",
+ name, fdt_strerror(offset));
+ return 0;
+ }
+
+ p = (char *)fdt_getprop(blob, offset, "interrupt-map", &len);
+ if (!p || len != sizeof(tmp)) {
+ printf("WARNING: fdt_getprop can't get %s from node %s\n",
+ "interrupt-map", name);
+ return 0;
+ }
+
+ memcpy((char *)tmp, p, len);
+ val = fdt32_to_cpu(tmp[0][6]);
+ tmp[1][6] = cpu_to_fdt32(val + 1);
+ tmp[2][6] = cpu_to_fdt32(val + 2);
+ tmp[3][6] = cpu_to_fdt32(val + 3);
+
+ err = fdt_setprop(blob, offset, "interrupt-map", tmp, sizeof(tmp));
+ if (err < 0) {
+ printf("WARNING: fdt_setprop can't set %s from node %s: %s.\n",
+ "interrupt-map", name, fdt_strerror(err));
+ return 0;
+ }
+ return 1;
+}
+
+/* Fixup msi to v1_0*/
+
+static void fdt_fixup_msi(void *blob)
+{
+ int nodeoffset;
+ struct ccsr_gur __iomem *gur = (void *)(CONFIG_SYS_FSL_GUTS_ADDR);
+ unsigned int val;
+
+ val = gur_in32(&gur->svr) & 0xff;
+ if (val == REV1_1)
+ return;
+
+ nodeoffset = fdt_path_offset(blob, "/soc/msi-controller");
+ if (nodeoffset < 0) {
+ printf("WARNING: fdt_path_offset can't find path %s: %s\n",
+ "/soc/msi-controller", fdt_strerror(nodeoffset));
+ return;
+ }
+ _fdt_fixup_msi_subnode(blob, nodeoffset, "msi0 at 1571000", 116);
+ _fdt_fixup_msi_subnode(blob, nodeoffset, "msi1 at 1572000", 126);
+ _fdt_fixup_msi_subnode(blob, nodeoffset, "msi2 at 1573000", 160);
+
+ _fdt_fixup_pci_msi(blob, "/soc/pcie at 3400000");
+ _fdt_fixup_pci_msi(blob, "/soc/pcie at 3500000");
+ _fdt_fixup_pci_msi(blob, "/soc/pcie at 3600000");
+}
#endif
void ft_cpu_setup(void *blob, bd_t *bd)
@@ -190,6 +280,7 @@ void ft_cpu_setup(void *blob, bd_t *bd)
}
#endif
fdt_fixup_gic(blob);
+ fdt_fixup_msi(blob);
#endif
#ifdef CONFIG_MP
--
2.1.0.27.g96db324
More information about the U-Boot
mailing list