diff options
author | Ishizaki Kou <kou.ishizaki@toshiba.co.jp> | 2008-04-24 05:25:16 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2008-04-24 07:08:13 -0400 |
commit | 116bdc425c7e01e97cff2f3e6d0134511e8f13e3 (patch) | |
tree | 929479057a31e2f8bd97a30380e91f24d14e8eb1 /arch/powerpc | |
parent | 6ec859e1b21ab42bfc36bb3b51db275480165c8a (diff) |
[POWERPC] celleb: Move the files for celleb base support
This moves the base code for celleb support into platforms/cell/.
All files in this patch are used by celleb-beat and celleb-native
commonly.
Signed-off-by: Kou Ishizaki <kou.ishizaki@toshiba.co.jp>
Acked-by: Benjamin Herrenschmidt <benh@kernel.crashing.org>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc')
-rw-r--r-- | arch/powerpc/platforms/Kconfig | 1 | ||||
-rw-r--r-- | arch/powerpc/platforms/cell/Kconfig | 13 | ||||
-rw-r--r-- | arch/powerpc/platforms/cell/Makefile | 4 | ||||
-rw-r--r-- | arch/powerpc/platforms/cell/celleb_pci.c (renamed from arch/powerpc/platforms/celleb/pci.c) | 8 | ||||
-rw-r--r-- | arch/powerpc/platforms/cell/celleb_pci.h (renamed from arch/powerpc/platforms/celleb/pci.h) | 2 | ||||
-rw-r--r-- | arch/powerpc/platforms/cell/celleb_setup.c (renamed from arch/powerpc/platforms/celleb/setup.c) | 12 | ||||
-rw-r--r-- | arch/powerpc/platforms/celleb/Kconfig | 12 | ||||
-rw-r--r-- | arch/powerpc/platforms/celleb/Makefile | 4 | ||||
-rw-r--r-- | arch/powerpc/platforms/celleb/scc_epci.c | 2 |
9 files changed, 29 insertions, 29 deletions
diff --git a/arch/powerpc/platforms/Kconfig b/arch/powerpc/platforms/Kconfig index f38c50b4ce56..87454c526973 100644 --- a/arch/powerpc/platforms/Kconfig +++ b/arch/powerpc/platforms/Kconfig | |||
@@ -45,7 +45,6 @@ source "arch/powerpc/platforms/powermac/Kconfig" | |||
45 | source "arch/powerpc/platforms/prep/Kconfig" | 45 | source "arch/powerpc/platforms/prep/Kconfig" |
46 | source "arch/powerpc/platforms/maple/Kconfig" | 46 | source "arch/powerpc/platforms/maple/Kconfig" |
47 | source "arch/powerpc/platforms/pasemi/Kconfig" | 47 | source "arch/powerpc/platforms/pasemi/Kconfig" |
48 | source "arch/powerpc/platforms/celleb/Kconfig" | ||
49 | source "arch/powerpc/platforms/ps3/Kconfig" | 48 | source "arch/powerpc/platforms/ps3/Kconfig" |
50 | source "arch/powerpc/platforms/cell/Kconfig" | 49 | source "arch/powerpc/platforms/cell/Kconfig" |
51 | source "arch/powerpc/platforms/8xx/Kconfig" | 50 | source "arch/powerpc/platforms/8xx/Kconfig" |
diff --git a/arch/powerpc/platforms/cell/Kconfig b/arch/powerpc/platforms/cell/Kconfig index 2f169991896d..3959fcfe731c 100644 --- a/arch/powerpc/platforms/cell/Kconfig +++ b/arch/powerpc/platforms/cell/Kconfig | |||
@@ -25,6 +25,19 @@ config PPC_IBM_CELL_BLADE | |||
25 | select PPC_UDBG_16550 | 25 | select PPC_UDBG_16550 |
26 | select UDBG_RTAS_CONSOLE | 26 | select UDBG_RTAS_CONSOLE |
27 | 27 | ||
28 | config PPC_CELLEB | ||
29 | bool "Toshiba's Cell Reference Set 'Celleb' Architecture" | ||
30 | depends on PPC_MULTIPLATFORM && PPC64 | ||
31 | select PPC_CELL | ||
32 | select PPC_CELL_NATIVE | ||
33 | select PPC_RTAS | ||
34 | select PPC_INDIRECT_IO | ||
35 | select PPC_OF_PLATFORM_PCI | ||
36 | select HAS_TXX9_SERIAL | ||
37 | select PPC_UDBG_BEAT | ||
38 | select USB_OHCI_BIG_ENDIAN_MMIO | ||
39 | select USB_EHCI_BIG_ENDIAN_MMIO | ||
40 | |||
28 | menu "Cell Broadband Engine options" | 41 | menu "Cell Broadband Engine options" |
29 | depends on PPC_CELL | 42 | depends on PPC_CELL |
30 | 43 | ||
diff --git a/arch/powerpc/platforms/cell/Makefile b/arch/powerpc/platforms/cell/Makefile index 81c26f32453e..b644f5717fc2 100644 --- a/arch/powerpc/platforms/cell/Makefile +++ b/arch/powerpc/platforms/cell/Makefile | |||
@@ -31,5 +31,7 @@ obj-$(CONFIG_PCI_MSI) += axon_msi.o | |||
31 | 31 | ||
32 | # celleb stuff | 32 | # celleb stuff |
33 | ifeq ($(CONFIG_PPC_CELLEB),y) | 33 | ifeq ($(CONFIG_PPC_CELLEB),y) |
34 | obj-y += io-workarounds.o spider-pci.o | 34 | obj-y += celleb_setup.o \ |
35 | celleb_pci.o \ | ||
36 | io-workarounds.o spider-pci.o | ||
35 | endif | 37 | endif |
diff --git a/arch/powerpc/platforms/celleb/pci.c b/arch/powerpc/platforms/cell/celleb_pci.c index 539d2cc59542..ff25e6088480 100644 --- a/arch/powerpc/platforms/celleb/pci.c +++ b/arch/powerpc/platforms/cell/celleb_pci.c | |||
@@ -37,13 +37,11 @@ | |||
37 | #include <asm/io.h> | 37 | #include <asm/io.h> |
38 | #include <asm/irq.h> | 38 | #include <asm/irq.h> |
39 | #include <asm/prom.h> | 39 | #include <asm/prom.h> |
40 | #include <asm/machdep.h> | ||
41 | #include <asm/pci-bridge.h> | 40 | #include <asm/pci-bridge.h> |
42 | #include <asm/ppc-pci.h> | 41 | #include <asm/ppc-pci.h> |
43 | 42 | ||
44 | #include "../cell/io-workarounds.h" | 43 | #include "io-workarounds.h" |
45 | #include "pci.h" | 44 | #include "celleb_pci.h" |
46 | #include "interrupt.h" | ||
47 | 45 | ||
48 | #define MAX_PCI_DEVICES 32 | 46 | #define MAX_PCI_DEVICES 32 |
49 | #define MAX_PCI_FUNCTIONS 8 | 47 | #define MAX_PCI_FUNCTIONS 8 |
@@ -191,7 +189,7 @@ static int celleb_fake_pci_read_config(struct pci_bus *bus, | |||
191 | 189 | ||
192 | 190 | ||
193 | static int celleb_fake_pci_write_config(struct pci_bus *bus, | 191 | static int celleb_fake_pci_write_config(struct pci_bus *bus, |
194 | unsigned int devfn, int where, int size, u32 val) | 192 | unsigned int devfn, int where, int size, u32 val) |
195 | { | 193 | { |
196 | char *config; | 194 | char *config; |
197 | struct device_node *node; | 195 | struct device_node *node; |
diff --git a/arch/powerpc/platforms/celleb/pci.h b/arch/powerpc/platforms/cell/celleb_pci.h index cabb3a108c31..79e59848cb62 100644 --- a/arch/powerpc/platforms/celleb/pci.h +++ b/arch/powerpc/platforms/cell/celleb_pci.h | |||
@@ -27,7 +27,7 @@ | |||
27 | #include <asm/prom.h> | 27 | #include <asm/prom.h> |
28 | #include <asm/ppc-pci.h> | 28 | #include <asm/ppc-pci.h> |
29 | 29 | ||
30 | #include "../cell/io-workarounds.h" | 30 | #include "io-workarounds.h" |
31 | 31 | ||
32 | struct celleb_phb_spec { | 32 | struct celleb_phb_spec { |
33 | int (*setup)(struct device_node *, struct pci_controller *); | 33 | int (*setup)(struct device_node *, struct pci_controller *); |
diff --git a/arch/powerpc/platforms/celleb/setup.c b/arch/powerpc/platforms/cell/celleb_setup.c index ff8209e61e84..d0dad24f2de2 100644 --- a/arch/powerpc/platforms/celleb/setup.c +++ b/arch/powerpc/platforms/cell/celleb_setup.c | |||
@@ -56,13 +56,13 @@ | |||
56 | #include <asm/rtas.h> | 56 | #include <asm/rtas.h> |
57 | #include <asm/cell-regs.h> | 57 | #include <asm/cell-regs.h> |
58 | 58 | ||
59 | #include "../celleb/interrupt.h" | ||
60 | #include "../celleb/beat_wrapper.h" | ||
61 | #include "../celleb/beat.h" | ||
62 | #include "celleb_pci.h" | ||
59 | #include "interrupt.h" | 63 | #include "interrupt.h" |
60 | #include "beat_wrapper.h" | 64 | #include "pervasive.h" |
61 | #include "beat.h" | 65 | #include "ras.h" |
62 | #include "pci.h" | ||
63 | #include "../cell/interrupt.h" | ||
64 | #include "../cell/pervasive.h" | ||
65 | #include "../cell/ras.h" | ||
66 | 66 | ||
67 | static char celleb_machine_type[128] = "Celleb"; | 67 | static char celleb_machine_type[128] = "Celleb"; |
68 | 68 | ||
diff --git a/arch/powerpc/platforms/celleb/Kconfig b/arch/powerpc/platforms/celleb/Kconfig deleted file mode 100644 index 372891edcdd2..000000000000 --- a/arch/powerpc/platforms/celleb/Kconfig +++ /dev/null | |||
@@ -1,12 +0,0 @@ | |||
1 | config PPC_CELLEB | ||
2 | bool "Toshiba's Cell Reference Set 'Celleb' Architecture" | ||
3 | depends on PPC_MULTIPLATFORM && PPC64 | ||
4 | select PPC_CELL | ||
5 | select PPC_CELL_NATIVE | ||
6 | select PPC_RTAS | ||
7 | select PPC_INDIRECT_IO | ||
8 | select PPC_OF_PLATFORM_PCI | ||
9 | select HAS_TXX9_SERIAL | ||
10 | select PPC_UDBG_BEAT | ||
11 | select USB_OHCI_BIG_ENDIAN_MMIO | ||
12 | select USB_EHCI_BIG_ENDIAN_MMIO | ||
diff --git a/arch/powerpc/platforms/celleb/Makefile b/arch/powerpc/platforms/celleb/Makefile index 6d51a3c00713..5b1096b40afb 100644 --- a/arch/powerpc/platforms/celleb/Makefile +++ b/arch/powerpc/platforms/celleb/Makefile | |||
@@ -1,5 +1,5 @@ | |||
1 | obj-y += interrupt.o iommu.o setup.o \ | 1 | obj-y += interrupt.o iommu.o \ |
2 | htab.o beat.o hvCall.o pci.o \ | 2 | htab.o beat.o hvCall.o \ |
3 | scc_epci.o scc_uhc.o | 3 | scc_epci.o scc_uhc.o |
4 | 4 | ||
5 | obj-$(CONFIG_SMP) += smp.o | 5 | obj-$(CONFIG_SMP) += smp.o |
diff --git a/arch/powerpc/platforms/celleb/scc_epci.c b/arch/powerpc/platforms/celleb/scc_epci.c index b126739834ac..3f7aef947633 100644 --- a/arch/powerpc/platforms/celleb/scc_epci.c +++ b/arch/powerpc/platforms/celleb/scc_epci.c | |||
@@ -35,7 +35,7 @@ | |||
35 | #include <asm/ppc-pci.h> | 35 | #include <asm/ppc-pci.h> |
36 | 36 | ||
37 | #include "scc.h" | 37 | #include "scc.h" |
38 | #include "pci.h" | 38 | #include "../cell/celleb_pci.h" |
39 | #include "interrupt.h" | 39 | #include "interrupt.h" |
40 | 40 | ||
41 | #define MAX_PCI_DEVICES 32 | 41 | #define MAX_PCI_DEVICES 32 |