qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [PATCH v3 0/4] *** SUBJECT HERE ***
@ 2012-06-07  5:05 Peter A. G. Crosthwaite
  2012-06-07  5:05 ` [Qemu-devel] [PATCH v3 1/4] hw: introduce standard SD host controller Peter A. G. Crosthwaite
                   ` (4 more replies)
  0 siblings, 5 replies; 14+ messages in thread
From: Peter A. G. Crosthwaite @ 2012-06-07  5:05 UTC (permalink / raw)
  To: qemu-devel, i.mitsyanko
  Cc: peter.maydell, e.voevodin, peter.crosthwaite, kyungmin.park,
	d.solodkiy, edgar.iglesias, m.kozlov, john.williams

[Original cover by Igor]
First patch introduces standard SD host controller model. This is accumulated
version of my previous patch I sent a while ago and a recent SDHCI patch by
Peter A. G. Crosthwaite.
Second patch introduces Exynos4210-specific SDHCI built on top of standard SDHCI
model.

[New]
Third patch changes the -sd command line argument to be repeatable, to support multiple SD controllers in one system.
Fourth patch adds 2x SDHCI controllers to the Xilinx Zynq machine

Changelog:
Changed from v2:
corrected typo errors in ADMA1 support
added patches 3-4
v1->v2
 PATCH1:
  add support for ADMA1 (I havn't tested it though).
  fixed s->prnsts <-> s->pwrcon typo (thanks to Peter, strange that it even worked
  before).
 PATCH2:
  change header prefix from "target-arm" to "exynos4210".
   
Igor Mitsyanko (2):
  hw: introduce standard SD host controller
  exynos4210: introduce Exynos4210 SD host controller model

Peter A. G. Crosthwaite (2):
  vl.c: allow for reapeated -sd arguments
  xilinx_zynq: Added sdhci controllers

 Makefile.objs                   |    1 +
 Makefile.target                 |    1 +
 default-configs/arm-softmmu.mak |    1 +
 hw/exynos4210.c                 |   20 +
 hw/exynos4210_sdhci.c           |  438 +++++++++++++
 hw/sdhci.c                      | 1306 +++++++++++++++++++++++++++++++++++++++
 hw/sdhci.h                      |  310 +++++++++
 hw/xilinx_zynq.c                |   12 +
 vl.c                            |    2 +-
 9 files changed, 2090 insertions(+), 1 deletions(-)
 create mode 100644 hw/exynos4210_sdhci.c
 create mode 100644 hw/sdhci.c
 create mode 100644 hw/sdhci.h

-- 
1.7.3.2

^ permalink raw reply	[flat|nested] 14+ messages in thread
* Re: [Qemu-devel] [PATCH v3 0/4] Standard SD host controller model
@ 2012-06-07  5:06 Peter Crosthwaite
  0 siblings, 0 replies; 14+ messages in thread
From: Peter Crosthwaite @ 2012-06-07  5:06 UTC (permalink / raw)
  To: qemu-devel, i.mitsyanko
  Cc: peter.maydell, e.voevodin, peter.crosthwaite, kyungmin.park,
	d.solodkiy, edgar.iglesias, m.kozlov, john.williams

Sorry, subject should read "Standard SD host controller model"


On Thu, Jun 7, 2012 at 3:05 PM, Peter A. G. Crosthwaite
<peter.crosthwaite@petalogix.com> wrote:
>
> [Original cover by Igor]
> First patch introduces standard SD host controller model. This is accumulated
> version of my previous patch I sent a while ago and a recent SDHCI patch by
> Peter A. G. Crosthwaite.
> Second patch introduces Exynos4210-specific SDHCI built on top of standard SDHCI
> model.
>
> [New]
> Third patch changes the -sd command line argument to be repeatable, to support multiple SD controllers in one system.
> Fourth patch adds 2x SDHCI controllers to the Xilinx Zynq machine
>
> Changelog:
> Changed from v2:
> corrected typo errors in ADMA1 support
> added patches 3-4
> v1->v2
>  PATCH1:
>  add support for ADMA1 (I havn't tested it though).
>  fixed s->prnsts <-> s->pwrcon typo (thanks to Peter, strange that it even worked
>  before).
>  PATCH2:
>  change header prefix from "target-arm" to "exynos4210".
>
> Igor Mitsyanko (2):
>  hw: introduce standard SD host controller
>  exynos4210: introduce Exynos4210 SD host controller model
>
> Peter A. G. Crosthwaite (2):
>  vl.c: allow for reapeated -sd arguments
>  xilinx_zynq: Added sdhci controllers
>
>  Makefile.objs                   |    1 +
>  Makefile.target                 |    1 +
>  default-configs/arm-softmmu.mak |    1 +
>  hw/exynos4210.c                 |   20 +
>  hw/exynos4210_sdhci.c           |  438 +++++++++++++
>  hw/sdhci.c                      | 1306 +++++++++++++++++++++++++++++++++++++++
>  hw/sdhci.h                      |  310 +++++++++
>  hw/xilinx_zynq.c                |   12 +
>  vl.c                            |    2 +-
>  9 files changed, 2090 insertions(+), 1 deletions(-)
>  create mode 100644 hw/exynos4210_sdhci.c
>  create mode 100644 hw/sdhci.c
>  create mode 100644 hw/sdhci.h
>
> --
> 1.7.3.2
>

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

end of thread, other threads:[~2012-06-09 15:23 UTC | newest]

Thread overview: 14+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-06-07  5:05 [Qemu-devel] [PATCH v3 0/4] *** SUBJECT HERE *** Peter A. G. Crosthwaite
2012-06-07  5:05 ` [Qemu-devel] [PATCH v3 1/4] hw: introduce standard SD host controller Peter A. G. Crosthwaite
2012-06-08 23:39   ` Andreas Färber
2012-06-09 15:23   ` Andreas Färber
2012-06-07  5:05 ` [Qemu-devel] [PATCH v3 2/4] exynos4210: introduce Exynos4210 SD host controller model Peter A. G. Crosthwaite
2012-06-07 12:00   ` Andreas Färber
2012-06-07  5:05 ` [Qemu-devel] [PATCH v3 3/4] vl.c: allow for reapeated -sd arguments Peter A. G. Crosthwaite
2012-06-07 11:57   ` Andreas Färber
2012-06-07  5:05 ` [Qemu-devel] [PATCH v3 4/4] xilinx_zynq: Added sdhci controllers Peter A. G. Crosthwaite
2012-06-07 12:24 ` [Qemu-devel] [PATCH v3 0/4] Standard SD host controller model Andreas Färber
2012-06-07 12:56   ` Peter Maydell
2012-06-07 14:40   ` Igor Mitsyanko
2012-06-07 22:16     ` Peter Crosthwaite
  -- strict thread matches above, loose matches on Subject: below --
2012-06-07  5:06 Peter Crosthwaite

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