linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
From: jason@lakedaemon.net (Jason Cooper)
To: linux-arm-kernel@lists.infradead.org
Subject: [GIT PULL V3 1/4] mvebu driver changes for v3.10
Date: Fri, 19 Apr 2013 13:21:35 -0400	[thread overview]
Message-ID: <20130419172135.GJ27197@titan.lakedaemon.net> (raw)
In-Reply-To: <51716CD9.4030901@free-electrons.com>


I have dropped:

  9ecbe03 pci: infrastructure to add drivers in drivers/pci/host

Since Gregory said they didn't need it.

thx,

Jason.

The following changes since commit 8bb9660418e05bb1845ac1a2428444d78e322cc7:

  Linux 3.9-rc4 (2013-03-23 16:52:44 -0700)

are available in the git repository at:

  git://git.infradead.org/users/jcooper/linux.git tags/drivers-3.10-2

for you to fetch changes up to a5eddfb24302b9cfb37ce5f0911f090681507fcb:

  clk: mvebu: add more PCIe clocks for Armada XP (2013-04-19 17:15:42 +0000)

----------------------------------------------------------------
mvebu drivers for v3.10 round 2

 - mvebu
    - device bus driver (Acked by gregkh to go through arm-soc)
    - PCIe prep work Acked by appropriate maintainers (of,pci,clk) for arm-soc

----------------------------------------------------------------
Andrew Murray (3):
      of/pci: Unify pci_process_bridge_OF_ranges from Microblaze and PowerPC
      of/pci: Provide support for parsing PCI DT ranges property
      of/pci: mips: convert to common of_pci_range_parser

Ezequiel Garcia (1):
      drivers: memory: Introduce Marvell EBU Device Bus driver

Neil Greatorex (1):
      bus: mvebu-mbus: Restore checking for coherency fabric hardware

Thierry Reding (2):
      of/pci: Add of_pci_get_devfn() function
      of/pci: Add of_pci_parse_bus_range() function

Thomas Petazzoni (4):
      bus: introduce an Marvell EBU MBus driver
      bus: mvebu: fix mistake in PCIe window target attribute for Kirkwood
      clk: mvebu: create parent-child relation for PCIe clocks on Armada 370
      clk: mvebu: add more PCIe clocks for Armada XP

 .../bindings/memory-controllers/mvebu-devbus.txt   | 156 ++++
 arch/microblaze/include/asm/pci-bridge.h           |   5 +-
 arch/microblaze/pci/pci-common.c                   | 192 -----
 arch/mips/pci/pci.c                                |  50 +-
 arch/powerpc/include/asm/pci-bridge.h              |   5 +-
 arch/powerpc/kernel/pci-common.c                   | 192 -----
 drivers/bus/Kconfig                                |   7 +
 drivers/bus/Makefile                               |   1 +
 drivers/bus/mvebu-mbus.c                           | 870 +++++++++++++++++++++
 drivers/clk/mvebu/clk-gating-ctrl.c                |  18 +-
 drivers/memory/Kconfig                             |  10 +
 drivers/memory/Makefile                            |   1 +
 drivers/memory/mvebu-devbus.c                      | 340 ++++++++
 drivers/of/address.c                               |  67 ++
 drivers/of/of_pci.c                                | 228 +++++-
 include/linux/mbus.h                               |  24 +-
 include/linux/of_address.h                         |  46 ++
 include/linux/of_pci.h                             |   6 +
 18 files changed, 1780 insertions(+), 438 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/memory-controllers/mvebu-devbus.txt
 create mode 100644 drivers/bus/mvebu-mbus.c
 create mode 100644 drivers/memory/mvebu-devbus.c




On Fri, Apr 19, 2013 at 06:12:09PM +0200, Gregory CLEMENT wrote:
> On 04/19/2013 04:34 PM, Gregory CLEMENT wrote:
> > On 04/19/2013 04:09 PM, Olof Johansson wrote:
> >> On Wed, Apr 17, 2013 at 10:30 PM, Olof Johansson <olof@lixom.net> wrote:
> >>> On Tue, Apr 16, 2013 at 11:04:16AM -0400, Jason Cooper wrote:
> >>>>
> >>>> The following changes since commit 8bb9660418e05bb1845ac1a2428444d78e322cc7:
> >>>>
> >>>>   Linux 3.9-rc4 (2013-03-23 16:52:44 -0700)
> >>>>
> >>>> are available in the git repository at:
> >>>>
> >>>>   git://git.infradead.org/users/jcooper/linux.git tags/drivers-3.10-2
> >>>>
> >>>> for you to fetch changes up to ac7b07ec369324063e52c37b3fb0ad1a1814d879:
> >>>>
> >>>>   clk: mvebu: add more PCIe clocks for Armada XP (2013-04-16 14:47:01 +0000)
> >>>
> >>> Pulled, thanks.
> >>
> >> Dropped due to build errors on powerpc64. 3.11 material now.
> >>
> > 
> > Wait! That means dropping _all_ the change done in mvebu for 3.10 just
> > for one patch in the of/pci part?
> > 
> > Jason, did you take the accurate patch? Because according to Grant
> > Likely, the build didn't fail on ppc, see:
> > 
> > http://www.spinics.net/lists/arm-kernel/msg238517.html
> 
> I investigated it a little more and my first assumption was wrong,
> the faulty commit was not the one I think. I didn't work directly
> on the PCIe part, and Thomas who did it is currently in the plane.
> 
> So instead of throwing everything, could you just remove the
> offending commit, AFAIK we don't need it yet, (the patch
> depending of this one are located in the mvebu-late/pcie branch):
> 
> 9ecbe03 pci: infrastructure to add drivers in drivers/pci/host
> 
> Thanks!
> 
> > 
> > 
> >>
> >> -Olof
> >>
> > 
> > 
> 
> 
> -- 
> Gregory Clement, Free Electrons
> Kernel, drivers, real-time and embedded Linux
> development, consulting, training and support.
> http://free-electrons.com

  parent reply	other threads:[~2013-04-19 17:21 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-04-15 18:28 [GIT PULL 1/4] mvebu driver changes for v3.10 Jason Cooper
2013-04-16 15:04 ` [GIT PULL V2 " Jason Cooper
2013-04-18  5:30   ` Olof Johansson
2013-04-19 14:09     ` Olof Johansson
2013-04-19 14:34       ` Gregory CLEMENT
2013-04-19 16:12         ` Gregory CLEMENT
2013-04-19 17:15           ` Andrew Murray
2013-04-19 17:21           ` Jason Cooper [this message]
2013-04-19 17:24             ` [GIT PULL V3 " Olof Johansson
2013-04-19 17:41               ` Gregory CLEMENT
2013-04-19 17:50                 ` Olof Johansson

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20130419172135.GJ27197@titan.lakedaemon.net \
    --to=jason@lakedaemon.net \
    --cc=linux-arm-kernel@lists.infradead.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).