linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [ RFC PATCH 3/3] powerpc:pasemi: Fix device_type of Nemo SB600 node.
@ 2016-08-31 12:24 Darren Stevens
  0 siblings, 0 replies; only message in thread
From: Darren Stevens @ 2016-08-31 12:24 UTC (permalink / raw)
  To: linuxppc-dev; +Cc: olof, Christian Zigotzky

[-- Attachment #1: Type: text/plain, Size: 178 bytes --]

  AmigaOS...........: http://yam.ch/
  Unix/MacOS/Windows: http://www.mozilla.com/thunderbird/

General information about MIME can be found at:
http://en.wikipedia.org/wiki/MIME

[-- Attachment #2: Type: text/plain, Size: 262 bytes --]

    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>

---

[-- Attachment #3: nemo_2.patch --]
[-- Type: text/plain, Size: 833 bytes --]

diff --git a/arch/powerpc/kernel/prom_init.c b/arch/powerpc/kernel/prom_init.c
index 8269093..d75937a 100644
--- a/arch/powerpc/kernel/prom_init.c
+++ b/arch/powerpc/kernel/prom_init.c
@@ -2697,6 +2697,24 @@ static void __init fixup_device_tree_pasemi(void)
 			}
 		}
 	}
+
+	/*
+	 * 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"));
+
 #endif //CONFIG_PPC_PASEMI_NEMO
 }
 #else

^ permalink raw reply related	[flat|nested] only message in thread

only message in thread, other threads:[~2016-08-31 14:10 UTC | newest]

Thread overview: (only message) (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-08-31 12:24 [ RFC PATCH 3/3] powerpc:pasemi: Fix device_type of Nemo SB600 node Darren Stevens

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).