All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v2 0/7] This series adds pinctrl drivers for UniPhier SoC family.
@ 2015-07-14  2:40 ` Masahiro Yamada
  0 siblings, 0 replies; 44+ messages in thread
From: Masahiro Yamada @ 2015-07-14  2:40 UTC (permalink / raw)
  To: linux-gpio; +Cc: Masahiro Yamada, Linus Walleij, linux-kernel, linux-arm-kernel

1/7: core support code commonly used for all the pinctrl drivers.
2/7-7/7: driver for each SoC



Masahiro Yamada (7):
  pinctrl: UniPhier: add UniPhier pinctrl core support
  pinctrl: UniPhier: add UniPhier PH1-LD4 pinctrl driver
  pinctrl: UniPhier: add UniPhier PH1-Pro4 pinctrl driver
  pinctrl: UniPhier: add UniPhier PH1-sLD8 pinctrl driver
  pinctrl: UniPhier: add UniPhier PH1-Pro5 pinctrl driver
  pinctrl: UniPhier: add UniPhier ProXstream2 pinctrl driver
  pinctrl: UniPhier: add UniPhier PH1-LD6b pinctrl driver

 drivers/pinctrl/Kconfig                          |    1 +
 drivers/pinctrl/Makefile                         |    1 +
 drivers/pinctrl/uniphier/Kconfig                 |   32 +
 drivers/pinctrl/uniphier/Makefile                |    8 +
 drivers/pinctrl/uniphier/pinctrl-ph1-ld4.c       |  886 ++++++++++++
 drivers/pinctrl/uniphier/pinctrl-ph1-ld6b.c      | 1274 ++++++++++++++++++
 drivers/pinctrl/uniphier/pinctrl-ph1-pro4.c      | 1554 ++++++++++++++++++++++
 drivers/pinctrl/uniphier/pinctrl-ph1-pro5.c      | 1346 +++++++++++++++++++
 drivers/pinctrl/uniphier/pinctrl-ph1-sld8.c      |  794 +++++++++++
 drivers/pinctrl/uniphier/pinctrl-proxstream2.c   | 1269 ++++++++++++++++++
 drivers/pinctrl/uniphier/pinctrl-uniphier-core.c |  684 ++++++++++
 drivers/pinctrl/uniphier/pinctrl-uniphier.h      |  217 +++
 12 files changed, 8066 insertions(+)
 create mode 100644 drivers/pinctrl/uniphier/Kconfig
 create mode 100644 drivers/pinctrl/uniphier/Makefile
 create mode 100644 drivers/pinctrl/uniphier/pinctrl-ph1-ld4.c
 create mode 100644 drivers/pinctrl/uniphier/pinctrl-ph1-ld6b.c
 create mode 100644 drivers/pinctrl/uniphier/pinctrl-ph1-pro4.c
 create mode 100644 drivers/pinctrl/uniphier/pinctrl-ph1-pro5.c
 create mode 100644 drivers/pinctrl/uniphier/pinctrl-ph1-sld8.c
 create mode 100644 drivers/pinctrl/uniphier/pinctrl-proxstream2.c
 create mode 100644 drivers/pinctrl/uniphier/pinctrl-uniphier-core.c
 create mode 100644 drivers/pinctrl/uniphier/pinctrl-uniphier.h

-- 
1.9.1

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

end of thread, other threads:[~2015-07-20  9:18 UTC | newest]

Thread overview: 44+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-07-14  2:40 [PATCH v2 0/7] This series adds pinctrl drivers for UniPhier SoC family Masahiro Yamada
2015-07-14  2:40 ` Masahiro Yamada
2015-07-14  2:40 ` Masahiro Yamada
2015-07-14  2:40 ` [PATCH v2 1/7] pinctrl: UniPhier: add UniPhier pinctrl core support Masahiro Yamada
2015-07-14  2:40   ` Masahiro Yamada
2015-07-16  7:20   ` Linus Walleij
2015-07-16  7:20     ` Linus Walleij
2015-07-16  7:20     ` Linus Walleij
2015-07-19  4:19     ` Masahiro Yamada
2015-07-19  4:19       ` Masahiro Yamada
2015-07-19  4:19       ` Masahiro Yamada
2015-07-20  9:18       ` Linus Walleij
2015-07-20  9:18         ` Linus Walleij
2015-07-20  9:18         ` Linus Walleij
2015-07-14  2:40 ` [PATCH v2 2/7] pinctrl: UniPhier: add UniPhier PH1-LD4 pinctrl driver Masahiro Yamada
2015-07-14  2:40   ` Masahiro Yamada
2015-07-16  7:22   ` Linus Walleij
2015-07-16  7:22     ` Linus Walleij
2015-07-16  7:22     ` Linus Walleij
2015-07-14  2:40 ` [PATCH v2 3/7] pinctrl: UniPhier: add UniPhier PH1-Pro4 " Masahiro Yamada
2015-07-14  2:40   ` Masahiro Yamada
2015-07-16  7:28   ` Linus Walleij
2015-07-16  7:28     ` Linus Walleij
2015-07-16  7:28     ` Linus Walleij
2015-07-14  2:40 ` [PATCH v2 4/7] pinctrl: UniPhier: add UniPhier PH1-sLD8 " Masahiro Yamada
2015-07-14  2:40   ` Masahiro Yamada
2015-07-16  7:29   ` Linus Walleij
2015-07-16  7:29     ` Linus Walleij
2015-07-16  7:29     ` Linus Walleij
2015-07-14  2:40 ` [PATCH v2 5/7] pinctrl: UniPhier: add UniPhier PH1-Pro5 " Masahiro Yamada
2015-07-14  2:40   ` Masahiro Yamada
2015-07-16  7:31   ` Linus Walleij
2015-07-16  7:31     ` Linus Walleij
2015-07-16  7:31     ` Linus Walleij
2015-07-14  2:40 ` [PATCH v2 6/7] pinctrl: UniPhier: add UniPhier ProXstream2 " Masahiro Yamada
2015-07-14  2:40   ` Masahiro Yamada
2015-07-16  7:33   ` Linus Walleij
2015-07-16  7:33     ` Linus Walleij
2015-07-16  7:33     ` Linus Walleij
2015-07-14  2:40 ` [PATCH v2 7/7] pinctrl: UniPhier: add UniPhier PH1-LD6b " Masahiro Yamada
2015-07-14  2:40   ` Masahiro Yamada
2015-07-16  7:36   ` Linus Walleij
2015-07-16  7:36     ` Linus Walleij
2015-07-16  7:36     ` Linus Walleij

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.