powerpc/pasemi: Fix device_type of Nemo SB600 node.
authorDarren Stevens <darren@stevens-zone.net>
Wed, 31 Aug 2016 12:24:45 +0000 (13:24 +0100)
committerMichael Ellerman <mpe@ellerman.id.au>
Tue, 13 Sep 2016 07:37:08 +0000 (17:37 +1000)
The of_node for the SB600 (io-bridge) has its device_type set to
'io-bridge' Set it to 'isa' so that it can be found by
isa_bridge_find_early() instead of using patches in the kernel.

Signed-off-by: Darren Stevens <darren@stevens-zone.net>
Signed-off-by: Michael Ellerman <mpe@ellerman.id.au>
arch/powerpc/kernel/prom_init.c

index ca697e5..88ac964 100644 (file)
@@ -2703,6 +2703,22 @@ static void __init fixup_device_tree_pasemi(void)
                prom_setprop(node, pci_name, "interrupt-parent", &parent,
                                        sizeof(parent));
        }
+
+       /*
+        * The io-bridge has device_type set to 'io-bridge' change it to 'isa'
+        * so that generic isa-bridge code can add the SB600 and its on-board
+        * peripherals.
+        */
+       name = "/pxp@0,e0000000/io-bridge@0";
+       iob = call_prom("finddevice", 1, 1, ADDR(name));
+       if (!PHANDLE_VALID(iob))
+               return;
+
+       /* device_type is already set, just change it. */
+
+       prom_printf("Changing device_type of SB600 node...\n");
+
+       prom_setprop(iob, name, "device_type", "isa", sizeof("isa"));
 }
 #else  /* !CONFIG_PPC_PASEMI_NEMO */
 static inline void fixup_device_tree_pasemi(void) { }