From: Mohit Kumar <mohit.kumar@st.com>
To: <pratyush.anand@st.com>, <linux-arm-kernel@lists.infradead.org>,
<spear-devel@list.st.com>, <linux-pci@vger.kernel.org>
Cc: Mohit Kumar <mohit.kumar@st.com>
Subject: [PATCH V2 0/8] PCI: Add SPEAr13xx PCIe support
Date: Thu, 23 Jan 2014 16:26:40 +0530 [thread overview]
Message-ID: <cover.1390471111.git.mohit.kumar@st.com> (raw)
First five patches are improvement and fixes for SPEAr13xx support.
PCIe driver support for SPEAr1310/40 platform board is added.
These patches are tested with SPEAr1310 evaluation board:
- INTEL PRO 100/100 EP card
- USB xhci gen2 card
- Above cards connected through LeCROY PTC switch
Modifications for SATA are tested with SPEAr1340-evb board
Changes since v1:
- Few patches of the series are already accepted and applied to mainline e.g.
pcie designware driver improvements,fixes for IO translation bug, PCIe dw
driver maintainer. So dropped these from v2.
- Incorporated comment to move the common/reset PCIe code to the seperate driver
- PCIe and SATA share common PHY configuration registers, so move SATA
platform code to the system config driver
- Incorporated comments for FUSE_FS option for defconfig
- Incorporated comments to move back the SPEAr1340 definations from .h file
Mohit Kumar (3):
SPEAr13xx: Set dt field entry <stmmac,phy-addr> for phy probe
SPEAr13xx: defconfig: Update
MAINTAINERS: Add ST SPEAr13xx PCIe driver maintainer
Pratyush Anand (5):
ahci: Add a driver_data field to struct ahci_platform_data
SPEAr13xx: Fixup: Move SPEAr1340 SATA platform code to system cfg
driver
clk: SPEAr13xx: Fix pcie clock name
SPEAr13xx: Fix static mapping table
pcie: SPEAr13xx: Add designware pcie support
MAINTAINERS | 6 +
arch/arm/boot/dts/spear13xx.dtsi | 63 ++++-
arch/arm/configs/spear13xx_defconfig | 16 +
arch/arm/mach-spear/Kconfig | 2 +
arch/arm/mach-spear/include/mach/spear.h | 4 +-
arch/arm/mach-spear/spear1340.c | 127 +---------
arch/arm/mach-spear/spear13xx.c | 2 +-
drivers/clk/spear/spear1310_clock.c | 6 +-
drivers/clk/spear/spear1340_clock.c | 2 +-
drivers/mfd/Makefile | 1 +
drivers/mfd/spear13xx-cfg.c | 444 ++++++++++++++++++++++++++++++
drivers/pci/host/Kconfig | 5 +
drivers/pci/host/Makefile | 1 +
drivers/pci/host/pcie-spear13xx.c | 394 ++++++++++++++++++++++++++
include/linux/ahci_platform.h | 1 +
15 files changed, 939 insertions(+), 135 deletions(-)
create mode 100644 drivers/mfd/spear13xx-cfg.c
create mode 100644 drivers/pci/host/pcie-spear13xx.c
WARNING: multiple messages have this Message-ID (diff)
From: mohit.kumar@st.com (Mohit Kumar)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V2 0/8] PCI: Add SPEAr13xx PCIe support
Date: Thu, 23 Jan 2014 16:26:40 +0530 [thread overview]
Message-ID: <cover.1390471111.git.mohit.kumar@st.com> (raw)
First five patches are improvement and fixes for SPEAr13xx support.
PCIe driver support for SPEAr1310/40 platform board is added.
These patches are tested with SPEAr1310 evaluation board:
- INTEL PRO 100/100 EP card
- USB xhci gen2 card
- Above cards connected through LeCROY PTC switch
Modifications for SATA are tested with SPEAr1340-evb board
Changes since v1:
- Few patches of the series are already accepted and applied to mainline e.g.
pcie designware driver improvements,fixes for IO translation bug, PCIe dw
driver maintainer. So dropped these from v2.
- Incorporated comment to move the common/reset PCIe code to the seperate driver
- PCIe and SATA share common PHY configuration registers, so move SATA
platform code to the system config driver
- Incorporated comments for FUSE_FS option for defconfig
- Incorporated comments to move back the SPEAr1340 definations from .h file
Mohit Kumar (3):
SPEAr13xx: Set dt field entry <stmmac,phy-addr> for phy probe
SPEAr13xx: defconfig: Update
MAINTAINERS: Add ST SPEAr13xx PCIe driver maintainer
Pratyush Anand (5):
ahci: Add a driver_data field to struct ahci_platform_data
SPEAr13xx: Fixup: Move SPEAr1340 SATA platform code to system cfg
driver
clk: SPEAr13xx: Fix pcie clock name
SPEAr13xx: Fix static mapping table
pcie: SPEAr13xx: Add designware pcie support
MAINTAINERS | 6 +
arch/arm/boot/dts/spear13xx.dtsi | 63 ++++-
arch/arm/configs/spear13xx_defconfig | 16 +
arch/arm/mach-spear/Kconfig | 2 +
arch/arm/mach-spear/include/mach/spear.h | 4 +-
arch/arm/mach-spear/spear1340.c | 127 +---------
arch/arm/mach-spear/spear13xx.c | 2 +-
drivers/clk/spear/spear1310_clock.c | 6 +-
drivers/clk/spear/spear1340_clock.c | 2 +-
drivers/mfd/Makefile | 1 +
drivers/mfd/spear13xx-cfg.c | 444 ++++++++++++++++++++++++++++++
drivers/pci/host/Kconfig | 5 +
drivers/pci/host/Makefile | 1 +
drivers/pci/host/pcie-spear13xx.c | 394 ++++++++++++++++++++++++++
include/linux/ahci_platform.h | 1 +
15 files changed, 939 insertions(+), 135 deletions(-)
create mode 100644 drivers/mfd/spear13xx-cfg.c
create mode 100644 drivers/pci/host/pcie-spear13xx.c
next reply other threads:[~2014-01-23 10:57 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-01-23 10:56 Mohit Kumar [this message]
2014-01-23 10:56 ` [PATCH V2 0/8] PCI: Add SPEAr13xx PCIe support Mohit Kumar
2014-01-23 10:32 ` [PATCH V2 1/8] SPEAr13xx: Set dt field entry <stmmac, phy-addr> for phy probe Mohit Kumar
2014-01-23 10:32 ` [PATCH V2 1/8] SPEAr13xx: Set dt field entry <stmmac,phy-addr> " Mohit Kumar
2014-01-24 5:02 ` Viresh Kumar
2014-01-24 5:02 ` Viresh Kumar
2014-01-24 6:02 ` Chen-Yu Tsai
2014-01-24 6:02 ` Chen-Yu Tsai
2014-01-24 6:51 ` Mohit KUMAR DCG
2014-01-24 6:51 ` Mohit KUMAR DCG
2014-01-23 10:32 ` [PATCH V2 2/8] SPEAr13xx: defconfig: Update Mohit Kumar
2014-01-24 5:03 ` Viresh Kumar
2014-01-23 10:32 ` [PATCH V2 3/8] ahci: Add a driver_data field to struct ahci_platform_data Mohit Kumar
2014-01-23 10:32 ` Mohit Kumar
2014-01-23 11:36 ` Tejun Heo
2014-01-23 11:36 ` Tejun Heo
2014-01-24 3:37 ` Pratyush Anand
2014-01-24 3:37 ` Pratyush Anand
2014-01-23 10:32 ` [PATCH V2 4/8] SPEAr13xx: Fixup: Move SPEAr1340 SATA platform code to system cfg driver Mohit Kumar
2014-01-23 10:32 ` Mohit Kumar
2014-01-23 12:22 ` Arnd Bergmann
2014-01-23 12:22 ` Arnd Bergmann
2014-01-24 4:29 ` Pratyush Anand
2014-01-24 4:29 ` Pratyush Anand
2014-01-24 20:53 ` Arnd Bergmann
2014-01-24 20:53 ` Arnd Bergmann
2014-01-25 5:36 ` Pratyush Anand
2014-01-25 5:36 ` Pratyush Anand
2014-01-23 10:32 ` [PATCH V2 5/8] clk: SPEAr13xx: Fix pcie clock name Mohit Kumar
2014-01-24 5:05 ` Viresh Kumar
2014-01-23 10:32 ` [PATCH V2 6/8] SPEAr13xx: Fix static mapping table Mohit Kumar
2014-01-23 12:12 ` Arnd Bergmann
2014-01-24 3:47 ` Pratyush Anand
2014-01-24 5:07 ` Viresh Kumar
2014-01-24 5:27 ` Pratyush Anand
2014-01-23 10:32 ` [PATCH V2 7/8] pcie: SPEAr13xx: Add designware pcie support Mohit Kumar
2014-01-24 8:13 ` Jingoo Han
2014-01-24 8:24 ` Pratyush Anand
2014-01-23 10:32 ` [PATCH V2 8/8] MAINTAINERS: Add ST SPEAr13xx PCIe driver maintainer Mohit Kumar
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=cover.1390471111.git.mohit.kumar@st.com \
--to=mohit.kumar@st.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-pci@vger.kernel.org \
--cc=pratyush.anand@st.com \
--cc=spear-devel@list.st.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.