From: Lee Jones <lee.jones@linaro.org>
To: John Stultz <john.stultz@linaro.org>
Cc: lkml <linux-kernel@vger.kernel.org>,
Dmitry Torokhov <dmitry.torokhov@gmail.com>,
Rob Herring <robh+dt@kernel.org>,
Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>,
Feng Chen <puck.chen@hisilicon.com>,
Wei Xu <xuwei5@hisilicon.com>, Guodong Xu <guodong.xu@linaro.org>
Subject: Re: [PATCH 3/4] mfd: hi655x-pmic: Rename some interrupt macro names
Date: Wed, 15 Jun 2016 13:54:38 +0100 [thread overview]
Message-ID: <20160615125438.GH4948@dell> (raw)
In-Reply-To: <1465944212-17079-4-git-send-email-john.stultz@linaro.org>
On Tue, 14 Jun 2016, John Stultz wrote:
> Currently the hi655x-pmic driver has names for interrupt mask
> values, but not for the interrupt numbers themselves.
>
> So to allow for interrupt numbers to have sane names, rename
> the mask values with the _MASK postfix and use the existing
> names as the interrupt name
>
> Cc: Dmitry Torokhov <dmitry.torokhov@gmail.com>
> Cc: Rob Herring <robh+dt@kernel.org>
> Cc: Lee Jones <lee.jones@linaro.org>
> Cc: Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org>
> Cc: Feng Chen <puck.chen@hisilicon.com>
> Cc: Wei Xu <xuwei5@hisilicon.com>
> Cc: Guodong Xu <guodong.xu@linaro.org>
> Signed-off-by: John Stultz <john.stultz@linaro.org>
> ---
> drivers/mfd/hi655x-pmic.c | 16 ++++++++--------
> include/linux/mfd/hi655x-pmic.h | 25 +++++++++++++++++--------
> 2 files changed, 25 insertions(+), 16 deletions(-)
Applied, thanks.
> diff --git a/drivers/mfd/hi655x-pmic.c b/drivers/mfd/hi655x-pmic.c
> index 68ab370..072e6fe 100644
> --- a/drivers/mfd/hi655x-pmic.c
> +++ b/drivers/mfd/hi655x-pmic.c
> @@ -29,14 +29,14 @@ static const struct mfd_cell hi655x_pmic_devs[] = {
> };
>
> static const struct regmap_irq hi655x_irqs[] = {
> - { .reg_offset = 0, .mask = OTMP_D1R_INT },
> - { .reg_offset = 0, .mask = VSYS_2P5_R_INT },
> - { .reg_offset = 0, .mask = VSYS_UV_D3R_INT },
> - { .reg_offset = 0, .mask = VSYS_6P0_D200UR_INT },
> - { .reg_offset = 0, .mask = PWRON_D4SR_INT },
> - { .reg_offset = 0, .mask = PWRON_D20F_INT },
> - { .reg_offset = 0, .mask = PWRON_D20R_INT },
> - { .reg_offset = 0, .mask = RESERVE_INT },
> + { .reg_offset = 0, .mask = OTMP_D1R_INT_MASK },
> + { .reg_offset = 0, .mask = VSYS_2P5_R_INT_MASK },
> + { .reg_offset = 0, .mask = VSYS_UV_D3R_INT_MASK },
> + { .reg_offset = 0, .mask = VSYS_6P0_D200UR_INT_MASK },
> + { .reg_offset = 0, .mask = PWRON_D4SR_INT_MASK },
> + { .reg_offset = 0, .mask = PWRON_D20F_INT_MASK },
> + { .reg_offset = 0, .mask = PWRON_D20R_INT_MASK },
> + { .reg_offset = 0, .mask = RESERVE_INT_MASK },
> };
>
> static const struct regmap_irq_chip hi655x_irq_chip = {
> diff --git a/include/linux/mfd/hi655x-pmic.h b/include/linux/mfd/hi655x-pmic.h
> index dbbe9a6..62f03c2 100644
> --- a/include/linux/mfd/hi655x-pmic.h
> +++ b/include/linux/mfd/hi655x-pmic.h
> @@ -34,14 +34,23 @@
> #define PMU_VER_START 0x10
> #define PMU_VER_END 0x38
>
> -#define RESERVE_INT BIT(7)
> -#define PWRON_D20R_INT BIT(6)
> -#define PWRON_D20F_INT BIT(5)
> -#define PWRON_D4SR_INT BIT(4)
> -#define VSYS_6P0_D200UR_INT BIT(3)
> -#define VSYS_UV_D3R_INT BIT(2)
> -#define VSYS_2P5_R_INT BIT(1)
> -#define OTMP_D1R_INT BIT(0)
> +#define RESERVE_INT 7
> +#define PWRON_D20R_INT 6
> +#define PWRON_D20F_INT 5
> +#define PWRON_D4SR_INT 4
> +#define VSYS_6P0_D200UR_INT 3
> +#define VSYS_UV_D3R_INT 2
> +#define VSYS_2P5_R_INT 1
> +#define OTMP_D1R_INT 0
> +
> +#define RESERVE_INT_MASK BIT(RESERVE_INT)
> +#define PWRON_D20R_INT_MASK BIT(PWRON_D20R_INT)
> +#define PWRON_D20F_INT_MASK BIT(PWRON_D20F_INT)
> +#define PWRON_D4SR_INT_MASK BIT(PWRON_D4SR_INT)
> +#define VSYS_6P0_D200UR_INT_MASK BIT(VSYS_6P0_D200UR_INT)
> +#define VSYS_UV_D3R_INT_MASK BIT(VSYS_UV_D3R_INT)
> +#define VSYS_2P5_R_INT_MASK BIT(VSYS_2P5_R_INT)
> +#define OTMP_D1R_INT_MASK BIT(OTMP_D1R_INT)
>
> struct hi655x_pmic {
> struct resource *res;
--
Lee Jones
Linaro STMicroelectronics Landing Team Lead
Linaro.org │ Open source software for ARM SoCs
Follow Linaro: Facebook | Twitter | Blog
next prev parent reply other threads:[~2016-06-15 12:53 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-06-14 22:43 [PATCH 0/4] Hi655x powerkey support for HiKey (v4) John Stultz
2016-06-14 22:43 ` [PATCH 1/4] drivers: input: powerkey for HISI 65xx SoC John Stultz
2016-06-22 0:06 ` John Stultz
2016-06-23 0:47 ` Dmitry Torokhov
2016-06-23 20:31 ` John Stultz
2016-06-23 20:40 ` Dmitry Torokhov
2016-06-23 20:47 ` Dmitry Torokhov
2016-06-23 20:54 ` John Stultz
2016-06-23 21:03 ` Dmitry Torokhov
2016-06-14 22:43 ` [PATCH 2/4] mfd: hi655x-pmic: Fixup issue with un-acked interrupts John Stultz
2016-06-15 12:54 ` Lee Jones
2016-06-14 22:43 ` [PATCH 3/4] mfd: hi655x-pmic: Rename some interrupt macro names John Stultz
2016-06-15 12:54 ` Lee Jones [this message]
2016-06-14 22:43 ` [PATCH 4/4] mfd: hi655x-pmic: Add powerkey device to hi655x PMIC driver John Stultz
2016-06-15 12:54 ` Lee Jones
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=20160615125438.GH4948@dell \
--to=lee.jones@linaro.org \
--cc=dmitry.torokhov@gmail.com \
--cc=guodong.xu@linaro.org \
--cc=john.stultz@linaro.org \
--cc=jorge.ramirez-ortiz@linaro.org \
--cc=linux-kernel@vger.kernel.org \
--cc=puck.chen@hisilicon.com \
--cc=robh+dt@kernel.org \
--cc=xuwei5@hisilicon.com \
/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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.