mbox series

[GIT,PULL] pinctrl: renesas: Updates for v6.11 (take two)

Message ID cover.1719579513.git.geert+renesas@glider.be
State New
Headers show
Series [GIT,PULL] pinctrl: renesas: Updates for v6.11 (take two) | expand

Pull-request

git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git tags/renesas-pinctrl-for-v6.11-tag2

Message

Geert Uytterhoeven June 28, 2024, 1:16 p.m. UTC
Hi Linus,

The following changes since commit 9bd95ac86e700ab8b1a6c225685e0e5afe426b4e:

  pinctrl: renesas: rzg2l: Add support for RZ/V2H SoC (2024-06-11 09:50:25 +0200)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git tags/renesas-pinctrl-for-v6.11-tag2

for you to fetch changes up to fb0024d1d0742b1a1c97cfb05025913daccfd81f:

  pinctrl: renesas: r8a779h0: Remove unneeded separators (2024-06-27 18:14:02 +0200)

----------------------------------------------------------------
pinctrl: renesas: Updates for v6.11 (take two)

  - Add R-Car Gen3 fuse support,
  - Fix ambiguous and inconsistent pin group names on R-Car V4H,
  - Add MII Ethernet PHY and external interrupt pin groups on R-Car V4H,
  - Miscellaneous fixes and improvements.

Note that the new R-Car Fuse DT bindings, and/or driver and platform
data are shared by multiple driver and DT source files, and thus
included in multiple pull requests:
  - "[GIT PULL] pinctrl: renesas: Updates for v6.11 (take two)",
  - "[GIT PULL 1/3] Renesas driver updates for v6.11" (for soc),
  - "[GIT PULL 2/3] Renesas DT binding updates for v6.11" (for soc),
  - "[GIT PULL 3/3] Renesas DTS updates for v6.11 (take two)" (for soc).

Thanks for pulling!

----------------------------------------------------------------
Geert Uytterhoeven (17):
      dt-bindings: fuse: Document R-Car E-FUSE / PFC
      dt-bindings: fuse: Document R-Car E-FUSE / OTP_MEM
      soc: renesas: Add R-Car fuse driver
      Merge tag 'renesas-rcar-fuse-tag' into renesas-pinctrl-for-v6.11
      pinctrl: renesas: Add R-Car Gen3 fuse support
      pinctrl: renesas: r8a779g0: Fix CANFD5 suffix
      pinctrl: renesas: r8a779g0: Fix FXR_TXEN[AB] suffixes
      pinctrl: renesas: r8a779g0: Fix (H)SCIF1 suffixes
      pinctrl: renesas: r8a779g0: Fix (H)SCIF3 suffixes
      pinctrl: renesas: r8a779g0: Fix IRQ suffixes
      pinctrl: renesas: r8a779g0: FIX PWM suffixes
      pinctrl: renesas: r8a779g0: Fix TCLK suffixes
      pinctrl: renesas: r8a779g0: Fix TPU suffixes
      pinctrl: renesas: r8a779h0: Add AVB MII pins and groups
      pinctrl: renesas: r8a779g0: Remove unneeded separators
      pinctrl: renesas: r8a779g0: Add INTC-EX pins, groups, and function
      pinctrl: renesas: r8a779h0: Remove unneeded separators

Lad Prabhakar (4):
      pinctrl: renesas: rzg2l: Update PIN_CFG_MASK() macro to be 32-bit wide
      pinctrl: renesas: rzg2l: Adjust bit masks for PIN_CFG_VARIABLE to use BIT(62)
      pinctrl: renesas: rzg2l: Move RZG2L_SINGLE_PIN definition to top of the file
      pinctrl: renesas: rzg2l: Reorganize variable configuration macro

Michał Mirosław (1):
      pinctrl: renesas: sh73a0: Use rdev_get_drvdata()

 .../bindings/fuse/renesas,rcar-efuse.yaml          |  55 ++
 .../devicetree/bindings/fuse/renesas,rcar-otp.yaml |  38 +
 drivers/pinctrl/renesas/core.c                     |  18 +
 drivers/pinctrl/renesas/pfc-r8a77951.c             |   2 +
 drivers/pinctrl/renesas/pfc-r8a7796.c              |   4 +
 drivers/pinctrl/renesas/pfc-r8a77965.c             |   2 +
 drivers/pinctrl/renesas/pfc-r8a77970.c             |   2 +
 drivers/pinctrl/renesas/pfc-r8a77980.c             |  14 +-
 drivers/pinctrl/renesas/pfc-r8a77990.c             |   2 +
 drivers/pinctrl/renesas/pfc-r8a77995.c             |   2 +
 drivers/pinctrl/renesas/pfc-r8a779g0.c             | 830 ++++++++++++---------
 drivers/pinctrl/renesas/pfc-r8a779h0.c             |  82 +-
 drivers/pinctrl/renesas/pfc-sh73a0.c               |   4 +-
 drivers/pinctrl/renesas/pinctrl-rzg2l.c            |  59 +-
 drivers/pinctrl/renesas/sh_pfc.h                   |   4 +-
 drivers/soc/renesas/Kconfig                        |   8 +
 drivers/soc/renesas/Makefile                       |   1 +
 drivers/soc/renesas/rcar-fuse.c                    | 201 +++++
 include/linux/platform_data/rcar_fuse.h            |  11 +
 include/linux/soc/renesas/rcar-fuse.h              |  41 +
 20 files changed, 960 insertions(+), 420 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/fuse/renesas,rcar-efuse.yaml
 create mode 100644 Documentation/devicetree/bindings/fuse/renesas,rcar-otp.yaml
 create mode 100644 drivers/soc/renesas/rcar-fuse.c
 create mode 100644 include/linux/platform_data/rcar_fuse.h
 create mode 100644 include/linux/soc/renesas/rcar-fuse.h

Gr{oetje,eeting}s,

						Geert

--
Geert Uytterhoeven -- There's lots of Linux beyond ia32 -- geert@linux-m68k.org

In personal conversations with technical people, I call myself a hacker. But
when I'm talking to journalists I just say "programmer" or something like that.
							    -- Linus Torvalds

Comments

Geert Uytterhoeven June 29, 2024, 11:49 a.m. UTC | #1
Hi Linus,

On Fri, Jun 28, 2024 at 3:16 PM Geert Uytterhoeven
<geert+renesas@glider.be> wrote:
> The following changes since commit 9bd95ac86e700ab8b1a6c225685e0e5afe426b4e:
>
>   pinctrl: renesas: rzg2l: Add support for RZ/V2H SoC (2024-06-11 09:50:25 +0200)
>
> are available in the Git repository at:
>
>   git://git.kernel.org/pub/scm/linux/kernel/git/geert/renesas-drivers.git tags/renesas-pinctrl-for-v6.11-tag2
>
> for you to fetch changes up to fb0024d1d0742b1a1c97cfb05025913daccfd81f:
>
>   pinctrl: renesas: r8a779h0: Remove unneeded separators (2024-06-27 18:14:02 +0200)
>
> ----------------------------------------------------------------
> pinctrl: renesas: Updates for v6.11 (take two)
>
>   - Add R-Car Gen3 fuse support,
>   - Fix ambiguous and inconsistent pin group names on R-Car V4H,
>   - Add MII Ethernet PHY and external interrupt pin groups on R-Car V4H,
>   - Miscellaneous fixes and improvements.
>
> Note that the new R-Car Fuse DT bindings, and/or driver and platform
> data are shared by multiple driver and DT source files, and thus
> included in multiple pull requests:
>   - "[GIT PULL] pinctrl: renesas: Updates for v6.11 (take two)",
>   - "[GIT PULL 1/3] Renesas driver updates for v6.11" (for soc),
>   - "[GIT PULL 2/3] Renesas DT binding updates for v6.11" (for soc),
>   - "[GIT PULL 3/3] Renesas DTS updates for v6.11 (take two)" (for soc).
>
> Thanks for pulling!

Please hold off merging this.  Arnd pointed out some issues with the
fuse driver.
I will send a new PR this Monday.
Sorry for the trouble.

Gr{oetje,eeting}s,

                        Geert