Skip to content

Commit

Permalink
[PATCH] ppc32: Add Yucca (440SPe eval board) platform
Browse files Browse the repository at this point in the history
Add support for AMCC PowerPC 440SPe "Yucca" eval board platform.

Signed-off-by: Roland Dreier <rolandd@cisco.com>
Cc: Matt Porter <mporter@kernel.crashing.org>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
  • Loading branch information
Roland Dreier authored and Linus Torvalds committed Nov 7, 2005
1 parent b0f7b8b commit 90eb266
Show file tree
Hide file tree
Showing 7 changed files with 527 additions and 2 deletions.
6 changes: 6 additions & 0 deletions arch/ppc/boot/simple/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -79,6 +79,12 @@ zimageinitrd-$(CONFIG_LUAN) := zImage.initrd-TREE
entrypoint-$(CONFIG_LUAN) := 0x01000000
extra.o-$(CONFIG_LUAN) := pibs.o

zimage-$(CONFIG_YUCCA) := zImage-TREE
zimageinitrd-$(CONFIG_YUCCA) := zImage.initrd-TREE
end-$(CONFIG_YUCCA) := yucca
entrypoint-$(CONFIG_YUCCA) := 0x01000000
extra.o-$(CONFIG_YUCCA) := pibs.o

zimage-$(CONFIG_OCOTEA) := zImage-TREE
zimageinitrd-$(CONFIG_OCOTEA) := zImage.initrd-TREE
end-$(CONFIG_OCOTEA) := ocotea
Expand Down
11 changes: 9 additions & 2 deletions arch/ppc/platforms/4xx/Kconfig
Original file line number Diff line number Diff line change
Expand Up @@ -82,6 +82,12 @@ config LUAN
help
This option enables support for the IBM PPC440SP evaluation board.

config YUCCA
bool "Yucca"
select WANT_EARLY_SERIAL
help
This option enables support for the AMCC PPC440SPe evaluation board.

config OCOTEA
bool "Ocotea"
select WANT_EARLY_SERIAL
Expand Down Expand Up @@ -126,7 +132,8 @@ config 440SP

config 440SPE
bool
default n
depends on YUCCA
default y

config 440
bool
Expand Down Expand Up @@ -162,7 +169,7 @@ config BOOKE

config IBM_OCP
bool
depends on ASH || BAMBOO || BUBINGA || CPCI405 || EBONY || EP405 || LUAN || OCOTEA || REDWOOD_5 || REDWOOD_6 || SYCAMORE || WALNUT
depends on ASH || BAMBOO || BUBINGA || CPCI405 || EBONY || EP405 || LUAN || YUCCA || OCOTEA || REDWOOD_5 || REDWOOD_6 || SYCAMORE || WALNUT
default y

config XILINX_OCP
Expand Down
1 change: 1 addition & 0 deletions arch/ppc/platforms/4xx/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,7 @@ obj-$(CONFIG_EBONY) += ebony.o
obj-$(CONFIG_EP405) += ep405.o
obj-$(CONFIG_BUBINGA) += bubinga.o
obj-$(CONFIG_LUAN) += luan.o
obj-$(CONFIG_YUCCA) += yucca.o
obj-$(CONFIG_OCOTEA) += ocotea.o
obj-$(CONFIG_REDWOOD_5) += redwood5.o
obj-$(CONFIG_REDWOOD_6) += redwood6.o
Expand Down
Loading

0 comments on commit 90eb266

Please sign in to comment.