summaryrefslogtreecommitdiff
path: root/arch
diff options
context:
space:
mode:
authorWaldemar Brodkorb <wbx@openadk.org>2017-01-25 07:35:07 +0100
committerPeter Korsgaard <peter@korsgaard.com>2017-01-25 22:53:53 +0100
commita818e29e76d9a083877094ed7bb3e9cfd31f3a46 (patch)
tree3e745971e8de38616133236b75aea78c431b4ee4 /arch
parentf923eed010061f1d3c26332cb681f6d54c44225e (diff)
arch: add OpenRISC architecture support
Add support for OpenRISC. See here for more details about OpenRISC http://openrisc.io. All buildroot included upstream binutils versions are supported. Gcc support is not upstream, to be able to enable musl C library support later, we use the branch with musl support. At the moment it is possible to build a musl based toolchain, but bootup in Qemu fails. Gdb is only working to debug bare-metal code, there is no support for gdbserver/gdb on Linux, yet. [Peter: drop ?= for GCC_SOURCE] Signed-off-by: Waldemar Brodkorb <wbx@openadk.org> Tested-by: Romain Naour <romain.naour@gmail.com> Signed-off-by: Peter Korsgaard <peter@korsgaard.com>
Diffstat (limited to 'arch')
-rw-r--r--arch/Config.in11
-rw-r--r--arch/Config.in.or1k5
2 files changed, 16 insertions, 0 deletions
diff --git a/arch/Config.in b/arch/Config.in
index d59cbd762..7149b2cb3 100644
--- a/arch/Config.in
+++ b/arch/Config.in
@@ -159,6 +159,13 @@ config BR2_nios2
http://www.altera.com/
http://en.wikipedia.org/wiki/Nios_II
+config BR2_or1k
+ bool "OpenRISC"
+ select BR2_ARCH_HAS_MMU_MANDATORY
+ help
+ OpenRISC is a free and open processor for embedded system.
+ http://openrisc.io
+
config BR2_powerpc
bool "PowerPC"
select BR2_ARCH_HAS_MMU_MANDATORY
@@ -378,6 +385,10 @@ if BR2_nios2
source "arch/Config.in.nios2"
endif
+if BR2_or1k
+source "arch/Config.in.or1k"
+endif
+
if BR2_powerpc || BR2_powerpc64 || BR2_powerpc64le
source "arch/Config.in.powerpc"
endif
diff --git a/arch/Config.in.or1k b/arch/Config.in.or1k
new file mode 100644
index 000000000..dba64a6ac
--- /dev/null
+++ b/arch/Config.in.or1k
@@ -0,0 +1,5 @@
+config BR2_ARCH
+ default "or1k"
+
+config BR2_ENDIAN
+ default "BIG"