diff options
author | Stefan Roese <sr@denx.de> | 2008-03-27 10:43:31 -0400 |
---|---|---|
committer | Josh Boyer <jwboyer@linux.vnet.ibm.com> | 2008-04-02 21:44:56 -0400 |
commit | 93173ce272e54f81460986ff5040d16ab79488a9 (patch) | |
tree | 7bb4e15ac4cf3853f81e358fb1b21aa2fef6b4ce /arch/powerpc/platforms/40x | |
parent | d2477b5cc8ca95b8c15133ffbbebf0bd9783f560 (diff) |
[POWERPC] 4xx: Create common ppc4xx_reset_system() in ppc4xx_soc.c
This patch creates a common system reset routine for all 40x and 44x
systems. Previously only a 44x routine existed. But since this system
reset via the debug control register is common for 40x and 44x let's
share this code for all those platforms in ppc4xx_soc.c.
This patch also enables CONFIG_4xx_SOC for all 40x and 44x platforms.
Tested on Kilauea (405EX) and Canyonlands (440EX).
Signed-off-by: Stefan Roese <sr@denx.de>
Signed-off-by: Josh Boyer <jwboyer@linux.vnet.ibm.com>
Diffstat (limited to 'arch/powerpc/platforms/40x')
-rw-r--r-- | arch/powerpc/platforms/40x/ep405.c | 2 | ||||
-rw-r--r-- | arch/powerpc/platforms/40x/kilauea.c | 4 | ||||
-rw-r--r-- | arch/powerpc/platforms/40x/makalu.c | 2 | ||||
-rw-r--r-- | arch/powerpc/platforms/40x/virtex.c | 2 | ||||
-rw-r--r-- | arch/powerpc/platforms/40x/walnut.c | 4 |
5 files changed, 12 insertions, 2 deletions
diff --git a/arch/powerpc/platforms/40x/ep405.c b/arch/powerpc/platforms/40x/ep405.c index 13d1345026da..ae2e7f67c18e 100644 --- a/arch/powerpc/platforms/40x/ep405.c +++ b/arch/powerpc/platforms/40x/ep405.c | |||
@@ -29,6 +29,7 @@ | |||
29 | #include <asm/time.h> | 29 | #include <asm/time.h> |
30 | #include <asm/uic.h> | 30 | #include <asm/uic.h> |
31 | #include <asm/pci-bridge.h> | 31 | #include <asm/pci-bridge.h> |
32 | #include <asm/ppc4xx.h> | ||
32 | 33 | ||
33 | static struct device_node *bcsr_node; | 34 | static struct device_node *bcsr_node; |
34 | static void __iomem *bcsr_regs; | 35 | static void __iomem *bcsr_regs; |
@@ -119,5 +120,6 @@ define_machine(ep405) { | |||
119 | .progress = udbg_progress, | 120 | .progress = udbg_progress, |
120 | .init_IRQ = uic_init_tree, | 121 | .init_IRQ = uic_init_tree, |
121 | .get_irq = uic_get_irq, | 122 | .get_irq = uic_get_irq, |
123 | .restart = ppc4xx_reset_system, | ||
122 | .calibrate_decr = generic_calibrate_decr, | 124 | .calibrate_decr = generic_calibrate_decr, |
123 | }; | 125 | }; |
diff --git a/arch/powerpc/platforms/40x/kilauea.c b/arch/powerpc/platforms/40x/kilauea.c index f9206a7fede0..1dd24ffc0dc1 100644 --- a/arch/powerpc/platforms/40x/kilauea.c +++ b/arch/powerpc/platforms/40x/kilauea.c | |||
@@ -1,7 +1,7 @@ | |||
1 | /* | 1 | /* |
2 | * Kilauea board specific routines | 2 | * Kilauea board specific routines |
3 | * | 3 | * |
4 | * Copyright 2007 DENX Software Engineering, Stefan Roese <sr@denx.de> | 4 | * Copyright 2007-2008 DENX Software Engineering, Stefan Roese <sr@denx.de> |
5 | * | 5 | * |
6 | * Based on the Walnut code by | 6 | * Based on the Walnut code by |
7 | * Josh Boyer <jwboyer@linux.vnet.ibm.com> | 7 | * Josh Boyer <jwboyer@linux.vnet.ibm.com> |
@@ -20,6 +20,7 @@ | |||
20 | #include <asm/time.h> | 20 | #include <asm/time.h> |
21 | #include <asm/uic.h> | 21 | #include <asm/uic.h> |
22 | #include <asm/pci-bridge.h> | 22 | #include <asm/pci-bridge.h> |
23 | #include <asm/ppc4xx.h> | ||
23 | 24 | ||
24 | static __initdata struct of_device_id kilauea_of_bus[] = { | 25 | static __initdata struct of_device_id kilauea_of_bus[] = { |
25 | { .compatible = "ibm,plb4", }, | 26 | { .compatible = "ibm,plb4", }, |
@@ -54,5 +55,6 @@ define_machine(kilauea) { | |||
54 | .progress = udbg_progress, | 55 | .progress = udbg_progress, |
55 | .init_IRQ = uic_init_tree, | 56 | .init_IRQ = uic_init_tree, |
56 | .get_irq = uic_get_irq, | 57 | .get_irq = uic_get_irq, |
58 | .restart = ppc4xx_reset_system, | ||
57 | .calibrate_decr = generic_calibrate_decr, | 59 | .calibrate_decr = generic_calibrate_decr, |
58 | }; | 60 | }; |
diff --git a/arch/powerpc/platforms/40x/makalu.c b/arch/powerpc/platforms/40x/makalu.c index 4e4df72fc9cd..a6a1d6017b71 100644 --- a/arch/powerpc/platforms/40x/makalu.c +++ b/arch/powerpc/platforms/40x/makalu.c | |||
@@ -20,6 +20,7 @@ | |||
20 | #include <asm/time.h> | 20 | #include <asm/time.h> |
21 | #include <asm/uic.h> | 21 | #include <asm/uic.h> |
22 | #include <asm/pci-bridge.h> | 22 | #include <asm/pci-bridge.h> |
23 | #include <asm/ppc4xx.h> | ||
23 | 24 | ||
24 | static __initdata struct of_device_id makalu_of_bus[] = { | 25 | static __initdata struct of_device_id makalu_of_bus[] = { |
25 | { .compatible = "ibm,plb4", }, | 26 | { .compatible = "ibm,plb4", }, |
@@ -54,5 +55,6 @@ define_machine(makalu) { | |||
54 | .progress = udbg_progress, | 55 | .progress = udbg_progress, |
55 | .init_IRQ = uic_init_tree, | 56 | .init_IRQ = uic_init_tree, |
56 | .get_irq = uic_get_irq, | 57 | .get_irq = uic_get_irq, |
58 | .restart = ppc4xx_reset_system, | ||
57 | .calibrate_decr = generic_calibrate_decr, | 59 | .calibrate_decr = generic_calibrate_decr, |
58 | }; | 60 | }; |
diff --git a/arch/powerpc/platforms/40x/virtex.c b/arch/powerpc/platforms/40x/virtex.c index 0422590040db..fc7fb001276c 100644 --- a/arch/powerpc/platforms/40x/virtex.c +++ b/arch/powerpc/platforms/40x/virtex.c | |||
@@ -14,6 +14,7 @@ | |||
14 | #include <asm/prom.h> | 14 | #include <asm/prom.h> |
15 | #include <asm/time.h> | 15 | #include <asm/time.h> |
16 | #include <asm/xilinx_intc.h> | 16 | #include <asm/xilinx_intc.h> |
17 | #include <asm/ppc4xx.h> | ||
17 | 18 | ||
18 | static struct of_device_id xilinx_of_bus_ids[] __initdata = { | 19 | static struct of_device_id xilinx_of_bus_ids[] __initdata = { |
19 | { .compatible = "xlnx,plb-v46-1.00.a", }, | 20 | { .compatible = "xlnx,plb-v46-1.00.a", }, |
@@ -48,5 +49,6 @@ define_machine(virtex) { | |||
48 | .probe = virtex_probe, | 49 | .probe = virtex_probe, |
49 | .init_IRQ = xilinx_intc_init_tree, | 50 | .init_IRQ = xilinx_intc_init_tree, |
50 | .get_irq = xilinx_intc_get_irq, | 51 | .get_irq = xilinx_intc_get_irq, |
52 | .restart = ppc4xx_reset_system, | ||
51 | .calibrate_decr = generic_calibrate_decr, | 53 | .calibrate_decr = generic_calibrate_decr, |
52 | }; | 54 | }; |
diff --git a/arch/powerpc/platforms/40x/walnut.c b/arch/powerpc/platforms/40x/walnut.c index b8b257efeb77..335df91fbee5 100644 --- a/arch/powerpc/platforms/40x/walnut.c +++ b/arch/powerpc/platforms/40x/walnut.c | |||
@@ -26,6 +26,7 @@ | |||
26 | #include <asm/time.h> | 26 | #include <asm/time.h> |
27 | #include <asm/uic.h> | 27 | #include <asm/uic.h> |
28 | #include <asm/pci-bridge.h> | 28 | #include <asm/pci-bridge.h> |
29 | #include <asm/ppc4xx.h> | ||
29 | 30 | ||
30 | static __initdata struct of_device_id walnut_of_bus[] = { | 31 | static __initdata struct of_device_id walnut_of_bus[] = { |
31 | { .compatible = "ibm,plb3", }, | 32 | { .compatible = "ibm,plb3", }, |
@@ -61,5 +62,6 @@ define_machine(walnut) { | |||
61 | .progress = udbg_progress, | 62 | .progress = udbg_progress, |
62 | .init_IRQ = uic_init_tree, | 63 | .init_IRQ = uic_init_tree, |
63 | .get_irq = uic_get_irq, | 64 | .get_irq = uic_get_irq, |
64 | .calibrate_decr = generic_calibrate_decr, | 65 | .restart = ppc4xx_reset_system, |
66 | .calibrate_decr = generic_calibrate_decr, | ||
65 | }; | 67 | }; |