From: viresh.kumar@st.com (Viresh Kumar)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH V3 0/4] pinctrl: Add SPEAr pinctrl support
Date: Thu, 12 Apr 2012 10:54:33 +0530 [thread overview]
Message-ID: <cover.1334207964.git.viresh.kumar@st.com> (raw)
This patchset replaces existing pinmux framework for SPEAr family of SoC with
generic pinctrl framework.
@Linus: I would need your Acks on it, after which i will take it through ARM-SoC
tree, as it has dependency on that.
V2->V3
- Add DT bindings for pinmux mappings for SPEAr
- Pass pin maps from dtb instead of mach-spear3xx/spear3*0.c files
- use of_iomap() instead of devm_ioremap() and platform_get_resource()
V1->V2
- Earlier padmux support removed
- single patch for spear pinctrl drivers broken into two: one for spear and
other for 3xx family
- add pinctrl support in arch/arm/mach-spear3xx/ and dts files
- pinctrl-spear.* made as library instead of platform driver
- pinctrl-spear300, spear310, spear320 are now platform drivers
- other minor fixes.
Viresh Kumar (4):
SPEAr: Remove existing padmux support for SPEAr
pinctrl: Add SPEAr pinctrl drivers
pinctrl: Add SPEAr3xx pinctrl drivers
SPEAr3xx: Add pinctrl support for boards
.../devicetree/bindings/pinctrl/pinctrl_spear.txt | 48 +
MAINTAINERS | 23 +-
arch/arm/boot/dts/spear300-evb.dts | 38 +
arch/arm/boot/dts/spear300.dtsi | 5 +
arch/arm/boot/dts/spear310-evb.dts | 61 +
arch/arm/boot/dts/spear310.dtsi | 5 +
arch/arm/boot/dts/spear320-evb.dts | 61 +
arch/arm/boot/dts/spear320.dtsi | 7 +-
arch/arm/mach-spear3xx/Kconfig | 3 +
arch/arm/mach-spear3xx/include/mach/generic.h | 128 -
arch/arm/mach-spear3xx/spear300.c | 389 +---
arch/arm/mach-spear3xx/spear310.c | 161 +-
arch/arm/mach-spear3xx/spear320.c | 403 +---
arch/arm/mach-spear3xx/spear3xx.c | 425 ---
arch/arm/plat-spear/Kconfig | 1 +
arch/arm/plat-spear/Makefile | 2 +-
arch/arm/plat-spear/include/plat/padmux.h | 92 -
arch/arm/plat-spear/padmux.c | 164 -
drivers/pinctrl/Kconfig | 2 +
drivers/pinctrl/Makefile | 2 +
drivers/pinctrl/spear/Kconfig | 34 +
drivers/pinctrl/spear/Makefile | 7 +
drivers/pinctrl/spear/pinctrl-spear.c | 349 ++
drivers/pinctrl/spear/pinctrl-spear.h | 142 +
drivers/pinctrl/spear/pinctrl-spear300.c | 708 ++++
drivers/pinctrl/spear/pinctrl-spear310.c | 431 +++
drivers/pinctrl/spear/pinctrl-spear320.c | 3468 ++++++++++++++++++++
drivers/pinctrl/spear/pinctrl-spear3xx.c | 588 ++++
drivers/pinctrl/spear/pinctrl-spear3xx.h | 92 +
29 files changed, 6063 insertions(+), 1776 deletions(-)
create mode 100644 Documentation/devicetree/bindings/pinctrl/pinctrl_spear.txt
delete mode 100644 arch/arm/plat-spear/include/plat/padmux.h
delete mode 100644 arch/arm/plat-spear/padmux.c
create mode 100644 drivers/pinctrl/spear/Kconfig
create mode 100644 drivers/pinctrl/spear/Makefile
create mode 100644 drivers/pinctrl/spear/pinctrl-spear.c
create mode 100644 drivers/pinctrl/spear/pinctrl-spear.h
create mode 100644 drivers/pinctrl/spear/pinctrl-spear300.c
create mode 100644 drivers/pinctrl/spear/pinctrl-spear310.c
create mode 100644 drivers/pinctrl/spear/pinctrl-spear320.c
create mode 100644 drivers/pinctrl/spear/pinctrl-spear3xx.c
create mode 100644 drivers/pinctrl/spear/pinctrl-spear3xx.h
--
1.7.9
next reply other threads:[~2012-04-12 5:24 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-04-12 5:24 Viresh Kumar [this message]
2012-04-12 5:24 ` [PATCH V3 1/4] SPEAr: Remove existing padmux support for SPEAr Viresh Kumar
2012-04-13 13:00 ` Linus Walleij
2012-04-12 5:24 ` [PATCH V3 2/4] pinctrl: Add SPEAr pinctrl drivers Viresh Kumar
2012-04-13 13:01 ` Linus Walleij
2012-04-13 16:08 ` Stephen Warren
2012-04-16 3:35 ` Viresh Kumar
2012-04-12 5:24 ` [PATCH V3 4/4] SPEAr3xx: Add pinctrl support for boards Viresh Kumar
2012-04-13 13:05 ` Linus Walleij
2012-04-13 16:18 ` Stephen Warren
2012-04-16 3:37 ` Viresh Kumar
2012-04-16 18:05 ` Stephen Warren
[not found] ` <61fe5fe87fdddfc66d21d82b1039de3782b50201.1334207964.git.viresh.kumar@st.com>
2012-04-13 13:04 ` [PATCH V3 3/4] pinctrl: Add SPEAr3xx pinctrl drivers Linus Walleij
2012-04-13 16:13 ` Stephen Warren
2012-04-16 3:35 ` Viresh 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.1334207964.git.viresh.kumar@st.com \
--to=viresh.kumar@st.com \
--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).