linux-gpio.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
From: Hoan Tran <hotran@apm.com>
To: Linus Walleij <linus.walleij@linaro.org>
Cc: linux-gpio@vger.kernel.org
Subject: Re: [PATCH 1/2] gpio: dwapb: Use "stride" rather than "size" for register distance
Date: Tue, 13 Feb 2018 17:40:33 -0800	[thread overview]
Message-ID: <CAFHUOYx36Xv4KpCw2cbbP4-GTMuBb0RaV0zfW-xg3yvYsk=d8g@mail.gmail.com> (raw)
In-Reply-To: <20180212101125.7890-1-linus.walleij@linaro.org>

Hi Linus,

On Mon, Feb 12, 2018 at 2:11 AM, Linus Walleij <linus.walleij@linaro.org> wrote:
> This terminology is more precise. Also cut the stride calculation
> in the preprocessor, it confuses more than it helps when reading
> the driver.
>
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> ---
>  drivers/gpio/gpio-dwapb.c | 24 ++++++++++++------------
>  1 file changed, 12 insertions(+), 12 deletions(-)
>
> diff --git a/drivers/gpio/gpio-dwapb.c b/drivers/gpio/gpio-dwapb.c
> index 6730c6642ce3..677988f21369 100644
> --- a/drivers/gpio/gpio-dwapb.c
> +++ b/drivers/gpio/gpio-dwapb.c
> @@ -53,9 +53,9 @@
>  #define GPIO_EXT_PORTD         0x5c
>
>  #define DWAPB_MAX_PORTS                4
> -#define GPIO_EXT_PORT_SIZE     (GPIO_EXT_PORTB - GPIO_EXT_PORTA)
> -#define GPIO_SWPORT_DR_SIZE    (GPIO_SWPORTB_DR - GPIO_SWPORTA_DR)
> -#define GPIO_SWPORT_DDR_SIZE   (GPIO_SWPORTB_DDR - GPIO_SWPORTA_DDR)
> +#define GPIO_EXT_PORT_STRIDE   0x04 /* register stride 32 bits */
> +#define GPIO_SWPORT_DR_STRIDE  0x0c /* register stride 3*32 bits */
> +#define GPIO_SWPORT_DDR_STRIDE 0x0c /* register stride 3*32 bits */
>
>  #define GPIO_REG_OFFSET_V2     1
>
> @@ -476,10 +476,10 @@ static int dwapb_gpio_add_port(struct dwapb_gpio *gpio,
>                 return -ENOMEM;
>  #endif
>
> -       dat = gpio->regs + GPIO_EXT_PORTA + (pp->idx * GPIO_EXT_PORT_SIZE);
> -       set = gpio->regs + GPIO_SWPORTA_DR + (pp->idx * GPIO_SWPORT_DR_SIZE);
> +       dat = gpio->regs + GPIO_EXT_PORTA + (pp->idx * GPIO_EXT_PORT_STRIDE);
> +       set = gpio->regs + GPIO_SWPORTA_DR + (pp->idx * GPIO_SWPORT_DR_STRIDE);
>         dirout = gpio->regs + GPIO_SWPORTA_DDR +
> -               (pp->idx * GPIO_SWPORT_DDR_SIZE);
> +               (pp->idx * GPIO_SWPORT_DDR_STRIDE);
>
>         err = bgpio_init(&port->gc, gpio->dev, 4, dat, set, NULL, dirout,
>                          NULL, 0);
> @@ -710,13 +710,13 @@ static int dwapb_gpio_suspend(struct device *dev)
>
>                 BUG_ON(!ctx);
>
> -               offset = GPIO_SWPORTA_DDR + idx * GPIO_SWPORT_DDR_SIZE;
> +               offset = GPIO_SWPORTA_DDR + idx * GPIO_SWPORT_DDR_STRIDE;
>                 ctx->dir = dwapb_read(gpio, offset);
>
> -               offset = GPIO_SWPORTA_DR + idx * GPIO_SWPORT_DR_SIZE;
> +               offset = GPIO_SWPORTA_DR + idx * GPIO_SWPORT_DR_STRIDE;
>                 ctx->data = dwapb_read(gpio, offset);
>
> -               offset = GPIO_EXT_PORTA + idx * GPIO_EXT_PORT_SIZE;
> +               offset = GPIO_EXT_PORTA + idx * GPIO_EXT_PORT_STRIDE;
>                 ctx->ext = dwapb_read(gpio, offset);
>
>                 /* Only port A can provide interrupts */
> @@ -753,13 +753,13 @@ static int dwapb_gpio_resume(struct device *dev)
>
>                 BUG_ON(!ctx);
>
> -               offset = GPIO_SWPORTA_DR + idx * GPIO_SWPORT_DR_SIZE;
> +               offset = GPIO_SWPORTA_DR + idx * GPIO_SWPORT_DR_STRIDE;
>                 dwapb_write(gpio, offset, ctx->data);
>
> -               offset = GPIO_SWPORTA_DDR + idx * GPIO_SWPORT_DDR_SIZE;
> +               offset = GPIO_SWPORTA_DDR + idx * GPIO_SWPORT_DDR_STRIDE;
>                 dwapb_write(gpio, offset, ctx->dir);
>
> -               offset = GPIO_EXT_PORTA + idx * GPIO_EXT_PORT_SIZE;
> +               offset = GPIO_EXT_PORTA + idx * GPIO_EXT_PORT_STRIDE;
>                 dwapb_write(gpio, offset, ctx->ext);
>
>                 /* Only port A can provide interrupts */
> --
> 2.14.3
>

Acked-by: Hoan Tran <hotran@apm.com>

Regards
Hoan

      parent reply	other threads:[~2018-02-14  1:40 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2018-02-12 10:11 [PATCH 1/2] gpio: dwapb: Use "stride" rather than "size" for register distance Linus Walleij
2018-02-12 10:11 ` [PATCH 2/2] gpio: dwapb: Call directly into the gpiochip to read value Linus Walleij
2018-02-14  1:41   ` Hoan Tran
2018-02-14  1:40 ` Hoan Tran [this message]

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='CAFHUOYx36Xv4KpCw2cbbP4-GTMuBb0RaV0zfW-xg3yvYsk=d8g@mail.gmail.com' \
    --to=hotran@apm.com \
    --cc=linus.walleij@linaro.org \
    --cc=linux-gpio@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).