2019-06-04 11:11:33 +03:00
// SPDX-License-Identifier: GPL-2.0-only
2010-02-28 14:47:49 +03:00
/*
* Battery measurement code for Zipit Z2
*
* Copyright ( C ) 2009 Peter Edwards < sweetlilmre @ gmail . com >
*/
# include <linux/module.h>
2021-01-10 17:49:05 +03:00
# include <linux/gpio/consumer.h>
2010-06-03 05:44:00 +04:00
# include <linux/i2c.h>
2010-02-28 14:47:49 +03:00
# include <linux/interrupt.h>
# include <linux/irq.h>
2010-06-03 05:44:00 +04:00
# include <linux/power_supply.h>
# include <linux/slab.h>
2010-02-28 14:47:49 +03:00
# include <linux/z2_battery.h>
# define Z2_DEFAULT_NAME "Z2"
struct z2_charger {
2015-03-12 10:44:11 +03:00
struct z2_battery_info * info ;
2021-01-10 17:49:05 +03:00
struct gpio_desc * charge_gpiod ;
2015-03-12 10:44:11 +03:00
int bat_status ;
struct i2c_client * client ;
struct power_supply * batt_ps ;
struct power_supply_desc batt_ps_desc ;
struct mutex work_lock ;
struct work_struct bat_work ;
2010-02-28 14:47:49 +03:00
} ;
static unsigned long z2_read_bat ( struct z2_charger * charger )
{
int data ;
data = i2c_smbus_read_byte_data ( charger - > client ,
charger - > info - > batt_I2C_reg ) ;
if ( data < 0 )
return 0 ;
return data * charger - > info - > batt_mult / charger - > info - > batt_div ;
}
static int z2_batt_get_property ( struct power_supply * batt_ps ,
enum power_supply_property psp ,
union power_supply_propval * val )
{
2015-03-12 10:44:11 +03:00
struct z2_charger * charger = power_supply_get_drvdata ( batt_ps ) ;
2010-02-28 14:47:49 +03:00
struct z2_battery_info * info = charger - > info ;
switch ( psp ) {
case POWER_SUPPLY_PROP_STATUS :
val - > intval = charger - > bat_status ;
break ;
case POWER_SUPPLY_PROP_TECHNOLOGY :
val - > intval = info - > batt_tech ;
break ;
case POWER_SUPPLY_PROP_VOLTAGE_NOW :
if ( info - > batt_I2C_reg > = 0 )
val - > intval = z2_read_bat ( charger ) ;
else
return - EINVAL ;
break ;
case POWER_SUPPLY_PROP_VOLTAGE_MAX :
if ( info - > max_voltage > = 0 )
val - > intval = info - > max_voltage ;
else
return - EINVAL ;
break ;
case POWER_SUPPLY_PROP_VOLTAGE_MIN :
if ( info - > min_voltage > = 0 )
val - > intval = info - > min_voltage ;
else
return - EINVAL ;
break ;
case POWER_SUPPLY_PROP_PRESENT :
val - > intval = 1 ;
break ;
default :
return - EINVAL ;
}
return 0 ;
}
static void z2_batt_ext_power_changed ( struct power_supply * batt_ps )
{
2015-03-12 10:44:11 +03:00
struct z2_charger * charger = power_supply_get_drvdata ( batt_ps ) ;
2010-02-28 14:47:49 +03:00
schedule_work ( & charger - > bat_work ) ;
}
static void z2_batt_update ( struct z2_charger * charger )
{
int old_status = charger - > bat_status ;
mutex_lock ( & charger - > work_lock ) ;
2021-01-10 17:49:05 +03:00
charger - > bat_status = charger - > charge_gpiod ?
( gpiod_get_value ( charger - > charge_gpiod ) ?
2010-02-28 14:47:49 +03:00
POWER_SUPPLY_STATUS_CHARGING :
POWER_SUPPLY_STATUS_DISCHARGING ) :
POWER_SUPPLY_STATUS_UNKNOWN ;
if ( old_status ! = charger - > bat_status ) {
2015-03-12 10:44:11 +03:00
pr_debug ( " %s: %i -> %i \n " , charger - > batt_ps - > desc - > name ,
old_status ,
charger - > bat_status ) ;
power_supply_changed ( charger - > batt_ps ) ;
2010-02-28 14:47:49 +03:00
}
mutex_unlock ( & charger - > work_lock ) ;
}
static void z2_batt_work ( struct work_struct * work )
{
struct z2_charger * charger ;
charger = container_of ( work , struct z2_charger , bat_work ) ;
z2_batt_update ( charger ) ;
}
static irqreturn_t z2_charge_switch_irq ( int irq , void * devid )
{
struct z2_charger * charger = devid ;
schedule_work ( & charger - > bat_work ) ;
return IRQ_HANDLED ;
}
static int z2_batt_ps_init ( struct z2_charger * charger , int props )
{
int i = 0 ;
enum power_supply_property * prop ;
struct z2_battery_info * info = charger - > info ;
2021-01-10 17:49:05 +03:00
if ( charger - > charge_gpiod )
2011-03-11 16:09:32 +03:00
props + + ; /* POWER_SUPPLY_PROP_STATUS */
2010-02-28 14:47:49 +03:00
if ( info - > batt_tech > = 0 )
props + + ; /* POWER_SUPPLY_PROP_TECHNOLOGY */
if ( info - > batt_I2C_reg > = 0 )
props + + ; /* POWER_SUPPLY_PROP_VOLTAGE_NOW */
if ( info - > max_voltage > = 0 )
props + + ; /* POWER_SUPPLY_PROP_VOLTAGE_MAX */
if ( info - > min_voltage > = 0 )
props + + ; /* POWER_SUPPLY_PROP_VOLTAGE_MIN */
treewide: kzalloc() -> kcalloc()
The kzalloc() function has a 2-factor argument form, kcalloc(). This
patch replaces cases of:
kzalloc(a * b, gfp)
with:
kcalloc(a * b, gfp)
as well as handling cases of:
kzalloc(a * b * c, gfp)
with:
kzalloc(array3_size(a, b, c), gfp)
as it's slightly less ugly than:
kzalloc_array(array_size(a, b), c, gfp)
This does, however, attempt to ignore constant size factors like:
kzalloc(4 * 1024, gfp)
though any constants defined via macros get caught up in the conversion.
Any factors with a sizeof() of "unsigned char", "char", and "u8" were
dropped, since they're redundant.
The Coccinelle script used for this was:
// Fix redundant parens around sizeof().
@@
type TYPE;
expression THING, E;
@@
(
kzalloc(
- (sizeof(TYPE)) * E
+ sizeof(TYPE) * E
, ...)
|
kzalloc(
- (sizeof(THING)) * E
+ sizeof(THING) * E
, ...)
)
// Drop single-byte sizes and redundant parens.
@@
expression COUNT;
typedef u8;
typedef __u8;
@@
(
kzalloc(
- sizeof(u8) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(__u8) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(char) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(unsigned char) * (COUNT)
+ COUNT
, ...)
|
kzalloc(
- sizeof(u8) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(__u8) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(char) * COUNT
+ COUNT
, ...)
|
kzalloc(
- sizeof(unsigned char) * COUNT
+ COUNT
, ...)
)
// 2-factor product with sizeof(type/expression) and identifier or constant.
@@
type TYPE;
expression THING;
identifier COUNT_ID;
constant COUNT_CONST;
@@
(
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (COUNT_ID)
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * COUNT_ID
+ COUNT_ID, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (COUNT_CONST)
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * COUNT_CONST
+ COUNT_CONST, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (COUNT_ID)
+ COUNT_ID, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * COUNT_ID
+ COUNT_ID, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (COUNT_CONST)
+ COUNT_CONST, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * COUNT_CONST
+ COUNT_CONST, sizeof(THING)
, ...)
)
// 2-factor product, only identifiers.
@@
identifier SIZE, COUNT;
@@
- kzalloc
+ kcalloc
(
- SIZE * COUNT
+ COUNT, SIZE
, ...)
// 3-factor product with 1 sizeof(type) or sizeof(expression), with
// redundant parens removed.
@@
expression THING;
identifier STRIDE, COUNT;
type TYPE;
@@
(
kzalloc(
- sizeof(TYPE) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(TYPE) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(TYPE))
, ...)
|
kzalloc(
- sizeof(THING) * (COUNT) * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * (COUNT) * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * COUNT * (STRIDE)
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
|
kzalloc(
- sizeof(THING) * COUNT * STRIDE
+ array3_size(COUNT, STRIDE, sizeof(THING))
, ...)
)
// 3-factor product with 2 sizeof(variable), with redundant parens removed.
@@
expression THING1, THING2;
identifier COUNT;
type TYPE1, TYPE2;
@@
(
kzalloc(
- sizeof(TYPE1) * sizeof(TYPE2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(TYPE2))
, ...)
|
kzalloc(
- sizeof(THING1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(THING1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(THING1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * COUNT
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
|
kzalloc(
- sizeof(TYPE1) * sizeof(THING2) * (COUNT)
+ array3_size(COUNT, sizeof(TYPE1), sizeof(THING2))
, ...)
)
// 3-factor product, only identifiers, with redundant parens removed.
@@
identifier STRIDE, SIZE, COUNT;
@@
(
kzalloc(
- (COUNT) * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * (STRIDE) * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * STRIDE * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- (COUNT) * (STRIDE) * (SIZE)
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
|
kzalloc(
- COUNT * STRIDE * SIZE
+ array3_size(COUNT, STRIDE, SIZE)
, ...)
)
// Any remaining multi-factor products, first at least 3-factor products,
// when they're not all constants...
@@
expression E1, E2, E3;
constant C1, C2, C3;
@@
(
kzalloc(C1 * C2 * C3, ...)
|
kzalloc(
- (E1) * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- (E1) * (E2) * E3
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- (E1) * (E2) * (E3)
+ array3_size(E1, E2, E3)
, ...)
|
kzalloc(
- E1 * E2 * E3
+ array3_size(E1, E2, E3)
, ...)
)
// And then all remaining 2 factors products when they're not all constants,
// keeping sizeof() as the second factor argument.
@@
expression THING, E1, E2;
type TYPE;
constant C1, C2, C3;
@@
(
kzalloc(sizeof(THING) * C2, ...)
|
kzalloc(sizeof(TYPE) * C2, ...)
|
kzalloc(C1 * C2 * C3, ...)
|
kzalloc(C1 * C2, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * (E2)
+ E2, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(TYPE) * E2
+ E2, sizeof(TYPE)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * (E2)
+ E2, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- sizeof(THING) * E2
+ E2, sizeof(THING)
, ...)
|
- kzalloc
+ kcalloc
(
- (E1) * E2
+ E1, E2
, ...)
|
- kzalloc
+ kcalloc
(
- (E1) * (E2)
+ E1, E2
, ...)
|
- kzalloc
+ kcalloc
(
- E1 * E2
+ E1, E2
, ...)
)
Signed-off-by: Kees Cook <keescook@chromium.org>
2018-06-13 00:03:40 +03:00
prop = kcalloc ( props , sizeof ( * prop ) , GFP_KERNEL ) ;
2010-02-28 14:47:49 +03:00
if ( ! prop )
return - ENOMEM ;
prop [ i + + ] = POWER_SUPPLY_PROP_PRESENT ;
2021-01-10 17:49:05 +03:00
if ( charger - > charge_gpiod )
2010-02-28 14:47:49 +03:00
prop [ i + + ] = POWER_SUPPLY_PROP_STATUS ;
if ( info - > batt_tech > = 0 )
prop [ i + + ] = POWER_SUPPLY_PROP_TECHNOLOGY ;
if ( info - > batt_I2C_reg > = 0 )
prop [ i + + ] = POWER_SUPPLY_PROP_VOLTAGE_NOW ;
if ( info - > max_voltage > = 0 )
prop [ i + + ] = POWER_SUPPLY_PROP_VOLTAGE_MAX ;
if ( info - > min_voltage > = 0 )
prop [ i + + ] = POWER_SUPPLY_PROP_VOLTAGE_MIN ;
if ( ! info - > batt_name ) {
dev_info ( & charger - > client - > dev ,
" Please consider setting proper battery "
" name in platform definition file, falling "
" back to name \" Z2_DEFAULT_NAME \" \n " ) ;
2015-03-12 10:44:11 +03:00
charger - > batt_ps_desc . name = Z2_DEFAULT_NAME ;
2010-02-28 14:47:49 +03:00
} else
2015-03-12 10:44:11 +03:00
charger - > batt_ps_desc . name = info - > batt_name ;
2010-02-28 14:47:49 +03:00
2015-03-12 10:44:11 +03:00
charger - > batt_ps_desc . properties = prop ;
charger - > batt_ps_desc . num_properties = props ;
charger - > batt_ps_desc . type = POWER_SUPPLY_TYPE_BATTERY ;
charger - > batt_ps_desc . get_property = z2_batt_get_property ;
charger - > batt_ps_desc . external_power_changed =
z2_batt_ext_power_changed ;
charger - > batt_ps_desc . use_for_apm = 1 ;
2010-02-28 14:47:49 +03:00
return 0 ;
}
2012-11-19 22:22:23 +04:00
static int z2_batt_probe ( struct i2c_client * client ,
2010-02-28 14:47:49 +03:00
const struct i2c_device_id * id )
{
int ret = 0 ;
int props = 1 ; /* POWER_SUPPLY_PROP_PRESENT */
struct z2_charger * charger ;
struct z2_battery_info * info = client - > dev . platform_data ;
2015-03-12 10:44:11 +03:00
struct power_supply_config psy_cfg = { } ;
2010-02-28 14:47:49 +03:00
if ( info = = NULL ) {
dev_err ( & client - > dev ,
" Please set platform device platform_data "
" to a valid z2_battery_info pointer! \n " ) ;
return - EINVAL ;
}
charger = kzalloc ( sizeof ( * charger ) , GFP_KERNEL ) ;
if ( charger = = NULL )
return - ENOMEM ;
charger - > bat_status = POWER_SUPPLY_STATUS_UNKNOWN ;
charger - > info = info ;
charger - > client = client ;
i2c_set_clientdata ( client , charger ) ;
2015-03-12 10:44:11 +03:00
psy_cfg . drv_data = charger ;
2010-02-28 14:47:49 +03:00
mutex_init ( & charger - > work_lock ) ;
2021-01-10 17:49:05 +03:00
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 " ) ;
2010-02-28 14:47:49 +03:00
2021-01-10 17:49:05 +03:00
if ( charger - > charge_gpiod ) {
gpiod_set_consumer_name ( charger - > charge_gpiod , " BATT CHRG " ) ;
2010-02-28 14:47:49 +03:00
2021-01-10 17:49:05 +03:00
irq_set_irq_type ( gpiod_to_irq ( charger - > charge_gpiod ) ,
2011-03-28 19:49:12 +04:00
IRQ_TYPE_EDGE_BOTH ) ;
2021-01-10 17:49:05 +03:00
ret = request_irq ( gpiod_to_irq ( charger - > charge_gpiod ) ,
2011-09-22 12:59:11 +04:00
z2_charge_switch_irq , 0 ,
2010-02-28 14:47:49 +03:00
" AC Detect " , charger ) ;
if ( ret )
2021-01-10 17:49:05 +03:00
goto err ;
2010-02-28 14:47:49 +03:00
}
ret = z2_batt_ps_init ( charger , props ) ;
if ( ret )
goto err3 ;
INIT_WORK ( & charger - > bat_work , z2_batt_work ) ;
2015-03-12 10:44:11 +03:00
charger - > batt_ps = power_supply_register ( & client - > dev ,
& charger - > batt_ps_desc ,
& psy_cfg ) ;
if ( IS_ERR ( charger - > batt_ps ) ) {
ret = PTR_ERR ( charger - > batt_ps ) ;
2010-02-28 14:47:49 +03:00
goto err4 ;
2015-03-12 10:44:11 +03:00
}
2010-02-28 14:47:49 +03:00
schedule_work ( & charger - > bat_work ) ;
return 0 ;
err4 :
2015-03-12 10:44:11 +03:00
kfree ( charger - > batt_ps_desc . properties ) ;
2010-02-28 14:47:49 +03:00
err3 :
2021-01-10 17:49:05 +03:00
if ( charger - > charge_gpiod )
free_irq ( gpiod_to_irq ( charger - > charge_gpiod ) , charger ) ;
2010-02-28 14:47:49 +03:00
err :
kfree ( charger ) ;
return ret ;
}
2012-11-19 22:26:07 +04:00
static int z2_batt_remove ( struct i2c_client * client )
2010-02-28 14:47:49 +03:00
{
struct z2_charger * charger = i2c_get_clientdata ( client ) ;
2010-12-11 19:51:45 +03:00
cancel_work_sync ( & charger - > bat_work ) ;
2015-03-12 10:44:11 +03:00
power_supply_unregister ( charger - > batt_ps ) ;
2010-02-28 14:47:49 +03:00
2015-03-12 10:44:11 +03:00
kfree ( charger - > batt_ps_desc . properties ) ;
2021-01-10 17:49:05 +03:00
if ( charger - > charge_gpiod )
free_irq ( gpiod_to_irq ( charger - > charge_gpiod ) , charger ) ;
2010-02-28 14:47:49 +03:00
kfree ( charger ) ;
return 0 ;
}
# ifdef CONFIG_PM
2011-04-11 03:40:13 +04:00
static int z2_batt_suspend ( struct device * dev )
2010-02-28 14:47:49 +03:00
{
2011-04-11 03:40:13 +04:00
struct i2c_client * client = to_i2c_client ( dev ) ;
2010-12-11 19:51:45 +03:00
struct z2_charger * charger = i2c_get_clientdata ( client ) ;
2012-08-21 01:51:24 +04:00
flush_work ( & charger - > bat_work ) ;
2010-02-28 14:47:49 +03:00
return 0 ;
}
2011-04-11 03:40:13 +04:00
static int z2_batt_resume ( struct device * dev )
2010-02-28 14:47:49 +03:00
{
2011-04-11 03:40:13 +04:00
struct i2c_client * client = to_i2c_client ( dev ) ;
2010-02-28 14:47:49 +03:00
struct z2_charger * charger = i2c_get_clientdata ( client ) ;
schedule_work ( & charger - > bat_work ) ;
return 0 ;
}
2011-04-11 03:40:13 +04:00
static const struct dev_pm_ops z2_battery_pm_ops = {
. suspend = z2_batt_suspend ,
. resume = z2_batt_resume ,
} ;
# define Z2_BATTERY_PM_OPS (&z2_battery_pm_ops)
2010-02-28 14:47:49 +03:00
# else
2011-04-11 03:40:13 +04:00
# define Z2_BATTERY_PM_OPS (NULL)
2010-02-28 14:47:49 +03:00
# endif
static const struct i2c_device_id z2_batt_id [ ] = {
{ " aer915 " , 0 } ,
{ }
} ;
2011-03-01 12:24:34 +03:00
MODULE_DEVICE_TABLE ( i2c , z2_batt_id ) ;
2010-02-28 14:47:49 +03:00
static struct i2c_driver z2_batt_driver = {
. driver = {
. name = " z2-battery " ,
2011-04-11 03:40:13 +04:00
. pm = Z2_BATTERY_PM_OPS
2010-02-28 14:47:49 +03:00
} ,
. probe = z2_batt_probe ,
2012-11-19 22:20:40 +04:00
. remove = z2_batt_remove ,
2010-02-28 14:47:49 +03:00
. id_table = z2_batt_id ,
} ;
2012-01-21 10:42:54 +04:00
module_i2c_driver ( z2_batt_driver ) ;
2010-02-28 14:47:49 +03:00
MODULE_LICENSE ( " GPL " ) ;
MODULE_AUTHOR ( " Peter Edwards <sweetlilmre@gmail.com> " ) ;
MODULE_DESCRIPTION ( " Zipit Z2 battery driver " ) ;