qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
* [Qemu-devel] [RESEND V10 0/3] Move sdhci.h to include/hw/sd
@ 2015-10-31 15:03 Sai Pavan Boddu
  2015-10-31 15:03 ` [Qemu-devel] [RESEND V10 1/3] sd.h: Move sd.h to include/hw/sd/ Sai Pavan Boddu
                   ` (3 more replies)
  0 siblings, 4 replies; 6+ messages in thread
From: Sai Pavan Boddu @ 2015-10-31 15:03 UTC (permalink / raw)
  To: qemu-devel, peter.maydell, crosthwaitepeter, stefanha
  Cc: Sai Pavan Boddu, edgari, alistai

Move sdhci.h splitting it into common and internal.
Create a new directory for sd in include/hw/.
Correct paths of sd.h in at every instance of #include.
Add sdhci to xlnx-zynqmp SOC.

Sai Pavan Boddu (3):
  sd.h: Move sd.h to include/hw/sd/
  sdhci: Split sdhci.h for public and internal device usage
  target-arm: xlnx-zynqmp: Add sdhci support.

 hw/arm/xlnx-zynqmp.c                | 28 +++++++++++
 hw/sd/milkymist-memcard.c           |  2 +-
 hw/sd/omap_mmc.c                    |  2 +-
 hw/sd/pl181.c                       |  2 +-
 hw/sd/pxa2xx_mmci.c                 |  2 +-
 hw/sd/sd.c                          |  2 +-
 hw/sd/{sdhci.h => sdhci-internal.h} | 71 ++--------------------------
 hw/sd/sdhci.c                       |  3 +-
 hw/sd/ssi-sd.c                      |  2 +-
 include/hw/arm/xlnx-zynqmp.h        |  3 ++
 include/hw/{ => sd}/sd.h            |  0
 include/hw/sd/sdhci.h               | 92 +++++++++++++++++++++++++++++++++++++
 12 files changed, 134 insertions(+), 75 deletions(-)
 rename hw/sd/{sdhci.h => sdhci-internal.h} (75%)
 rename include/hw/{ => sd}/sd.h (100%)
 create mode 100644 include/hw/sd/sdhci.h

-- 
2.1.4

^ permalink raw reply	[flat|nested] 6+ messages in thread
* Re: [Qemu-devel] [RESEND V10 0/3] Move sdhci.h to include/hw/sd
@ 2015-11-02  5:31 Sai Pavan Boddu
  0 siblings, 0 replies; 6+ messages in thread
From: Sai Pavan Boddu @ 2015-11-02  5:31 UTC (permalink / raw)
  To: Peter Crosthwaite
  Cc: Peter Maydell, Edgar Iglesias, Alistair Francis,
	qemu-devel@nongnu.org Developers, Stefan Hajnoczi



> -----Original Message-----
> From: Peter Crosthwaite [mailto:crosthwaitepeter@gmail.com]
> Sent: Saturday, October 31, 2015 11:27 PM
> To: Sai Pavan Boddu
> Cc: qemu-devel@nongnu.org Developers; Peter Maydell; Stefan Hajnoczi;
> Alistair Francis; Edgar Iglesias; Sai Pavan Boddu
> Subject: Re: [RESEND V10 0/3] Move sdhci.h to include/hw/sd
> 
> On Sat, Oct 31, 2015 at 8:03 AM, Sai Pavan Boddu
> <sai.pavan.boddu@xilinx.com> wrote:
> > Move sdhci.h splitting it into common and internal.
> > Create a new directory for sd in include/hw/.
> > Correct paths of sd.h in at every instance of #include.
> > Add sdhci to xlnx-zynqmp SOC.
> >
> > Sai Pavan Boddu (3):
> >   sd.h: Move sd.h to include/hw/sd/
> >   sdhci: Split sdhci.h for public and internal device usage
> >   target-arm: xlnx-zynqmp: Add sdhci support.
> >
> 
> 
> I think this already applied just yesterday. Thanks Stefan.
Oh that’s great, Thanks Peter and Stefan.

Regards,
Sai Pavan
> 
> qemu$ git log --oneline mainline/master
> ...
> 33108e9 target-arm: xlnx-zynqmp: Add sdhci support.
> 637d23b sdhci: Split sdhci.h for public and internal device usage
> e3382ef sd.h: Move sd.h to include/hw/sd/
> 
> Regards,
> Peter
> 
> >  hw/arm/xlnx-zynqmp.c                | 28 +++++++++++
> >  hw/sd/milkymist-memcard.c           |  2 +-
> >  hw/sd/omap_mmc.c                    |  2 +-
> >  hw/sd/pl181.c                       |  2 +-
> >  hw/sd/pxa2xx_mmci.c                 |  2 +-
> >  hw/sd/sd.c                          |  2 +-
> >  hw/sd/{sdhci.h => sdhci-internal.h} | 71 ++--------------------------
> >  hw/sd/sdhci.c                       |  3 +-
> >  hw/sd/ssi-sd.c                      |  2 +-
> >  include/hw/arm/xlnx-zynqmp.h        |  3 ++
> >  include/hw/{ => sd}/sd.h            |  0
> >  include/hw/sd/sdhci.h               | 92
> +++++++++++++++++++++++++++++++++++++
> >  12 files changed, 134 insertions(+), 75 deletions(-)
> >  rename hw/sd/{sdhci.h => sdhci-internal.h} (75%)
> >  rename include/hw/{ => sd}/sd.h (100%)
> >  create mode 100644 include/hw/sd/sdhci.h
> >
> > --
> > 2.1.4
> >

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

end of thread, other threads:[~2015-11-02  5:32 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-10-31 15:03 [Qemu-devel] [RESEND V10 0/3] Move sdhci.h to include/hw/sd Sai Pavan Boddu
2015-10-31 15:03 ` [Qemu-devel] [RESEND V10 1/3] sd.h: Move sd.h to include/hw/sd/ Sai Pavan Boddu
2015-10-31 15:03 ` [Qemu-devel] [RESEND V10 2/3] sdhci: Split sdhci.h for public and internal device usage Sai Pavan Boddu
2015-10-31 15:03 ` [Qemu-devel] [RESEND V10 3/3] target-arm: xlnx-zynqmp: Add sdhci support Sai Pavan Boddu
2015-10-31 17:56 ` [Qemu-devel] [RESEND V10 0/3] Move sdhci.h to include/hw/sd Peter Crosthwaite
  -- strict thread matches above, loose matches on Subject: below --
2015-11-02  5:31 Sai Pavan Boddu

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