All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL v2] Renesas ARM and SH based SoC pinmux updates for v3.10
@ 2013-04-03  2:04 ` Simon Horman
  0 siblings, 0 replies; 61+ messages in thread
From: Simon Horman @ 2013-04-03  2:04 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Olof, Hi Arnd,

The following changes since commit 809609a5d8427b0025304dbb69a84a692d11c4f9:

  Merge branch 'soc' into pinmux-base (2013-04-02 11:08:34 +0900)

are available in the git repository at:


  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-pinmux2-for-v3.10

for you to fetch changes up to 202ac6a21a79500ef5aab4cd8665be2597e9345c:

  sh-pfc: r8a73a4: Remove unused GPIO bias data (2013-04-03 10:30:43 +0900)

----------------------------------------------------------------
Second round of Renesas ARM and SH based SoC pinmux updates for v3.10

Highlights:

* Compilation fixes for sh7269 and for when CONFIG_BUG is not set
* sh-pfc Support for r8a73a4 SoC
* Move GPIOs handling from the PFC device to separate GPIO devices on the r8a7779 SoC

This pull request is based on a merge of:
git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas renesas-pinmux-for-v3.10
git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas renesas-soc2-for-v3.10

----------------------------------------------------------------
Laurent Pinchart (14):
      sh-pfc: Fix compiler warning when BUG()
      sh: sh7269: Fix compilation by adding missing includes
      sh-pfc: r8a7779: Remove function GPIOs
      sh-pfc: r8a7779: Don't use GPIO enum entries
      ARM: shmobile: r8a7779: Remove all GPIOs
      gpio-rcar: Add pinctrl support
      ARM: shmobile: marzen: Add GPIO LEDs
      sh-pfc: Make function GPIOs support optional
      sh-pfc: Make GPIO support optional
      sh-pfc: Skip gpiochip registration when no GPIO resource is found
      sh-pfc: Configure pins as GPIOs at request time when handled externally
      ARM: shmobile: r8a7779: Register GPIO devices
      sh-pfc: r8a7779: Remove GPIO data
      sh-pfc: r8a7779: Split DU input and output pixel clocks

Magnus Damm (14):
      gpio: Renesas R-Car GPIO driver V3
      sh-pfc: Add r8a73a4 pinmux support
      sh-pfc: r8a73a4: Support sparse GPIO numbers
      sh-pfc: r8a73a4: GPIO IRQ support
      sh-pfc: r8a73a4: Add bias (pull-up/down) pinconf support
      sh-pfc: r8a73a4: Add SCIF pin groups and functions
      sh-pfc: r8a73a4: Add IRQC pin groups and functions
      sh-pfc: r8a73a4: Remove SCIF function GPIOS
      sh-pfc: r8a73a4: Remove IRQC function GPIOS
      ARM: shmobile: r8a73a4: Remove SCIF function GPIOs
      ARM: shmobile: r8a73a4: Remove IRQC function GPIOs
      sh-pfc: r8a73a4: Remove function GPIOs
      ARM: shmobile: r8a73a4: Remove all GPIO enums
      sh-pfc: r8a73a4: Remove unused GPIO bias data

 arch/arm/mach-shmobile/board-marzen.c         |   32 +
 arch/arm/mach-shmobile/include/mach/r8a7779.h |  317 ---
 arch/arm/mach-shmobile/setup-r8a7779.c        |   58 +-
 arch/sh/kernel/cpu/sh2a/pinmux-sh7269.c       |    2 +
 drivers/gpio/Kconfig                          |    6 +
 drivers/gpio/Makefile                         |    1 +
 drivers/gpio/gpio-rcar.c                      |  396 ++++
 drivers/pinctrl/sh-pfc/Kconfig                |    5 +
 drivers/pinctrl/sh-pfc/Makefile               |    1 +
 drivers/pinctrl/sh-pfc/core.c                 |   41 +-
 drivers/pinctrl/sh-pfc/core.h                 |    1 +
 drivers/pinctrl/sh-pfc/gpio.c                 |   45 +-
 drivers/pinctrl/sh-pfc/pfc-r8a73a4.c          | 2587 +++++++++++++++++++++++++
 drivers/pinctrl/sh-pfc/pfc-r8a7779.c          |  479 +----
 drivers/pinctrl/sh-pfc/pinctrl.c              |   11 +
 include/linux/platform_data/gpio-rcar.h       |   26 +
 16 files changed, 3274 insertions(+), 734 deletions(-)
 create mode 100644 drivers/gpio/gpio-rcar.c
 create mode 100644 drivers/pinctrl/sh-pfc/pfc-r8a73a4.c
 create mode 100644 include/linux/platform_data/gpio-rcar.h

^ permalink raw reply	[flat|nested] 61+ messages in thread
* [GIT PULL] Renesas ARM and SH based SoC pinmux updates for v3.10 #2
@ 2013-04-02  5:09 Simon Horman
  2013-04-02  5:09   ` Simon Horman
  0 siblings, 1 reply; 61+ messages in thread
From: Simon Horman @ 2013-04-02  5:09 UTC (permalink / raw)
  To: linux-arm-kernel

Hi Arnd, Hi Olof,

The following changes since commit 809609a5d8427b0025304dbb69a84a692d11c4f9:

  Merge branch 'soc' into pinmux-base (2013-04-02 11:08:34 +0900)

are available in the git repository at:


  git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas.git tags/renesas-pinmux2-for-v3.10

for you to fetch changes up to bae8c3e07e37c7a8106435fbfe62bd3d7ec2212a:

  sh-pfc: r8a73a4: Remove unused GPIO bias data (2013-04-02 11:11:16 +0900)

----------------------------------------------------------------
Second round of Renesas ARM and SH based SoC pinmux updates for v3.10

Highlights:

* Compilation fixes for sh7269 and for when CONFIG_BUG is not set
* sh-pfc Support for r8a73a4 SoC
* Move GPIOs handling from the PFC device to separate GPIO devices
  on the r8a7779 SoC

This pull request is based on a merge of:
git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas renesas-pinmux-for-v3.10
git://git.kernel.org/pub/scm/linux/kernel/git/horms/renesas renesas-soc2-for-v3.10

----------------------------------------------------------------
Laurent Pinchart (14):
      sh-pfc: Fix compiler warning when BUG()
      sh: sh7269: Fix compilation by adding missing includes
      sh-pfc: r8a7779: Remove function GPIOs
      sh-pfc: r8a7779: Don't use GPIO enum entries
      ARM: shmobile: r8a7779: Remove all GPIOs
      gpio-rcar: Add pinctrl support
      ARM: shmobile: marzen: Add GPIO LEDs
      sh-pfc: Make function GPIOs support optional
      sh-pfc: Make GPIO support optional
      sh-pfc: Skip gpiochip registration when no GPIO resource is found
      sh-pfc: Configure pins as GPIOs at request time when handled externally
      ARM: shmobile: r8a7779: Register GPIO devices
      sh-pfc: r8a7779: Remove GPIO data
      sh-pfc: r8a7779: Split DU input and output pixel clocks

Magnus Damm (14):
      gpio: Renesas R-Car GPIO driver V3
      sh-pfc: Add r8a73a4 pinmux support
      sh-pfc: r8a73a4: Support sparse GPIO numbers
      sh-pfc: r8a73a4: GPIO IRQ support
      sh-pfc: r8a73a4: Add bias (pull-up/down) pinconf support
      sh-pfc: r8a73a4: Add SCIF pin groups and functions
      sh-pfc: r8a73a4: Add IRQC pin groups and functions
      sh-pfc: r8a73a4: Remove SCIF function GPIOS
      sh-pfc: r8a73a4: Remove IRQC function GPIOS
      ARM: shmobile: r8a73a4: Remove SCIF function GPIOs
      ARM: shmobile: r8a73a4: Remove IRQC function GPIOs
      sh-pfc: r8a73a4: Remove function GPIOs
      ARM: shmobile: r8a73a4: Remove all GPIO enums
      sh-pfc: r8a73a4: Remove unused GPIO bias data

 arch/arm/mach-shmobile/board-marzen.c         |   32 +
 arch/arm/mach-shmobile/include/mach/r8a7779.h |  317 ---
 arch/arm/mach-shmobile/setup-r8a7779.c        |   58 +-
 arch/sh/kernel/cpu/sh2a/pinmux-sh7269.c       |    2 +
 drivers/gpio/Kconfig                          |    6 +
 drivers/gpio/Makefile                         |    1 +
 drivers/gpio/gpio-rcar.c                      |  396 ++++
 drivers/pinctrl/sh-pfc/Kconfig                |    5 +
 drivers/pinctrl/sh-pfc/Makefile               |    1 +
 drivers/pinctrl/sh-pfc/core.c                 |   41 +-
 drivers/pinctrl/sh-pfc/core.h                 |    1 +
 drivers/pinctrl/sh-pfc/gpio.c                 |   45 +-
 drivers/pinctrl/sh-pfc/pfc-r8a73a4.c          | 2587 +++++++++++++++++++++++++
 drivers/pinctrl/sh-pfc/pfc-r8a7779.c          |  479 +----
 drivers/pinctrl/sh-pfc/pinctrl.c              |   11 +
 include/linux/platform_data/gpio-rcar.h       |   26 +
 16 files changed, 3274 insertions(+), 734 deletions(-)
 create mode 100644 drivers/gpio/gpio-rcar.c
 create mode 100644 drivers/pinctrl/sh-pfc/pfc-r8a73a4.c
 create mode 100644 include/linux/platform_data/gpio-rcar.h

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

end of thread, other threads:[~2013-04-03  6:25 UTC | newest]

Thread overview: 61+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-03  2:04 [GIT PULL v2] Renesas ARM and SH based SoC pinmux updates for v3.10 Simon Horman
2013-04-03  2:04 ` Simon Horman
2013-04-03  2:04 ` [PATCH 01/28] sh-pfc: Fix compiler warning when BUG() Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 02/28] sh: sh7269: Fix compilation by adding missing includes Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 03/28] sh-pfc: r8a7779: Remove function GPIOs Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 04/28] sh-pfc: r8a7779: Don't use GPIO enum entries Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 05/28] ARM: shmobile: r8a7779: Remove all GPIOs Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 06/28] gpio: Renesas R-Car GPIO driver V3 Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 07/28] gpio-rcar: Add pinctrl support Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 08/28] ARM: shmobile: marzen: Add GPIO LEDs Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 09/28] sh-pfc: Make function GPIOs support optional Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 10/28] sh-pfc: Make GPIO " Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 11/28] sh-pfc: Skip gpiochip registration when no GPIO resource is found Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 12/28] sh-pfc: Configure pins as GPIOs at request time when handled externally Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 13/28] ARM: shmobile: r8a7779: Register GPIO devices Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 14/28] sh-pfc: r8a7779: Remove GPIO data Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 15/28] sh-pfc: r8a7779: Split DU input and output pixel clocks Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 16/28] sh-pfc: Add r8a73a4 pinmux support Simon Horman
2013-04-03  2:04 ` [PATCH 17/28] sh-pfc: r8a73a4: Support sparse GPIO numbers Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 18/28] sh-pfc: r8a73a4: GPIO IRQ support Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 19/28] sh-pfc: r8a73a4: Add bias (pull-up/down) pinconf support Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 20/28] sh-pfc: r8a73a4: Add SCIF pin groups and functions Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:04 ` [PATCH 21/28] sh-pfc: r8a73a4: Add IRQC " Simon Horman
2013-04-03  2:04   ` Simon Horman
2013-04-03  2:05 ` [PATCH 22/28] sh-pfc: r8a73a4: Remove SCIF function GPIOS Simon Horman
2013-04-03  2:05   ` Simon Horman
2013-04-03  2:05 ` [PATCH 23/28] sh-pfc: r8a73a4: Remove IRQC " Simon Horman
2013-04-03  2:05   ` Simon Horman
2013-04-03  2:05 ` [PATCH 24/28] ARM: shmobile: r8a73a4: Remove SCIF function GPIOs Simon Horman
2013-04-03  2:05   ` Simon Horman
2013-04-03  2:05 ` [PATCH 25/28] ARM: shmobile: r8a73a4: Remove IRQC " Simon Horman
2013-04-03  2:05   ` Simon Horman
2013-04-03  2:05 ` [PATCH 26/28] sh-pfc: r8a73a4: Remove " Simon Horman
2013-04-03  2:05   ` Simon Horman
2013-04-03  2:05 ` [PATCH 27/28] ARM: shmobile: r8a73a4: Remove all GPIO enums Simon Horman
2013-04-03  2:05   ` Simon Horman
2013-04-03  2:05 ` [PATCH 28/28] sh-pfc: r8a73a4: Remove unused GPIO bias data Simon Horman
2013-04-03  2:05   ` Simon Horman
2013-04-03  6:25 ` [GIT PULL v2] Renesas ARM and SH based SoC pinmux updates for v3.10 Olof Johansson
2013-04-03  6:25   ` Olof Johansson
  -- strict thread matches above, loose matches on Subject: below --
2013-04-02  5:09 [GIT PULL] Renesas ARM and SH based SoC pinmux updates for v3.10 #2 Simon Horman
2013-04-02  5:09 ` [PATCH 27/28] ARM: shmobile: r8a73a4: Remove all GPIO enums Simon Horman
2013-04-02  5:09   ` Simon Horman

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.