2011-01-26 20:09:02 -08:00
/*
* Hardware monitoring driver for PMBus devices
*
* Copyright ( c ) 2010 , 2011 Ericsson AB .
*
* 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 . , 675 Mass Ave , Cambridge , MA 0213 9 , USA .
*/
# include <linux/kernel.h>
# include <linux/module.h>
# include <linux/init.h>
# include <linux/err.h>
# include <linux/slab.h>
# include <linux/mutex.h>
# include <linux/i2c.h>
# include "pmbus.h"
/*
* Find sensor groups and status registers on each page .
*/
static void pmbus_find_sensor_groups ( struct i2c_client * client ,
struct pmbus_driver_info * info )
{
int page ;
/* Sensors detected on page 0 only */
if ( pmbus_check_word_register ( client , 0 , PMBUS_READ_VIN ) )
info - > func [ 0 ] | = PMBUS_HAVE_VIN ;
if ( pmbus_check_word_register ( client , 0 , PMBUS_READ_VCAP ) )
info - > func [ 0 ] | = PMBUS_HAVE_VCAP ;
if ( pmbus_check_word_register ( client , 0 , PMBUS_READ_IIN ) )
info - > func [ 0 ] | = PMBUS_HAVE_IIN ;
if ( pmbus_check_word_register ( client , 0 , PMBUS_READ_PIN ) )
info - > func [ 0 ] | = PMBUS_HAVE_PIN ;
if ( info - > func [ 0 ]
& & pmbus_check_byte_register ( client , 0 , PMBUS_STATUS_INPUT ) )
info - > func [ 0 ] | = PMBUS_HAVE_STATUS_INPUT ;
2011-06-30 06:54:05 -07:00
if ( pmbus_check_byte_register ( client , 0 , PMBUS_FAN_CONFIG_12 ) & &
pmbus_check_word_register ( client , 0 , PMBUS_READ_FAN_SPEED_1 ) ) {
2011-01-26 20:09:02 -08:00
info - > func [ 0 ] | = PMBUS_HAVE_FAN12 ;
if ( pmbus_check_byte_register ( client , 0 , PMBUS_STATUS_FAN_12 ) )
info - > func [ 0 ] | = PMBUS_HAVE_STATUS_FAN12 ;
}
2011-06-30 06:54:05 -07:00
if ( pmbus_check_byte_register ( client , 0 , PMBUS_FAN_CONFIG_34 ) & &
pmbus_check_word_register ( client , 0 , PMBUS_READ_FAN_SPEED_3 ) ) {
2011-01-26 20:09:02 -08:00
info - > func [ 0 ] | = PMBUS_HAVE_FAN34 ;
if ( pmbus_check_byte_register ( client , 0 , PMBUS_STATUS_FAN_34 ) )
info - > func [ 0 ] | = PMBUS_HAVE_STATUS_FAN34 ;
}
2011-07-03 13:08:03 -07:00
if ( pmbus_check_word_register ( client , 0 , PMBUS_READ_TEMPERATURE_1 ) )
2011-01-26 20:09:02 -08:00
info - > func [ 0 ] | = PMBUS_HAVE_TEMP ;
2011-06-30 06:57:41 -07:00
if ( pmbus_check_word_register ( client , 0 , PMBUS_READ_TEMPERATURE_2 ) )
info - > func [ 0 ] | = PMBUS_HAVE_TEMP2 ;
if ( pmbus_check_word_register ( client , 0 , PMBUS_READ_TEMPERATURE_3 ) )
info - > func [ 0 ] | = PMBUS_HAVE_TEMP3 ;
2011-07-03 13:08:03 -07:00
if ( info - > func [ 0 ] & ( PMBUS_HAVE_TEMP | PMBUS_HAVE_TEMP2
| PMBUS_HAVE_TEMP3 )
& & pmbus_check_byte_register ( client , 0 ,
PMBUS_STATUS_TEMPERATURE ) )
info - > func [ 0 ] | = PMBUS_HAVE_STATUS_TEMP ;
2011-01-26 20:09:02 -08:00
/* Sensors detected on all pages */
for ( page = 0 ; page < info - > pages ; page + + ) {
if ( pmbus_check_word_register ( client , page , PMBUS_READ_VOUT ) ) {
info - > func [ page ] | = PMBUS_HAVE_VOUT ;
if ( pmbus_check_byte_register ( client , page ,
PMBUS_STATUS_VOUT ) )
info - > func [ page ] | = PMBUS_HAVE_STATUS_VOUT ;
}
if ( pmbus_check_word_register ( client , page , PMBUS_READ_IOUT ) ) {
info - > func [ page ] | = PMBUS_HAVE_IOUT ;
if ( pmbus_check_byte_register ( client , 0 ,
PMBUS_STATUS_IOUT ) )
info - > func [ page ] | = PMBUS_HAVE_STATUS_IOUT ;
}
if ( pmbus_check_word_register ( client , page , PMBUS_READ_POUT ) )
info - > func [ page ] | = PMBUS_HAVE_POUT ;
}
}
/*
* Identify chip parameters .
*/
static int pmbus_identify ( struct i2c_client * client ,
struct pmbus_driver_info * info )
{
2011-06-25 11:21:49 -07:00
int ret = 0 ;
2011-01-26 20:09:02 -08:00
if ( ! info - > pages ) {
/*
* Check if the PAGE command is supported . If it is ,
* keep setting the page number until it fails or until the
* maximum number of pages has been reached . Assume that
* this is the number of pages supported by the chip .
*/
if ( pmbus_check_byte_register ( client , 0 , PMBUS_PAGE ) ) {
int page ;
for ( page = 1 ; page < PMBUS_PAGES ; page + + ) {
if ( pmbus_set_page ( client , page ) < 0 )
break ;
}
pmbus_set_page ( client , 0 ) ;
info - > pages = page ;
} else {
info - > pages = 1 ;
}
}
2011-06-25 11:21:49 -07:00
if ( pmbus_check_byte_register ( client , 0 , PMBUS_VOUT_MODE ) ) {
int vout_mode ;
vout_mode = pmbus_read_byte_data ( client , 0 , PMBUS_VOUT_MODE ) ;
if ( vout_mode > = 0 & & vout_mode ! = 0xff ) {
switch ( vout_mode > > 5 ) {
case 0 :
break ;
case 1 :
info - > format [ PSC_VOLTAGE_OUT ] = vid ;
break ;
case 2 :
info - > format [ PSC_VOLTAGE_OUT ] = direct ;
break ;
default :
ret = - ENODEV ;
goto abort ;
}
}
}
2011-01-26 20:09:02 -08:00
/*
* We should check if the COEFFICIENTS register is supported .
* If it is , and the chip is configured for direct mode , we can read
* the coefficients from the chip , one set per group of sensor
* registers .
*
* To do this , we will need access to a chip which actually supports the
* COEFFICIENTS command , since the command is too complex to implement
2011-06-25 11:21:49 -07:00
* without testing it . Until then , abort if a chip configured for direct
* mode was detected .
2011-01-26 20:09:02 -08:00
*/
2011-06-25 11:21:49 -07:00
if ( info - > format [ PSC_VOLTAGE_OUT ] = = direct ) {
ret = - ENODEV ;
goto abort ;
}
2011-01-26 20:09:02 -08:00
/* Try to find sensor groups */
pmbus_find_sensor_groups ( client , info ) ;
2011-06-25 11:21:49 -07:00
abort :
return ret ;
2011-01-26 20:09:02 -08:00
}
static int pmbus_probe ( struct i2c_client * client ,
const struct i2c_device_id * id )
{
struct pmbus_driver_info * info ;
2012-02-22 08:56:43 -08:00
info = devm_kzalloc ( & client - > dev , sizeof ( struct pmbus_driver_info ) ,
GFP_KERNEL ) ;
2011-01-26 20:09:02 -08:00
if ( ! info )
return - ENOMEM ;
info - > pages = id - > driver_data ;
info - > identify = pmbus_identify ;
2012-02-22 08:56:43 -08:00
return pmbus_do_probe ( client , id , info ) ;
2011-01-26 20:09:02 -08:00
}
/*
* Use driver_data to set the number of pages supported by the chip .
*/
static const struct i2c_device_id pmbus_id [ ] = {
2011-06-25 15:13:44 -07:00
{ " adp4000 " , 1 } ,
2011-01-26 20:09:02 -08:00
{ " bmr453 " , 1 } ,
{ " bmr454 " , 1 } ,
2012-02-28 11:00:54 -08:00
{ " mdt040 " , 1 } ,
2011-06-25 15:13:44 -07:00
{ " ncp4200 " , 1 } ,
{ " ncp4208 " , 1 } ,
2011-09-15 10:43:40 -07:00
{ " pdt003 " , 1 } ,
{ " pdt006 " , 1 } ,
{ " pdt012 " , 1 } ,
2011-01-26 20:09:02 -08:00
{ " pmbus " , 0 } ,
2012-02-28 10:24:54 -08:00
{ " tps40400 " , 1 } ,
{ " tps40422 " , 2 } ,
2011-09-15 10:43:40 -07:00
{ " udt020 " , 1 } ,
2011-01-26 20:09:02 -08:00
{ }
} ;
MODULE_DEVICE_TABLE ( i2c , pmbus_id ) ;
/* This is the driver that will be inserted */
static struct i2c_driver pmbus_driver = {
. driver = {
. name = " pmbus " ,
} ,
. probe = pmbus_probe ,
2012-02-22 08:56:44 -08:00
. remove = pmbus_do_remove ,
2011-01-26 20:09:02 -08:00
. id_table = pmbus_id ,
} ;
2012-01-20 15:38:18 +08:00
module_i2c_driver ( pmbus_driver ) ;
2011-01-26 20:09:02 -08:00
MODULE_AUTHOR ( " Guenter Roeck " ) ;
MODULE_DESCRIPTION ( " Generic PMBus driver " ) ;
MODULE_LICENSE ( " GPL " ) ;