barebox/arch/openrisc/Kconfig
Franck Jullien 6fe9ee8eb4 Add OpenRISC arch
OpenRISC is the original flagship project of the OpenCores community.
This project aims to develop a series of general purpose open source
RISC CPU architectures.

A team from OpenCores provided the first implementation, the OpenRISC
1200, written in the Verilog hardware description language.

Even though I should have created an mach-or1200 directory, it is not
necessary for now. The OpenRISC 1200 CPU is the only one available and
it will be for some time.

Signed-off-by: Franck Jullien <franck.jullien@gmail.com>
Signed-off-by: Sascha Hauer <s.hauer@pengutronix.de>
2012-01-02 12:50:56 +01:00

30 lines
438 B
Text

config OPENRISC
bool
select HAVE_CONFIGURABLE_MEMORY_LAYOUT
default y
# not used
config ARCH_TEXT_BASE
hex
default 0x00000000
config BOARDINFO
default "Openrisc simulator" if GENERIC
choice
prompt "Select your board"
config GENERIC
bool "Generic "
select OPENRISC
endchoice
source common/Kconfig
source commands/Kconfig
source net/Kconfig
source drivers/Kconfig
source fs/Kconfig
source lib/Kconfig
source crypto/Kconfig