All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/3] QEMU: Add ASPEED AST2400 machine model
@ 2016-02-03  5:46 Andrew Jeffery
  2016-02-03  5:46 ` [PATCH 1/3] timers: Add ASPEED AST2400 timer device model Andrew Jeffery
                   ` (2 more replies)
  0 siblings, 3 replies; 6+ messages in thread
From: Andrew Jeffery @ 2016-02-03  5:46 UTC (permalink / raw)
  To: openbmc

Hi all,

This patchset for QEMU implements enough of the AST2400 machine model to boot a
aspeed_defconfig kernel. This mostly boils down to wiring together the ASPEED
timer and AVIC, and hooking up a UART. The device model patches in turn only
partially implement the hardware features of the timer and AVIC, again just
enough to boot the kernel.

This is the first time I've implemented QEMU device models so no doubt the
patches contain misunderstandings and/or oversights - happy to hear any
feedback! 

Cheers,

Andrew

Andrew Jeffery (3):
  timers: Add ASPEED AST2400 timer device model
  intc: Add (new) ASPEED AST2400 AVIC device model
  ast2400: Add ASPEED AST2400 machine type

 default-configs/arm-softmmu.mak |   2 +
 hw/arm/Makefile.objs            |   1 +
 hw/arm/ast2400.c                | 126 +++++++++++++++++
 hw/intc/Makefile.objs           |   1 +
 hw/intc/aspeed_vic.c            | 288 ++++++++++++++++++++++++++++++++++++++
 hw/timer/Makefile.objs          |   2 +
 hw/timer/aspeed_timer.c         | 301 ++++++++++++++++++++++++++++++++++++++++
 include/hw/intc/aspeed_vic.h    |  42 ++++++
 include/hw/timer/aspeed_timer.h |  52 +++++++
 9 files changed, 815 insertions(+)
 create mode 100644 hw/arm/ast2400.c
 create mode 100644 hw/intc/aspeed_vic.c
 create mode 100644 hw/timer/aspeed_timer.c
 create mode 100644 include/hw/intc/aspeed_vic.h
 create mode 100644 include/hw/timer/aspeed_timer.h

-- 
2.5.0

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

end of thread, other threads:[~2016-02-16 10:50 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-02-03  5:46 [PATCH 0/3] QEMU: Add ASPEED AST2400 machine model Andrew Jeffery
2016-02-03  5:46 ` [PATCH 1/3] timers: Add ASPEED AST2400 timer device model Andrew Jeffery
2016-02-11 14:32   ` Cédric Le Goater
2016-02-16 10:50     ` Andrew Jeffery
2016-02-03  5:46 ` [PATCH 2/3] intc: Add (new) ASPEED AST2400 AVIC " Andrew Jeffery
2016-02-03  5:46 ` [PATCH 3/3] ast2400: Add ASPEED AST2400 machine type Andrew Jeffery

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.