2022-06-07 17:11:31 +03:00
// SPDX-License-Identifier: GPL-2.0-only
2016-01-25 19:14:12 +03:00
/*
2023-05-15 20:44:08 +03:00
* Copyright ( C ) 2015 - 2023 Texas Instruments Incorporated - https : //www.ti.com/
* Andrew Davis < afd @ ti . com >
2016-01-25 19:14:12 +03:00
*/
# include <linux/gpio/driver.h>
# include <linux/i2c.h>
# include <linux/module.h>
# include <linux/mutex.h>
# define TPIC2810_WS_COMMAND 0x44
/**
* struct tpic2810 - GPIO driver data
* @ chip : GPIO controller chip
* @ client : I2C device pointer
* @ buffer : Buffer for device register
* @ lock : Protects write sequences
*/
struct tpic2810 {
struct gpio_chip chip ;
struct i2c_client * client ;
u8 buffer ;
struct mutex lock ;
} ;
2016-02-15 15:09:14 +03:00
static void tpic2810_set ( struct gpio_chip * chip , unsigned offset , int value ) ;
2016-01-25 19:14:12 +03:00
static int tpic2810_get_direction ( struct gpio_chip * chip ,
unsigned offset )
{
/* This device always output */
2019-11-06 11:54:12 +03:00
return GPIO_LINE_DIRECTION_OUT ;
2016-01-25 19:14:12 +03:00
}
static int tpic2810_direction_input ( struct gpio_chip * chip ,
unsigned offset )
{
/* This device is output only */
return - EINVAL ;
}
static int tpic2810_direction_output ( struct gpio_chip * chip ,
unsigned offset , int value )
{
/* This device always output */
2016-02-15 15:09:14 +03:00
tpic2810_set ( chip , offset , value ) ;
2016-01-25 19:14:12 +03:00
return 0 ;
}
2016-03-23 14:49:41 +03:00
static void tpic2810_set_mask_bits ( struct gpio_chip * chip , u8 mask , u8 bits )
2016-01-25 19:14:12 +03:00
{
struct tpic2810 * gpio = gpiochip_get_data ( chip ) ;
2016-03-23 14:49:41 +03:00
u8 buffer ;
int err ;
2016-01-25 19:14:12 +03:00
mutex_lock ( & gpio - > lock ) ;
2016-03-23 14:49:41 +03:00
buffer = gpio - > buffer & ~ mask ;
buffer | = ( mask & bits ) ;
2016-01-25 19:14:12 +03:00
2016-03-23 14:49:41 +03:00
err = i2c_smbus_write_byte_data ( gpio - > client , TPIC2810_WS_COMMAND ,
buffer ) ;
if ( ! err )
gpio - > buffer = buffer ;
2016-01-25 19:14:12 +03:00
mutex_unlock ( & gpio - > lock ) ;
}
2016-03-23 14:49:41 +03:00
static void tpic2810_set ( struct gpio_chip * chip , unsigned offset , int value )
{
tpic2810_set_mask_bits ( chip , BIT ( offset ) , value ? BIT ( offset ) : 0 ) ;
}
2016-01-25 19:14:12 +03:00
static void tpic2810_set_multiple ( struct gpio_chip * chip , unsigned long * mask ,
unsigned long * bits )
{
2016-03-23 14:49:41 +03:00
tpic2810_set_mask_bits ( chip , * mask , * bits ) ;
2016-01-25 19:14:12 +03:00
}
2016-09-11 15:14:37 +03:00
static const struct gpio_chip template_chip = {
2016-01-25 19:14:12 +03:00
. label = " tpic2810 " ,
. owner = THIS_MODULE ,
. get_direction = tpic2810_get_direction ,
. direction_input = tpic2810_direction_input ,
. direction_output = tpic2810_direction_output ,
. set = tpic2810_set ,
. set_multiple = tpic2810_set_multiple ,
. base = - 1 ,
. ngpio = 8 ,
. can_sleep = true ,
} ;
static const struct of_device_id tpic2810_of_match_table [ ] = {
{ . compatible = " ti,tpic2810 " } ,
{ /* sentinel */ }
} ;
MODULE_DEVICE_TABLE ( of , tpic2810_of_match_table ) ;
drivers/gpio: use simple i2c probe
All these drivers have an i2c probe function which doesn't use the
"struct i2c_device_id *id" parameter, so they can trivially be
converted to the "probe_new" style of probe with a single argument.
This is part of an ongoing transition to single-argument i2c probe
functions. Old-style probe functions involve a call to i2c_match_id:
in drivers/i2c/i2c-core-base.c,
/*
* When there are no more users of probe(),
* rename probe_new to probe.
*/
if (driver->probe_new)
status = driver->probe_new(client);
else if (driver->probe)
status = driver->probe(client,
i2c_match_id(driver->id_table, client));
else
status = -EINVAL;
Drivers which don't need the second parameter can be declared using
probe_new instead, avoiding the call to i2c_match_id. Drivers which do
can still be converted to probe_new-style, calling i2c_match_id
themselves (as is done currently for of_match_id).
This change was done using the following Coccinelle script, and fixed
up for whitespace changes:
@ rule1 @
identifier fn;
identifier client, id;
@@
- static int fn(struct i2c_client *client, const struct i2c_device_id *id)
+ static int fn(struct i2c_client *client)
{
...when != id
}
@ rule2 depends on rule1 @
identifier rule1.fn;
identifier driver;
@@
struct i2c_driver driver = {
- .probe
+ .probe_new
=
(
fn
|
- &fn
+ fn
)
,
};
Signed-off-by: Stephen Kitt <steve@sk2.org>
Signed-off-by: Bartosz Golaszewski <bartosz.golaszewski@linaro.org>
2022-10-12 17:25:23 +03:00
static int tpic2810_probe ( struct i2c_client * client )
2016-01-25 19:14:12 +03:00
{
struct tpic2810 * gpio ;
gpio = devm_kzalloc ( & client - > dev , sizeof ( * gpio ) , GFP_KERNEL ) ;
if ( ! gpio )
return - ENOMEM ;
gpio - > chip = template_chip ;
gpio - > chip . parent = & client - > dev ;
gpio - > client = client ;
mutex_init ( & gpio - > lock ) ;
2023-05-15 20:44:08 +03:00
return devm_gpiochip_add_data ( & client - > dev , & gpio - > chip , gpio ) ;
2016-01-25 19:14:12 +03:00
}
static const struct i2c_device_id tpic2810_id_table [ ] = {
{ " tpic2810 " , } ,
{ /* sentinel */ }
} ;
MODULE_DEVICE_TABLE ( i2c , tpic2810_id_table ) ;
static struct i2c_driver tpic2810_driver = {
. driver = {
. name = " tpic2810 " ,
. of_match_table = tpic2810_of_match_table ,
} ,
2023-05-20 20:47:35 +03:00
. probe = tpic2810_probe ,
2016-01-25 19:14:12 +03:00
. id_table = tpic2810_id_table ,
} ;
module_i2c_driver ( tpic2810_driver ) ;
2023-05-15 20:44:08 +03:00
MODULE_AUTHOR ( " Andrew Davis <afd@ti.com> " ) ;
2016-01-25 19:14:12 +03:00
MODULE_DESCRIPTION ( " TPIC2810 8-Bit LED Driver GPIO Driver " ) ;
MODULE_LICENSE ( " GPL v2 " ) ;