12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430 |
- /*
- * 3-axis accelerometer driver supporting following Bosch-Sensortec chips:
- * - BMC150
- * - BMI055
- * - BMA255
- * - BMA250E
- * - BMA222E
- * - BMA280
- *
- * Copyright (c) 2014, Intel Corporation.
- *
- * This program is free software; you can redistribute it and/or modify it
- * under the terms and conditions of the GNU General Public License,
- * version 2, as published by the Free Software Foundation.
- *
- * This program is distributed in the hope 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.
- */
- #include <linux/module.h>
- #include <linux/i2c.h>
- #include <linux/interrupt.h>
- #include <linux/delay.h>
- #include <linux/slab.h>
- #include <linux/acpi.h>
- #include <linux/gpio/consumer.h>
- #include <linux/pm.h>
- #include <linux/pm_runtime.h>
- #include <linux/iio/iio.h>
- #include <linux/iio/sysfs.h>
- #include <linux/iio/buffer.h>
- #include <linux/iio/events.h>
- #include <linux/iio/trigger.h>
- #include <linux/iio/trigger_consumer.h>
- #include <linux/iio/triggered_buffer.h>
- #define BMC150_ACCEL_DRV_NAME "bmc150_accel"
- #define BMC150_ACCEL_IRQ_NAME "bmc150_accel_event"
- #define BMC150_ACCEL_GPIO_NAME "bmc150_accel_int"
- #define BMC150_ACCEL_REG_CHIP_ID 0x00
- #define BMC150_ACCEL_REG_INT_STATUS_2 0x0B
- #define BMC150_ACCEL_ANY_MOTION_MASK 0x07
- #define BMC150_ACCEL_ANY_MOTION_BIT_SIGN BIT(3)
- #define BMC150_ACCEL_REG_PMU_LPW 0x11
- #define BMC150_ACCEL_PMU_MODE_MASK 0xE0
- #define BMC150_ACCEL_PMU_MODE_SHIFT 5
- #define BMC150_ACCEL_PMU_BIT_SLEEP_DUR_MASK 0x17
- #define BMC150_ACCEL_PMU_BIT_SLEEP_DUR_SHIFT 1
- #define BMC150_ACCEL_REG_PMU_RANGE 0x0F
- #define BMC150_ACCEL_DEF_RANGE_2G 0x03
- #define BMC150_ACCEL_DEF_RANGE_4G 0x05
- #define BMC150_ACCEL_DEF_RANGE_8G 0x08
- #define BMC150_ACCEL_DEF_RANGE_16G 0x0C
- /* Default BW: 125Hz */
- #define BMC150_ACCEL_REG_PMU_BW 0x10
- #define BMC150_ACCEL_DEF_BW 125
- #define BMC150_ACCEL_REG_INT_MAP_0 0x19
- #define BMC150_ACCEL_INT_MAP_0_BIT_SLOPE BIT(2)
- #define BMC150_ACCEL_REG_INT_MAP_1 0x1A
- #define BMC150_ACCEL_INT_MAP_1_BIT_DATA BIT(0)
- #define BMC150_ACCEL_REG_INT_RST_LATCH 0x21
- #define BMC150_ACCEL_INT_MODE_LATCH_RESET 0x80
- #define BMC150_ACCEL_INT_MODE_LATCH_INT 0x0F
- #define BMC150_ACCEL_INT_MODE_NON_LATCH_INT 0x00
- #define BMC150_ACCEL_REG_INT_EN_0 0x16
- #define BMC150_ACCEL_INT_EN_BIT_SLP_X BIT(0)
- #define BMC150_ACCEL_INT_EN_BIT_SLP_Y BIT(1)
- #define BMC150_ACCEL_INT_EN_BIT_SLP_Z BIT(2)
- #define BMC150_ACCEL_REG_INT_EN_1 0x17
- #define BMC150_ACCEL_INT_EN_BIT_DATA_EN BIT(4)
- #define BMC150_ACCEL_REG_INT_OUT_CTRL 0x20
- #define BMC150_ACCEL_INT_OUT_CTRL_INT1_LVL BIT(0)
- #define BMC150_ACCEL_REG_INT_5 0x27
- #define BMC150_ACCEL_SLOPE_DUR_MASK 0x03
- #define BMC150_ACCEL_REG_INT_6 0x28
- #define BMC150_ACCEL_SLOPE_THRES_MASK 0xFF
- /* Slope duration in terms of number of samples */
- #define BMC150_ACCEL_DEF_SLOPE_DURATION 2
- /* in terms of multiples of g's/LSB, based on range */
- #define BMC150_ACCEL_DEF_SLOPE_THRESHOLD 5
- #define BMC150_ACCEL_REG_XOUT_L 0x02
- #define BMC150_ACCEL_MAX_STARTUP_TIME_MS 100
- /* Sleep Duration values */
- #define BMC150_ACCEL_SLEEP_500_MICRO 0x05
- #define BMC150_ACCEL_SLEEP_1_MS 0x06
- #define BMC150_ACCEL_SLEEP_2_MS 0x07
- #define BMC150_ACCEL_SLEEP_4_MS 0x08
- #define BMC150_ACCEL_SLEEP_6_MS 0x09
- #define BMC150_ACCEL_SLEEP_10_MS 0x0A
- #define BMC150_ACCEL_SLEEP_25_MS 0x0B
- #define BMC150_ACCEL_SLEEP_50_MS 0x0C
- #define BMC150_ACCEL_SLEEP_100_MS 0x0D
- #define BMC150_ACCEL_SLEEP_500_MS 0x0E
- #define BMC150_ACCEL_SLEEP_1_SEC 0x0F
- #define BMC150_ACCEL_REG_TEMP 0x08
- #define BMC150_ACCEL_TEMP_CENTER_VAL 24
- #define BMC150_ACCEL_AXIS_TO_REG(axis) (BMC150_ACCEL_REG_XOUT_L + (axis * 2))
- #define BMC150_AUTO_SUSPEND_DELAY_MS 2000
- enum bmc150_accel_axis {
- AXIS_X,
- AXIS_Y,
- AXIS_Z,
- };
- enum bmc150_power_modes {
- BMC150_ACCEL_SLEEP_MODE_NORMAL,
- BMC150_ACCEL_SLEEP_MODE_DEEP_SUSPEND,
- BMC150_ACCEL_SLEEP_MODE_LPM,
- BMC150_ACCEL_SLEEP_MODE_SUSPEND = 0x04,
- };
- struct bmc150_scale_info {
- int scale;
- u8 reg_range;
- };
- struct bmc150_accel_chip_info {
- u8 chip_id;
- const struct iio_chan_spec *channels;
- int num_channels;
- const struct bmc150_scale_info scale_table[4];
- };
- struct bmc150_accel_data {
- struct i2c_client *client;
- struct iio_trigger *dready_trig;
- struct iio_trigger *motion_trig;
- struct mutex mutex;
- s16 buffer[8];
- u8 bw_bits;
- u32 slope_dur;
- u32 slope_thres;
- u32 range;
- int ev_enable_state;
- bool dready_trigger_on;
- bool motion_trigger_on;
- int64_t timestamp;
- const struct bmc150_accel_chip_info *chip_info;
- };
- static const struct {
- int val;
- int val2;
- u8 bw_bits;
- } bmc150_accel_samp_freq_table[] = { {7, 810000, 0x08},
- {15, 630000, 0x09},
- {31, 250000, 0x0A},
- {62, 500000, 0x0B},
- {125, 0, 0x0C},
- {250, 0, 0x0D},
- {500, 0, 0x0E},
- {1000, 0, 0x0F} };
- static const struct {
- int bw_bits;
- int msec;
- } bmc150_accel_sample_upd_time[] = { {0x08, 64},
- {0x09, 32},
- {0x0A, 16},
- {0x0B, 8},
- {0x0C, 4},
- {0x0D, 2},
- {0x0E, 1},
- {0x0F, 1} };
- static const struct {
- int sleep_dur;
- u8 reg_value;
- } bmc150_accel_sleep_value_table[] = { {0, 0},
- {500, BMC150_ACCEL_SLEEP_500_MICRO},
- {1000, BMC150_ACCEL_SLEEP_1_MS},
- {2000, BMC150_ACCEL_SLEEP_2_MS},
- {4000, BMC150_ACCEL_SLEEP_4_MS},
- {6000, BMC150_ACCEL_SLEEP_6_MS},
- {10000, BMC150_ACCEL_SLEEP_10_MS},
- {25000, BMC150_ACCEL_SLEEP_25_MS},
- {50000, BMC150_ACCEL_SLEEP_50_MS},
- {100000, BMC150_ACCEL_SLEEP_100_MS},
- {500000, BMC150_ACCEL_SLEEP_500_MS},
- {1000000, BMC150_ACCEL_SLEEP_1_SEC} };
- static int bmc150_accel_set_mode(struct bmc150_accel_data *data,
- enum bmc150_power_modes mode,
- int dur_us)
- {
- int i;
- int ret;
- u8 lpw_bits;
- int dur_val = -1;
- if (dur_us > 0) {
- for (i = 0; i < ARRAY_SIZE(bmc150_accel_sleep_value_table);
- ++i) {
- if (bmc150_accel_sleep_value_table[i].sleep_dur ==
- dur_us)
- dur_val =
- bmc150_accel_sleep_value_table[i].reg_value;
- }
- } else
- dur_val = 0;
- if (dur_val < 0)
- return -EINVAL;
- lpw_bits = mode << BMC150_ACCEL_PMU_MODE_SHIFT;
- lpw_bits |= (dur_val << BMC150_ACCEL_PMU_BIT_SLEEP_DUR_SHIFT);
- dev_dbg(&data->client->dev, "Set Mode bits %x\n", lpw_bits);
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_PMU_LPW, lpw_bits);
- if (ret < 0) {
- dev_err(&data->client->dev, "Error writing reg_pmu_lpw\n");
- return ret;
- }
- return 0;
- }
- static int bmc150_accel_set_bw(struct bmc150_accel_data *data, int val,
- int val2)
- {
- int i;
- int ret;
- for (i = 0; i < ARRAY_SIZE(bmc150_accel_samp_freq_table); ++i) {
- if (bmc150_accel_samp_freq_table[i].val == val &&
- bmc150_accel_samp_freq_table[i].val2 == val2) {
- ret = i2c_smbus_write_byte_data(
- data->client,
- BMC150_ACCEL_REG_PMU_BW,
- bmc150_accel_samp_freq_table[i].bw_bits);
- if (ret < 0)
- return ret;
- data->bw_bits =
- bmc150_accel_samp_freq_table[i].bw_bits;
- return 0;
- }
- }
- return -EINVAL;
- }
- static int bmc150_accel_chip_init(struct bmc150_accel_data *data)
- {
- int ret;
- ret = i2c_smbus_read_byte_data(data->client, BMC150_ACCEL_REG_CHIP_ID);
- if (ret < 0) {
- dev_err(&data->client->dev,
- "Error: Reading chip id\n");
- return ret;
- }
- dev_dbg(&data->client->dev, "Chip Id %x\n", ret);
- if (ret != data->chip_info->chip_id) {
- dev_err(&data->client->dev, "Invalid chip %x\n", ret);
- return -ENODEV;
- }
- ret = bmc150_accel_set_mode(data, BMC150_ACCEL_SLEEP_MODE_NORMAL, 0);
- if (ret < 0)
- return ret;
- /* Set Bandwidth */
- ret = bmc150_accel_set_bw(data, BMC150_ACCEL_DEF_BW, 0);
- if (ret < 0)
- return ret;
- /* Set Default Range */
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_PMU_RANGE,
- BMC150_ACCEL_DEF_RANGE_4G);
- if (ret < 0) {
- dev_err(&data->client->dev,
- "Error writing reg_pmu_range\n");
- return ret;
- }
- data->range = BMC150_ACCEL_DEF_RANGE_4G;
- /* Set default slope duration */
- ret = i2c_smbus_read_byte_data(data->client, BMC150_ACCEL_REG_INT_5);
- if (ret < 0) {
- dev_err(&data->client->dev, "Error reading reg_int_5\n");
- return ret;
- }
- data->slope_dur |= BMC150_ACCEL_DEF_SLOPE_DURATION;
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_INT_5,
- data->slope_dur);
- if (ret < 0) {
- dev_err(&data->client->dev, "Error writing reg_int_5\n");
- return ret;
- }
- dev_dbg(&data->client->dev, "slope_dur %x\n", data->slope_dur);
- /* Set default slope thresholds */
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_INT_6,
- BMC150_ACCEL_DEF_SLOPE_THRESHOLD);
- if (ret < 0) {
- dev_err(&data->client->dev, "Error writing reg_int_6\n");
- return ret;
- }
- data->slope_thres = BMC150_ACCEL_DEF_SLOPE_THRESHOLD;
- dev_dbg(&data->client->dev, "slope_thres %x\n", data->slope_thres);
- /* Set default as latched interrupts */
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_INT_RST_LATCH,
- BMC150_ACCEL_INT_MODE_LATCH_INT |
- BMC150_ACCEL_INT_MODE_LATCH_RESET);
- if (ret < 0) {
- dev_err(&data->client->dev,
- "Error writing reg_int_rst_latch\n");
- return ret;
- }
- return 0;
- }
- static int bmc150_accel_setup_any_motion_interrupt(
- struct bmc150_accel_data *data,
- bool status)
- {
- int ret;
- /* Enable/Disable INT1 mapping */
- ret = i2c_smbus_read_byte_data(data->client,
- BMC150_ACCEL_REG_INT_MAP_0);
- if (ret < 0) {
- dev_err(&data->client->dev, "Error reading reg_int_map_0\n");
- return ret;
- }
- if (status)
- ret |= BMC150_ACCEL_INT_MAP_0_BIT_SLOPE;
- else
- ret &= ~BMC150_ACCEL_INT_MAP_0_BIT_SLOPE;
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_INT_MAP_0,
- ret);
- if (ret < 0) {
- dev_err(&data->client->dev, "Error writing reg_int_map_0\n");
- return ret;
- }
- if (status) {
- /* Set slope duration (no of samples) */
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_INT_5,
- data->slope_dur);
- if (ret < 0) {
- dev_err(&data->client->dev, "Error write reg_int_5\n");
- return ret;
- }
- /* Set slope thresholds */
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_INT_6,
- data->slope_thres);
- if (ret < 0) {
- dev_err(&data->client->dev, "Error write reg_int_6\n");
- return ret;
- }
- /*
- * New data interrupt is always non-latched,
- * which will have higher priority, so no need
- * to set latched mode, we will be flooded anyway with INTR
- */
- if (!data->dready_trigger_on) {
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_INT_RST_LATCH,
- BMC150_ACCEL_INT_MODE_LATCH_INT |
- BMC150_ACCEL_INT_MODE_LATCH_RESET);
- if (ret < 0) {
- dev_err(&data->client->dev,
- "Error writing reg_int_rst_latch\n");
- return ret;
- }
- }
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_INT_EN_0,
- BMC150_ACCEL_INT_EN_BIT_SLP_X |
- BMC150_ACCEL_INT_EN_BIT_SLP_Y |
- BMC150_ACCEL_INT_EN_BIT_SLP_Z);
- } else
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_INT_EN_0,
- 0);
- if (ret < 0) {
- dev_err(&data->client->dev, "Error writing reg_int_en_0\n");
- return ret;
- }
- return 0;
- }
- static int bmc150_accel_setup_new_data_interrupt(struct bmc150_accel_data *data,
- bool status)
- {
- int ret;
- /* Enable/Disable INT1 mapping */
- ret = i2c_smbus_read_byte_data(data->client,
- BMC150_ACCEL_REG_INT_MAP_1);
- if (ret < 0) {
- dev_err(&data->client->dev, "Error reading reg_int_map_1\n");
- return ret;
- }
- if (status)
- ret |= BMC150_ACCEL_INT_MAP_1_BIT_DATA;
- else
- ret &= ~BMC150_ACCEL_INT_MAP_1_BIT_DATA;
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_INT_MAP_1,
- ret);
- if (ret < 0) {
- dev_err(&data->client->dev, "Error writing reg_int_map_1\n");
- return ret;
- }
- if (status) {
- /*
- * Set non latched mode interrupt and clear any latched
- * interrupt
- */
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_INT_RST_LATCH,
- BMC150_ACCEL_INT_MODE_NON_LATCH_INT |
- BMC150_ACCEL_INT_MODE_LATCH_RESET);
- if (ret < 0) {
- dev_err(&data->client->dev,
- "Error writing reg_int_rst_latch\n");
- return ret;
- }
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_INT_EN_1,
- BMC150_ACCEL_INT_EN_BIT_DATA_EN);
- } else {
- /* Restore default interrupt mode */
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_INT_RST_LATCH,
- BMC150_ACCEL_INT_MODE_LATCH_INT |
- BMC150_ACCEL_INT_MODE_LATCH_RESET);
- if (ret < 0) {
- dev_err(&data->client->dev,
- "Error writing reg_int_rst_latch\n");
- return ret;
- }
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_INT_EN_1,
- 0);
- }
- if (ret < 0) {
- dev_err(&data->client->dev, "Error writing reg_int_en_1\n");
- return ret;
- }
- return 0;
- }
- static int bmc150_accel_get_bw(struct bmc150_accel_data *data, int *val,
- int *val2)
- {
- int i;
- for (i = 0; i < ARRAY_SIZE(bmc150_accel_samp_freq_table); ++i) {
- if (bmc150_accel_samp_freq_table[i].bw_bits == data->bw_bits) {
- *val = bmc150_accel_samp_freq_table[i].val;
- *val2 = bmc150_accel_samp_freq_table[i].val2;
- return IIO_VAL_INT_PLUS_MICRO;
- }
- }
- return -EINVAL;
- }
- #ifdef CONFIG_PM_RUNTIME
- static int bmc150_accel_get_startup_times(struct bmc150_accel_data *data)
- {
- int i;
- for (i = 0; i < ARRAY_SIZE(bmc150_accel_sample_upd_time); ++i) {
- if (bmc150_accel_sample_upd_time[i].bw_bits == data->bw_bits)
- return bmc150_accel_sample_upd_time[i].msec;
- }
- return BMC150_ACCEL_MAX_STARTUP_TIME_MS;
- }
- static int bmc150_accel_set_power_state(struct bmc150_accel_data *data, bool on)
- {
- int ret;
- if (on)
- ret = pm_runtime_get_sync(&data->client->dev);
- else {
- pm_runtime_mark_last_busy(&data->client->dev);
- ret = pm_runtime_put_autosuspend(&data->client->dev);
- }
- if (ret < 0) {
- dev_err(&data->client->dev,
- "Failed: bmc150_accel_set_power_state for %d\n", on);
- return ret;
- }
- return 0;
- }
- #else
- static int bmc150_accel_set_power_state(struct bmc150_accel_data *data, bool on)
- {
- return 0;
- }
- #endif
- static int bmc150_accel_set_scale(struct bmc150_accel_data *data, int val)
- {
- int ret, i;
- for (i = 0; i < ARRAY_SIZE(data->chip_info->scale_table); ++i) {
- if (data->chip_info->scale_table[i].scale == val) {
- ret = i2c_smbus_write_byte_data(
- data->client,
- BMC150_ACCEL_REG_PMU_RANGE,
- data->chip_info->scale_table[i].reg_range);
- if (ret < 0) {
- dev_err(&data->client->dev,
- "Error writing pmu_range\n");
- return ret;
- }
- data->range = data->chip_info->scale_table[i].reg_range;
- return 0;
- }
- }
- return -EINVAL;
- }
- static int bmc150_accel_get_temp(struct bmc150_accel_data *data, int *val)
- {
- int ret;
- mutex_lock(&data->mutex);
- ret = i2c_smbus_read_byte_data(data->client, BMC150_ACCEL_REG_TEMP);
- if (ret < 0) {
- dev_err(&data->client->dev, "Error reading reg_temp\n");
- mutex_unlock(&data->mutex);
- return ret;
- }
- *val = sign_extend32(ret, 7);
- mutex_unlock(&data->mutex);
- return IIO_VAL_INT;
- }
- static int bmc150_accel_get_axis(struct bmc150_accel_data *data,
- struct iio_chan_spec const *chan,
- int *val)
- {
- int ret;
- int axis = chan->scan_index;
- mutex_lock(&data->mutex);
- ret = bmc150_accel_set_power_state(data, true);
- if (ret < 0) {
- mutex_unlock(&data->mutex);
- return ret;
- }
- ret = i2c_smbus_read_word_data(data->client,
- BMC150_ACCEL_AXIS_TO_REG(axis));
- if (ret < 0) {
- dev_err(&data->client->dev, "Error reading axis %d\n", axis);
- bmc150_accel_set_power_state(data, false);
- mutex_unlock(&data->mutex);
- return ret;
- }
- *val = sign_extend32(ret >> chan->scan_type.shift,
- chan->scan_type.realbits - 1);
- ret = bmc150_accel_set_power_state(data, false);
- mutex_unlock(&data->mutex);
- if (ret < 0)
- return ret;
- return IIO_VAL_INT;
- }
- static int bmc150_accel_read_raw(struct iio_dev *indio_dev,
- struct iio_chan_spec const *chan,
- int *val, int *val2, long mask)
- {
- struct bmc150_accel_data *data = iio_priv(indio_dev);
- int ret;
- switch (mask) {
- case IIO_CHAN_INFO_RAW:
- switch (chan->type) {
- case IIO_TEMP:
- return bmc150_accel_get_temp(data, val);
- case IIO_ACCEL:
- if (iio_buffer_enabled(indio_dev))
- return -EBUSY;
- else
- return bmc150_accel_get_axis(data, chan, val);
- default:
- return -EINVAL;
- }
- case IIO_CHAN_INFO_OFFSET:
- if (chan->type == IIO_TEMP) {
- *val = BMC150_ACCEL_TEMP_CENTER_VAL;
- return IIO_VAL_INT;
- } else
- return -EINVAL;
- case IIO_CHAN_INFO_SCALE:
- *val = 0;
- switch (chan->type) {
- case IIO_TEMP:
- *val2 = 500000;
- return IIO_VAL_INT_PLUS_MICRO;
- case IIO_ACCEL:
- {
- int i;
- const struct bmc150_scale_info *si;
- int st_size = ARRAY_SIZE(data->chip_info->scale_table);
- for (i = 0; i < st_size; ++i) {
- si = &data->chip_info->scale_table[i];
- if (si->reg_range == data->range) {
- *val2 = si->scale;
- return IIO_VAL_INT_PLUS_MICRO;
- }
- }
- return -EINVAL;
- }
- default:
- return -EINVAL;
- }
- case IIO_CHAN_INFO_SAMP_FREQ:
- mutex_lock(&data->mutex);
- ret = bmc150_accel_get_bw(data, val, val2);
- mutex_unlock(&data->mutex);
- return ret;
- default:
- return -EINVAL;
- }
- }
- static int bmc150_accel_write_raw(struct iio_dev *indio_dev,
- struct iio_chan_spec const *chan,
- int val, int val2, long mask)
- {
- struct bmc150_accel_data *data = iio_priv(indio_dev);
- int ret;
- switch (mask) {
- case IIO_CHAN_INFO_SAMP_FREQ:
- mutex_lock(&data->mutex);
- ret = bmc150_accel_set_bw(data, val, val2);
- mutex_unlock(&data->mutex);
- break;
- case IIO_CHAN_INFO_SCALE:
- if (val)
- return -EINVAL;
- mutex_lock(&data->mutex);
- ret = bmc150_accel_set_scale(data, val2);
- mutex_unlock(&data->mutex);
- return ret;
- default:
- ret = -EINVAL;
- }
- return ret;
- }
- static int bmc150_accel_read_event(struct iio_dev *indio_dev,
- const struct iio_chan_spec *chan,
- enum iio_event_type type,
- enum iio_event_direction dir,
- enum iio_event_info info,
- int *val, int *val2)
- {
- struct bmc150_accel_data *data = iio_priv(indio_dev);
- *val2 = 0;
- switch (info) {
- case IIO_EV_INFO_VALUE:
- *val = data->slope_thres;
- break;
- case IIO_EV_INFO_PERIOD:
- *val = data->slope_dur & BMC150_ACCEL_SLOPE_DUR_MASK;
- break;
- default:
- return -EINVAL;
- }
- return IIO_VAL_INT;
- }
- static int bmc150_accel_write_event(struct iio_dev *indio_dev,
- const struct iio_chan_spec *chan,
- enum iio_event_type type,
- enum iio_event_direction dir,
- enum iio_event_info info,
- int val, int val2)
- {
- struct bmc150_accel_data *data = iio_priv(indio_dev);
- if (data->ev_enable_state)
- return -EBUSY;
- switch (info) {
- case IIO_EV_INFO_VALUE:
- data->slope_thres = val;
- break;
- case IIO_EV_INFO_PERIOD:
- data->slope_dur &= ~BMC150_ACCEL_SLOPE_DUR_MASK;
- data->slope_dur |= val & BMC150_ACCEL_SLOPE_DUR_MASK;
- break;
- default:
- return -EINVAL;
- }
- return 0;
- }
- static int bmc150_accel_read_event_config(struct iio_dev *indio_dev,
- const struct iio_chan_spec *chan,
- enum iio_event_type type,
- enum iio_event_direction dir)
- {
- struct bmc150_accel_data *data = iio_priv(indio_dev);
- return data->ev_enable_state;
- }
- static int bmc150_accel_write_event_config(struct iio_dev *indio_dev,
- const struct iio_chan_spec *chan,
- enum iio_event_type type,
- enum iio_event_direction dir,
- int state)
- {
- struct bmc150_accel_data *data = iio_priv(indio_dev);
- int ret;
- if (state && data->ev_enable_state)
- return 0;
- mutex_lock(&data->mutex);
- if (!state && data->motion_trigger_on) {
- data->ev_enable_state = 0;
- mutex_unlock(&data->mutex);
- return 0;
- }
- /*
- * We will expect the enable and disable to do operation in
- * in reverse order. This will happen here anyway as our
- * resume operation uses sync mode runtime pm calls, the
- * suspend operation will be delayed by autosuspend delay
- * So the disable operation will still happen in reverse of
- * enable operation. When runtime pm is disabled the mode
- * is always on so sequence doesn't matter
- */
- ret = bmc150_accel_set_power_state(data, state);
- if (ret < 0) {
- mutex_unlock(&data->mutex);
- return ret;
- }
- ret = bmc150_accel_setup_any_motion_interrupt(data, state);
- if (ret < 0) {
- mutex_unlock(&data->mutex);
- return ret;
- }
- data->ev_enable_state = state;
- mutex_unlock(&data->mutex);
- return 0;
- }
- static int bmc150_accel_validate_trigger(struct iio_dev *indio_dev,
- struct iio_trigger *trig)
- {
- struct bmc150_accel_data *data = iio_priv(indio_dev);
- if (data->dready_trig != trig && data->motion_trig != trig)
- return -EINVAL;
- return 0;
- }
- static IIO_CONST_ATTR_SAMP_FREQ_AVAIL(
- "7.810000 15.630000 31.250000 62.500000 125 250 500 1000");
- static struct attribute *bmc150_accel_attributes[] = {
- &iio_const_attr_sampling_frequency_available.dev_attr.attr,
- NULL,
- };
- static const struct attribute_group bmc150_accel_attrs_group = {
- .attrs = bmc150_accel_attributes,
- };
- static const struct iio_event_spec bmc150_accel_event = {
- .type = IIO_EV_TYPE_ROC,
- .dir = IIO_EV_DIR_RISING | IIO_EV_DIR_FALLING,
- .mask_separate = BIT(IIO_EV_INFO_VALUE) |
- BIT(IIO_EV_INFO_ENABLE) |
- BIT(IIO_EV_INFO_PERIOD)
- };
- #define BMC150_ACCEL_CHANNEL(_axis, bits) { \
- .type = IIO_ACCEL, \
- .modified = 1, \
- .channel2 = IIO_MOD_##_axis, \
- .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
- .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE) | \
- BIT(IIO_CHAN_INFO_SAMP_FREQ), \
- .scan_index = AXIS_##_axis, \
- .scan_type = { \
- .sign = 's', \
- .realbits = (bits), \
- .storagebits = 16, \
- .shift = 16 - (bits), \
- }, \
- .event_spec = &bmc150_accel_event, \
- .num_event_specs = 1 \
- }
- #define BMC150_ACCEL_CHANNELS(bits) { \
- { \
- .type = IIO_TEMP, \
- .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
- BIT(IIO_CHAN_INFO_SCALE) | \
- BIT(IIO_CHAN_INFO_OFFSET), \
- .scan_index = -1, \
- }, \
- BMC150_ACCEL_CHANNEL(X, bits), \
- BMC150_ACCEL_CHANNEL(Y, bits), \
- BMC150_ACCEL_CHANNEL(Z, bits), \
- IIO_CHAN_SOFT_TIMESTAMP(3), \
- }
- static const struct iio_chan_spec bma222e_accel_channels[] =
- BMC150_ACCEL_CHANNELS(8);
- static const struct iio_chan_spec bma250e_accel_channels[] =
- BMC150_ACCEL_CHANNELS(10);
- static const struct iio_chan_spec bmc150_accel_channels[] =
- BMC150_ACCEL_CHANNELS(12);
- static const struct iio_chan_spec bma280_accel_channels[] =
- BMC150_ACCEL_CHANNELS(14);
- enum {
- bmc150,
- bmi055,
- bma255,
- bma250e,
- bma222e,
- bma280,
- };
- static const struct bmc150_accel_chip_info bmc150_accel_chip_info_tbl[] = {
- [bmc150] = {
- .chip_id = 0xFA,
- .channels = bmc150_accel_channels,
- .num_channels = ARRAY_SIZE(bmc150_accel_channels),
- .scale_table = { {9610, BMC150_ACCEL_DEF_RANGE_2G},
- {19122, BMC150_ACCEL_DEF_RANGE_4G},
- {38344, BMC150_ACCEL_DEF_RANGE_8G},
- {76590, BMC150_ACCEL_DEF_RANGE_16G} },
- },
- [bmi055] = {
- .chip_id = 0xFA,
- .channels = bmc150_accel_channels,
- .num_channels = ARRAY_SIZE(bmc150_accel_channels),
- .scale_table = { {9610, BMC150_ACCEL_DEF_RANGE_2G},
- {19122, BMC150_ACCEL_DEF_RANGE_4G},
- {38344, BMC150_ACCEL_DEF_RANGE_8G},
- {76590, BMC150_ACCEL_DEF_RANGE_16G} },
- },
- [bma255] = {
- .chip_id = 0xFA,
- .channels = bmc150_accel_channels,
- .num_channels = ARRAY_SIZE(bmc150_accel_channels),
- .scale_table = { {9610, BMC150_ACCEL_DEF_RANGE_2G},
- {19122, BMC150_ACCEL_DEF_RANGE_4G},
- {38344, BMC150_ACCEL_DEF_RANGE_8G},
- {76590, BMC150_ACCEL_DEF_RANGE_16G} },
- },
- [bma250e] = {
- .chip_id = 0xF9,
- .channels = bma250e_accel_channels,
- .num_channels = ARRAY_SIZE(bma250e_accel_channels),
- .scale_table = { {38344, BMC150_ACCEL_DEF_RANGE_2G},
- {76590, BMC150_ACCEL_DEF_RANGE_4G},
- {153277, BMC150_ACCEL_DEF_RANGE_8G},
- {306457, BMC150_ACCEL_DEF_RANGE_16G} },
- },
- [bma222e] = {
- .chip_id = 0xF8,
- .channels = bma222e_accel_channels,
- .num_channels = ARRAY_SIZE(bma222e_accel_channels),
- .scale_table = { {153277, BMC150_ACCEL_DEF_RANGE_2G},
- {306457, BMC150_ACCEL_DEF_RANGE_4G},
- {612915, BMC150_ACCEL_DEF_RANGE_8G},
- {1225831, BMC150_ACCEL_DEF_RANGE_16G} },
- },
- [bma280] = {
- .chip_id = 0xFB,
- .channels = bma280_accel_channels,
- .num_channels = ARRAY_SIZE(bma280_accel_channels),
- .scale_table = { {2392, BMC150_ACCEL_DEF_RANGE_2G},
- {4785, BMC150_ACCEL_DEF_RANGE_4G},
- {9581, BMC150_ACCEL_DEF_RANGE_8G},
- {19152, BMC150_ACCEL_DEF_RANGE_16G} },
- },
- };
- static const struct iio_info bmc150_accel_info = {
- .attrs = &bmc150_accel_attrs_group,
- .read_raw = bmc150_accel_read_raw,
- .write_raw = bmc150_accel_write_raw,
- .read_event_value = bmc150_accel_read_event,
- .write_event_value = bmc150_accel_write_event,
- .write_event_config = bmc150_accel_write_event_config,
- .read_event_config = bmc150_accel_read_event_config,
- .validate_trigger = bmc150_accel_validate_trigger,
- .driver_module = THIS_MODULE,
- };
- static irqreturn_t bmc150_accel_trigger_handler(int irq, void *p)
- {
- struct iio_poll_func *pf = p;
- struct iio_dev *indio_dev = pf->indio_dev;
- struct bmc150_accel_data *data = iio_priv(indio_dev);
- int bit, ret, i = 0;
- mutex_lock(&data->mutex);
- for_each_set_bit(bit, indio_dev->buffer->scan_mask,
- indio_dev->masklength) {
- ret = i2c_smbus_read_word_data(data->client,
- BMC150_ACCEL_AXIS_TO_REG(bit));
- if (ret < 0) {
- mutex_unlock(&data->mutex);
- goto err_read;
- }
- data->buffer[i++] = ret;
- }
- mutex_unlock(&data->mutex);
- iio_push_to_buffers_with_timestamp(indio_dev, data->buffer,
- data->timestamp);
- err_read:
- iio_trigger_notify_done(indio_dev->trig);
- return IRQ_HANDLED;
- }
- static int bmc150_accel_trig_try_reen(struct iio_trigger *trig)
- {
- struct iio_dev *indio_dev = iio_trigger_get_drvdata(trig);
- struct bmc150_accel_data *data = iio_priv(indio_dev);
- int ret;
- /* new data interrupts don't need ack */
- if (data->dready_trigger_on)
- return 0;
- mutex_lock(&data->mutex);
- /* clear any latched interrupt */
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_INT_RST_LATCH,
- BMC150_ACCEL_INT_MODE_LATCH_INT |
- BMC150_ACCEL_INT_MODE_LATCH_RESET);
- mutex_unlock(&data->mutex);
- if (ret < 0) {
- dev_err(&data->client->dev,
- "Error writing reg_int_rst_latch\n");
- return ret;
- }
- return 0;
- }
- static int bmc150_accel_data_rdy_trigger_set_state(struct iio_trigger *trig,
- bool state)
- {
- struct iio_dev *indio_dev = iio_trigger_get_drvdata(trig);
- struct bmc150_accel_data *data = iio_priv(indio_dev);
- int ret;
- mutex_lock(&data->mutex);
- if (!state && data->ev_enable_state && data->motion_trigger_on) {
- data->motion_trigger_on = false;
- mutex_unlock(&data->mutex);
- return 0;
- }
- /*
- * Refer to comment in bmc150_accel_write_event_config for
- * enable/disable operation order
- */
- ret = bmc150_accel_set_power_state(data, state);
- if (ret < 0) {
- mutex_unlock(&data->mutex);
- return ret;
- }
- if (data->motion_trig == trig)
- ret = bmc150_accel_setup_any_motion_interrupt(data, state);
- else
- ret = bmc150_accel_setup_new_data_interrupt(data, state);
- if (ret < 0) {
- mutex_unlock(&data->mutex);
- return ret;
- }
- if (data->motion_trig == trig)
- data->motion_trigger_on = state;
- else
- data->dready_trigger_on = state;
- mutex_unlock(&data->mutex);
- return ret;
- }
- static const struct iio_trigger_ops bmc150_accel_trigger_ops = {
- .set_trigger_state = bmc150_accel_data_rdy_trigger_set_state,
- .try_reenable = bmc150_accel_trig_try_reen,
- .owner = THIS_MODULE,
- };
- static irqreturn_t bmc150_accel_event_handler(int irq, void *private)
- {
- struct iio_dev *indio_dev = private;
- struct bmc150_accel_data *data = iio_priv(indio_dev);
- int ret;
- int dir;
- ret = i2c_smbus_read_byte_data(data->client,
- BMC150_ACCEL_REG_INT_STATUS_2);
- if (ret < 0) {
- dev_err(&data->client->dev, "Error reading reg_int_status_2\n");
- goto ack_intr_status;
- }
- if (ret & BMC150_ACCEL_ANY_MOTION_BIT_SIGN)
- dir = IIO_EV_DIR_FALLING;
- else
- dir = IIO_EV_DIR_RISING;
- if (ret & BMC150_ACCEL_ANY_MOTION_MASK)
- iio_push_event(indio_dev, IIO_MOD_EVENT_CODE(IIO_ACCEL,
- 0,
- IIO_MOD_X_OR_Y_OR_Z,
- IIO_EV_TYPE_ROC,
- IIO_EV_DIR_EITHER),
- data->timestamp);
- ack_intr_status:
- if (!data->dready_trigger_on)
- ret = i2c_smbus_write_byte_data(data->client,
- BMC150_ACCEL_REG_INT_RST_LATCH,
- BMC150_ACCEL_INT_MODE_LATCH_INT |
- BMC150_ACCEL_INT_MODE_LATCH_RESET);
- return IRQ_HANDLED;
- }
- static irqreturn_t bmc150_accel_data_rdy_trig_poll(int irq, void *private)
- {
- struct iio_dev *indio_dev = private;
- struct bmc150_accel_data *data = iio_priv(indio_dev);
- data->timestamp = iio_get_time_ns();
- if (data->dready_trigger_on)
- iio_trigger_poll(data->dready_trig);
- else if (data->motion_trigger_on)
- iio_trigger_poll(data->motion_trig);
- if (data->ev_enable_state)
- return IRQ_WAKE_THREAD;
- else
- return IRQ_HANDLED;
- }
- static const char *bmc150_accel_match_acpi_device(struct device *dev, int *data)
- {
- const struct acpi_device_id *id;
- id = acpi_match_device(dev->driver->acpi_match_table, dev);
- if (!id)
- return NULL;
- *data = (int) id->driver_data;
- return dev_name(dev);
- }
- static int bmc150_accel_gpio_probe(struct i2c_client *client,
- struct bmc150_accel_data *data)
- {
- struct device *dev;
- struct gpio_desc *gpio;
- int ret;
- if (!client)
- return -EINVAL;
- dev = &client->dev;
- /* data ready gpio interrupt pin */
- gpio = devm_gpiod_get_index(dev, BMC150_ACCEL_GPIO_NAME, 0);
- if (IS_ERR(gpio)) {
- dev_err(dev, "Failed: gpio get index\n");
- return PTR_ERR(gpio);
- }
- ret = gpiod_direction_input(gpio);
- if (ret)
- return ret;
- ret = gpiod_to_irq(gpio);
- dev_dbg(dev, "GPIO resource, no:%d irq:%d\n", desc_to_gpio(gpio), ret);
- return ret;
- }
- static int bmc150_accel_probe(struct i2c_client *client,
- const struct i2c_device_id *id)
- {
- struct bmc150_accel_data *data;
- struct iio_dev *indio_dev;
- int ret;
- const char *name = NULL;
- int chip_id = 0;
- 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;
- if (id) {
- name = id->name;
- chip_id = id->driver_data;
- }
- if (ACPI_HANDLE(&client->dev))
- name = bmc150_accel_match_acpi_device(&client->dev, &chip_id);
- data->chip_info = &bmc150_accel_chip_info_tbl[chip_id];
- ret = bmc150_accel_chip_init(data);
- if (ret < 0)
- return ret;
- mutex_init(&data->mutex);
- indio_dev->dev.parent = &client->dev;
- indio_dev->channels = data->chip_info->channels;
- indio_dev->num_channels = data->chip_info->num_channels;
- indio_dev->name = name;
- indio_dev->modes = INDIO_DIRECT_MODE;
- indio_dev->info = &bmc150_accel_info;
- if (client->irq < 0)
- client->irq = bmc150_accel_gpio_probe(client, data);
- if (client->irq >= 0) {
- ret = devm_request_threaded_irq(
- &client->dev, client->irq,
- bmc150_accel_data_rdy_trig_poll,
- bmc150_accel_event_handler,
- IRQF_TRIGGER_RISING,
- BMC150_ACCEL_IRQ_NAME,
- indio_dev);
- if (ret)
- return ret;
- data->dready_trig = devm_iio_trigger_alloc(&client->dev,
- "%s-dev%d",
- indio_dev->name,
- indio_dev->id);
- if (!data->dready_trig)
- return -ENOMEM;
- data->motion_trig = devm_iio_trigger_alloc(&client->dev,
- "%s-any-motion-dev%d",
- indio_dev->name,
- indio_dev->id);
- if (!data->motion_trig)
- return -ENOMEM;
- data->dready_trig->dev.parent = &client->dev;
- data->dready_trig->ops = &bmc150_accel_trigger_ops;
- iio_trigger_set_drvdata(data->dready_trig, indio_dev);
- ret = iio_trigger_register(data->dready_trig);
- if (ret)
- return ret;
- data->motion_trig->dev.parent = &client->dev;
- data->motion_trig->ops = &bmc150_accel_trigger_ops;
- iio_trigger_set_drvdata(data->motion_trig, indio_dev);
- ret = iio_trigger_register(data->motion_trig);
- if (ret) {
- data->motion_trig = NULL;
- goto err_trigger_unregister;
- }
- ret = iio_triggered_buffer_setup(indio_dev,
- &iio_pollfunc_store_time,
- bmc150_accel_trigger_handler,
- NULL);
- if (ret < 0) {
- dev_err(&client->dev,
- "Failed: iio triggered buffer setup\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;
- }
- ret = pm_runtime_set_active(&client->dev);
- if (ret)
- goto err_iio_unregister;
- pm_runtime_enable(&client->dev);
- pm_runtime_set_autosuspend_delay(&client->dev,
- BMC150_AUTO_SUSPEND_DELAY_MS);
- pm_runtime_use_autosuspend(&client->dev);
- return 0;
- err_iio_unregister:
- iio_device_unregister(indio_dev);
- err_buffer_cleanup:
- if (data->dready_trig)
- iio_triggered_buffer_cleanup(indio_dev);
- err_trigger_unregister:
- if (data->dready_trig)
- iio_trigger_unregister(data->dready_trig);
- if (data->motion_trig)
- iio_trigger_unregister(data->motion_trig);
- return ret;
- }
- static int bmc150_accel_remove(struct i2c_client *client)
- {
- struct iio_dev *indio_dev = i2c_get_clientdata(client);
- struct bmc150_accel_data *data = iio_priv(indio_dev);
- pm_runtime_disable(&client->dev);
- pm_runtime_set_suspended(&client->dev);
- pm_runtime_put_noidle(&client->dev);
- iio_device_unregister(indio_dev);
- if (data->dready_trig) {
- iio_triggered_buffer_cleanup(indio_dev);
- iio_trigger_unregister(data->dready_trig);
- iio_trigger_unregister(data->motion_trig);
- }
- mutex_lock(&data->mutex);
- bmc150_accel_set_mode(data, BMC150_ACCEL_SLEEP_MODE_DEEP_SUSPEND, 0);
- mutex_unlock(&data->mutex);
- return 0;
- }
- #ifdef CONFIG_PM_SLEEP
- static int bmc150_accel_suspend(struct device *dev)
- {
- struct iio_dev *indio_dev = i2c_get_clientdata(to_i2c_client(dev));
- struct bmc150_accel_data *data = iio_priv(indio_dev);
- mutex_lock(&data->mutex);
- bmc150_accel_set_mode(data, BMC150_ACCEL_SLEEP_MODE_SUSPEND, 0);
- mutex_unlock(&data->mutex);
- return 0;
- }
- static int bmc150_accel_resume(struct device *dev)
- {
- struct iio_dev *indio_dev = i2c_get_clientdata(to_i2c_client(dev));
- struct bmc150_accel_data *data = iio_priv(indio_dev);
- mutex_lock(&data->mutex);
- if (data->dready_trigger_on || data->motion_trigger_on ||
- data->ev_enable_state)
- bmc150_accel_set_mode(data, BMC150_ACCEL_SLEEP_MODE_NORMAL, 0);
- mutex_unlock(&data->mutex);
- return 0;
- }
- #endif
- #ifdef CONFIG_PM_RUNTIME
- static int bmc150_accel_runtime_suspend(struct device *dev)
- {
- struct iio_dev *indio_dev = i2c_get_clientdata(to_i2c_client(dev));
- struct bmc150_accel_data *data = iio_priv(indio_dev);
- dev_dbg(&data->client->dev, __func__);
- return bmc150_accel_set_mode(data, BMC150_ACCEL_SLEEP_MODE_SUSPEND, 0);
- }
- static int bmc150_accel_runtime_resume(struct device *dev)
- {
- struct iio_dev *indio_dev = i2c_get_clientdata(to_i2c_client(dev));
- struct bmc150_accel_data *data = iio_priv(indio_dev);
- int ret;
- int sleep_val;
- dev_dbg(&data->client->dev, __func__);
- ret = bmc150_accel_set_mode(data, BMC150_ACCEL_SLEEP_MODE_NORMAL, 0);
- if (ret < 0)
- return ret;
- sleep_val = bmc150_accel_get_startup_times(data);
- if (sleep_val < 20)
- usleep_range(sleep_val * 1000, 20000);
- else
- msleep_interruptible(sleep_val);
- return 0;
- }
- #endif
- static const struct dev_pm_ops bmc150_accel_pm_ops = {
- SET_SYSTEM_SLEEP_PM_OPS(bmc150_accel_suspend, bmc150_accel_resume)
- SET_RUNTIME_PM_OPS(bmc150_accel_runtime_suspend,
- bmc150_accel_runtime_resume, NULL)
- };
- static const struct acpi_device_id bmc150_accel_acpi_match[] = {
- {"BSBA0150", bmc150},
- {"BMC150A", bmc150},
- {"BMI055A", bmi055},
- {"BMA0255", bma255},
- {"BMA250E", bma250e},
- {"BMA222E", bma222e},
- {"BMA0280", bma280},
- { },
- };
- MODULE_DEVICE_TABLE(acpi, bmc150_accel_acpi_match);
- static const struct i2c_device_id bmc150_accel_id[] = {
- {"bmc150_accel", bmc150},
- {"bmi055_accel", bmi055},
- {"bma255", bma255},
- {"bma250e", bma250e},
- {"bma222e", bma222e},
- {"bma280", bma280},
- {}
- };
- MODULE_DEVICE_TABLE(i2c, bmc150_accel_id);
- static struct i2c_driver bmc150_accel_driver = {
- .driver = {
- .name = BMC150_ACCEL_DRV_NAME,
- .acpi_match_table = ACPI_PTR(bmc150_accel_acpi_match),
- .pm = &bmc150_accel_pm_ops,
- },
- .probe = bmc150_accel_probe,
- .remove = bmc150_accel_remove,
- .id_table = bmc150_accel_id,
- };
- module_i2c_driver(bmc150_accel_driver);
- MODULE_AUTHOR("Srinivas Pandruvada <srinivas.pandruvada@linux.intel.com>");
- MODULE_LICENSE("GPL v2");
- MODULE_DESCRIPTION("BMC150 accelerometer driver");
|