diff options
| author | Marek Vasut <marex@denx.de> | 2017-01-18 23:01:46 +0100 |
|---|---|---|
| committer | Richard Henderson <rth@twiddle.net> | 2017-01-24 13:10:36 -0800 |
| commit | e671711c9a8c1de540f035095e18458bc03968de (patch) | |
| tree | b747bd4b33d0e51cfb1cac14299b718aae2abae5 /include/sysemu/arch_init.h | |
| parent | b78625648802a5a7eef5a5f848250a52503a81aa (diff) | |
| download | focaccia-qemu-e671711c9a8c1de540f035095e18458bc03968de.tar.gz focaccia-qemu-e671711c9a8c1de540f035095e18458bc03968de.zip | |
nios2: Add support for Nios-II R1
Add remaining bits of the Altera NiosII R1 support into qemu, which is documentation, MAINTAINERS file entry, configure bits, arch_init and configuration files for both linux-user (userland binaries) and softmmu (hardware emulation). Signed-off-by: Marek Vasut <marex@denx.de> Cc: Chris Wulff <crwulff@gmail.com> Cc: Jeff Da Silva <jdasilva@altera.com> Cc: Ley Foon Tan <lftan@altera.com> Cc: Sandra Loosemore <sandra@codesourcery.com> Cc: Yves Vandervennet <yvanderv@altera.com> Reviewed-by: Alexander Graf <agraf@suse.de> Message-Id: <20170118220146.489-8-marex@denx.de> Signed-off-by: Richard Henderson <rth@twiddle.net>
Diffstat (limited to 'include/sysemu/arch_init.h')
| -rw-r--r-- | include/sysemu/arch_init.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/sysemu/arch_init.h b/include/sysemu/arch_init.h index 20b01e3004..2bf16b203c 100644 --- a/include/sysemu/arch_init.h +++ b/include/sysemu/arch_init.h @@ -23,6 +23,7 @@ enum { QEMU_ARCH_UNICORE32 = (1 << 14), QEMU_ARCH_MOXIE = (1 << 15), QEMU_ARCH_TRICORE = (1 << 16), + QEMU_ARCH_NIOS2 = (1 << 17), }; extern const uint32_t arch_type; |