linux-pci.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL] Generic PCI host controller driver for 3.16
@ 2014-05-27 22:40 Will Deacon
  2014-05-28 20:59 ` Bjorn Helgaas
  0 siblings, 1 reply; 4+ messages in thread
From: Will Deacon @ 2014-05-27 22:40 UTC (permalink / raw)
  To: bhelgaas, arnd; +Cc: linux-arm-kernel, linux-pci, jgunthorpe

Hi Bjorn,

Please can you pull my generic PCI host controller driver for 3.16?

It's been doing the rounds on the lists for some time and things have
settled down now, despite a recent failed attempt at factoring out the
configuration space accessors.

Cheers,

Will

--->8

The following changes since commit d6d211db37e75de2ddc3a4f979038c40df7cc79c:

  Linux 3.15-rc5 (2014-05-09 13:10:52 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/will/linux.git for-bjorn/pci-host-generic

for you to fetch changes up to 97725ee5aef64b2056c10eabafc92ff89994733d:

  MAINTAINERS: add entry for generic PCI host controller driver (2014-05-27 23:18:09 +0100)

----------------------------------------------------------------
Will Deacon (2):
      PCI: ARM: add support for generic PCI host controller
      MAINTAINERS: add entry for generic PCI host controller driver

 .../devicetree/bindings/pci/host-generic-pci.txt   | 100 ++++++
 MAINTAINERS                                        |   8 +
 drivers/pci/host/Kconfig                           |   7 +
 drivers/pci/host/Makefile                          |   1 +
 drivers/pci/host/pci-host-generic.c                | 388 +++++++++++++++++++++
 5 files changed, 504 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/pci/host-generic-pci.txt
 create mode 100644 drivers/pci/host/pci-host-generic.c

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

* Re: [GIT PULL] Generic PCI host controller driver for 3.16
  2014-05-27 22:40 [GIT PULL] Generic PCI host controller driver for 3.16 Will Deacon
@ 2014-05-28 20:59 ` Bjorn Helgaas
  2014-05-29  8:25   ` Will Deacon
  0 siblings, 1 reply; 4+ messages in thread
From: Bjorn Helgaas @ 2014-05-28 20:59 UTC (permalink / raw)
  To: Will Deacon; +Cc: arnd, linux-arm-kernel, linux-pci, jgunthorpe

On Tue, May 27, 2014 at 11:40:51PM +0100, Will Deacon wrote:
> Hi Bjorn,
> 
> Please can you pull my generic PCI host controller driver for 3.16?
> 
> It's been doing the rounds on the lists for some time and things have
> settled down now, despite a recent failed attempt at factoring out the
> configuration space accessors.

Is this the same as patches 2 & 3 of your v7 series of May 23?

The only thing I see that is actually ARM-specific is the
pci_common_init_dev() call and struct hw_pci usage.  That makes sense at
this stage of development.  Maybe someday we'll be able to abstract this
enough to make it truly arch-agnostic.

Bjorn

> --->8
> 
> The following changes since commit d6d211db37e75de2ddc3a4f979038c40df7cc79c:
> 
>   Linux 3.15-rc5 (2014-05-09 13:10:52 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/will/linux.git for-bjorn/pci-host-generic
> 
> for you to fetch changes up to 97725ee5aef64b2056c10eabafc92ff89994733d:
> 
>   MAINTAINERS: add entry for generic PCI host controller driver (2014-05-27 23:18:09 +0100)
> 
> ----------------------------------------------------------------
> Will Deacon (2):
>       PCI: ARM: add support for generic PCI host controller
>       MAINTAINERS: add entry for generic PCI host controller driver
> 
>  .../devicetree/bindings/pci/host-generic-pci.txt   | 100 ++++++
>  MAINTAINERS                                        |   8 +
>  drivers/pci/host/Kconfig                           |   7 +
>  drivers/pci/host/Makefile                          |   1 +
>  drivers/pci/host/pci-host-generic.c                | 388 +++++++++++++++++++++
>  5 files changed, 504 insertions(+)
>  create mode 100644 Documentation/devicetree/bindings/pci/host-generic-pci.txt
>  create mode 100644 drivers/pci/host/pci-host-generic.c

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

* Re: [GIT PULL] Generic PCI host controller driver for 3.16
  2014-05-28 20:59 ` Bjorn Helgaas
@ 2014-05-29  8:25   ` Will Deacon
  2014-05-29 22:13     ` Bjorn Helgaas
  0 siblings, 1 reply; 4+ messages in thread
From: Will Deacon @ 2014-05-29  8:25 UTC (permalink / raw)
  To: Bjorn Helgaas
  Cc: arnd@arndb.de, linux-arm-kernel@lists.infradead.org,
	linux-pci@vger.kernel.org, jgunthorpe@obsidianresearch.com

On Wed, May 28, 2014 at 09:59:56PM +0100, Bjorn Helgaas wrote:
> On Tue, May 27, 2014 at 11:40:51PM +0100, Will Deacon wrote:
> > Please can you pull my generic PCI host controller driver for 3.16?
> > 
> > It's been doing the rounds on the lists for some time and things have
> > settled down now, despite a recent failed attempt at factoring out the
> > configuration space accessors.
> 
> Is this the same as patches 2 & 3 of your v7 series of May 23?

Yes, they're identical so you can just pick the two patches from there if
you prefer.

> The only thing I see that is actually ARM-specific is the
> pci_common_init_dev() call and struct hw_pci usage.  That makes sense at
> this stage of development.  Maybe someday we'll be able to abstract this
> enough to make it truly arch-agnostic.

Indeed. I'm hoping Liviu continues with his PCI work for arm64, then I can
port this driver over to that eventually.

Cheers,

Will

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

* Re: [GIT PULL] Generic PCI host controller driver for 3.16
  2014-05-29  8:25   ` Will Deacon
@ 2014-05-29 22:13     ` Bjorn Helgaas
  0 siblings, 0 replies; 4+ messages in thread
From: Bjorn Helgaas @ 2014-05-29 22:13 UTC (permalink / raw)
  To: Will Deacon
  Cc: arnd@arndb.de, linux-arm-kernel@lists.infradead.org,
	linux-pci@vger.kernel.org, jgunthorpe@obsidianresearch.com

On Thu, May 29, 2014 at 2:25 AM, Will Deacon <will.deacon@arm.com> wrote:
> On Wed, May 28, 2014 at 09:59:56PM +0100, Bjorn Helgaas wrote:
>> On Tue, May 27, 2014 at 11:40:51PM +0100, Will Deacon wrote:
>> > Please can you pull my generic PCI host controller driver for 3.16?
>> >
>> > It's been doing the rounds on the lists for some time and things have
>> > settled down now, despite a recent failed attempt at factoring out the
>> > configuration space accessors.
>>
>> Is this the same as patches 2 & 3 of your v7 series of May 23?
>
> Yes, they're identical so you can just pick the two patches from there if
> you prefer.

Great, just wanted to make sure these had been on the list and that
you didn't need me to pick up patch 1 ("ARM: kconfig: allow PCI
support to be selected with ARCH_MULTIPLATFORM") or 4 ("PCI: Generic
Configuration Access Mechanism support").

I put this on my pci/host-generic branch for v3.16, thanks!

Bjorn

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

end of thread, other threads:[~2014-05-29 22:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-05-27 22:40 [GIT PULL] Generic PCI host controller driver for 3.16 Will Deacon
2014-05-28 20:59 ` Bjorn Helgaas
2014-05-29  8:25   ` Will Deacon
2014-05-29 22:13     ` Bjorn Helgaas

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