public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Andre Przywara <andre.przywara@arm.com>
To: Samuel Holland <samuel@sholland.org>
Cc: Jagan Teki <jagan@amarulasolutions.com>,
	Jaehoon Chung <jh80.chung@samsung.com>,
	u-boot@lists.denx.de
Subject: Re: [PATCH 3/3] gpio: axp/sunxi: Remove virtual VBUS detection GPIO
Date: Fri, 28 Apr 2023 01:26:59 +0100	[thread overview]
Message-ID: <20230428012659.778e98ba@slackpad.lan> (raw)
In-Reply-To: <20230122234623.1636-4-samuel@sholland.org>

On Sun, 22 Jan 2023 17:46:22 -0600
Samuel Holland <samuel@sholland.org> wrote:

> Now that this functionality is modeled using the device tree and
> regulator uclass, the named GPIO is not referenced anywhere. Remove it.
> 
> Signed-off-by: Samuel Holland <samuel@sholland.org>

There is indeed no config left that would set AXP0-VBUS-DETECT, so this
code is indeed no longer needed:

Reviewed-by: Andre Przywara <andre.przywara@arm.com>

Queued for sunxi/master.

Cheers,
Andre

> ---
> 
>  arch/arm/include/asm/arch-sunxi/gpio.h |  1 -
>  drivers/gpio/axp_gpio.c                | 21 ++++-----------------
>  drivers/gpio/sunxi_gpio.c              |  6 +-----
>  include/axp209.h                       |  1 -
>  include/axp221.h                       |  1 -
>  include/axp809.h                       |  1 -
>  include/axp818.h                       |  1 -
>  7 files changed, 5 insertions(+), 27 deletions(-)
> 
> diff --git a/arch/arm/include/asm/arch-sunxi/gpio.h b/arch/arm/include/asm/arch-sunxi/gpio.h
> index 437e86479c..6eaeece4e2 100644
> --- a/arch/arm/include/asm/arch-sunxi/gpio.h
> +++ b/arch/arm/include/asm/arch-sunxi/gpio.h
> @@ -209,7 +209,6 @@ enum sunxi_gpio_number {
>  
>  /* Virtual AXP0 GPIOs */
>  #define SUNXI_GPIO_AXP0_PREFIX "AXP0-"
> -#define SUNXI_GPIO_AXP0_VBUS_DETECT	4
>  #define SUNXI_GPIO_AXP0_VBUS_ENABLE	5
>  #define SUNXI_GPIO_AXP0_GPIO_COUNT	6
>  
> diff --git a/drivers/gpio/axp_gpio.c b/drivers/gpio/axp_gpio.c
> index 35585dc8ac..49672193ff 100644
> --- a/drivers/gpio/axp_gpio.c
> +++ b/drivers/gpio/axp_gpio.c
> @@ -36,18 +36,11 @@ static int axp_gpio_direction_input(struct udevice *dev, unsigned pin)
>  {
>  	u8 reg;
>  
> -	switch (pin) {
> -#ifndef CONFIG_AXP152_POWER /* NA on axp152 */
> -	case SUNXI_GPIO_AXP0_VBUS_DETECT:
> -		return 0;
> -#endif
> -	default:
> -		reg = axp_get_gpio_ctrl_reg(pin);
> -		if (reg == 0)
> -			return -EINVAL;
> +	reg = axp_get_gpio_ctrl_reg(pin);
> +	if (reg == 0)
> +		return -EINVAL;
>  
> -		return pmic_bus_write(reg, AXP_GPIO_CTRL_INPUT);
> -	}
> +	return pmic_bus_write(reg, AXP_GPIO_CTRL_INPUT);
>  }
>  
>  static int axp_gpio_direction_output(struct udevice *dev, unsigned pin,
> @@ -83,12 +76,6 @@ static int axp_gpio_get_value(struct udevice *dev, unsigned pin)
>  	int ret;
>  
>  	switch (pin) {
> -#ifndef CONFIG_AXP152_POWER /* NA on axp152 */
> -	case SUNXI_GPIO_AXP0_VBUS_DETECT:
> -		ret = pmic_bus_read(AXP_POWER_STATUS, &val);
> -		mask = AXP_POWER_STATUS_VBUS_PRESENT;
> -		break;
> -#endif
>  #ifdef AXP_MISC_CTRL_N_VBUSEN_FUNC
>  	/* Only available on later PMICs */
>  	case SUNXI_GPIO_AXP0_VBUS_ENABLE:
> diff --git a/drivers/gpio/sunxi_gpio.c b/drivers/gpio/sunxi_gpio.c
> index 1e85db179a..f0b42e4fdb 100644
> --- a/drivers/gpio/sunxi_gpio.c
> +++ b/drivers/gpio/sunxi_gpio.c
> @@ -117,11 +117,7 @@ int sunxi_name_to_gpio(const char *name)
>  #if !defined CONFIG_SPL_BUILD && defined CONFIG_AXP_GPIO
>  	char lookup[8];
>  
> -	if (strcasecmp(name, "AXP0-VBUS-DETECT") == 0) {
> -		sprintf(lookup, SUNXI_GPIO_AXP0_PREFIX "%d",
> -			SUNXI_GPIO_AXP0_VBUS_DETECT);
> -		name = lookup;
> -	} else if (strcasecmp(name, "AXP0-VBUS-ENABLE") == 0) {
> +	if (strcasecmp(name, "AXP0-VBUS-ENABLE") == 0) {
>  		sprintf(lookup, SUNXI_GPIO_AXP0_PREFIX "%d",
>  			SUNXI_GPIO_AXP0_VBUS_ENABLE);
>  		name = lookup;
> diff --git a/include/axp209.h b/include/axp209.h
> index 414f88a32c..d8bf44f1fa 100644
> --- a/include/axp209.h
> +++ b/include/axp209.h
> @@ -77,7 +77,6 @@ enum axp209_reg {
>  #ifdef CONFIG_AXP209_POWER
>  #define AXP_POWER_STATUS		0x00
>  #define AXP_POWER_STATUS_ALDO_IN		BIT(0)
> -#define AXP_POWER_STATUS_VBUS_PRESENT		BIT(5)
>  #define AXP_GPIO0_CTRL			0x90
>  #define AXP_GPIO1_CTRL			0x92
>  #define AXP_GPIO2_CTRL			0x93
> diff --git a/include/axp221.h b/include/axp221.h
> index 8dfcc5b5a2..32b988f3a9 100644
> --- a/include/axp221.h
> +++ b/include/axp221.h
> @@ -53,7 +53,6 @@
>  #ifdef CONFIG_AXP221_POWER
>  #define AXP_POWER_STATUS		0x00
>  #define AXP_POWER_STATUS_ALDO_IN		BIT(0)
> -#define AXP_POWER_STATUS_VBUS_PRESENT		BIT(5)
>  #define AXP_VBUS_IPSOUT			0x30
>  #define AXP_VBUS_IPSOUT_DRIVEBUS		(1 << 2)
>  #define AXP_MISC_CTRL			0x8f
> diff --git a/include/axp809.h b/include/axp809.h
> index 8082e402e2..71a7cb2aaa 100644
> --- a/include/axp809.h
> +++ b/include/axp809.h
> @@ -47,7 +47,6 @@
>  #ifdef CONFIG_AXP809_POWER
>  #define AXP_POWER_STATUS		0x00
>  #define AXP_POWER_STATUS_ALDO_IN		BIT(0)
> -#define AXP_POWER_STATUS_VBUS_PRESENT		BIT(5)
>  #define AXP_VBUS_IPSOUT			0x30
>  #define AXP_VBUS_IPSOUT_DRIVEBUS		(1 << 2)
>  #define AXP_MISC_CTRL			0x8f
> diff --git a/include/axp818.h b/include/axp818.h
> index 8ac517a2bf..08ac35d15f 100644
> --- a/include/axp818.h
> +++ b/include/axp818.h
> @@ -61,7 +61,6 @@
>  #ifdef CONFIG_AXP818_POWER
>  #define AXP_POWER_STATUS		0x00
>  #define AXP_POWER_STATUS_ALDO_IN		BIT(0)
> -#define AXP_POWER_STATUS_VBUS_PRESENT		BIT(5)
>  #define AXP_VBUS_IPSOUT			0x30
>  #define AXP_VBUS_IPSOUT_DRIVEBUS		(1 << 2)
>  #define AXP_MISC_CTRL			0x8f


      reply	other threads:[~2023-04-28  0:34 UTC|newest]

Thread overview: 7+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-01-22 23:46 [PATCH 0/3] power: Model X-Powers PMIC VBUS detection using the driver model Samuel Holland
2023-01-22 23:46 ` [PATCH 1/3] power: regulator: Add a driver for the AXP USB power supply Samuel Holland
2023-04-28  0:15   ` Andre Przywara
2023-01-22 23:46 ` [PATCH 2/3] sunxi: Switch to PMIC USB power supply VBUS detection Samuel Holland
2023-04-28  0:24   ` Andre Przywara
2023-01-22 23:46 ` [PATCH 3/3] gpio: axp/sunxi: Remove virtual VBUS detection GPIO Samuel Holland
2023-04-28  0:26   ` Andre Przywara [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=20230428012659.778e98ba@slackpad.lan \
    --to=andre.przywara@arm.com \
    --cc=jagan@amarulasolutions.com \
    --cc=jh80.chung@samsung.com \
    --cc=samuel@sholland.org \
    --cc=u-boot@lists.denx.de \
    /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