2013-08-28 15:01:00 +04:00
/*
* bma180 . c - IIO driver for Bosch BMA180 triaxial acceleration sensor
*
* Copyright 2013 Oleksandr Kravchenko < x0199363 @ ti . com >
*
2014-08-20 02:43:00 +04:00
* Support for BMA250 ( c ) Peter Meerwald < pmeerw @ pmeerw . net >
*
2013-08-28 15:01:00 +04:00
* This file is subject to the terms and conditions of version 2 of
* the GNU General Public License . See the file COPYING in the main
* directory of this archive for more details .
2014-08-20 02:43:00 +04:00
*
* SPI is not supported by driver
* BMA180 : 7 - bit I2C slave address 0x40 or 0x41
* BMA250 : 7 - bit I2C slave address 0x18 or 0x19
2013-08-28 15:01:00 +04:00
*/
# include <linux/module.h>
# include <linux/i2c.h>
# include <linux/interrupt.h>
# include <linux/delay.h>
# include <linux/of.h>
# include <linux/bitops.h>
# include <linux/slab.h>
# include <linux/string.h>
# include <linux/iio/iio.h>
# include <linux/iio/sysfs.h>
# include <linux/iio/buffer.h>
# include <linux/iio/trigger.h>
# include <linux/iio/trigger_consumer.h>
# include <linux/iio/triggered_buffer.h>
# define BMA180_DRV_NAME "bma180"
# define BMA180_IRQ_NAME "bma180_event"
2014-08-20 02:43:00 +04:00
enum {
BMA180 ,
2014-08-20 02:43:00 +04:00
BMA250 ,
2014-08-20 02:43:00 +04:00
} ;
2014-08-20 02:43:00 +04:00
struct bma180_data ;
2014-08-20 02:43:00 +04:00
struct bma180_part_info {
const struct iio_chan_spec * channels ;
unsigned num_channels ;
const int * scale_table ;
unsigned num_scales ;
const int * bw_table ;
unsigned num_bw ;
2014-08-20 02:43:00 +04:00
u8 int_reset_reg , int_reset_mask ;
u8 sleep_reg , sleep_mask ;
u8 bw_reg , bw_mask ;
u8 scale_reg , scale_mask ;
u8 power_reg , power_mask , lowpower_val ;
u8 int_enable_reg , int_enable_mask ;
u8 softreset_reg ;
2014-08-20 02:43:00 +04:00
int ( * chip_config ) ( struct bma180_data * data ) ;
void ( * chip_disable ) ( struct bma180_data * data ) ;
2014-08-20 02:43:00 +04:00
} ;
2013-08-28 15:01:00 +04:00
/* Register set */
# define BMA180_CHIP_ID 0x00 /* Need to distinguish BMA180 from other */
# define BMA180_ACC_X_LSB 0x02 /* First of 6 registers of accel data */
2014-08-20 02:43:00 +04:00
# define BMA180_TEMP 0x08
2013-08-28 15:01:00 +04:00
# define BMA180_CTRL_REG0 0x0d
# define BMA180_RESET 0x10
# define BMA180_BW_TCS 0x20
# define BMA180_CTRL_REG3 0x21
# define BMA180_TCO_Z 0x30
# define BMA180_OFFSET_LSB1 0x35
/* BMA180_CTRL_REG0 bits */
# define BMA180_DIS_WAKE_UP BIT(0) /* Disable wake up mode */
# define BMA180_SLEEP BIT(1) /* 1 - chip will sleep */
# define BMA180_EE_W BIT(4) /* Unlock writing to addr from 0x20 */
# define BMA180_RESET_INT BIT(6) /* Reset pending interrupts */
/* BMA180_CTRL_REG3 bits */
# define BMA180_NEW_DATA_INT BIT(1) /* Intr every new accel data is ready */
/* BMA180_OFFSET_LSB1 skipping mode bit */
# define BMA180_SMP_SKIP BIT(0)
/* Bit masks for registers bit fields */
2014-08-20 02:43:00 +04:00
# define BMA180_RANGE 0x0e /* Range of measured accel values */
2013-08-28 15:01:00 +04:00
# define BMA180_BW 0xf0 /* Accel bandwidth */
# define BMA180_MODE_CONFIG 0x03 /* Config operation modes */
/* We have to write this value in reset register to do soft reset */
# define BMA180_RESET_VAL 0xb6
2014-08-20 02:43:00 +04:00
# define BMA180_ID_REG_VAL 0x03
2013-08-28 15:01:00 +04:00
/* Chip power modes */
# define BMA180_LOW_POWER 0x03
2014-08-20 02:43:00 +04:00
# define BMA250_RANGE_REG 0x0f
# define BMA250_BW_REG 0x10
# define BMA250_POWER_REG 0x11
# define BMA250_RESET_REG 0x14
# define BMA250_INT_ENABLE_REG 0x17
# define BMA250_INT_MAP_REG 0x1a
# define BMA250_INT_RESET_REG 0x21
# define BMA250_RANGE_MASK GENMASK(3, 0) /* Range of accel values */
# define BMA250_BW_MASK GENMASK(4, 0) /* Accel bandwidth */
# define BMA250_SUSPEND_MASK BIT(7) /* chip will sleep */
# define BMA250_LOWPOWER_MASK BIT(6)
# define BMA250_DATA_INTEN_MASK BIT(4)
# define BMA250_INT1_DATA_MASK BIT(0)
# define BMA250_INT_RESET_MASK BIT(7) /* Reset pending interrupts */
2013-08-28 15:01:00 +04:00
struct bma180_data {
struct i2c_client * client ;
struct iio_trigger * trig ;
2014-08-20 02:43:00 +04:00
const struct bma180_part_info * part_info ;
2013-08-28 15:01:00 +04:00
struct mutex mutex ;
2014-08-20 02:43:00 +04:00
bool sleep_state ;
2013-08-28 15:01:00 +04:00
int scale ;
int bw ;
2014-08-20 02:43:00 +04:00
bool pmode ;
2014-08-20 02:43:00 +04:00
u8 buff [ 16 ] ; /* 3x 16-bit + 8-bit + padding + timestamp */
2013-08-28 15:01:00 +04:00
} ;
2014-08-20 02:43:00 +04:00
enum bma180_chan {
2013-08-28 15:01:00 +04:00
AXIS_X ,
AXIS_Y ,
AXIS_Z ,
2014-08-20 02:43:00 +04:00
TEMP
2013-08-28 15:01:00 +04:00
} ;
2014-08-20 02:43:00 +04:00
static int bma180_bw_table [ ] = { 10 , 20 , 40 , 75 , 150 , 300 } ; /* Hz */
static int bma180_scale_table [ ] = { 1275 , 1863 , 2452 , 3727 , 4903 , 9709 , 19417 } ;
2013-08-28 15:01:00 +04:00
2014-08-20 02:43:00 +04:00
static int bma250_bw_table [ ] = { 8 , 16 , 31 , 63 , 125 , 250 } ; /* Hz */
static int bma250_scale_table [ ] = { 0 , 0 , 0 , 38344 , 0 , 76590 , 0 , 0 , 153180 , 0 ,
0 , 0 , 306458 } ;
2014-08-20 02:43:00 +04:00
static int bma180_get_data_reg ( struct bma180_data * data , enum bma180_chan chan )
2013-08-28 15:01:00 +04:00
{
int ret ;
if ( data - > sleep_state )
return - EBUSY ;
2014-08-20 02:43:00 +04:00
switch ( chan ) {
case TEMP :
ret = i2c_smbus_read_byte_data ( data - > client , BMA180_TEMP ) ;
if ( ret < 0 )
dev_err ( & data - > client - > dev , " failed to read temp register \n " ) ;
break ;
default :
ret = i2c_smbus_read_word_data ( data - > client ,
BMA180_ACC_X_LSB + chan * 2 ) ;
if ( ret < 0 )
dev_err ( & data - > client - > dev ,
" failed to read accel_%c register \n " ,
' x ' + chan ) ;
}
2013-08-28 15:01:00 +04:00
return ret ;
}
static int bma180_set_bits ( struct bma180_data * data , u8 reg , u8 mask , u8 val )
{
int ret = i2c_smbus_read_byte_data ( data - > client , reg ) ;
u8 reg_val = ( ret & ~ mask ) | ( val < < ( ffs ( mask ) - 1 ) ) ;
if ( ret < 0 )
return ret ;
return i2c_smbus_write_byte_data ( data - > client , reg , reg_val ) ;
}
static int bma180_reset_intr ( struct bma180_data * data )
{
2014-08-20 02:43:00 +04:00
int ret = bma180_set_bits ( data , data - > part_info - > int_reset_reg ,
data - > part_info - > int_reset_mask , 1 ) ;
2013-08-28 15:01:00 +04:00
if ( ret )
dev_err ( & data - > client - > dev , " failed to reset interrupt \n " ) ;
return ret ;
}
2014-08-20 02:43:00 +04:00
static int bma180_set_new_data_intr_state ( struct bma180_data * data , bool state )
2013-08-28 15:01:00 +04:00
{
2014-08-20 02:43:00 +04:00
int ret = bma180_set_bits ( data , data - > part_info - > int_enable_reg ,
data - > part_info - > int_enable_mask , state ) ;
2013-08-28 15:01:00 +04:00
if ( ret )
goto err ;
ret = bma180_reset_intr ( data ) ;
if ( ret )
goto err ;
return 0 ;
err :
dev_err ( & data - > client - > dev ,
" failed to set new data interrupt state %d \n " , state ) ;
return ret ;
}
2014-08-20 02:43:00 +04:00
static int bma180_set_sleep_state ( struct bma180_data * data , bool state )
2013-08-28 15:01:00 +04:00
{
2014-08-20 02:43:00 +04:00
int ret = bma180_set_bits ( data , data - > part_info - > sleep_reg ,
data - > part_info - > sleep_mask , state ) ;
2013-08-28 15:01:00 +04:00
if ( ret ) {
dev_err ( & data - > client - > dev ,
" failed to set sleep state %d \n " , state ) ;
return ret ;
}
data - > sleep_state = state ;
return 0 ;
}
2014-08-20 02:43:00 +04:00
static int bma180_set_ee_writing_state ( struct bma180_data * data , bool state )
2013-08-28 15:01:00 +04:00
{
int ret = bma180_set_bits ( data , BMA180_CTRL_REG0 , BMA180_EE_W , state ) ;
if ( ret )
dev_err ( & data - > client - > dev ,
" failed to set ee writing state %d \n " , state ) ;
return ret ;
}
static int bma180_set_bw ( struct bma180_data * data , int val )
{
int ret , i ;
if ( data - > sleep_state )
return - EBUSY ;
2014-08-20 02:43:00 +04:00
for ( i = 0 ; i < data - > part_info - > num_bw ; + + i ) {
if ( data - > part_info - > bw_table [ i ] = = val ) {
2014-08-20 02:43:00 +04:00
ret = bma180_set_bits ( data , data - > part_info - > bw_reg ,
data - > part_info - > bw_mask , i ) ;
2013-08-28 15:01:00 +04:00
if ( ret ) {
dev_err ( & data - > client - > dev ,
" failed to set bandwidth \n " ) ;
return ret ;
}
data - > bw = val ;
return 0 ;
}
}
return - EINVAL ;
}
static int bma180_set_scale ( struct bma180_data * data , int val )
{
int ret , i ;
if ( data - > sleep_state )
return - EBUSY ;
2014-08-20 02:43:00 +04:00
for ( i = 0 ; i < data - > part_info - > num_scales ; + + i )
if ( data - > part_info - > scale_table [ i ] = = val ) {
2014-08-20 02:43:00 +04:00
ret = bma180_set_bits ( data , data - > part_info - > scale_reg ,
data - > part_info - > scale_mask , i ) ;
2013-08-28 15:01:00 +04:00
if ( ret ) {
dev_err ( & data - > client - > dev ,
" failed to set scale \n " ) ;
return ret ;
}
data - > scale = val ;
return 0 ;
}
return - EINVAL ;
}
2014-08-20 02:43:00 +04:00
static int bma180_set_pmode ( struct bma180_data * data , bool mode )
2013-08-28 15:01:00 +04:00
{
2014-08-20 02:43:00 +04:00
u8 reg_val = mode ? data - > part_info - > lowpower_val : 0 ;
int ret = bma180_set_bits ( data , data - > part_info - > power_reg ,
data - > part_info - > power_mask , reg_val ) ;
2013-08-28 15:01:00 +04:00
if ( ret ) {
dev_err ( & data - > client - > dev , " failed to set power mode \n " ) ;
return ret ;
}
data - > pmode = mode ;
return 0 ;
}
static int bma180_soft_reset ( struct bma180_data * data )
{
int ret = i2c_smbus_write_byte_data ( data - > client ,
2014-08-20 02:43:00 +04:00
data - > part_info - > softreset_reg , BMA180_RESET_VAL ) ;
2013-08-28 15:01:00 +04:00
if ( ret )
dev_err ( & data - > client - > dev , " failed to reset the chip \n " ) ;
return ret ;
}
static int bma180_chip_init ( struct bma180_data * data )
{
/* Try to read chip_id register. It must return 0x03. */
int ret = i2c_smbus_read_byte_data ( data - > client , BMA180_CHIP_ID ) ;
if ( ret < 0 )
2014-08-20 02:43:00 +04:00
return ret ;
if ( ret ! = BMA180_ID_REG_VAL )
return - ENODEV ;
2013-08-28 15:01:00 +04:00
ret = bma180_soft_reset ( data ) ;
if ( ret )
2014-08-20 02:43:00 +04:00
return ret ;
2013-08-28 15:01:00 +04:00
/*
* No serial transaction should occur within minimum 10 us
* after soft_reset command
*/
msleep ( 20 ) ;
2014-08-20 02:43:00 +04:00
ret = bma180_set_new_data_intr_state ( data , false ) ;
if ( ret )
return ret ;
return bma180_set_pmode ( data , false ) ;
2014-08-20 02:43:00 +04:00
}
static int bma180_chip_config ( struct bma180_data * data )
{
int ret = bma180_chip_init ( data ) ;
if ( ret )
goto err ;
2013-08-28 15:01:00 +04:00
ret = bma180_set_bits ( data , BMA180_CTRL_REG0 , BMA180_DIS_WAKE_UP , 1 ) ;
if ( ret )
goto err ;
2014-08-20 02:43:00 +04:00
ret = bma180_set_ee_writing_state ( data , true ) ;
2013-08-28 15:01:00 +04:00
if ( ret )
goto err ;
2014-08-20 02:43:00 +04:00
ret = bma180_set_bits ( data , BMA180_OFFSET_LSB1 , BMA180_SMP_SKIP , 1 ) ;
2013-08-28 15:01:00 +04:00
if ( ret )
goto err ;
2014-08-20 02:43:00 +04:00
ret = bma180_set_bw ( data , 20 ) ; /* 20 Hz */
2013-08-28 15:01:00 +04:00
if ( ret )
goto err ;
2014-08-20 02:43:00 +04:00
ret = bma180_set_scale ( data , 2452 ) ; /* 2 G */
2013-08-28 15:01:00 +04:00
if ( ret )
goto err ;
2014-08-20 02:43:00 +04:00
return 0 ;
err :
dev_err ( & data - > client - > dev , " failed to config the chip \n " ) ;
return ret ;
}
static int bma250_chip_config ( struct bma180_data * data )
{
int ret = bma180_chip_init ( data ) ;
if ( ret )
goto err ;
ret = bma180_set_bw ( data , 16 ) ; /* 16 Hz */
2013-08-28 15:01:00 +04:00
if ( ret )
goto err ;
2014-08-20 02:43:00 +04:00
ret = bma180_set_scale ( data , 38344 ) ; /* 2 G */
if ( ret )
goto err ;
ret = bma180_set_bits ( data , BMA250_INT_MAP_REG ,
BMA250_INT1_DATA_MASK , 1 ) ;
2013-08-28 15:01:00 +04:00
if ( ret )
goto err ;
return 0 ;
err :
2014-08-20 02:43:00 +04:00
dev_err ( & data - > client - > dev , " failed to config the chip \n " ) ;
2013-08-28 15:01:00 +04:00
return ret ;
}
static void bma180_chip_disable ( struct bma180_data * data )
{
2014-08-20 02:43:00 +04:00
if ( bma180_set_new_data_intr_state ( data , false ) )
2013-08-28 15:01:00 +04:00
goto err ;
2014-08-20 02:43:00 +04:00
if ( bma180_set_ee_writing_state ( data , false ) )
2013-08-28 15:01:00 +04:00
goto err ;
2014-08-20 02:43:00 +04:00
if ( bma180_set_sleep_state ( data , true ) )
2013-08-28 15:01:00 +04:00
goto err ;
return ;
err :
dev_err ( & data - > client - > dev , " failed to disable the chip \n " ) ;
}
2014-08-20 02:43:00 +04:00
static void bma250_chip_disable ( struct bma180_data * data )
{
if ( bma180_set_new_data_intr_state ( data , false ) )
goto err ;
if ( bma180_set_sleep_state ( data , true ) )
goto err ;
return ;
err :
dev_err ( & data - > client - > dev , " failed to disable the chip \n " ) ;
}
2014-08-20 02:43:00 +04:00
static ssize_t bma180_show_avail ( char * buf , const int * vals , unsigned n ,
bool micros )
{
size_t len = 0 ;
int i ;
for ( i = 0 ; i < n ; i + + ) {
if ( ! vals [ i ] )
continue ;
len + = scnprintf ( buf + len , PAGE_SIZE - len ,
micros ? " 0.%06d " : " %d " , vals [ i ] ) ;
}
buf [ len - 1 ] = ' \n ' ;
return len ;
}
static ssize_t bma180_show_filter_freq_avail ( struct device * dev ,
struct device_attribute * attr , char * buf )
{
struct bma180_data * data = iio_priv ( dev_to_iio_dev ( dev ) ) ;
return bma180_show_avail ( buf , data - > part_info - > bw_table ,
data - > part_info - > num_bw , false ) ;
}
static ssize_t bma180_show_scale_avail ( struct device * dev ,
struct device_attribute * attr , char * buf )
{
struct bma180_data * data = iio_priv ( dev_to_iio_dev ( dev ) ) ;
return bma180_show_avail ( buf , data - > part_info - > scale_table ,
data - > part_info - > num_scales , true ) ;
}
static IIO_DEVICE_ATTR ( in_accel_filter_low_pass_3db_frequency_available ,
S_IRUGO , bma180_show_filter_freq_avail , NULL , 0 ) ;
static IIO_DEVICE_ATTR ( in_accel_scale_available ,
S_IRUGO , bma180_show_scale_avail , NULL , 0 ) ;
2013-08-28 15:01:00 +04:00
static struct attribute * bma180_attributes [ ] = {
2014-08-20 02:43:00 +04:00
& iio_dev_attr_in_accel_filter_low_pass_3db_frequency_available .
dev_attr . attr ,
& iio_dev_attr_in_accel_scale_available . dev_attr . attr ,
2013-08-28 15:01:00 +04:00
NULL ,
} ;
static const struct attribute_group bma180_attrs_group = {
. attrs = bma180_attributes ,
} ;
static int bma180_read_raw ( struct iio_dev * indio_dev ,
struct iio_chan_spec const * chan , int * val , int * val2 ,
long mask )
{
struct bma180_data * data = iio_priv ( indio_dev ) ;
int ret ;
switch ( mask ) {
case IIO_CHAN_INFO_RAW :
mutex_lock ( & data - > mutex ) ;
2014-08-20 02:43:00 +04:00
if ( iio_buffer_enabled ( indio_dev ) ) {
mutex_unlock ( & data - > mutex ) ;
return - EBUSY ;
}
ret = bma180_get_data_reg ( data , chan - > scan_index ) ;
2013-08-28 15:01:00 +04:00
mutex_unlock ( & data - > mutex ) ;
if ( ret < 0 )
return ret ;
2014-08-20 02:43:00 +04:00
* val = sign_extend32 ( ret > > chan - > scan_type . shift ,
chan - > scan_type . realbits - 1 ) ;
2013-08-28 15:01:00 +04:00
return IIO_VAL_INT ;
case IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY :
* val = data - > bw ;
return IIO_VAL_INT ;
case IIO_CHAN_INFO_SCALE :
2014-08-20 02:43:00 +04:00
switch ( chan - > type ) {
case IIO_ACCEL :
* val = 0 ;
* val2 = data - > scale ;
return IIO_VAL_INT_PLUS_MICRO ;
case IIO_TEMP :
* val = 500 ;
return IIO_VAL_INT ;
default :
return - EINVAL ;
}
case IIO_CHAN_INFO_OFFSET :
* val = 48 ; /* 0 LSB @ 24 degree C */
return IIO_VAL_INT ;
2013-08-28 15:01:00 +04:00
default :
return - EINVAL ;
}
}
static int bma180_write_raw ( struct iio_dev * indio_dev ,
struct iio_chan_spec const * chan , int val , int val2 , long mask )
{
struct bma180_data * data = iio_priv ( indio_dev ) ;
int ret ;
switch ( mask ) {
case IIO_CHAN_INFO_SCALE :
if ( val )
return - EINVAL ;
mutex_lock ( & data - > mutex ) ;
ret = bma180_set_scale ( data , val2 ) ;
mutex_unlock ( & data - > mutex ) ;
return ret ;
case IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY :
2014-07-16 22:32:00 +04:00
if ( val2 )
return - EINVAL ;
2013-08-28 15:01:00 +04:00
mutex_lock ( & data - > mutex ) ;
ret = bma180_set_bw ( data , val ) ;
mutex_unlock ( & data - > mutex ) ;
return ret ;
default :
return - EINVAL ;
}
}
static const struct iio_info bma180_info = {
. attrs = & bma180_attrs_group ,
. read_raw = bma180_read_raw ,
. write_raw = bma180_write_raw ,
. driver_module = THIS_MODULE ,
} ;
2014-08-20 02:43:00 +04:00
static const char * const bma180_power_modes [ ] = { " low_noise " , " low_power " } ;
2013-08-28 15:01:00 +04:00
static int bma180_get_power_mode ( struct iio_dev * indio_dev ,
const struct iio_chan_spec * chan )
{
struct bma180_data * data = iio_priv ( indio_dev ) ;
return data - > pmode ;
}
static int bma180_set_power_mode ( struct iio_dev * indio_dev ,
const struct iio_chan_spec * chan , unsigned int mode )
{
struct bma180_data * data = iio_priv ( indio_dev ) ;
int ret ;
mutex_lock ( & data - > mutex ) ;
ret = bma180_set_pmode ( data , mode ) ;
mutex_unlock ( & data - > mutex ) ;
return ret ;
}
static const struct iio_enum bma180_power_mode_enum = {
. items = bma180_power_modes ,
. num_items = ARRAY_SIZE ( bma180_power_modes ) ,
. get = bma180_get_power_mode ,
. set = bma180_set_power_mode ,
} ;
static const struct iio_chan_spec_ext_info bma180_ext_info [ ] = {
IIO_ENUM ( " power_mode " , true , & bma180_power_mode_enum ) ,
IIO_ENUM_AVAILABLE ( " power_mode " , & bma180_power_mode_enum ) ,
{ } ,
} ;
2014-08-20 02:43:00 +04:00
# define BMA180_ACC_CHANNEL(_axis, _bits) { \
2013-08-28 15:01:00 +04:00
. type = IIO_ACCEL , \
2014-10-02 00:37:00 +04:00
. modified = 1 , \
. channel2 = IIO_MOD_ # # _axis , \
2014-10-02 00:37:00 +04:00
. info_mask_separate = BIT ( IIO_CHAN_INFO_RAW ) , \
. info_mask_shared_by_type = BIT ( IIO_CHAN_INFO_SCALE ) | \
2013-08-28 15:01:00 +04:00
BIT ( IIO_CHAN_INFO_LOW_PASS_FILTER_3DB_FREQUENCY ) , \
2014-10-02 00:37:00 +04:00
. scan_index = AXIS_ # # _axis , \
2013-12-11 22:45:00 +04:00
. scan_type = { \
. sign = ' s ' , \
2014-08-20 02:43:00 +04:00
. realbits = _bits , \
2013-12-11 22:45:00 +04:00
. storagebits = 16 , \
2014-08-20 02:43:00 +04:00
. shift = 16 - _bits , \
2013-12-11 22:45:00 +04:00
} , \
2013-08-28 15:01:00 +04:00
. ext_info = bma180_ext_info , \
}
2014-08-20 02:43:00 +04:00
# define BMA180_TEMP_CHANNEL { \
. type = IIO_TEMP , \
. info_mask_separate = BIT ( IIO_CHAN_INFO_RAW ) | \
BIT ( IIO_CHAN_INFO_SCALE ) | BIT ( IIO_CHAN_INFO_OFFSET ) , \
. scan_index = TEMP , \
. scan_type = { \
. sign = ' s ' , \
. realbits = 8 , \
. storagebits = 16 , \
} , \
}
2013-08-28 15:01:00 +04:00
static const struct iio_chan_spec bma180_channels [ ] = {
2014-08-20 02:43:00 +04:00
BMA180_ACC_CHANNEL ( X , 14 ) ,
BMA180_ACC_CHANNEL ( Y , 14 ) ,
BMA180_ACC_CHANNEL ( Z , 14 ) ,
2014-08-20 02:43:00 +04:00
BMA180_TEMP_CHANNEL ,
IIO_CHAN_SOFT_TIMESTAMP ( 4 ) ,
2013-08-28 15:01:00 +04:00
} ;
2014-08-20 02:43:00 +04:00
static const struct iio_chan_spec bma250_channels [ ] = {
BMA180_ACC_CHANNEL ( X , 10 ) ,
BMA180_ACC_CHANNEL ( Y , 10 ) ,
BMA180_ACC_CHANNEL ( Z , 10 ) ,
BMA180_TEMP_CHANNEL ,
IIO_CHAN_SOFT_TIMESTAMP ( 4 ) ,
} ;
2014-08-20 02:43:00 +04:00
static const struct bma180_part_info bma180_part_info [ ] = {
[ BMA180 ] = {
bma180_channels , ARRAY_SIZE ( bma180_channels ) ,
bma180_scale_table , ARRAY_SIZE ( bma180_scale_table ) ,
bma180_bw_table , ARRAY_SIZE ( bma180_bw_table ) ,
2014-08-20 02:43:00 +04:00
BMA180_CTRL_REG0 , BMA180_RESET_INT ,
BMA180_CTRL_REG0 , BMA180_SLEEP ,
BMA180_BW_TCS , BMA180_BW ,
BMA180_OFFSET_LSB1 , BMA180_RANGE ,
BMA180_TCO_Z , BMA180_MODE_CONFIG , BMA180_LOW_POWER ,
BMA180_CTRL_REG3 , BMA180_NEW_DATA_INT ,
BMA180_RESET ,
2014-08-20 02:43:00 +04:00
bma180_chip_config ,
bma180_chip_disable ,
2014-08-20 02:43:00 +04:00
} ,
2014-08-20 02:43:00 +04:00
[ BMA250 ] = {
bma250_channels , ARRAY_SIZE ( bma250_channels ) ,
bma250_scale_table , ARRAY_SIZE ( bma250_scale_table ) ,
bma250_bw_table , ARRAY_SIZE ( bma250_bw_table ) ,
BMA250_INT_RESET_REG , BMA250_INT_RESET_MASK ,
BMA250_POWER_REG , BMA250_SUSPEND_MASK ,
BMA250_BW_REG , BMA250_BW_MASK ,
BMA250_RANGE_REG , BMA250_RANGE_MASK ,
BMA250_POWER_REG , BMA250_LOWPOWER_MASK , 1 ,
BMA250_INT_ENABLE_REG , BMA250_DATA_INTEN_MASK ,
BMA250_RESET_REG ,
bma250_chip_config ,
bma250_chip_disable ,
} ,
2014-08-20 02:43:00 +04:00
} ;
2013-08-28 15:01:00 +04:00
static irqreturn_t bma180_trigger_handler ( int irq , void * p )
{
struct iio_poll_func * pf = p ;
struct iio_dev * indio_dev = pf - > indio_dev ;
struct bma180_data * data = iio_priv ( indio_dev ) ;
2013-09-19 16:59:00 +04:00
int64_t time_ns = iio_get_time_ns ( ) ;
2013-08-28 15:01:00 +04:00
int bit , ret , i = 0 ;
mutex_lock ( & data - > mutex ) ;
2015-03-02 22:03:05 +03:00
for_each_set_bit ( bit , indio_dev - > active_scan_mask ,
2013-08-28 15:01:00 +04:00
indio_dev - > masklength ) {
2014-08-20 02:43:00 +04:00
ret = bma180_get_data_reg ( data , bit ) ;
2013-08-28 15:01:00 +04:00
if ( ret < 0 ) {
mutex_unlock ( & data - > mutex ) ;
goto err ;
}
( ( s16 * ) data - > buff ) [ i + + ] = ret ;
}
2014-08-20 02:43:00 +04:00
2013-08-28 15:01:00 +04:00
mutex_unlock ( & data - > mutex ) ;
2013-09-19 16:59:00 +04:00
iio_push_to_buffers_with_timestamp ( indio_dev , data - > buff , time_ns ) ;
2013-08-28 15:01:00 +04:00
err :
iio_trigger_notify_done ( indio_dev - > trig ) ;
return IRQ_HANDLED ;
}
static int bma180_data_rdy_trigger_set_state ( struct iio_trigger * trig ,
bool state )
{
struct iio_dev * indio_dev = iio_trigger_get_drvdata ( trig ) ;
struct bma180_data * data = iio_priv ( indio_dev ) ;
return bma180_set_new_data_intr_state ( data , state ) ;
}
static int bma180_trig_try_reen ( struct iio_trigger * trig )
{
struct iio_dev * indio_dev = iio_trigger_get_drvdata ( trig ) ;
struct bma180_data * data = iio_priv ( indio_dev ) ;
return bma180_reset_intr ( data ) ;
}
static const struct iio_trigger_ops bma180_trigger_ops = {
. set_trigger_state = bma180_data_rdy_trigger_set_state ,
. try_reenable = bma180_trig_try_reen ,
. owner = THIS_MODULE ,
} ;
static int bma180_probe ( struct i2c_client * client ,
const struct i2c_device_id * id )
{
struct bma180_data * data ;
struct iio_dev * indio_dev ;
int ret ;
indio_dev = devm_iio_device_alloc ( & client - > dev , sizeof ( * data ) ) ;
if ( ! indio_dev )
return - ENOMEM ;
data = iio_priv ( indio_dev ) ;
i2c_set_clientdata ( client , indio_dev ) ;
data - > client = client ;
2014-08-20 02:43:00 +04:00
data - > part_info = & bma180_part_info [ id - > driver_data ] ;
2013-08-28 15:01:00 +04:00
2014-08-20 02:43:00 +04:00
ret = data - > part_info - > chip_config ( data ) ;
2013-08-28 15:01:00 +04:00
if ( ret < 0 )
goto err_chip_disable ;
mutex_init ( & data - > mutex ) ;
indio_dev - > dev . parent = & client - > dev ;
2014-08-20 02:43:00 +04:00
indio_dev - > channels = data - > part_info - > channels ;
indio_dev - > num_channels = data - > part_info - > num_channels ;
2014-08-20 02:43:00 +04:00
indio_dev - > name = id - > name ;
2013-08-28 15:01:00 +04:00
indio_dev - > modes = INDIO_DIRECT_MODE ;
indio_dev - > info = & bma180_info ;
2014-08-20 02:43:00 +04:00
if ( client - > irq > 0 ) {
data - > trig = iio_trigger_alloc ( " %s-dev%d " , indio_dev - > name ,
indio_dev - > id ) ;
if ( ! data - > trig ) {
ret = - ENOMEM ;
goto err_chip_disable ;
}
2013-08-28 15:01:00 +04:00
2014-08-20 02:43:00 +04:00
ret = devm_request_irq ( & client - > dev , client - > irq ,
iio_trigger_generic_data_rdy_poll , IRQF_TRIGGER_RISING ,
2014-08-20 02:43:00 +04:00
" bma180_event " , data - > trig ) ;
2014-08-20 02:43:00 +04:00
if ( ret ) {
dev_err ( & client - > dev , " unable to request IRQ \n " ) ;
goto err_trigger_free ;
}
2013-08-28 15:01:00 +04:00
2014-08-20 02:43:00 +04:00
data - > trig - > dev . parent = & client - > dev ;
data - > trig - > ops = & bma180_trigger_ops ;
iio_trigger_set_drvdata ( data - > trig , indio_dev ) ;
2014-09-22 18:54:10 +04:00
indio_dev - > trig = iio_trigger_get ( data - > trig ) ;
2013-08-28 15:01:00 +04:00
2014-08-20 02:43:00 +04:00
ret = iio_trigger_register ( data - > trig ) ;
if ( ret )
goto err_trigger_free ;
}
2013-08-28 15:01:00 +04:00
ret = iio_triggered_buffer_setup ( indio_dev , NULL ,
bma180_trigger_handler , NULL ) ;
if ( ret < 0 ) {
dev_err ( & client - > dev , " unable to setup iio triggered buffer \n " ) ;
goto err_trigger_unregister ;
}
ret = iio_device_register ( indio_dev ) ;
if ( ret < 0 ) {
dev_err ( & client - > dev , " unable to register iio device \n " ) ;
goto err_buffer_cleanup ;
}
return 0 ;
err_buffer_cleanup :
iio_triggered_buffer_cleanup ( indio_dev ) ;
err_trigger_unregister :
2014-08-20 02:43:00 +04:00
if ( data - > trig )
iio_trigger_unregister ( data - > trig ) ;
2013-08-28 15:01:00 +04:00
err_trigger_free :
2014-08-20 02:43:00 +04:00
iio_trigger_free ( data - > trig ) ;
2013-08-28 15:01:00 +04:00
err_chip_disable :
2014-08-20 02:43:00 +04:00
data - > part_info - > chip_disable ( data ) ;
2013-08-28 15:01:00 +04:00
return ret ;
}
static int bma180_remove ( struct i2c_client * client )
{
struct iio_dev * indio_dev = i2c_get_clientdata ( client ) ;
struct bma180_data * data = iio_priv ( indio_dev ) ;
iio_device_unregister ( indio_dev ) ;
iio_triggered_buffer_cleanup ( indio_dev ) ;
2014-08-20 02:43:00 +04:00
if ( data - > trig ) {
iio_trigger_unregister ( data - > trig ) ;
iio_trigger_free ( data - > trig ) ;
}
2013-08-28 15:01:00 +04:00
mutex_lock ( & data - > mutex ) ;
2014-08-20 02:43:00 +04:00
data - > part_info - > chip_disable ( data ) ;
2013-08-28 15:01:00 +04:00
mutex_unlock ( & data - > mutex ) ;
return 0 ;
}
# ifdef CONFIG_PM_SLEEP
static int bma180_suspend ( struct device * dev )
{
2013-09-19 01:47:00 +04:00
struct iio_dev * indio_dev = i2c_get_clientdata ( to_i2c_client ( dev ) ) ;
2013-08-28 15:01:00 +04:00
struct bma180_data * data = iio_priv ( indio_dev ) ;
int ret ;
mutex_lock ( & data - > mutex ) ;
2014-08-20 02:43:00 +04:00
ret = bma180_set_sleep_state ( data , true ) ;
2013-08-28 15:01:00 +04:00
mutex_unlock ( & data - > mutex ) ;
return ret ;
}
static int bma180_resume ( struct device * dev )
{
2013-09-19 01:47:00 +04:00
struct iio_dev * indio_dev = i2c_get_clientdata ( to_i2c_client ( dev ) ) ;
2013-08-28 15:01:00 +04:00
struct bma180_data * data = iio_priv ( indio_dev ) ;
int ret ;
mutex_lock ( & data - > mutex ) ;
2014-08-20 02:43:00 +04:00
ret = bma180_set_sleep_state ( data , false ) ;
2013-08-28 15:01:00 +04:00
mutex_unlock ( & data - > mutex ) ;
return ret ;
}
static SIMPLE_DEV_PM_OPS ( bma180_pm_ops , bma180_suspend , bma180_resume ) ;
# define BMA180_PM_OPS (&bma180_pm_ops)
# else
# define BMA180_PM_OPS NULL
# endif
2014-08-20 02:43:00 +04:00
static struct i2c_device_id bma180_ids [ ] = {
2014-08-20 02:43:00 +04:00
{ " bma180 " , BMA180 } ,
{ " bma250 " , BMA250 } ,
2013-08-28 15:01:00 +04:00
{ }
} ;
2014-08-20 02:43:00 +04:00
MODULE_DEVICE_TABLE ( i2c , bma180_ids ) ;
2013-08-28 15:01:00 +04:00
static struct i2c_driver bma180_driver = {
. driver = {
2014-08-20 02:43:00 +04:00
. name = " bma180 " ,
2013-08-28 15:01:00 +04:00
. pm = BMA180_PM_OPS ,
} ,
. probe = bma180_probe ,
. remove = bma180_remove ,
2014-08-20 02:43:00 +04:00
. id_table = bma180_ids ,
2013-08-28 15:01:00 +04:00
} ;
module_i2c_driver ( bma180_driver ) ;
MODULE_AUTHOR ( " Kravchenko Oleksandr <x0199363@ti.com> " ) ;
MODULE_AUTHOR ( " Texas Instruments, Inc. " ) ;
2014-08-20 02:43:00 +04:00
MODULE_DESCRIPTION ( " Bosch BMA180/BMA250 triaxial acceleration sensor " ) ;
2013-08-28 15:01:00 +04:00
MODULE_LICENSE ( " GPL " ) ;