qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/4] Altera NiosII Support (v2)
@ 2012-11-11  4:18 crwulff
  2012-11-11  4:18 ` [Qemu-devel] [PATCH 1/4] NiosII: Add support for the Altera NiosII soft-core CPU. (v2) crwulff
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: crwulff @ 2012-11-11  4:18 UTC (permalink / raw)
  To: qemu-devel; +Cc: Chris Wulff

From: Chris Wulff <crwulff@gmail.com>

This set of patches adds support for the Altera NiosII soft-core processor. Included are support for the CPU core and the drivers needed to boot Linux (Interrupt controller, Timer and Serial port.) There are quite a few changes suggested by the first round review. These include:

  * Better CPU code generation
  * Better support for QOM
  * A bunch of coding style cleanups (struct naming, merging GDB imported disassembly, etc.)
  * Updated for changes to the current head of the tree

I've also dropped the device-tree based board configurations from this patch set. Those currently depend heavily on fdt-generic patches from Peter Crosthwaite that have yet to make it into the main tree. This set of patches builds the NiosII core without errors but will report no machine found. I will resubmit those board configurations under a separate patch set once the integration and cleanup is complete for the fdt-generic board configurations is completed.


Chris Wulff (4):
  NiosII: Add support for the Altera NiosII soft-core CPU.
  NiosII: Disassembly of NiosII instructions ported from GDB.
  Altera: Add support for devices needed to boot Linux on NiosII.
  NiosII: Build system and documentation integration.

 MAINTAINERS                          |    5 +
 Makefile.objs                        |    1 +
 arch_init.c                          |    2 +
 arch_init.h                          |    1 +
 configure                            |   11 +
 cpu-exec.c                           |   12 +-
 default-configs/nios2-linux-user.mak |    1 +
 default-configs/nios2-softmmu.mak    |    5 +
 dis-asm.h                            |    3 +
 disas.c                              |    3 +
 elf.h                                |    2 +
 exec.c                               |    6 +-
 gdbstub.c                            |   29 +
 hw/Makefile.objs                     |    5 +
 hw/altera_timer.c                    |  207 ++
 hw/altera_uart.c                     |  217 +++
 hw/altera_vic.c                      |  194 ++
 hw/nios2.h                           |   52 +
 hw/nios2/Makefile.objs               |    3 +
 hw/nios2_pic_cpu.c                   |   39 +
 linux-user/elfload.c                 |   29 +
 monitor.c                            |    5 +-
 nios2-dis.c                          | 3478 ++++++++++++++++++++++++++++++++++
 qapi-schema.json                     |    2 +-
 qemu-doc.texi                        |    3 +
 target-nios2/Makefile.objs           |    5 +
 target-nios2/altera_iic.c            |  101 +
 target-nios2/cpu.c                   |   83 +
 target-nios2/cpu.h                   |  302 +++
 target-nios2/helper.c                |  291 +++
 target-nios2/helper.h                |   45 +
 target-nios2/instruction.c           | 1405 ++++++++++++++
 target-nios2/instruction.h           |  279 +++
 target-nios2/machine.c               |   33 +
 target-nios2/mmu.c                   |  273 +++
 target-nios2/mmu.h                   |   49 +
 target-nios2/op_helper.c             |  119 ++
 target-nios2/translate.c             |  253 +++
 38 files changed, 7547 insertions(+), 6 deletions(-)
 create mode 100644 default-configs/nios2-linux-user.mak
 create mode 100644 default-configs/nios2-softmmu.mak
 create mode 100644 hw/altera_timer.c
 create mode 100644 hw/altera_uart.c
 create mode 100644 hw/altera_vic.c
 create mode 100644 hw/nios2.h
 create mode 100644 hw/nios2/Makefile.objs
 create mode 100644 hw/nios2_pic_cpu.c
 create mode 100644 nios2-dis.c
 create mode 100644 target-nios2/Makefile.objs
 create mode 100644 target-nios2/altera_iic.c
 create mode 100644 target-nios2/cpu.c
 create mode 100644 target-nios2/cpu.h
 create mode 100644 target-nios2/helper.c
 create mode 100644 target-nios2/helper.h
 create mode 100644 target-nios2/instruction.c
 create mode 100644 target-nios2/instruction.h
 create mode 100644 target-nios2/machine.c
 create mode 100644 target-nios2/mmu.c
 create mode 100644 target-nios2/mmu.h
 create mode 100644 target-nios2/op_helper.c
 create mode 100644 target-nios2/translate.c

-- 
1.7.10.4

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2012-11-11  4:20 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-11  4:18 [Qemu-devel] [PATCH 0/4] Altera NiosII Support (v2) crwulff
2012-11-11  4:18 ` [Qemu-devel] [PATCH 1/4] NiosII: Add support for the Altera NiosII soft-core CPU. (v2) crwulff
2012-11-11  4:18 ` [Qemu-devel] [PATCH 2/4] NiosII: Disassembly of NiosII instructions ported from GDB. (v2) crwulff
2012-11-11  4:18 ` [Qemu-devel] [PATCH 3/4] Altera: Add support for devices needed to boot Linux on NiosII. (v2) crwulff
2012-11-11  4:18 ` [Qemu-devel] [PATCH 4/4] NiosII: Build system and documentation integration crwulff

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).