2013-07-25 07:33:18 +04:00
/*
* Copyright ( C ) 2011 - 2013 Freescale Semiconductor , Inc . All Rights Reserved .
*
* This program is free software ; you can redistribute it and / or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation ; either version 2 of the License , or
* ( at your option ) any later version .
*
* This program is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU General Public License for more details .
*
* You should have received a copy of the GNU General Public License
* along with this program ; if not , write to the Free Software
* Foundation , Inc . , 59 Temple Place , Suite 330 , Boston , MA 02111 - 1307 USA
*/
# include <linux/kernel.h>
# include <linux/module.h>
# include <linux/init.h>
# include <linux/err.h>
# include <linux/of.h>
# include <linux/of_device.h>
# include <linux/regulator/of_regulator.h>
# include <linux/platform_device.h>
# include <linux/regulator/driver.h>
# include <linux/regulator/machine.h>
# include <linux/regulator/pfuze100.h>
# include <linux/i2c.h>
# include <linux/slab.h>
# include <linux/regmap.h>
# define PFUZE_NUMREGS 128
# define PFUZE100_VOL_OFFSET 0
# define PFUZE100_STANDBY_OFFSET 1
# define PFUZE100_MODE_OFFSET 3
# define PFUZE100_CONF_OFFSET 4
# define PFUZE100_DEVICEID 0x0
# define PFUZE100_REVID 0x3
2013-12-09 11:24:19 +04:00
# define PFUZE100_FABID 0x4
2013-07-25 07:33:18 +04:00
# define PFUZE100_SW1ABVOL 0x20
# define PFUZE100_SW1CVOL 0x2e
# define PFUZE100_SW2VOL 0x35
# define PFUZE100_SW3AVOL 0x3c
# define PFUZE100_SW3BVOL 0x43
# define PFUZE100_SW4VOL 0x4a
# define PFUZE100_SWBSTCON1 0x66
# define PFUZE100_VREFDDRCON 0x6a
# define PFUZE100_VSNVSVOL 0x6b
# define PFUZE100_VGEN1VOL 0x6c
# define PFUZE100_VGEN2VOL 0x6d
# define PFUZE100_VGEN3VOL 0x6e
# define PFUZE100_VGEN4VOL 0x6f
# define PFUZE100_VGEN5VOL 0x70
# define PFUZE100_VGEN6VOL 0x71
2014-03-04 13:40:36 +04:00
enum chips { PFUZE100 , PFUZE200 , PFUZE_NUM } ;
2013-07-25 07:33:18 +04:00
struct pfuze_regulator {
struct regulator_desc desc ;
unsigned char stby_reg ;
unsigned char stby_mask ;
} ;
struct pfuze_chip {
2014-03-04 13:40:36 +04:00
int chip_id ;
2013-07-25 07:33:18 +04:00
struct regmap * regmap ;
struct device * dev ;
struct pfuze_regulator regulator_descs [ PFUZE100_MAX_REGULATOR ] ;
struct regulator_dev * regulators [ PFUZE100_MAX_REGULATOR ] ;
} ;
static const int pfuze100_swbst [ ] = {
5000000 , 5050000 , 5100000 , 5150000 ,
} ;
static const int pfuze100_vsnvs [ ] = {
1000000 , 1100000 , 1200000 , 1300000 , 1500000 , 1800000 , 3000000 ,
} ;
2014-03-04 13:40:36 +04:00
static const struct i2c_device_id pfuze_device_id [ PFUZE_NUM ] = {
{ . name = " pfuze100 " , . driver_data = PFUZE100 } ,
{ . name = " pfuze200 " , . driver_data = PFUZE200 } ,
2013-07-25 07:33:18 +04:00
} ;
MODULE_DEVICE_TABLE ( i2c , pfuze_device_id ) ;
2014-03-04 13:40:36 +04:00
static const struct of_device_id pfuze_dt_ids [ PFUZE_NUM ] = {
{ . compatible = " fsl,pfuze100 " , . data = ( void * ) PFUZE100 } ,
{ . compatible = " fsl,pfuze200 " , . data = ( void * ) PFUZE200 } ,
2013-07-25 07:33:18 +04:00
} ;
MODULE_DEVICE_TABLE ( of , pfuze_dt_ids ) ;
static int pfuze100_set_ramp_delay ( struct regulator_dev * rdev , int ramp_delay )
{
struct pfuze_chip * pfuze100 = rdev_get_drvdata ( rdev ) ;
int id = rdev - > desc - > id ;
2013-07-30 18:47:44 +04:00
unsigned int ramp_bits ;
2013-07-25 07:33:18 +04:00
int ret ;
if ( id < PFUZE100_SWBST ) {
2013-07-30 18:47:44 +04:00
ramp_delay = 12500 / ramp_delay ;
2013-07-25 07:33:18 +04:00
ramp_bits = ( ramp_delay > > 1 ) - ( ramp_delay > > 3 ) ;
2013-07-30 18:47:44 +04:00
ret = regmap_update_bits ( pfuze100 - > regmap ,
rdev - > desc - > vsel_reg + 4 ,
0xc0 , ramp_bits < < 6 ) ;
2013-07-25 07:33:18 +04:00
if ( ret < 0 )
dev_err ( pfuze100 - > dev , " ramp failed, err %d \n " , ret ) ;
} else
ret = - EACCES ;
return ret ;
}
static struct regulator_ops pfuze100_ldo_regulator_ops = {
. enable = regulator_enable_regmap ,
. disable = regulator_disable_regmap ,
. is_enabled = regulator_is_enabled_regmap ,
. list_voltage = regulator_list_voltage_linear ,
. set_voltage_sel = regulator_set_voltage_sel_regmap ,
. get_voltage_sel = regulator_get_voltage_sel_regmap ,
} ;
static struct regulator_ops pfuze100_fixed_regulator_ops = {
. list_voltage = regulator_list_voltage_linear ,
} ;
static struct regulator_ops pfuze100_sw_regulator_ops = {
. list_voltage = regulator_list_voltage_linear ,
. set_voltage_sel = regulator_set_voltage_sel_regmap ,
. get_voltage_sel = regulator_get_voltage_sel_regmap ,
. set_voltage_time_sel = regulator_set_voltage_time_sel ,
. set_ramp_delay = pfuze100_set_ramp_delay ,
} ;
static struct regulator_ops pfuze100_swb_regulator_ops = {
. list_voltage = regulator_list_voltage_table ,
2013-07-29 11:38:58 +04:00
. map_voltage = regulator_map_voltage_ascend ,
2013-07-25 07:33:18 +04:00
. set_voltage_sel = regulator_set_voltage_sel_regmap ,
. get_voltage_sel = regulator_get_voltage_sel_regmap ,
} ;
2014-03-04 13:40:36 +04:00
# define PFUZE100_FIXED_REG(_chip, _name, base, voltage) \
[ _chip # # _ # # _name ] = { \
2013-07-25 07:33:18 +04:00
. desc = { \
. name = # _name , \
. n_voltages = 1 , \
. ops = & pfuze100_fixed_regulator_ops , \
. type = REGULATOR_VOLTAGE , \
2014-03-04 13:40:36 +04:00
. id = _chip # # _ # # _name , \
2013-07-25 07:33:18 +04:00
. owner = THIS_MODULE , \
. min_uV = ( voltage ) , \
. enable_reg = ( base ) , \
. enable_mask = 0x10 , \
} , \
}
2014-03-04 13:40:36 +04:00
# define PFUZE100_SW_REG(_chip, _name, base, min, max, step) \
[ _chip # # _ # # _name ] = { \
2013-07-25 07:33:18 +04:00
. desc = { \
. name = # _name , \
. n_voltages = ( ( max ) - ( min ) ) / ( step ) + 1 , \
. ops = & pfuze100_sw_regulator_ops , \
. type = REGULATOR_VOLTAGE , \
2014-03-04 13:40:36 +04:00
. id = _chip # # _ # # _name , \
2013-07-25 07:33:18 +04:00
. owner = THIS_MODULE , \
. min_uV = ( min ) , \
. uV_step = ( step ) , \
. vsel_reg = ( base ) + PFUZE100_VOL_OFFSET , \
. vsel_mask = 0x3f , \
} , \
. stby_reg = ( base ) + PFUZE100_STANDBY_OFFSET , \
. stby_mask = 0x3f , \
}
2014-03-04 13:40:36 +04:00
# define PFUZE100_SWB_REG(_chip, _name, base, mask, voltages) \
[ _chip # # _ # # _name ] = { \
2013-07-25 07:33:18 +04:00
. desc = { \
. name = # _name , \
. n_voltages = ARRAY_SIZE ( voltages ) , \
. ops = & pfuze100_swb_regulator_ops , \
. type = REGULATOR_VOLTAGE , \
2014-03-04 13:40:36 +04:00
. id = _chip # # _ # # _name , \
2013-07-25 07:33:18 +04:00
. owner = THIS_MODULE , \
. volt_table = voltages , \
. vsel_reg = ( base ) , \
. vsel_mask = ( mask ) , \
} , \
}
2014-03-04 13:40:36 +04:00
# define PFUZE100_VGEN_REG(_chip, _name, base, min, max, step) \
[ _chip # # _ # # _name ] = { \
2013-07-25 07:33:18 +04:00
. desc = { \
. name = # _name , \
. n_voltages = ( ( max ) - ( min ) ) / ( step ) + 1 , \
. ops = & pfuze100_ldo_regulator_ops , \
. type = REGULATOR_VOLTAGE , \
2014-03-04 13:40:36 +04:00
. id = _chip # # _ # # _name , \
2013-07-25 07:33:18 +04:00
. owner = THIS_MODULE , \
. min_uV = ( min ) , \
. uV_step = ( step ) , \
. vsel_reg = ( base ) , \
. vsel_mask = 0xf , \
. enable_reg = ( base ) , \
. enable_mask = 0x10 , \
} , \
. stby_reg = ( base ) , \
. stby_mask = 0x20 , \
}
2014-03-04 13:40:36 +04:00
/* PFUZE100 */
2013-07-25 07:33:18 +04:00
static struct pfuze_regulator pfuze100_regulators [ ] = {
2014-03-04 13:40:36 +04:00
PFUZE100_SW_REG ( PFUZE100 , SW1AB , PFUZE100_SW1ABVOL , 300000 , 1875000 , 25000 ) ,
PFUZE100_SW_REG ( PFUZE100 , SW1C , PFUZE100_SW1CVOL , 300000 , 1875000 , 25000 ) ,
PFUZE100_SW_REG ( PFUZE100 , SW2 , PFUZE100_SW2VOL , 400000 , 1975000 , 25000 ) ,
PFUZE100_SW_REG ( PFUZE100 , SW3A , PFUZE100_SW3AVOL , 400000 , 1975000 , 25000 ) ,
PFUZE100_SW_REG ( PFUZE100 , SW3B , PFUZE100_SW3BVOL , 400000 , 1975000 , 25000 ) ,
PFUZE100_SW_REG ( PFUZE100 , SW4 , PFUZE100_SW4VOL , 400000 , 1975000 , 25000 ) ,
PFUZE100_SWB_REG ( PFUZE100 , SWBST , PFUZE100_SWBSTCON1 , 0x3 , pfuze100_swbst ) ,
PFUZE100_SWB_REG ( PFUZE100 , VSNVS , PFUZE100_VSNVSVOL , 0x7 , pfuze100_vsnvs ) ,
PFUZE100_FIXED_REG ( PFUZE100 , VREFDDR , PFUZE100_VREFDDRCON , 750000 ) ,
PFUZE100_VGEN_REG ( PFUZE100 , VGEN1 , PFUZE100_VGEN1VOL , 800000 , 1550000 , 50000 ) ,
PFUZE100_VGEN_REG ( PFUZE100 , VGEN2 , PFUZE100_VGEN2VOL , 800000 , 1550000 , 50000 ) ,
PFUZE100_VGEN_REG ( PFUZE100 , VGEN3 , PFUZE100_VGEN3VOL , 1800000 , 3300000 , 100000 ) ,
PFUZE100_VGEN_REG ( PFUZE100 , VGEN4 , PFUZE100_VGEN4VOL , 1800000 , 3300000 , 100000 ) ,
PFUZE100_VGEN_REG ( PFUZE100 , VGEN5 , PFUZE100_VGEN5VOL , 1800000 , 3300000 , 100000 ) ,
PFUZE100_VGEN_REG ( PFUZE100 , VGEN6 , PFUZE100_VGEN6VOL , 1800000 , 3300000 , 100000 ) ,
} ;
static struct pfuze_regulator pfuze200_regulators [ ] = {
PFUZE100_SW_REG ( PFUZE200 , SW1AB , PFUZE100_SW1ABVOL , 300000 , 1875000 , 25000 ) ,
PFUZE100_SW_REG ( PFUZE200 , SW2 , PFUZE100_SW2VOL , 400000 , 1975000 , 25000 ) ,
PFUZE100_SW_REG ( PFUZE200 , SW3A , PFUZE100_SW3AVOL , 400000 , 1975000 , 25000 ) ,
PFUZE100_SW_REG ( PFUZE200 , SW3B , PFUZE100_SW3BVOL , 400000 , 1975000 , 25000 ) ,
PFUZE100_SWB_REG ( PFUZE200 , SWBST , PFUZE100_SWBSTCON1 , 0x3 , pfuze100_swbst ) ,
PFUZE100_SWB_REG ( PFUZE200 , VSNVS , PFUZE100_VSNVSVOL , 0x7 , pfuze100_vsnvs ) ,
PFUZE100_FIXED_REG ( PFUZE200 , VREFDDR , PFUZE100_VREFDDRCON , 750000 ) ,
PFUZE100_VGEN_REG ( PFUZE200 , VGEN1 , PFUZE100_VGEN1VOL , 800000 , 1550000 , 50000 ) ,
PFUZE100_VGEN_REG ( PFUZE200 , VGEN2 , PFUZE100_VGEN2VOL , 800000 , 1550000 , 50000 ) ,
PFUZE100_VGEN_REG ( PFUZE200 , VGEN3 , PFUZE100_VGEN3VOL , 1800000 , 3300000 , 100000 ) ,
PFUZE100_VGEN_REG ( PFUZE200 , VGEN4 , PFUZE100_VGEN4VOL , 1800000 , 3300000 , 100000 ) ,
PFUZE100_VGEN_REG ( PFUZE200 , VGEN5 , PFUZE100_VGEN5VOL , 1800000 , 3300000 , 100000 ) ,
PFUZE100_VGEN_REG ( PFUZE200 , VGEN6 , PFUZE100_VGEN6VOL , 1800000 , 3300000 , 100000 ) ,
2013-07-25 07:33:18 +04:00
} ;
2014-03-04 13:40:36 +04:00
static struct pfuze_regulator * pfuze_regulators ;
2013-07-25 07:33:18 +04:00
# ifdef CONFIG_OF
2014-03-04 13:40:36 +04:00
/* PFUZE100 */
2013-07-25 07:33:18 +04:00
static struct of_regulator_match pfuze100_matches [ ] = {
{ . name = " sw1ab " , } ,
{ . name = " sw1c " , } ,
{ . name = " sw2 " , } ,
{ . name = " sw3a " , } ,
{ . name = " sw3b " , } ,
{ . name = " sw4 " , } ,
{ . name = " swbst " , } ,
{ . name = " vsnvs " , } ,
{ . name = " vrefddr " , } ,
{ . name = " vgen1 " , } ,
{ . name = " vgen2 " , } ,
{ . name = " vgen3 " , } ,
{ . name = " vgen4 " , } ,
{ . name = " vgen5 " , } ,
{ . name = " vgen6 " , } ,
} ;
2014-03-04 13:40:36 +04:00
/* PFUZE200 */
static struct of_regulator_match pfuze200_matches [ ] = {
{ . name = " sw1ab " , } ,
{ . name = " sw2 " , } ,
{ . name = " sw3a " , } ,
{ . name = " sw3b " , } ,
{ . name = " swbst " , } ,
{ . name = " vsnvs " , } ,
{ . name = " vrefddr " , } ,
{ . name = " vgen1 " , } ,
{ . name = " vgen2 " , } ,
{ . name = " vgen3 " , } ,
{ . name = " vgen4 " , } ,
{ . name = " vgen5 " , } ,
{ . name = " vgen6 " , } ,
} ;
static struct of_regulator_match * pfuze_matches ;
2013-07-25 07:33:18 +04:00
static int pfuze_parse_regulators_dt ( struct pfuze_chip * chip )
{
struct device * dev = chip - > dev ;
struct device_node * np , * parent ;
int ret ;
2014-02-19 06:46:14 +04:00
np = of_node_get ( dev - > of_node ) ;
2013-07-25 07:33:18 +04:00
if ( ! np )
2014-02-20 20:47:02 +04:00
return - EINVAL ;
2013-07-25 07:33:18 +04:00
2014-02-14 15:50:00 +04:00
parent = of_get_child_by_name ( np , " regulators " ) ;
2013-07-25 07:33:18 +04:00
if ( ! parent ) {
dev_err ( dev , " regulators node not found \n " ) ;
return - EINVAL ;
}
2014-03-04 13:40:36 +04:00
switch ( chip - > chip_id ) {
case PFUZE200 :
pfuze_matches = pfuze200_matches ;
ret = of_regulator_match ( dev , parent , pfuze200_matches ,
ARRAY_SIZE ( pfuze200_matches ) ) ;
break ;
case PFUZE100 :
default :
pfuze_matches = pfuze100_matches ;
ret = of_regulator_match ( dev , parent , pfuze100_matches ,
ARRAY_SIZE ( pfuze100_matches ) ) ;
break ;
}
2013-07-25 07:33:18 +04:00
of_node_put ( parent ) ;
if ( ret < 0 ) {
dev_err ( dev , " Error parsing regulator init data: %d \n " ,
ret ) ;
return ret ;
}
return 0 ;
}
static inline struct regulator_init_data * match_init_data ( int index )
{
2014-03-04 13:40:36 +04:00
return pfuze_matches [ index ] . init_data ;
2013-07-25 07:33:18 +04:00
}
static inline struct device_node * match_of_node ( int index )
{
2014-03-04 13:40:36 +04:00
return pfuze_matches [ index ] . of_node ;
2013-07-25 07:33:18 +04:00
}
# else
static int pfuze_parse_regulators_dt ( struct pfuze_chip * chip )
{
2013-07-26 06:27:18 +04:00
return 0 ;
2013-07-25 07:33:18 +04:00
}
static inline struct regulator_init_data * match_init_data ( int index )
{
return NULL ;
}
static inline struct device_node * match_of_node ( int index )
{
return NULL ;
}
# endif
static int pfuze_identify ( struct pfuze_chip * pfuze_chip )
{
unsigned int value ;
int ret ;
ret = regmap_read ( pfuze_chip - > regmap , PFUZE100_DEVICEID , & value ) ;
if ( ret )
return ret ;
2014-03-04 13:40:36 +04:00
if ( ( ( value & 0x0f ) = = 0x8 ) & & ( pfuze_chip - > chip_id = = PFUZE100 ) ) {
/*
* Freescale misprogrammed 1 - 3 % of parts prior to week 8 of 2013
* as ID = 8 in PFUZE100
*/
2014-01-15 06:52:45 +04:00
dev_info ( pfuze_chip - > dev , " Assuming misprogrammed ID=0x8 " ) ;
2014-03-04 13:40:36 +04:00
} else if ( ( value & 0x0f ) ! = pfuze_chip - > chip_id ) {
/* device id NOT match with your setting */
2013-07-25 07:33:18 +04:00
dev_warn ( pfuze_chip - > dev , " Illegal ID: %x \n " , value ) ;
return - ENODEV ;
}
ret = regmap_read ( pfuze_chip - > regmap , PFUZE100_REVID , & value ) ;
if ( ret )
return ret ;
dev_info ( pfuze_chip - > dev ,
2014-01-21 00:53:56 +04:00
" Full layer: %x, Metal layer: %x \n " ,
2013-07-25 07:33:18 +04:00
( value & 0xf0 ) > > 4 , value & 0x0f ) ;
ret = regmap_read ( pfuze_chip - > regmap , PFUZE100_FABID , & value ) ;
if ( ret )
return ret ;
dev_info ( pfuze_chip - > dev , " FAB: %x, FIN: %x \n " ,
( value & 0xc ) > > 2 , value & 0x3 ) ;
return 0 ;
}
static const struct regmap_config pfuze_regmap_config = {
. reg_bits = 8 ,
. val_bits = 8 ,
2013-08-01 15:59:56 +04:00
. max_register = PFUZE_NUMREGS - 1 ,
2013-07-25 07:33:18 +04:00
. cache_type = REGCACHE_RBTREE ,
} ;
static int pfuze100_regulator_probe ( struct i2c_client * client ,
const struct i2c_device_id * id )
{
struct pfuze_chip * pfuze_chip ;
struct pfuze_regulator_platform_data * pdata =
dev_get_platdata ( & client - > dev ) ;
struct regulator_config config = { } ;
int i , ret ;
2014-03-04 13:40:36 +04:00
const struct of_device_id * match ;
u32 regulator_num ;
u32 sw_check_start , sw_check_end ;
2013-07-25 07:33:18 +04:00
pfuze_chip = devm_kzalloc ( & client - > dev , sizeof ( * pfuze_chip ) ,
GFP_KERNEL ) ;
if ( ! pfuze_chip )
return - ENOMEM ;
2014-03-04 13:40:36 +04:00
if ( client - > dev . of_node ) {
match = of_match_device ( of_match_ptr ( pfuze_dt_ids ) ,
& client - > dev ) ;
if ( ! match ) {
dev_err ( & client - > dev , " Error: No device match found \n " ) ;
return - ENODEV ;
}
pfuze_chip - > chip_id = ( int ) ( long ) match - > data ;
} else if ( id ) {
pfuze_chip - > chip_id = id - > driver_data ;
} else {
dev_err ( & client - > dev , " No dts match or id table match found \n " ) ;
return - ENODEV ;
}
2013-07-25 07:33:18 +04:00
2014-03-04 13:40:36 +04:00
i2c_set_clientdata ( client , pfuze_chip ) ;
2013-07-25 07:33:18 +04:00
pfuze_chip - > dev = & client - > dev ;
pfuze_chip - > regmap = devm_regmap_init_i2c ( client , & pfuze_regmap_config ) ;
if ( IS_ERR ( pfuze_chip - > regmap ) ) {
ret = PTR_ERR ( pfuze_chip - > regmap ) ;
dev_err ( & client - > dev ,
" regmap allocation failed with err %d \n " , ret ) ;
return ret ;
}
ret = pfuze_identify ( pfuze_chip ) ;
if ( ret ) {
dev_err ( & client - > dev , " unrecognized pfuze chip ID! \n " ) ;
return ret ;
}
2014-03-04 13:40:36 +04:00
/* use the right regulators after identify the right device */
switch ( pfuze_chip - > chip_id ) {
case PFUZE200 :
pfuze_regulators = pfuze200_regulators ;
regulator_num = ARRAY_SIZE ( pfuze200_regulators ) ;
sw_check_start = PFUZE200_SW2 ;
sw_check_end = PFUZE200_SW3B ;
break ;
case PFUZE100 :
default :
pfuze_regulators = pfuze100_regulators ;
regulator_num = ARRAY_SIZE ( pfuze100_regulators ) ;
sw_check_start = PFUZE100_SW2 ;
sw_check_end = PFUZE100_SW4 ;
break ;
}
dev_info ( & client - > dev , " pfuze%s found. \n " ,
( pfuze_chip - > chip_id = = PFUZE100 ) ? " 100 " : " 200 " ) ;
memcpy ( pfuze_chip - > regulator_descs , pfuze_regulators ,
sizeof ( pfuze_chip - > regulator_descs ) ) ;
2013-07-25 07:33:18 +04:00
ret = pfuze_parse_regulators_dt ( pfuze_chip ) ;
if ( ret )
return ret ;
2014-03-04 13:40:36 +04:00
for ( i = 0 ; i < regulator_num ; i + + ) {
2013-07-25 07:33:18 +04:00
struct regulator_init_data * init_data ;
2013-07-30 06:46:28 +04:00
struct regulator_desc * desc ;
2013-07-25 07:33:18 +04:00
int val ;
2013-07-30 06:46:28 +04:00
desc = & pfuze_chip - > regulator_descs [ i ] . desc ;
2013-07-25 07:33:18 +04:00
if ( pdata )
init_data = pdata - > init_data [ i ] ;
else
init_data = match_init_data ( i ) ;
/* SW2~SW4 high bit check and modify the voltage value table */
2014-03-04 13:40:36 +04:00
if ( i > = sw_check_start & & i < = sw_check_end ) {
2013-07-30 06:46:28 +04:00
regmap_read ( pfuze_chip - > regmap , desc - > vsel_reg , & val ) ;
2013-07-25 07:33:18 +04:00
if ( val & 0x40 ) {
2013-07-30 06:46:28 +04:00
desc - > min_uV = 800000 ;
desc - > uV_step = 50000 ;
desc - > n_voltages = 51 ;
2013-07-25 07:33:18 +04:00
}
}
config . dev = & client - > dev ;
config . init_data = init_data ;
config . driver_data = pfuze_chip ;
config . of_node = match_of_node ( i ) ;
2013-12-06 11:11:58 +04:00
pfuze_chip - > regulators [ i ] =
devm_regulator_register ( & client - > dev , desc , & config ) ;
2013-07-25 07:33:18 +04:00
if ( IS_ERR ( pfuze_chip - > regulators [ i ] ) ) {
dev_err ( & client - > dev , " register regulator%s failed \n " ,
2014-03-04 13:40:36 +04:00
pfuze_regulators [ i ] . desc . name ) ;
2013-12-06 11:11:58 +04:00
return PTR_ERR ( pfuze_chip - > regulators [ i ] ) ;
2013-07-25 07:33:18 +04:00
}
}
return 0 ;
}
static struct i2c_driver pfuze_driver = {
. id_table = pfuze_device_id ,
. driver = {
. name = " pfuze100-regulator " ,
. owner = THIS_MODULE ,
. of_match_table = pfuze_dt_ids ,
} ,
. probe = pfuze100_regulator_probe ,
} ;
module_i2c_driver ( pfuze_driver ) ;
MODULE_AUTHOR ( " Robin Gong <b38343@freescale.com> " ) ;
MODULE_DESCRIPTION ( " Regulator Driver for Freescale PFUZE100 PMIC " ) ;
2013-07-29 07:40:11 +04:00
MODULE_LICENSE ( " GPL v2 " ) ;
2013-07-29 08:19:29 +04:00
MODULE_ALIAS ( " i2c:pfuze100-regulator " ) ;