qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH 00/14] ARM: Samsung S5PC210-based boards support.
@ 2011-12-07  9:46 Evgeny Voevodin
  2011-12-07  9:46 ` [Qemu-devel] [PATCH 01/14] ARM: s5pc210: Basic support of s5pc210 boards Evgeny Voevodin
                   ` (14 more replies)
  0 siblings, 15 replies; 25+ messages in thread
From: Evgeny Voevodin @ 2011-12-07  9:46 UTC (permalink / raw)
  To: qemu-devel; +Cc: d.solodkiy, Evgeny Voevodin

This set of patches adds support for Samsung S5PC210-based boards NURI and SMDKC210.
Tested on Linux kernel v3.x series. Usage of "-smp 2" option is reuired for now.

Evgeny Voevodin (10):
  hw/sysbus.h: Increase maximum number of device IRQs.
  ARM: s5pc210: IRQ subsystem support.
  ARM: s5pc210: PWM support.
  hw/arm_boot.c: Add new secondary CPU bootloader.
  hw/arm_gic.c: lower IRQ only on changing of enable bit.
  ARM: s5pc210: MCT support.
  ARM: s5pc210: Boot secondary CPU.
  hw/lan9118.c: Basic byte/word/long access support.
  hw/s5pc210.c: Add lan9118 support to SMDK board.
  s5pc210: Switch to sysbus_init_mmio.

Maksim Kozlov (1):
  ARM: s5pc210: Basic support of s5pc210 boards

Mitsyanko Igor (3):
  ARM: s5pc210: added s5pc210 display controller device (FIMD)
  SD card: add query function to check wether SD card currently ready
    to recieve data     Before executing data transfer to card, we must
    check that previously issued command wasn't a simple query command
    (for ex. CMD13), which doesn't require data transfer. Currently, we
    only can aquire information about whether SD card is in sending
    data state or not. This patch allows us to query wether previous
    command was data write command and it was successfully accepted by
    card (meaning that SD card in recieving data state).
  ARM: s5pc210: added SD/MMC host controller (ver. 2.0 compliant)
    implementation

 Makefile.target       |    3 +
 hw/arm-misc.h         |    1 +
 hw/arm_boot.c         |   22 +-
 hw/arm_gic.c          |   20 +-
 hw/lan9118.c          |   96 +++-
 hw/s5pc210.c          |  550 ++++++++++++++++
 hw/s5pc210.h          |  105 +++
 hw/s5pc210_cmu.c      | 1144 +++++++++++++++++++++++++++++++++
 hw/s5pc210_combiner.c |  381 +++++++++++
 hw/s5pc210_fimd.c     | 1698 +++++++++++++++++++++++++++++++++++++++++++++++++
 hw/s5pc210_gic.c      |  411 ++++++++++++
 hw/s5pc210_mct.c      | 1483 ++++++++++++++++++++++++++++++++++++++++++
 hw/s5pc210_pwm.c      |  433 +++++++++++++
 hw/s5pc210_sdhc.c     | 1693 ++++++++++++++++++++++++++++++++++++++++++++++++
 hw/s5pc210_uart.c     |  677 ++++++++++++++++++++
 hw/sd.c               |    5 +
 hw/sd.h               |    1 +
 hw/sysbus.h           |    2 +-
 18 files changed, 8710 insertions(+), 15 deletions(-)
 create mode 100644 hw/s5pc210.c
 create mode 100644 hw/s5pc210.h
 create mode 100644 hw/s5pc210_cmu.c
 create mode 100644 hw/s5pc210_combiner.c
 create mode 100644 hw/s5pc210_fimd.c
 create mode 100644 hw/s5pc210_gic.c
 create mode 100644 hw/s5pc210_mct.c
 create mode 100644 hw/s5pc210_pwm.c
 create mode 100644 hw/s5pc210_sdhc.c
 create mode 100644 hw/s5pc210_uart.c

-- 
1.7.4.1

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

end of thread, other threads:[~2011-12-09  9:21 UTC | newest]

Thread overview: 25+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-12-07  9:46 [Qemu-devel] [PATCH 00/14] ARM: Samsung S5PC210-based boards support Evgeny Voevodin
2011-12-07  9:46 ` [Qemu-devel] [PATCH 01/14] ARM: s5pc210: Basic support of s5pc210 boards Evgeny Voevodin
2011-12-07 11:01   ` Peter Maydell
2011-12-07  9:46 ` [Qemu-devel] [PATCH 02/14] hw/sysbus.h: Increase maximum number of device IRQs Evgeny Voevodin
2011-12-07  9:46 ` [Qemu-devel] [PATCH 03/14] ARM: s5pc210: IRQ subsystem support Evgeny Voevodin
2011-12-07  9:46 ` [Qemu-devel] [PATCH 04/14] ARM: s5pc210: PWM support Evgeny Voevodin
2011-12-07  9:46 ` [Qemu-devel] [PATCH 05/14] hw/arm_boot.c: Add new secondary CPU bootloader Evgeny Voevodin
2011-12-07  9:46 ` [Qemu-devel] [PATCH 06/14] hw/arm_gic.c: lower IRQ only on changing of enable bit Evgeny Voevodin
2011-12-07  9:46 ` [Qemu-devel] [PATCH 07/14] ARM: s5pc210: MCT support Evgeny Voevodin
2011-12-07  9:46 ` [Qemu-devel] [PATCH 08/14] ARM: s5pc210: Boot secondary CPU Evgeny Voevodin
2011-12-07  9:47 ` [Qemu-devel] [PATCH 09/14] hw/lan9118.c: Basic byte/word/long access support Evgeny Voevodin
2011-12-07 10:09   ` Peter Maydell
2011-12-07 10:58     ` Evgeny Voevodin
2011-12-07 11:17       ` Peter Maydell
2011-12-07  9:47 ` [Qemu-devel] [PATCH 10/14] hw/s5pc210.c: Add lan9118 support to SMDK board Evgeny Voevodin
2011-12-07  9:47 ` [Qemu-devel] [PATCH 11/14] ARM: s5pc210: added s5pc210 display controller device (FIMD) Evgeny Voevodin
2011-12-07  9:47 ` [Qemu-devel] [PATCH 12/14] SD card: add query function to check wether SD card currently ready to recieve data Before executing data transfer to card, we must check that previously issued command wasn't a simple query command (for ex. CMD13), which doesn't require data transfer. Currently, we only can aquire information about whether SD card is in sending data state or not. This patch allows us to query wether previous command was data write command and it was successfully accepted by card (meaning that SD card in recieving data state) Evgeny Voevodin
2011-12-07  9:47 ` [Qemu-devel] [PATCH 13/14] ARM: s5pc210: added SD/MMC host controller (ver. 2.0 compliant) implementation Evgeny Voevodin
2011-12-07  9:47 ` [Qemu-devel] [PATCH 14/14] s5pc210: Switch to sysbus_init_mmio Evgeny Voevodin
2011-12-07 10:41   ` Peter Maydell
2011-12-07 10:33 ` [Qemu-devel] [PATCH 00/14] ARM: Samsung S5PC210-based boards support Peter Maydell
2011-12-07 10:45   ` Dmitry Solodkiy
2011-12-08 10:58     ` Peter Maydell
2011-12-09  1:54       ` Chih-Min Chao
2011-12-09  9:21       ` Dmitry Solodkiy

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