linux-pm.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH] power: supply: z2_battery: Convert to GPIO descriptors
@ 2021-01-10 14:49 Linus Walleij
  2021-01-11  7:25 ` Daniel Mack
  0 siblings, 1 reply; 3+ messages in thread
From: Linus Walleij @ 2021-01-10 14:49 UTC (permalink / raw)
  To: Sebastian Reichel
  Cc: linux-pm, Linus Walleij, Daniel Mack, Haojian Zhuang,
	Robert Jarzmik, linux-arm-kernel

This converts the Palm Z2 battery driver to use GPIO descriptors.

Cc: Daniel Mack <daniel@zonque.org>
Cc: Haojian Zhuang <haojian.zhuang@gmail.com>
Cc: Robert Jarzmik <robert.jarzmik@free.fr>
Cc: linux-arm-kernel@lists.infradead.org
Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
---
 arch/arm/mach-pxa/z2.c            | 12 +++++++-
 drivers/power/supply/z2_battery.c | 46 ++++++++++++++-----------------
 include/linux/z2_battery.h        |  1 -
 3 files changed, 32 insertions(+), 27 deletions(-)

diff --git a/arch/arm/mach-pxa/z2.c b/arch/arm/mach-pxa/z2.c
index 21fd76bb09cd..a5dad8d08cac 100644
--- a/arch/arm/mach-pxa/z2.c
+++ b/arch/arm/mach-pxa/z2.c
@@ -488,7 +488,6 @@ static struct z2_battery_info batt_chip_info = {
 	.batt_I2C_bus	= 0,
 	.batt_I2C_addr	= 0x55,
 	.batt_I2C_reg	= 2,
-	.charge_gpio	= GPIO0_ZIPITZ2_AC_DETECT,
 	.min_voltage	= 3475000,
 	.max_voltage	= 4190000,
 	.batt_div	= 59,
@@ -497,9 +496,19 @@ static struct z2_battery_info batt_chip_info = {
 	.batt_name	= "Z2",
 };
 
+static struct gpiod_lookup_table z2_battery_gpio_table = {
+	.dev_id = "aer915",
+	.table = {
+		GPIO_LOOKUP("gpio-pxa", GPIO0_ZIPITZ2_AC_DETECT,
+			    NULL, GPIO_ACTIVE_HIGH),
+		{ },
+	},
+};
+
 static struct i2c_board_info __initdata z2_i2c_board_info[] = {
 	{
 		I2C_BOARD_INFO("aer915", 0x55),
+		.dev_name = "aer915",
 		.platform_data	= &batt_chip_info,
 	}, {
 		I2C_BOARD_INFO("wm8750", 0x1b),
@@ -510,6 +519,7 @@ static struct i2c_board_info __initdata z2_i2c_board_info[] = {
 static void __init z2_i2c_init(void)
 {
 	pxa_set_i2c_info(NULL);
+	gpiod_add_lookup_table(&z2_battery_gpio_table);
 	i2c_register_board_info(0, ARRAY_AND_SIZE(z2_i2c_board_info));
 }
 #else
diff --git a/drivers/power/supply/z2_battery.c b/drivers/power/supply/z2_battery.c
index ebd2e42a4457..b1508fe70e5e 100644
--- a/drivers/power/supply/z2_battery.c
+++ b/drivers/power/supply/z2_battery.c
@@ -6,7 +6,7 @@
  */
 
 #include <linux/module.h>
-#include <linux/gpio.h>
+#include <linux/gpio/consumer.h>
 #include <linux/i2c.h>
 #include <linux/interrupt.h>
 #include <linux/irq.h>
@@ -18,6 +18,7 @@
 
 struct z2_charger {
 	struct z2_battery_info		*info;
+	struct gpio_desc		*charge_gpiod;
 	int				bat_status;
 	struct i2c_client		*client;
 	struct power_supply		*batt_ps;
@@ -95,8 +96,8 @@ static void z2_batt_update(struct z2_charger *charger)
 
 	mutex_lock(&charger->work_lock);
 
-	charger->bat_status = (info->charge_gpio >= 0) ?
-		(gpio_get_value(info->charge_gpio) ?
+	charger->bat_status = charger->charge_gpiod ?
+		(gpiod_get_value(charger->charge_gpiod) ?
 		POWER_SUPPLY_STATUS_CHARGING :
 		POWER_SUPPLY_STATUS_DISCHARGING) :
 		POWER_SUPPLY_STATUS_UNKNOWN;
@@ -131,7 +132,7 @@ static int z2_batt_ps_init(struct z2_charger *charger, int props)
 	enum power_supply_property *prop;
 	struct z2_battery_info *info = charger->info;
 
-	if (info->charge_gpio >= 0)
+	if (charger->charge_gpiod)
 		props++;	/* POWER_SUPPLY_PROP_STATUS */
 	if (info->batt_tech >= 0)
 		props++;	/* POWER_SUPPLY_PROP_TECHNOLOGY */
@@ -147,7 +148,7 @@ static int z2_batt_ps_init(struct z2_charger *charger, int props)
 		return -ENOMEM;
 
 	prop[i++] = POWER_SUPPLY_PROP_PRESENT;
-	if (info->charge_gpio >= 0)
+	if (charger->charge_gpiod)
 		prop[i++] = POWER_SUPPLY_PROP_STATUS;
 	if (info->batt_tech >= 0)
 		prop[i++] = POWER_SUPPLY_PROP_TECHNOLOGY;
@@ -206,22 +207,23 @@ static int z2_batt_probe(struct i2c_client *client,
 
 	mutex_init(&charger->work_lock);
 
-	if (info->charge_gpio >= 0 && gpio_is_valid(info->charge_gpio)) {
-		ret = gpio_request(info->charge_gpio, "BATT CHRG");
-		if (ret)
-			goto err;
+	charger->charge_gpiod = devm_gpiod_get_optional(&client->dev,
+							NULL, GPIOD_IN);
+	if (IS_ERR(charger->charge_gpiod))
+		return dev_err_probe(&client->dev,
+				     PTR_ERR(charger->charge_gpiod),
+				     "failed to get charge GPIO\n");
 
-		ret = gpio_direction_input(info->charge_gpio);
-		if (ret)
-			goto err2;
+	if (charger->charge_gpiod) {
+		gpiod_set_consumer_name(charger->charge_gpiod, "BATT CHRG");
 
-		irq_set_irq_type(gpio_to_irq(info->charge_gpio),
+		irq_set_irq_type(gpiod_to_irq(charger->charge_gpiod),
 				 IRQ_TYPE_EDGE_BOTH);
-		ret = request_irq(gpio_to_irq(info->charge_gpio),
+		ret = request_irq(gpiod_to_irq(charger->charge_gpiod),
 				z2_charge_switch_irq, 0,
 				"AC Detect", charger);
 		if (ret)
-			goto err3;
+			goto err;
 	}
 
 	ret = z2_batt_ps_init(charger, props);
@@ -245,11 +247,8 @@ static int z2_batt_probe(struct i2c_client *client,
 err4:
 	kfree(charger->batt_ps_desc.properties);
 err3:
-	if (info->charge_gpio >= 0 && gpio_is_valid(info->charge_gpio))
-		free_irq(gpio_to_irq(info->charge_gpio), charger);
-err2:
-	if (info->charge_gpio >= 0 && gpio_is_valid(info->charge_gpio))
-		gpio_free(info->charge_gpio);
+	if (charger->charge_gpiod)
+		free_irq(gpiod_to_irq(charger->charge_gpiod), charger);
 err:
 	kfree(charger);
 	return ret;
@@ -258,16 +257,13 @@ static int z2_batt_probe(struct i2c_client *client,
 static int z2_batt_remove(struct i2c_client *client)
 {
 	struct z2_charger *charger = i2c_get_clientdata(client);
-	struct z2_battery_info *info = charger->info;
 
 	cancel_work_sync(&charger->bat_work);
 	power_supply_unregister(charger->batt_ps);
 
 	kfree(charger->batt_ps_desc.properties);
-	if (info->charge_gpio >= 0 && gpio_is_valid(info->charge_gpio)) {
-		free_irq(gpio_to_irq(info->charge_gpio), charger);
-		gpio_free(info->charge_gpio);
-	}
+	if (charger->charge_gpiod)
+		free_irq(gpiod_to_irq(charger->charge_gpiod), charger);
 
 	kfree(charger);
 
diff --git a/include/linux/z2_battery.h b/include/linux/z2_battery.h
index eaba53ff387c..9e8be7a7cd25 100644
--- a/include/linux/z2_battery.h
+++ b/include/linux/z2_battery.h
@@ -6,7 +6,6 @@ struct z2_battery_info {
 	int	 batt_I2C_bus;
 	int	 batt_I2C_addr;
 	int	 batt_I2C_reg;
-	int	 charge_gpio;
 	int	 min_voltage;
 	int	 max_voltage;
 	int	 batt_div;
-- 
2.29.2


^ permalink raw reply related	[flat|nested] 3+ messages in thread

* Re: [PATCH] power: supply: z2_battery: Convert to GPIO descriptors
  2021-01-10 14:49 [PATCH] power: supply: z2_battery: Convert to GPIO descriptors Linus Walleij
@ 2021-01-11  7:25 ` Daniel Mack
  2021-01-13 22:07   ` Sebastian Reichel
  0 siblings, 1 reply; 3+ messages in thread
From: Daniel Mack @ 2021-01-11  7:25 UTC (permalink / raw)
  To: Linus Walleij, Sebastian Reichel
  Cc: linux-pm, Haojian Zhuang, Robert Jarzmik, linux-arm-kernel

On 10/1/2021 3:49 pm, Linus Walleij wrote:
> This converts the Palm Z2 battery driver to use GPIO descriptors.
> 
> Cc: Daniel Mack <daniel@zonque.org>
> Cc: Haojian Zhuang <haojian.zhuang@gmail.com>
> Cc: Robert Jarzmik <robert.jarzmik@free.fr>
> Cc: linux-arm-kernel@lists.infradead.org
> Signed-off-by: Linus Walleij <linus.walleij@linaro.org>

Reviewed-by: Daniel Mack <daniel@zonque.org>



> ---
>  arch/arm/mach-pxa/z2.c            | 12 +++++++-
>  drivers/power/supply/z2_battery.c | 46 ++++++++++++++-----------------
>  include/linux/z2_battery.h        |  1 -
>  3 files changed, 32 insertions(+), 27 deletions(-)
> 
> diff --git a/arch/arm/mach-pxa/z2.c b/arch/arm/mach-pxa/z2.c
> index 21fd76bb09cd..a5dad8d08cac 100644
> --- a/arch/arm/mach-pxa/z2.c
> +++ b/arch/arm/mach-pxa/z2.c
> @@ -488,7 +488,6 @@ static struct z2_battery_info batt_chip_info = {
>  	.batt_I2C_bus	= 0,
>  	.batt_I2C_addr	= 0x55,
>  	.batt_I2C_reg	= 2,
> -	.charge_gpio	= GPIO0_ZIPITZ2_AC_DETECT,
>  	.min_voltage	= 3475000,
>  	.max_voltage	= 4190000,
>  	.batt_div	= 59,
> @@ -497,9 +496,19 @@ static struct z2_battery_info batt_chip_info = {
>  	.batt_name	= "Z2",
>  };
>  
> +static struct gpiod_lookup_table z2_battery_gpio_table = {
> +	.dev_id = "aer915",
> +	.table = {
> +		GPIO_LOOKUP("gpio-pxa", GPIO0_ZIPITZ2_AC_DETECT,
> +			    NULL, GPIO_ACTIVE_HIGH),
> +		{ },
> +	},
> +};
> +
>  static struct i2c_board_info __initdata z2_i2c_board_info[] = {
>  	{
>  		I2C_BOARD_INFO("aer915", 0x55),
> +		.dev_name = "aer915",
>  		.platform_data	= &batt_chip_info,
>  	}, {
>  		I2C_BOARD_INFO("wm8750", 0x1b),
> @@ -510,6 +519,7 @@ static struct i2c_board_info __initdata z2_i2c_board_info[] = {
>  static void __init z2_i2c_init(void)
>  {
>  	pxa_set_i2c_info(NULL);
> +	gpiod_add_lookup_table(&z2_battery_gpio_table);
>  	i2c_register_board_info(0, ARRAY_AND_SIZE(z2_i2c_board_info));
>  }
>  #else
> diff --git a/drivers/power/supply/z2_battery.c b/drivers/power/supply/z2_battery.c
> index ebd2e42a4457..b1508fe70e5e 100644
> --- a/drivers/power/supply/z2_battery.c
> +++ b/drivers/power/supply/z2_battery.c
> @@ -6,7 +6,7 @@
>   */
>  
>  #include <linux/module.h>
> -#include <linux/gpio.h>
> +#include <linux/gpio/consumer.h>
>  #include <linux/i2c.h>
>  #include <linux/interrupt.h>
>  #include <linux/irq.h>
> @@ -18,6 +18,7 @@
>  
>  struct z2_charger {
>  	struct z2_battery_info		*info;
> +	struct gpio_desc		*charge_gpiod;
>  	int				bat_status;
>  	struct i2c_client		*client;
>  	struct power_supply		*batt_ps;
> @@ -95,8 +96,8 @@ static void z2_batt_update(struct z2_charger *charger)
>  
>  	mutex_lock(&charger->work_lock);
>  
> -	charger->bat_status = (info->charge_gpio >= 0) ?
> -		(gpio_get_value(info->charge_gpio) ?
> +	charger->bat_status = charger->charge_gpiod ?
> +		(gpiod_get_value(charger->charge_gpiod) ?
>  		POWER_SUPPLY_STATUS_CHARGING :
>  		POWER_SUPPLY_STATUS_DISCHARGING) :
>  		POWER_SUPPLY_STATUS_UNKNOWN;
> @@ -131,7 +132,7 @@ static int z2_batt_ps_init(struct z2_charger *charger, int props)
>  	enum power_supply_property *prop;
>  	struct z2_battery_info *info = charger->info;
>  
> -	if (info->charge_gpio >= 0)
> +	if (charger->charge_gpiod)
>  		props++;	/* POWER_SUPPLY_PROP_STATUS */
>  	if (info->batt_tech >= 0)
>  		props++;	/* POWER_SUPPLY_PROP_TECHNOLOGY */
> @@ -147,7 +148,7 @@ static int z2_batt_ps_init(struct z2_charger *charger, int props)
>  		return -ENOMEM;
>  
>  	prop[i++] = POWER_SUPPLY_PROP_PRESENT;
> -	if (info->charge_gpio >= 0)
> +	if (charger->charge_gpiod)
>  		prop[i++] = POWER_SUPPLY_PROP_STATUS;
>  	if (info->batt_tech >= 0)
>  		prop[i++] = POWER_SUPPLY_PROP_TECHNOLOGY;
> @@ -206,22 +207,23 @@ static int z2_batt_probe(struct i2c_client *client,
>  
>  	mutex_init(&charger->work_lock);
>  
> -	if (info->charge_gpio >= 0 && gpio_is_valid(info->charge_gpio)) {
> -		ret = gpio_request(info->charge_gpio, "BATT CHRG");
> -		if (ret)
> -			goto err;
> +	charger->charge_gpiod = devm_gpiod_get_optional(&client->dev,
> +							NULL, GPIOD_IN);
> +	if (IS_ERR(charger->charge_gpiod))
> +		return dev_err_probe(&client->dev,
> +				     PTR_ERR(charger->charge_gpiod),
> +				     "failed to get charge GPIO\n");
>  
> -		ret = gpio_direction_input(info->charge_gpio);
> -		if (ret)
> -			goto err2;
> +	if (charger->charge_gpiod) {
> +		gpiod_set_consumer_name(charger->charge_gpiod, "BATT CHRG");
>  
> -		irq_set_irq_type(gpio_to_irq(info->charge_gpio),
> +		irq_set_irq_type(gpiod_to_irq(charger->charge_gpiod),
>  				 IRQ_TYPE_EDGE_BOTH);
> -		ret = request_irq(gpio_to_irq(info->charge_gpio),
> +		ret = request_irq(gpiod_to_irq(charger->charge_gpiod),
>  				z2_charge_switch_irq, 0,
>  				"AC Detect", charger);
>  		if (ret)
> -			goto err3;
> +			goto err;
>  	}
>  
>  	ret = z2_batt_ps_init(charger, props);
> @@ -245,11 +247,8 @@ static int z2_batt_probe(struct i2c_client *client,
>  err4:
>  	kfree(charger->batt_ps_desc.properties);
>  err3:
> -	if (info->charge_gpio >= 0 && gpio_is_valid(info->charge_gpio))
> -		free_irq(gpio_to_irq(info->charge_gpio), charger);
> -err2:
> -	if (info->charge_gpio >= 0 && gpio_is_valid(info->charge_gpio))
> -		gpio_free(info->charge_gpio);
> +	if (charger->charge_gpiod)
> +		free_irq(gpiod_to_irq(charger->charge_gpiod), charger);
>  err:
>  	kfree(charger);
>  	return ret;
> @@ -258,16 +257,13 @@ static int z2_batt_probe(struct i2c_client *client,
>  static int z2_batt_remove(struct i2c_client *client)
>  {
>  	struct z2_charger *charger = i2c_get_clientdata(client);
> -	struct z2_battery_info *info = charger->info;
>  
>  	cancel_work_sync(&charger->bat_work);
>  	power_supply_unregister(charger->batt_ps);
>  
>  	kfree(charger->batt_ps_desc.properties);
> -	if (info->charge_gpio >= 0 && gpio_is_valid(info->charge_gpio)) {
> -		free_irq(gpio_to_irq(info->charge_gpio), charger);
> -		gpio_free(info->charge_gpio);
> -	}
> +	if (charger->charge_gpiod)
> +		free_irq(gpiod_to_irq(charger->charge_gpiod), charger);
>  
>  	kfree(charger);
>  
> diff --git a/include/linux/z2_battery.h b/include/linux/z2_battery.h
> index eaba53ff387c..9e8be7a7cd25 100644
> --- a/include/linux/z2_battery.h
> +++ b/include/linux/z2_battery.h
> @@ -6,7 +6,6 @@ struct z2_battery_info {
>  	int	 batt_I2C_bus;
>  	int	 batt_I2C_addr;
>  	int	 batt_I2C_reg;
> -	int	 charge_gpio;
>  	int	 min_voltage;
>  	int	 max_voltage;
>  	int	 batt_div;
> 


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH] power: supply: z2_battery: Convert to GPIO descriptors
  2021-01-11  7:25 ` Daniel Mack
@ 2021-01-13 22:07   ` Sebastian Reichel
  0 siblings, 0 replies; 3+ messages in thread
From: Sebastian Reichel @ 2021-01-13 22:07 UTC (permalink / raw)
  To: Daniel Mack
  Cc: Linus Walleij, linux-pm, Haojian Zhuang, Robert Jarzmik,
	linux-arm-kernel

[-- Attachment #1: Type: text/plain, Size: 2188 bytes --]

Hi,

On Mon, Jan 11, 2021 at 08:25:05AM +0100, Daniel Mack wrote:
> On 10/1/2021 3:49 pm, Linus Walleij wrote:
> > This converts the Palm Z2 battery driver to use GPIO descriptors.
> > 
> > Cc: Daniel Mack <daniel@zonque.org>
> > Cc: Haojian Zhuang <haojian.zhuang@gmail.com>
> > Cc: Robert Jarzmik <robert.jarzmik@free.fr>
> > Cc: linux-arm-kernel@lists.infradead.org
> > Signed-off-by: Linus Walleij <linus.walleij@linaro.org>
> 
> Reviewed-by: Daniel Mack <daniel@zonque.org>

Thanks, queued to power-supply's for-next branch via the following
immutable branch (which also contains the wm97xx_battery change):

The following changes since commit 5c8fe583cce542aa0b84adc939ce85293de36e5e:

  Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)

are available in the Git repository at:

  ssh://git@gitolite.kernel.org/pub/scm/linux/kernel/git/sre/linux-power-supply.git tags/ib-psy-pxa-for-5.12-signed

for you to fetch changes up to cb6d6918c56ffd98e88164d5471f692d33dabf2b:

  power: supply: wm97xx_battery: Convert to GPIO descriptor (2021-01-13 22:25:07 +0100)

----------------------------------------------------------------
Immutable branch between mach-pxa and power-supply for for 5.12

This immutable branch replaces legacy gpio API in wm97xx_battery and
z2_battery with new gpiod API, which involves the drivers in
power-supply and some mach-pxa board files.

Signed-off-by: Sebastian Reichel <sre@kernel.org>

----------------------------------------------------------------
Linus Walleij (2):
      power: supply: z2_battery: Convert to GPIO descriptors
      power: supply: wm97xx_battery: Convert to GPIO descriptor

 arch/arm/mach-pxa/mioa701.c           |  1 -
 arch/arm/mach-pxa/palm27x.c           |  1 -
 arch/arm/mach-pxa/palmte2.c           |  1 -
 arch/arm/mach-pxa/z2.c                | 12 ++++++++-
 drivers/power/supply/wm97xx_battery.c | 45 +++++++++++++++-------------------
 drivers/power/supply/z2_battery.c     | 46 ++++++++++++++++-------------------
 include/linux/wm97xx.h                |  1 -
 include/linux/z2_battery.h            |  1 -
 8 files changed, 51 insertions(+), 57 deletions(-)

-- Sebastian

[-- Attachment #2: signature.asc --]
[-- Type: application/pgp-signature, Size: 833 bytes --]

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2021-01-14  2:12 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-01-10 14:49 [PATCH] power: supply: z2_battery: Convert to GPIO descriptors Linus Walleij
2021-01-11  7:25 ` Daniel Mack
2021-01-13 22:07   ` Sebastian Reichel

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).