From: claudiu beznea <claudiu.beznea@tuxon.dev>
To: Prabhakar <prabhakar.csengg@gmail.com>,
Geert Uytterhoeven <geert+renesas@glider.be>,
Linus Walleij <linus.walleij@linaro.org>,
Rob Herring <robh@kernel.org>,
Krzysztof Kozlowski <krzk+dt@kernel.org>,
Conor Dooley <conor+dt@kernel.org>,
Magnus Damm <magnus.damm@gmail.com>
Cc: linux-renesas-soc@vger.kernel.org, linux-gpio@vger.kernel.org,
devicetree@vger.kernel.org, linux-kernel@vger.kernel.org,
Biju Das <biju.das.jz@bp.renesas.com>,
Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com>,
Fabrizio Castro <fabrizio.castro.jz@renesas.com>,
Paul Barker <paul.barker.ct@bp.renesas.com>,
Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Subject: Re: [PATCH v3 03/15] pinctrl: renesas: pinctrl-rzg2l: Allow more bits for pin configuration
Date: Mon, 10 Jun 2024 08:52:34 +0300 [thread overview]
Message-ID: <0a415c23-2ab6-4297-b804-7b72ddccc770@tuxon.dev> (raw)
In-Reply-To: <20240530173857.164073-4-prabhakar.mahadev-lad.rj@bp.renesas.com>
On 30.05.2024 20:38, Prabhakar wrote:
> From: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
>
> The pin configuration bits have been growing for every new SoCs being
> added for the pinctrl-rzg2l driver which would mean updating the macros
> every time for each new configuration. To avoid this allocate additional
> bits for pin configuration by relocating the known fixed bits to the very
> end of the configuration.
>
> Also update the size of 'cfg' to 'u64' to allow more configuration bits in
> the 'struct rzg2l_variable_pin_cfg'.
>
> Signed-off-by: Lad Prabhakar <prabhakar.mahadev-lad.rj@bp.renesas.com>
Tested-by: Claudiu Beznea <claudiu.beznea.uj@bp.renesas.com> # on RZ/G3S
> ---
> v2->v3
> - Updated size for cfg in struct rzg2l_variable_pin_cfg
>
> RFC->v2
> - Merged the macros and rzg2l_variable_pin_cfg changes into single patch
> - Updated types for the config changes
> ---
> drivers/pinctrl/renesas/pinctrl-rzg2l.c | 30 ++++++++++++++-----------
> 1 file changed, 17 insertions(+), 13 deletions(-)
>
> diff --git a/drivers/pinctrl/renesas/pinctrl-rzg2l.c b/drivers/pinctrl/renesas/pinctrl-rzg2l.c
> index 169986022a73..fe810d8dfa58 100644
> --- a/drivers/pinctrl/renesas/pinctrl-rzg2l.c
> +++ b/drivers/pinctrl/renesas/pinctrl-rzg2l.c
> @@ -78,9 +78,9 @@
> PIN_CFG_FILNUM | \
> PIN_CFG_FILCLKSEL)
>
> -#define PIN_CFG_PIN_MAP_MASK GENMASK_ULL(35, 28)
> -#define PIN_CFG_PIN_REG_MASK GENMASK(27, 20)
> -#define PIN_CFG_MASK GENMASK(19, 0)
> +#define PIN_CFG_PIN_MAP_MASK GENMASK_ULL(62, 55)
> +#define PIN_CFG_PIN_REG_MASK GENMASK_ULL(54, 47)
> +#define PIN_CFG_MASK GENMASK_ULL(46, 0)
>
> /*
> * m indicates the bitmap of supported pins, a is the register index
> @@ -102,8 +102,8 @@
> * (b * 8) and f is the pin configuration capabilities supported.
> */
> #define RZG2L_SINGLE_PIN BIT_ULL(63)
> -#define RZG2L_SINGLE_PIN_INDEX_MASK GENMASK(30, 24)
> -#define RZG2L_SINGLE_PIN_BITS_MASK GENMASK(22, 20)
> +#define RZG2L_SINGLE_PIN_INDEX_MASK GENMASK_ULL(62, 56)
> +#define RZG2L_SINGLE_PIN_BITS_MASK GENMASK_ULL(55, 53)
>
> #define RZG2L_SINGLE_PIN_PACK(p, b, f) (RZG2L_SINGLE_PIN | \
> FIELD_PREP_CONST(RZG2L_SINGLE_PIN_INDEX_MASK, (p)) | \
> @@ -241,9 +241,9 @@ struct rzg2l_dedicated_configs {
> * @pin: port pin
> */
> struct rzg2l_variable_pin_cfg {
> - u32 cfg:20;
> - u32 port:5;
> - u32 pin:3;
> + u64 cfg:47;
> + u64 port:5;
> + u64 pin:3;
> };
>
> struct rzg2l_pinctrl_data {
> @@ -1081,7 +1081,8 @@ static int rzg2l_pinctrl_pinconf_get(struct pinctrl_dev *pctldev,
> const struct pinctrl_pin_desc *pin = &pctrl->desc.pins[_pin];
> u64 *pin_data = pin->drv_data;
> unsigned int arg = 0;
> - u32 off, cfg;
> + u32 off;
> + u64 cfg;
> int ret;
> u8 bit;
>
> @@ -1185,7 +1186,8 @@ static int rzg2l_pinctrl_pinconf_set(struct pinctrl_dev *pctldev,
> u64 *pin_data = pin->drv_data;
> enum pin_config_param param;
> unsigned int i, arg, index;
> - u32 cfg, off;
> + u32 off;
> + u64 cfg;
> int ret;
> u8 bit;
>
> @@ -2413,9 +2415,9 @@ static void rzg2l_pinctrl_pm_setup_regs(struct rzg2l_pinctrl *pctrl, bool suspen
>
> for (u32 port = 0; port < nports; port++) {
> bool has_iolh, has_ien;
> - u32 off, caps;
> + u64 cfg, caps;
> u8 pincnt;
> - u64 cfg;
> + u32 off;
>
> cfg = pctrl->data->port_pin_configs[port];
> off = RZG2L_PIN_CFG_TO_PORT_OFFSET(cfg);
> @@ -2459,12 +2461,14 @@ static void rzg2l_pinctrl_pm_setup_regs(struct rzg2l_pinctrl *pctrl, bool suspen
> static void rzg2l_pinctrl_pm_setup_dedicated_regs(struct rzg2l_pinctrl *pctrl, bool suspend)
> {
> struct rzg2l_pinctrl_reg_cache *cache = pctrl->dedicated_cache;
> + u64 caps;
> + u32 i;
>
> /*
> * Make sure entries in pctrl->data->n_dedicated_pins[] having the same
> * port offset are close together.
> */
> - for (u32 i = 0, caps = 0; i < pctrl->data->n_dedicated_pins; i++) {
> + for (i = 0, caps = 0; i < pctrl->data->n_dedicated_pins; i++) {
> bool has_iolh, has_ien;
> u32 off, next_off = 0;
> u64 cfg, next_cfg;
next prev parent reply other threads:[~2024-06-10 5:52 UTC|newest]
Thread overview: 43+ messages / expand[flat|nested] mbox.gz Atom feed top
2024-05-30 17:38 [PATCH v3 00/15] Add PFC support for Renesas RZ/V2H(P) SoC Prabhakar
2024-05-30 17:38 ` [PATCH v3 01/15] dt-bindings: pinctrl: renesas: Document " Prabhakar
2024-06-04 15:36 ` Rob Herring
2024-06-05 9:39 ` Lad, Prabhakar
2024-06-06 7:13 ` Geert Uytterhoeven
2024-06-06 8:37 ` Lad, Prabhakar
2024-06-06 8:40 ` Geert Uytterhoeven
2024-06-06 8:43 ` Lad, Prabhakar
2024-05-30 17:38 ` [PATCH v3 02/15] pinctrl: renesas: pinctrl-rzg2l: Rename B0WI to BOWI Prabhakar
2024-06-05 11:39 ` Geert Uytterhoeven
2024-06-05 15:42 ` Lad, Prabhakar
2024-06-10 5:52 ` claudiu beznea
2024-05-30 17:38 ` [PATCH v3 03/15] pinctrl: renesas: pinctrl-rzg2l: Allow more bits for pin configuration Prabhakar
2024-06-05 11:41 ` Geert Uytterhoeven
2024-06-10 5:52 ` claudiu beznea [this message]
2024-05-30 17:38 ` [PATCH v3 04/15] pinctrl: renesas: pinctrl-rzg2l: Drop struct rzg2l_variable_pin_cfg Prabhakar
2024-06-05 11:46 ` Geert Uytterhoeven
2024-06-10 5:52 ` claudiu beznea
2024-05-30 17:38 ` [PATCH v3 05/15] pinctrl: renesas: pinctrl-rzg2l: Allow parsing of variable configuration for all architectures Prabhakar
2024-06-10 5:53 ` claudiu beznea
2024-05-30 17:38 ` [PATCH v3 06/15] pinctrl: renesas: pinctrl-rzg2l: Validate power registers for SD and ETH Prabhakar
2024-06-10 5:53 ` claudiu beznea
2024-05-30 17:38 ` [PATCH v3 07/15] pinctrl: renesas: pinctrl-rzg2l: Add function pointer for locking/unlocking the PFC register Prabhakar
2024-06-05 11:52 ` Geert Uytterhoeven
2024-06-10 5:53 ` claudiu beznea
2024-05-30 17:38 ` [PATCH v3 08/15] pinctrl: renesas: pinctrl-rzg2l: Add function pointer for writing to PMC register Prabhakar
2024-06-05 12:13 ` Geert Uytterhoeven
2024-06-10 5:53 ` claudiu beznea
2024-05-30 17:38 ` [PATCH v3 09/15] pinctrl: renesas: pinctrl-rzg2l: Add function pointers for reading/writing OEN register Prabhakar
2024-06-05 12:16 ` Geert Uytterhoeven
2024-06-10 5:55 ` claudiu beznea
2024-05-30 17:38 ` [PATCH v3 10/15] pinctrl: renesas: pinctrl-rzg2l: Add support to configure the slew-rate Prabhakar
2024-05-30 17:38 ` [PATCH v3 11/15] pinctrl: renesas: pinctrl-rzg2l: Add support to set pulling up/down the pins Prabhakar
2024-06-05 12:23 ` Geert Uytterhoeven
2024-05-30 17:38 ` [PATCH v3 12/15] pinctrl: renesas: pinctrl-rzg2l: Pass pincontrol device pointer to pinconf_generic_parse_dt_config() Prabhakar
2024-06-10 5:57 ` claudiu beznea
2024-05-30 17:38 ` [PATCH v3 13/15] pinctrl: renesas: pinctrl-rzg2l: Add support for custom parameters Prabhakar
2024-06-05 12:24 ` Geert Uytterhoeven
2024-05-30 17:38 ` [PATCH v3 14/15] pinctrl: renesas: pinctrl-rzg2l: Acquire lock in rzg2l_pinctrl_pm_setup_pfc() Prabhakar
2024-06-05 12:32 ` Geert Uytterhoeven
2024-06-10 5:57 ` claudiu beznea
2024-05-30 17:38 ` [PATCH v3 15/15] pinctrl: renesas: pinctrl-rzg2l: Add support for RZ/V2H SoC Prabhakar
2024-06-05 12:39 ` 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=0a415c23-2ab6-4297-b804-7b72ddccc770@tuxon.dev \
--to=claudiu.beznea@tuxon.dev \
--cc=biju.das.jz@bp.renesas.com \
--cc=claudiu.beznea.uj@bp.renesas.com \
--cc=conor+dt@kernel.org \
--cc=devicetree@vger.kernel.org \
--cc=fabrizio.castro.jz@renesas.com \
--cc=geert+renesas@glider.be \
--cc=krzk+dt@kernel.org \
--cc=linus.walleij@linaro.org \
--cc=linux-gpio@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=linux-renesas-soc@vger.kernel.org \
--cc=magnus.damm@gmail.com \
--cc=paul.barker.ct@bp.renesas.com \
--cc=prabhakar.csengg@gmail.com \
--cc=prabhakar.mahadev-lad.rj@bp.renesas.com \
--cc=robh@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
all inboxes | Powered by JetHome®