diff options
author | Benjamin Herrenschmidt <benh@kernel.crashing.org> | 2006-11-11 01:25:00 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2006-12-04 00:08:56 -0500 |
commit | 96289b07eb319ab3f64db3f0d981970aa1d60a60 (patch) | |
tree | 47dc1870819db358872bf8909c31505bca326bd4 | |
parent | 7eebde700fe6fd6573e80bd8e5ed82b4ae705575 (diff) |
[POWERPC] Hook of_platform_bus_probe with cell
Hook up of_platform_bus_probe with the cell platform in order to publish
the non-PCI devices in the device-tree of cell blades as of_platform_device(s)
Signed-off-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | arch/powerpc/platforms/cell/setup.c | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/arch/powerpc/platforms/cell/setup.c b/arch/powerpc/platforms/cell/setup.c index 13f628def363..d704bc19a646 100644 --- a/arch/powerpc/platforms/cell/setup.c +++ b/arch/powerpc/platforms/cell/setup.c | |||
@@ -51,6 +51,7 @@ | |||
51 | #include <asm/spu_priv1.h> | 51 | #include <asm/spu_priv1.h> |
52 | #include <asm/udbg.h> | 52 | #include <asm/udbg.h> |
53 | #include <asm/mpic.h> | 53 | #include <asm/mpic.h> |
54 | #include <asm/of_platform.h> | ||
54 | 55 | ||
55 | #include "interrupt.h" | 56 | #include "interrupt.h" |
56 | #include "iommu.h" | 57 | #include "iommu.h" |
@@ -81,6 +82,14 @@ static void cell_progress(char *s, unsigned short hex) | |||
81 | printk("*** %04x : %s\n", hex, s ? s : ""); | 82 | printk("*** %04x : %s\n", hex, s ? s : ""); |
82 | } | 83 | } |
83 | 84 | ||
85 | static int __init cell_publish_devices(void) | ||
86 | { | ||
87 | if (machine_is(cell)) | ||
88 | of_platform_bus_probe(NULL, NULL, NULL); | ||
89 | return 0; | ||
90 | } | ||
91 | device_initcall(cell_publish_devices); | ||
92 | |||
84 | static void cell_mpic_cascade(unsigned int irq, struct irq_desc *desc) | 93 | static void cell_mpic_cascade(unsigned int irq, struct irq_desc *desc) |
85 | { | 94 | { |
86 | struct mpic *mpic = desc->handler_data; | 95 | struct mpic *mpic = desc->handler_data; |