linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v4 0/7] enable support for AMBA drivers under x86
@ 2012-12-10 13:42 Davide Ciminaghi
  2012-12-10 13:42 ` [PATCH v4 1/7] DMA: PL330: use prefix in reg names to build " Davide Ciminaghi
                   ` (9 more replies)
  0 siblings, 10 replies; 27+ messages in thread
From: Davide Ciminaghi @ 2012-12-10 13:42 UTC (permalink / raw)
  To: linux-arm-kernel

Hi,

this is v4 of a patchset already submitted on Sep 14th
(see https://lkml.org/lkml/2012/9/14/412) and
Nov 23rd (see https://lkml.org/lkml/2012/11/23/272).
Then 1/8 and 3/8 only were resubmitted (as v3) with the following changes:

* The output of git diff --word-diff was added to 1/8 as additional
  information for reviewers (see https://lkml.org/lkml/2012/11/23/415).
* 3/8 was generated with git format-patch -C -M to detect copies and moves
  (see https://lkml.org/lkml/2012/11/23/404).

Changes in v4 are:

* Rebased to next-20121210
* All patches generated with git format-patch -C -M.
* "DMA: PL330: use prefix in reg names to build under x86" : only registers
  names were prefixed (no PL330_ prefix for bitfields), as requested by
  Jassi Brar (see https://lkml.org/lkml/2012/11/24/46). Please note that this
  change was done by myself. I let Alessandro as the patch author, and just
  added my Signed-off-by with a very short explanation of my change. I'm not
  sure I did the right thing because, although my change is a small one from
  a logical point of view, it results in a much smaller patch, so this version
  is actually very different from v3.
* "gpio: pl061 depends on ARM": removed as it has already applied to
  linux-next (see https://lkml.org/lkml/2012/12/1/77)

Acked-by/Reviewed-by situation:

v1:

"DMA: PL330: use prefix in reg names to build under x86"
Acked by Vinod Koul (see https://lkml.org/lkml/2012/9/16/271) and
Linus Walleij (see https://lkml.org/lkml/2012/9/16/93).

"mmc: use the new <linux/sizes.h>"
Acked by David Brown (see https://lkml.org/lkml/2012/9/14/613)

"pl080.h: moved from arm/include/asm/hardware to include/linux/amba/"
Acked by Linus Walleij (see https://lkml.org/lkml/2012/9/16/92).


v2:

"watchdog: sp805_wdt depends on ARM"
Acked by Viresh Kumar (see https://lkml.org/lkml/2012/11/23/296)
Acked by Linus Walleij (see https://lkml.org/lkml/2012/11/28/259).

"mmc: use the new <linux/sizes.h>"
Reviewed by Viresh Kumar (see https://lkml.org/lkml/2012/11/23/328)
Acked by David Brown (see https://lkml.org/lkml/2012/11/26/625)
Acked by Linus Walleij (see https://lkml.org/lkml/2012/12/1/105).

"mmci: replace readsl/writesl with ioread32_rep/iowrite32_rep"
Acked by Linus Walleij (see https://lkml.org/lkml/2012/11/28/266)
Acked by Will Deacon (see https://lkml.org/lkml/2012/12/3/202).

"pl080.h: moved from arm/include/asm/hardware to include/linux/amba/"
Acked by Linus Walleij (see https://lkml.org/lkml/2012/11/28/265).


Alessandro Rubini (6):
  DMA: PL330: use prefix in reg names to build under x86
  pl080.h: moved from arm/include/asm/hardware to include/linux/amba/
  watchdog: sp805_wdt depends on ARM
  mmc: use the new <linux/sizes.h>
  drivers/amba: add support for a PCI bridge
  x86: add CONFIG_ARM_AMBA, selected by STA2X11

Davide Ciminaghi (1):
  mmci: replace readsl/writesl with ioread32_rep/iowrite32_rep

 arch/arm/mach-s3c64xx/dma.c                        |    2 +-
 arch/arm/mach-spear3xx/spear3xx.c                  |    2 +-
 arch/arm/mach-spear6xx/spear6xx.c                  |    2 +-
 arch/x86/Kconfig                                   |    4 +
 drivers/Kconfig                                    |    2 +
 drivers/amba/Kconfig                               |   10 ++
 drivers/amba/Makefile                              |    1 +
 drivers/amba/pci-amba.c                            |   93 +++++++++++++++++
 drivers/dma/amba-pl08x.c                           |    2 +-
 drivers/dma/pl330.c                                |  107 ++++++++++----------
 drivers/mmc/host/mmci.c                            |   10 +-
 drivers/mmc/host/msm_sdcc.c                        |    2 +-
 drivers/mmc/host/mvsdio.c                          |    2 +-
 drivers/mmc/host/mxcmmc.c                          |    2 +-
 drivers/mmc/host/pxamci.c                          |    3 +-
 drivers/watchdog/Kconfig                           |    2 +-
 .../asm/hardware => include/linux/amba}/pl080.h    |    2 +-
 17 files changed, 179 insertions(+), 69 deletions(-)
 create mode 100644 drivers/amba/Kconfig
 create mode 100644 drivers/amba/pci-amba.c
 rename {arch/arm/include/asm/hardware => include/linux/amba}/pl080.h (99%)

-- 
1.7.10.4

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

end of thread, other threads:[~2013-05-06 10:11 UTC | newest]

Thread overview: 27+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-12-10 13:42 [PATCH v4 0/7] enable support for AMBA drivers under x86 Davide Ciminaghi
2012-12-10 13:42 ` [PATCH v4 1/7] DMA: PL330: use prefix in reg names to build " Davide Ciminaghi
2012-12-11  4:25   ` Jassi Brar
2012-12-10 13:42 ` [PATCH v4 2/7] pl080.h: moved from arm/include/asm/hardware to include/linux/amba/ Davide Ciminaghi
2012-12-10 21:44   ` Linus Walleij
2012-12-10 22:25     ` Davide Ciminaghi
2013-01-13 13:25       ` Vinod Koul
2012-12-10 13:42 ` [PATCH v4 3/7] watchdog: sp805_wdt depends on ARM Davide Ciminaghi
     [not found]   ` <20121212212124.GB31853@spo001.leaseweb.com>
2012-12-12 22:20     ` Grant Likely
2012-12-10 13:42 ` [PATCH v4 4/7] mmci: replace readsl/writesl with ioread32_rep/iowrite32_rep Davide Ciminaghi
2012-12-10 13:42 ` [PATCH v4 5/7] mmc: use the new <linux/sizes.h> Davide Ciminaghi
2012-12-10 13:42 ` [PATCH v4 6/7] drivers/amba: add support for a PCI bridge Davide Ciminaghi
2012-12-10 13:42 ` [PATCH v4 7/7] x86: add CONFIG_ARM_AMBA, selected by STA2X11 Davide Ciminaghi
2012-12-13  0:48   ` H. Peter Anvin
2012-12-10 22:15 ` [PATCH v4 0/7] enable support for AMBA drivers under x86 David Brown
2012-12-13  0:37 ` H. Peter Anvin
2012-12-13  1:10   ` Grant Likely
2012-12-13  1:16     ` H. Peter Anvin
2012-12-13  2:02 ` H. Peter Anvin
2012-12-13  2:16   ` H. Peter Anvin
2012-12-13 18:14   ` Alessandro Rubini
2013-05-05 12:36     ` Borislav Petkov
2013-05-05 20:24     ` Alessandro Rubini
2013-05-05 20:39       ` Borislav Petkov
2013-05-06  9:41         ` Ingo Molnar
2013-05-06 10:11           ` Borislav Petkov
2013-05-06  9:54         ` Alessandro Rubini

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