From: Bjorn Andersson <bjorn.andersson@linaro.org>
To: Shawn Guo <shawn.guo@linaro.org>
Cc: Linus Walleij <linus.walleij@linaro.org>,
Andy Shevchenko <andriy.shevchenko@intel.com>,
linux-gpio@vger.kernel.org, linux-arm-msm@vger.kernel.org
Subject: Re: [PATCH v3 1/2] pinctrl: qcom: sc8180x: drop the use of tiles
Date: Mon, 8 Mar 2021 19:08:00 -0600 [thread overview]
Message-ID: <YEbKcOwr/c1fPFLQ@builder.lan> (raw)
In-Reply-To: <20210304060520.24975-2-shawn.guo@linaro.org>
On Thu 04 Mar 00:05 CST 2021, Shawn Guo wrote:
> To support both ACPI and DT, it makes more sense to not use tiles for
> pinctrl-sc8180x driver, as ACPI table describes TLMM block with one
> single memory resource. Since DTS of SC8180X hasn't landed, there is
> still chance to align DT description with ACPI.
>
I don't like the idea that we make up addresses to put in the DT to fit
what was put in the DSDT. It is 3 different memory regions, with things
in-between that Linux shouldn't touch.
Isn't it possible to during ACPI probe take reg 0 and register the 3
named regions instead?
Regards,
Bjorn
> Signed-off-by: Shawn Guo <shawn.guo@linaro.org>
> ---
> drivers/pinctrl/qcom/pinctrl-sc8180x.c | 41 +++++++++-----------------
> 1 file changed, 14 insertions(+), 27 deletions(-)
>
> diff --git a/drivers/pinctrl/qcom/pinctrl-sc8180x.c b/drivers/pinctrl/qcom/pinctrl-sc8180x.c
> index b765bf667574..66f76ed22200 100644
> --- a/drivers/pinctrl/qcom/pinctrl-sc8180x.c
> +++ b/drivers/pinctrl/qcom/pinctrl-sc8180x.c
> @@ -11,17 +11,9 @@
>
> #include "pinctrl-msm.h"
>
> -static const char * const sc8180x_tiles[] = {
> - "south",
> - "east",
> - "west"
> -};
> -
> -enum {
> - SOUTH,
> - EAST,
> - WEST
> -};
> +#define WEST 0x00100000
> +#define EAST 0x00500000
> +#define SOUTH 0x00d00000
>
> #define FUNCTION(fname) \
> [msm_mux_##fname] = { \
> @@ -31,7 +23,7 @@ enum {
> }
>
> #define REG_SIZE 0x1000
> -#define PINGROUP_OFFSET(id, _tile, offset, f1, f2, f3, f4, f5, f6, f7, f8, f9) \
> +#define PINGROUP_OFFSET(id, base, offset, f1, f2, f3, f4, f5, f6, f7, f8, f9) \
> { \
> .name = "gpio" #id, \
> .pins = gpio##id##_pins, \
> @@ -49,12 +41,11 @@ enum {
> msm_mux_##f9 \
> }, \
> .nfuncs = 10, \
> - .ctl_reg = REG_SIZE * id + offset, \
> - .io_reg = REG_SIZE * id + 0x4 + offset, \
> - .intr_cfg_reg = REG_SIZE * id + 0x8 + offset, \
> - .intr_status_reg = REG_SIZE * id + 0xc + offset,\
> - .intr_target_reg = REG_SIZE * id + 0x8 + offset,\
> - .tile = _tile, \
> + .ctl_reg = base + REG_SIZE * id + offset, \
> + .io_reg = base + REG_SIZE * id + 0x4 + offset, \
> + .intr_cfg_reg = base + REG_SIZE * id + 0x8 + offset, \
> + .intr_status_reg = base + REG_SIZE * id + 0xc + offset, \
> + .intr_target_reg = base + REG_SIZE * id + 0x8 + offset, \
> .mux_bit = 2, \
> .pull_bit = 0, \
> .drv_bit = 6, \
> @@ -71,20 +62,19 @@ enum {
> .intr_detection_width = 2, \
> }
>
> -#define PINGROUP(id, _tile, f1, f2, f3, f4, f5, f6, f7, f8, f9) \
> - PINGROUP_OFFSET(id, _tile, 0x0, f1, f2, f3, f4, f5, f6, f7, f8, f9)
> +#define PINGROUP(id, base, f1, f2, f3, f4, f5, f6, f7, f8, f9) \
> + PINGROUP_OFFSET(id, base, 0x0, f1, f2, f3, f4, f5, f6, f7, f8, f9)
>
> #define SDC_QDSD_PINGROUP(pg_name, ctl, pull, drv) \
> { \
> .name = #pg_name, \
> .pins = pg_name##_pins, \
> .npins = (unsigned int)ARRAY_SIZE(pg_name##_pins), \
> - .ctl_reg = ctl, \
> + .ctl_reg = EAST + ctl, \
> .io_reg = 0, \
> .intr_cfg_reg = 0, \
> .intr_status_reg = 0, \
> .intr_target_reg = 0, \
> - .tile = EAST, \
> .mux_bit = -1, \
> .pull_bit = pull, \
> .drv_bit = drv, \
> @@ -105,12 +95,11 @@ enum {
> .name = #pg_name, \
> .pins = pg_name##_pins, \
> .npins = (unsigned int)ARRAY_SIZE(pg_name##_pins), \
> - .ctl_reg = 0xb6000, \
> - .io_reg = 0xb6004, \
> + .ctl_reg = SOUTH + 0xb6000, \
> + .io_reg = SOUTH + 0xb6004, \
> .intr_cfg_reg = 0, \
> .intr_status_reg = 0, \
> .intr_target_reg = 0, \
> - .tile = SOUTH, \
> .mux_bit = -1, \
> .pull_bit = 3, \
> .drv_bit = 0, \
> @@ -1575,8 +1564,6 @@ static const struct msm_gpio_wakeirq_map sc8180x_pdc_map[] = {
> };
>
> static struct msm_pinctrl_soc_data sc8180x_pinctrl = {
> - .tiles = sc8180x_tiles,
> - .ntiles = ARRAY_SIZE(sc8180x_tiles),
> .pins = sc8180x_pins,
> .npins = ARRAY_SIZE(sc8180x_pins),
> .functions = sc8180x_functions,
> --
> 2.17.1
>
next prev parent reply other threads:[~2021-03-09 1:08 UTC|newest]
Thread overview: 11+ messages / expand[flat|nested] mbox.gz Atom feed top
2021-03-04 6:05 [PATCH v3 0/2] Add ACPI support for SC8180X pinctrl driver Shawn Guo
2021-03-04 6:05 ` [PATCH v3 1/2] pinctrl: qcom: sc8180x: drop the use of tiles Shawn Guo
2021-03-09 1:08 ` Bjorn Andersson [this message]
2021-03-09 2:56 ` Shawn Guo
2021-03-09 3:42 ` Bjorn Andersson
2021-03-10 10:37 ` Shawn Guo
2021-03-04 6:05 ` [PATCH v3 2/2] pinctrl: qcom: sc8180x: add ACPI probe support Shawn Guo
2021-03-04 12:44 ` Andy Shevchenko
2021-03-07 11:54 ` Konrad Dybcio
2021-03-08 23:42 ` Bjorn Andersson
2021-03-04 12:44 ` [PATCH v3 0/2] Add ACPI support for SC8180X pinctrl driver Andy Shevchenko
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=YEbKcOwr/c1fPFLQ@builder.lan \
--to=bjorn.andersson@linaro.org \
--cc=andriy.shevchenko@intel.com \
--cc=linus.walleij@linaro.org \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-gpio@vger.kernel.org \
--cc=shawn.guo@linaro.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).