-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[POWERPC] spufs: split the Cell BE support into generic and platform …
…dependant parts Creates new config variables PPC_CELL_NATIVE and PPC_IBM_CELL_BLADE. The existing CONFIG_PPC_CELL is now used to denote the generic Cell processor support. PPC_CELL = make descends into platforms/cell PPC_CELL_NATIVE = add bare metal support PPC_IBM_CELL_BLADE = add blade device drivers, etc. Also renames spu_priv1.c to spu_priv1_mmio.c. Signed-off-by: Geoff Levand <geoffrey.levand@am.sony.com> Signed-off-by: Arnd Bergmann <arnd.bergmann@de.ibm.com> Signed-off-by: Paul Mackerras <paulus@samba.org>
- Loading branch information
Geoff Levand
authored and
Paul Mackerras
committed
Jun 21, 2006
1 parent
e46a023
commit c01ea72
Showing
6 changed files
with
31 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,13 +1,15 @@ | ||
obj-y += interrupt.o iommu.o setup.o spider-pic.o | ||
obj-y += cbe_regs.o pervasive.o | ||
obj-$(CONFIG_CBE_RAS) += ras.o | ||
obj-$(CONFIG_PPC_CELL_NATIVE) += interrupt.o iommu.o setup.o \ | ||
cbe_regs.o spider-pic.o pervasive.o | ||
obj-$(CONFIG_CBE_RAS) += ras.o | ||
|
||
obj-$(CONFIG_SMP) += smp.o | ||
ifeq ($(CONFIG_SMP),y) | ||
obj-$(CONFIG_PPC_CELL_NATIVE) += smp.o | ||
endif | ||
|
||
# needed only when building loadable spufs.ko | ||
spufs-modular-$(CONFIG_SPU_FS) += spu_syscalls.o | ||
obj-y += $(spufs-modular-m) | ||
spufs-modular-$(CONFIG_SPU_FS) += spu_syscalls.o | ||
spu-priv1-$(CONFIG_PPC_CELL_NATIVE) += spu_priv1_mmio.o | ||
|
||
# always needed in kernel | ||
spufs-builtin-$(CONFIG_SPU_FS) += spu_callbacks.o spu_base.o spu_priv1.o spufs/ | ||
obj-y += $(spufs-builtin-y) $(spufs-builtin-m) | ||
obj-$(CONFIG_SPU_BASE) += spu_callbacks.o spu_base.o \ | ||
$(spufs-modular-m) \ | ||
$(spu-priv1-y) spufs/ |
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters