qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 0/6] [RFC] New SPARC machine: Leon3
@ 2010-12-06  9:26 Fabien Chouteau
  2010-12-06  9:26 ` [Qemu-devel] [PATCH 1/6] [RFC] Emulation of GRLIB GPTimer as defined in GRLIB IP Core User's Manual Fabien Chouteau
                   ` (2 more replies)
  0 siblings, 3 replies; 51+ messages in thread
From: Fabien Chouteau @ 2010-12-06  9:26 UTC (permalink / raw)
  To: qemu-devel; +Cc: Fabien Chouteau

Hi everyone,
I'm glad to submit my first patches to the Qemu-devel list.

This patch set introduces a new SPARC V8 machine: Leon3. It's an open-source
VHDL System-On-Chip, well known in space industry (more information on
http://www.gaisler.com).

Leon3 is made of multiple components available in the GrLib VHDL library.
Three devices are implemented: uart, timers and IRQ manager.
You can find code for these peripherals in the grlib_* files.

Modifications have been done to the SPARC cpu emulation code to handle
Leon3's specific behavior:
 - IRQ management
 - Cache control
 - Asr17 (implementation-dependent Ancillary State Registers)
 - Shutdown

Please feel free to comment.

Regards,

Fabien Chouteau (6):
  Emulation of GRLIB GPTimer as defined in GRLIB IP Core User's Manual.
  Emulation of GRLIB IRQMP as defined in GRLIB IP Core User's Manual.
  Emulation of GRLIB APB UART as defined in GRLIB IP Core User's
    Manual.
  Header file for the GRLIB components.
  Emulation of Leon3.
  SPARCV8 asr17 register support.

 Makefile.target          |    5 +-
 hw/grlib.h               |   27 +++
 hw/grlib_apbuart.c       |  231 ++++++++++++++++++++++++
 hw/grlib_gptimer.c       |  448 ++++++++++++++++++++++++++++++++++++++++++++++
 hw/grlib_irqmp.c         |  416 ++++++++++++++++++++++++++++++++++++++++++
 hw/leon3.c               |  316 ++++++++++++++++++++++++++++++++
 target-sparc/cpu.h       |   11 ++
 target-sparc/helper.c    |    2 +-
 target-sparc/machine.c   |    2 +
 target-sparc/op_helper.c |   30 +++-
 target-sparc/translate.c |   10 +
 11 files changed, 1494 insertions(+), 4 deletions(-)
 create mode 100644 hw/grlib.h
 create mode 100644 hw/grlib_apbuart.c
 create mode 100644 hw/grlib_gptimer.c
 create mode 100644 hw/grlib_irqmp.c
 create mode 100644 hw/leon3.c

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

end of thread, other threads:[~2010-12-20 20:09 UTC | newest]

Thread overview: 51+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-12-06  9:26 [Qemu-devel] [PATCH 0/6] [RFC] New SPARC machine: Leon3 Fabien Chouteau
2010-12-06  9:26 ` [Qemu-devel] [PATCH 1/6] [RFC] Emulation of GRLIB GPTimer as defined in GRLIB IP Core User's Manual Fabien Chouteau
2010-12-06  9:26   ` [Qemu-devel] [PATCH 2/6] [RFC] Emulation of GRLIB IRQMP " Fabien Chouteau
2010-12-06  9:26     ` [Qemu-devel] [PATCH 3/6] [RFC] Emulation of GRLIB APB UART " Fabien Chouteau
2010-12-06  9:26       ` [Qemu-devel] [PATCH 4/6] [RFC] Header file for the GRLIB components Fabien Chouteau
2010-12-06  9:26         ` [Qemu-devel] [PATCH 5/6] [RFC] Emulation of Leon3 Fabien Chouteau
2010-12-06  9:26           ` [Qemu-devel] [PATCH 6/6] [RFC] SPARCV8 asr17 register support Fabien Chouteau
2010-12-06 18:01             ` Blue Swirl
2010-12-07 11:51               ` Fabien Chouteau
2010-12-11  9:59                 ` Blue Swirl
2010-12-13 17:01                   ` Fabien Chouteau
2010-12-06 17:53           ` [Qemu-devel] [PATCH 5/6] [RFC] Emulation of Leon3 Blue Swirl
2010-12-07 11:40             ` Fabien Chouteau
2010-12-11  9:56               ` Blue Swirl
2010-12-13 15:51                 ` Fabien Chouteau
2010-12-13 18:18                   ` Blue Swirl
2010-12-15 17:47                     ` Fabien Chouteau
2010-12-17 19:14                       ` Blue Swirl
2010-12-20  6:46                         ` Edgar E. Iglesias
2010-12-20  9:40                           ` Fabien Chouteau
2010-12-20 20:09                             ` Blue Swirl
2010-12-20  9:25                         ` Fabien Chouteau
2010-12-20 19:27                           ` Blue Swirl
2010-12-12 14:41           ` Andreas Färber
2010-12-13 17:00             ` Fabien Chouteau
2010-12-06 17:31         ` [Qemu-devel] [PATCH 4/6] [RFC] Header file for the GRLIB components Blue Swirl
2010-12-07 11:04           ` Fabien Chouteau
2010-12-06 17:29       ` [Qemu-devel] [PATCH 3/6] [RFC] Emulation of GRLIB APB UART as defined in GRLIB IP Core User's Manual Blue Swirl
2010-12-07 10:55         ` Fabien Chouteau
2010-12-06 17:25     ` [Qemu-devel] [PATCH 2/6] [RFC] Emulation of GRLIB IRQMP " Blue Swirl
2010-12-07 10:43       ` Fabien Chouteau
2010-12-11 10:31         ` Blue Swirl
2010-12-13 16:23           ` Fabien Chouteau
2010-12-13 18:13             ` Blue Swirl
2010-12-09 10:32     ` Edgar E. Iglesias
2010-12-09 11:03       ` Fabien Chouteau
2010-12-09 11:06         ` Edgar E. Iglesias
2010-12-09 11:32           ` Fabien Chouteau
2010-12-06 17:12   ` [Qemu-devel] [PATCH 1/6] [RFC] Emulation of GRLIB GPTimer " Blue Swirl
2010-12-07  9:55     ` Fabien Chouteau
2010-12-08  8:30       ` Edgar E. Iglesias
2010-12-08  9:39         ` Fabien Chouteau
2010-12-08 21:02           ` Edgar E. Iglesias
2010-12-08 22:51   ` Edgar E. Iglesias
2010-12-09 10:04     ` Fabien Chouteau
2010-12-09 10:22       ` Edgar E. Iglesias
2010-12-06 10:44 ` [Qemu-devel] [PATCH 0/6] [RFC] New SPARC machine: Leon3 Artyom Tarasenko
2010-12-06 15:07   ` Fabien Chouteau
2010-12-06 18:12     ` Blue Swirl
2010-12-07 17:43       ` Fabien Chouteau
2010-12-06 18:05 ` Blue Swirl

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).