2022-06-07 17:11:31 +03:00
// SPDX-License-Identifier: GPL-2.0-only
2016-01-25 18:43:45 +03:00
/*
* I2C access driver for TI TPS65912x PMICs
*
2020-07-22 22:24:54 +03:00
* Copyright ( C ) 2015 Texas Instruments Incorporated - https : //www.ti.com/
2016-01-25 18:43:45 +03:00
* Andrew F . Davis < afd @ ti . com >
*
* Based on the TPS65218 driver and the previous TPS65912 driver by
* Margarita Olaya Cabrera < magi @ slimlogic . co . uk >
*/
# include <linux/i2c.h>
# include <linux/module.h>
# include <linux/regmap.h>
# include <linux/mfd/tps65912.h>
static const struct of_device_id tps65912_i2c_of_match_table [ ] = {
{ . compatible = " ti,tps65912 " , } ,
{ /* sentinel */ }
} ;
2017-01-16 17:41:58 +03:00
MODULE_DEVICE_TABLE ( of , tps65912_i2c_of_match_table ) ;
2016-01-25 18:43:45 +03:00
2022-11-19 01:43:28 +03:00
static int tps65912_i2c_probe ( struct i2c_client * client )
2016-01-25 18:43:45 +03:00
{
struct tps65912 * tps ;
tps = devm_kzalloc ( & client - > dev , sizeof ( * tps ) , GFP_KERNEL ) ;
if ( ! tps )
return - ENOMEM ;
i2c_set_clientdata ( client , tps ) ;
tps - > dev = & client - > dev ;
tps - > irq = client - > irq ;
tps - > regmap = devm_regmap_init_i2c ( client , & tps65912_regmap_config ) ;
if ( IS_ERR ( tps - > regmap ) ) {
dev_err ( tps - > dev , " Failed to initialize register map \n " ) ;
return PTR_ERR ( tps - > regmap ) ;
}
return tps65912_device_init ( tps ) ;
}
2022-08-15 11:02:30 +03:00
static void tps65912_i2c_remove ( struct i2c_client * client )
2016-01-25 18:43:45 +03:00
{
struct tps65912 * tps = i2c_get_clientdata ( client ) ;
2021-10-12 18:39:35 +03:00
tps65912_device_exit ( tps ) ;
2016-01-25 18:43:45 +03:00
}
static const struct i2c_device_id tps65912_i2c_id_table [ ] = {
{ " tps65912 " , 0 } ,
{ /* sentinel */ }
} ;
MODULE_DEVICE_TABLE ( i2c , tps65912_i2c_id_table ) ;
static struct i2c_driver tps65912_i2c_driver = {
. driver = {
. name = " tps65912 " ,
. of_match_table = tps65912_i2c_of_match_table ,
} ,
2023-05-15 21:27:52 +03:00
. probe = tps65912_i2c_probe ,
2016-01-25 18:43:45 +03:00
. remove = tps65912_i2c_remove ,
. id_table = tps65912_i2c_id_table ,
} ;
module_i2c_driver ( tps65912_i2c_driver ) ;
MODULE_AUTHOR ( " Andrew F. Davis <afd@ti.com> " ) ;
MODULE_DESCRIPTION ( " TPS65912x I2C Interface Driver " ) ;
MODULE_LICENSE ( " GPL v2 " ) ;