linux-pci.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/15] SPEAr13xx PCIe patches
@ 2012-10-29  7:01 Pratyush Anand
  2012-10-29  7:01 ` [PATCH 01/15] arm: source drivers/pci/pcie/kconfig Pratyush Anand
                   ` (15 more replies)
  0 siblings, 16 replies; 39+ messages in thread
From: Pratyush Anand @ 2012-10-29  7:01 UTC (permalink / raw)
  To: arnd, shiraz.hashim, viresh.linux
  Cc: spear-devel, linux-pci, devicetree-discuss, olof, Pratyush Anand

-- First two patches are common for all platforms on ARM architecture.
-- Remaining patches belongs to SPEAr13xx architecture.
-- SPEAr13xx supports both RC and EP mode of PCIe interface. This patchset
	supports only RC mode.


Pratyush Anand (15):
  arm: source drivers/pci/pcie/kconfig
  arm: Call pcie_bus_configure_settings for pcie devices
  SPEAr13xx: Add mach/io.h
  SPEAr13xx: Add PCIe Root Complex driver support
  clk: SPEAr1340: Fix pcie0 clock name
  clk: SPEAr1310: Fix pcie clock name
  SPEAr1340: Add PCIe auxdata for miphy clock initialization
  SPEAr1310: Add PCIe auxdata for miphy clock initialization
  SPEAr13xx: dts: Fix PCIe core address ranges
  SPEAr13xx: DTS: Add auxiliary data for PCIe host
  SPEAr1340-evb: dts: Enable PCIe0
  SPEAr1310-EVB: DTS: Fix PCIe1 enable
  SPEAr13xx: update kconfig for PCIe selection
  SPEAR13xx: Update makefile for PCIe inclusion
  SPEAR13xx: update defconfig for PCIe compilation

 arch/arm/Kconfig                            |    1 +
 arch/arm/boot/dts/spear1310-evb.dts         |    4 -
 arch/arm/boot/dts/spear1340-evb.dts         |    4 +
 arch/arm/boot/dts/spear13xx.dtsi            |   33 +-
 arch/arm/configs/spear13xx_defconfig        |    1 +
 arch/arm/kernel/bios32.c                    |   12 +
 arch/arm/mach-spear13xx/Kconfig             |   12 +
 arch/arm/mach-spear13xx/Makefile            |    1 +
 arch/arm/mach-spear13xx/include/mach/io.h   |   35 +
 arch/arm/mach-spear13xx/include/mach/pcie.h |  233 ++++++
 arch/arm/mach-spear13xx/pcie.c              | 1145 +++++++++++++++++++++++++++
 arch/arm/mach-spear13xx/spear1310.c         |  148 ++++
 arch/arm/mach-spear13xx/spear1340.c         |   26 +
 drivers/clk/spear/spear1310_clock.c         |    6 +-
 drivers/clk/spear/spear1340_clock.c         |    2 +-
 15 files changed, 1651 insertions(+), 12 deletions(-)
 create mode 100644 arch/arm/mach-spear13xx/include/mach/io.h
 create mode 100644 arch/arm/mach-spear13xx/include/mach/pcie.h
 create mode 100644 arch/arm/mach-spear13xx/pcie.c

-- 
1.7.5.4


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

end of thread, other threads:[~2012-11-01  7:26 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-10-29  7:01 [PATCH 00/15] SPEAr13xx PCIe patches Pratyush Anand
2012-10-29  7:01 ` [PATCH 01/15] arm: source drivers/pci/pcie/kconfig Pratyush Anand
2012-10-29  7:01 ` [PATCH 02/15] arm: Call pcie_bus_configure_settings for pcie devices Pratyush Anand
2012-10-29  7:01 ` [PATCH 03/15] SPEAr13xx: Add mach/io.h Pratyush Anand
2012-10-29  7:29   ` viresh kumar
2012-10-29  8:11     ` Pratyush Anand
2012-10-30 21:45       ` Arnd Bergmann
2012-10-31 11:24         ` Pratyush Anand
2012-10-31 22:05           ` Arnd Bergmann
2012-10-29  7:01 ` [PATCH 04/15] SPEAr13xx: Add PCIe Root Complex driver support Pratyush Anand
2012-10-30 22:20   ` Arnd Bergmann
2012-10-31 11:24     ` Pratyush Anand
2012-10-31 22:00       ` Arnd Bergmann
2012-11-01  7:25         ` Pratyush Anand
2012-10-29  7:01 ` [PATCH 05/15] clk: SPEAr1340: Fix pcie0 clock name Pratyush Anand
2012-10-29  7:01 ` [PATCH 06/15] clk: SPEAr1310: Fix pcie " Pratyush Anand
2012-10-29 13:11   ` viresh kumar
2012-10-29  7:01 ` [PATCH 07/15] SPEAr1340: Add PCIe auxdata for miphy clock initialization Pratyush Anand
2012-10-29  7:01 ` [PATCH 08/15] SPEAr1310: " Pratyush Anand
2012-10-30 21:57   ` Arnd Bergmann
2012-10-29  7:01 ` [PATCH 09/15] SPEAr13xx: dts: Fix PCIe core address ranges Pratyush Anand
2012-10-29 13:23   ` viresh kumar
2012-10-30  3:23     ` Pratyush Anand
2012-10-30 21:55   ` Arnd Bergmann
2012-10-31 11:24     ` Pratyush Anand
2012-10-29  7:01 ` [PATCH 10/15] SPEAr13xx: DTS: Add auxiliary data for PCIe host Pratyush Anand
2012-10-29 13:24   ` viresh kumar
2012-10-30  3:24     ` Pratyush Anand
2012-10-30  5:47       ` Viresh Kumar
2012-10-29  7:01 ` [PATCH 11/15] SPEAr1340-evb: dts: Enable PCIe0 Pratyush Anand
2012-10-29  7:01 ` [PATCH 12/15] SPEAr1310-EVB: DTS: Fix PCIe1 enable Pratyush Anand
2012-10-29  7:01 ` [PATCH 13/15] SPEAr13xx: update kconfig for PCIe selection Pratyush Anand
2012-10-29 13:33   ` viresh kumar
2012-10-30  3:25     ` Pratyush Anand
2012-10-29  7:01 ` [PATCH 14/15] SPEAR13xx: Update makefile for PCIe inclusion Pratyush Anand
2012-10-29 13:34   ` viresh kumar
2012-10-29  7:01 ` [PATCH 15/15] SPEAR13xx: update defconfig for PCIe compilation Pratyush Anand
2012-10-29  7:16 ` [PATCH 00/15] SPEAr13xx PCIe patches viresh kumar
2012-10-29  7:22   ` Pratyush Anand

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