From: Geert Uytterhoeven <geert+renesas@glider.be>
To: Linus Walleij <linus.walleij@linaro.org>
Cc: linux-gpio@vger.kernel.org, linux-renesas-soc@vger.kernel.org,
Geert Uytterhoeven <geert+renesas@glider.be>
Subject: [GIT PULL] pinctrl: renesas: Updates for v6.11 (take two)
Date: Fri, 28 Jun 2024 15:16:10 +0200 [thread overview]
Message-ID: <cover.1719579513.git.geert+renesas@glider.be> (raw)
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
next reply other threads:[~2024-06-28 13:16 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-06-28 13:16 Geert Uytterhoeven [this message]
2024-06-29 11:49 ` [GIT PULL] pinctrl: renesas: Updates for v6.11 (take two) Geert Uytterhoeven
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.1719579513.git.geert+renesas@glider.be \
--to=geert+renesas@glider.be \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.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).