blob: 9af60ac707382d1517e9793691076e090cda01f9 [file] [log] [blame]
Jonathan Camerone435bc12009-08-18 18:06:23 +01001/*
2 * kxsd9.c simple support for the Kionix KXSD9 3D
3 * accelerometer.
4 *
Jonathan Cameron0f8c9622012-09-02 21:34:59 +01005 * Copyright (c) 2008-2009 Jonathan Cameron <jic23@kernel.org>
Jonathan Camerone435bc12009-08-18 18:06:23 +01006 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License version 2 as
9 * published by the Free Software Foundation.
10 *
11 * The i2c interface is very similar, so shouldn't be a problem once
12 * I have a suitable wire made up.
13 *
14 * TODO: Support the motion detector
Jonathan Camerone435bc12009-08-18 18:06:23 +010015 */
16
Jonathan Camerone435bc12009-08-18 18:06:23 +010017#include <linux/device.h>
18#include <linux/kernel.h>
Jonathan Camerone435bc12009-08-18 18:06:23 +010019#include <linux/sysfs.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090020#include <linux/slab.h>
Paul Gortmaker99c97852011-07-03 15:49:50 -040021#include <linux/module.h>
Linus Walleij0d1fb2d2016-09-01 11:44:40 +020022#include <linux/regmap.h>
Linus Walleij11adc2b2016-09-01 11:44:45 +020023#include <linux/bitops.h>
Linus Walleij2bb4a022016-09-01 11:44:46 +020024#include <linux/delay.h>
25#include <linux/regulator/consumer.h>
Linus Walleij9a9a3692016-09-01 11:44:48 +020026#include <linux/pm_runtime.h>
Jonathan Cameron06458e22012-04-25 15:54:58 +010027#include <linux/iio/iio.h>
28#include <linux/iio/sysfs.h>
Linus Walleij0427a102016-09-01 11:44:44 +020029#include <linux/iio/buffer.h>
30#include <linux/iio/triggered_buffer.h>
31#include <linux/iio/trigger_consumer.h>
Jonathan Camerone435bc12009-08-18 18:06:23 +010032
Linus Walleijbf96f6e2016-09-01 11:44:38 +020033#include "kxsd9.h"
34
Jonathan Camerone435bc12009-08-18 18:06:23 +010035#define KXSD9_REG_X 0x00
36#define KXSD9_REG_Y 0x02
37#define KXSD9_REG_Z 0x04
38#define KXSD9_REG_AUX 0x06
39#define KXSD9_REG_RESET 0x0a
40#define KXSD9_REG_CTRL_C 0x0c
41
Linus Walleij11adc2b2016-09-01 11:44:45 +020042#define KXSD9_CTRL_C_FS_MASK 0x03
43#define KXSD9_CTRL_C_FS_8G 0x00
44#define KXSD9_CTRL_C_FS_6G 0x01
45#define KXSD9_CTRL_C_FS_4G 0x02
46#define KXSD9_CTRL_C_FS_2G 0x03
47#define KXSD9_CTRL_C_MOT_LAT BIT(3)
48#define KXSD9_CTRL_C_MOT_LEV BIT(4)
49#define KXSD9_CTRL_C_LP_MASK 0xe0
50#define KXSD9_CTRL_C_LP_NONE 0x00
51#define KXSD9_CTRL_C_LP_2000HZC BIT(5)
52#define KXSD9_CTRL_C_LP_2000HZB BIT(6)
53#define KXSD9_CTRL_C_LP_2000HZA (BIT(5)|BIT(6))
54#define KXSD9_CTRL_C_LP_1000HZ BIT(7)
55#define KXSD9_CTRL_C_LP_500HZ (BIT(7)|BIT(5))
56#define KXSD9_CTRL_C_LP_100HZ (BIT(7)|BIT(6))
57#define KXSD9_CTRL_C_LP_50HZ (BIT(7)|BIT(6)|BIT(5))
Jonathan Camerone435bc12009-08-18 18:06:23 +010058
59#define KXSD9_REG_CTRL_B 0x0d
Linus Walleij11adc2b2016-09-01 11:44:45 +020060
61#define KXSD9_CTRL_B_CLK_HLD BIT(7)
62#define KXSD9_CTRL_B_ENABLE BIT(6)
63#define KXSD9_CTRL_B_ST BIT(5) /* Self-test */
64
Jonathan Camerone435bc12009-08-18 18:06:23 +010065#define KXSD9_REG_CTRL_A 0x0e
66
Linus Walleij9f907972016-09-01 11:44:36 +020067/**
68 * struct kxsd9_state - device related storage
Linus Walleij0427a102016-09-01 11:44:44 +020069 * @dev: pointer to the parent device
Linus Walleijdc6ac052016-09-01 11:44:42 +020070 * @map: regmap to the device
Linus Walleij12884002016-09-01 11:44:49 +020071 * @orientation: mounting matrix, flipped axis etc
Linus Walleij2bb4a022016-09-01 11:44:46 +020072 * @regs: regulators for this device, VDD and IOVDD
Linus Walleij9a9a3692016-09-01 11:44:48 +020073 * @scale: the current scaling setting
Linus Walleijdc6ac052016-09-01 11:44:42 +020074 */
Linus Walleij9f907972016-09-01 11:44:36 +020075struct kxsd9_state {
Linus Walleij0427a102016-09-01 11:44:44 +020076 struct device *dev;
Linus Walleij0d1fb2d2016-09-01 11:44:40 +020077 struct regmap *map;
Linus Walleij12884002016-09-01 11:44:49 +020078 struct iio_mount_matrix orientation;
Linus Walleij2bb4a022016-09-01 11:44:46 +020079 struct regulator_bulk_data regs[2];
Linus Walleij9a9a3692016-09-01 11:44:48 +020080 u8 scale;
Linus Walleij9f907972016-09-01 11:44:36 +020081};
82
Jonathan Camerond34dbee2011-08-12 17:47:52 +010083#define KXSD9_SCALE_2G "0.011978"
84#define KXSD9_SCALE_4G "0.023927"
85#define KXSD9_SCALE_6G "0.035934"
86#define KXSD9_SCALE_8G "0.047853"
87
88/* reverse order */
89static const int kxsd9_micro_scales[4] = { 47853, 35934, 23927, 11978 };
90
Linus Walleij84e2f6f2016-09-01 11:44:43 +020091#define KXSD9_ZERO_G_OFFSET -2048
92
Linus Walleij2bb4a022016-09-01 11:44:46 +020093/*
94 * Regulator names
95 */
96static const char kxsd9_reg_vdd[] = "vdd";
97static const char kxsd9_reg_iovdd[] = "iovdd";
98
Jonathan Camerond34dbee2011-08-12 17:47:52 +010099static int kxsd9_write_scale(struct iio_dev *indio_dev, int micro)
Jonathan Camerone435bc12009-08-18 18:06:23 +0100100{
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100101 int ret, i;
Jonathan Cameroned0c0122011-06-27 13:17:56 +0100102 struct kxsd9_state *st = iio_priv(indio_dev);
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100103 bool foundit = false;
Jonathan Camerone435bc12009-08-18 18:06:23 +0100104
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100105 for (i = 0; i < 4; i++)
106 if (micro == kxsd9_micro_scales[i]) {
107 foundit = true;
108 break;
109 }
110 if (!foundit)
Jonathan Camerone435bc12009-08-18 18:06:23 +0100111 return -EINVAL;
Jonathan Cameronf3fb0012010-05-04 14:42:58 +0100112
Linus Walleij11adc2b2016-09-01 11:44:45 +0200113 ret = regmap_update_bits(st->map,
114 KXSD9_REG_CTRL_C,
115 KXSD9_CTRL_C_FS_MASK,
116 i);
Linus Walleijbf96f6e2016-09-01 11:44:38 +0200117 if (ret < 0)
Jonathan Camerone435bc12009-08-18 18:06:23 +0100118 goto error_ret;
Linus Walleij9a9a3692016-09-01 11:44:48 +0200119
120 /* Cached scale when the sensor is powered down */
121 st->scale = i;
122
Jonathan Camerone435bc12009-08-18 18:06:23 +0100123error_ret:
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100124 return ret;
Jonathan Camerone435bc12009-08-18 18:06:23 +0100125}
Jonathan Cameronf3fb0012010-05-04 14:42:58 +0100126
Jonathan Cameronf3fb0012010-05-04 14:42:58 +0100127static IIO_CONST_ATTR(accel_scale_available,
128 KXSD9_SCALE_2G " "
129 KXSD9_SCALE_4G " "
130 KXSD9_SCALE_6G " "
131 KXSD9_SCALE_8G);
Jonathan Camerone435bc12009-08-18 18:06:23 +0100132
133static struct attribute *kxsd9_attributes[] = {
Jonathan Cameronf3fb0012010-05-04 14:42:58 +0100134 &iio_const_attr_accel_scale_available.dev_attr.attr,
Jonathan Camerone435bc12009-08-18 18:06:23 +0100135 NULL,
136};
137
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100138static int kxsd9_write_raw(struct iio_dev *indio_dev,
139 struct iio_chan_spec const *chan,
140 int val,
141 int val2,
142 long mask)
143{
144 int ret = -EINVAL;
Linus Walleij9a9a3692016-09-01 11:44:48 +0200145 struct kxsd9_state *st = iio_priv(indio_dev);
146
147 pm_runtime_get_sync(st->dev);
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100148
Jonathan Cameronc8a9f802011-10-26 17:41:36 +0100149 if (mask == IIO_CHAN_INFO_SCALE) {
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100150 /* Check no integer component */
151 if (val)
152 return -EINVAL;
153 ret = kxsd9_write_scale(indio_dev, val2);
154 }
155
Linus Walleij9a9a3692016-09-01 11:44:48 +0200156 pm_runtime_mark_last_busy(st->dev);
157 pm_runtime_put_autosuspend(st->dev);
158
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100159 return ret;
160}
161
162static int kxsd9_read_raw(struct iio_dev *indio_dev,
163 struct iio_chan_spec const *chan,
164 int *val, int *val2, long mask)
165{
166 int ret = -EINVAL;
167 struct kxsd9_state *st = iio_priv(indio_dev);
Linus Walleij0d1fb2d2016-09-01 11:44:40 +0200168 unsigned int regval;
Linus Walleij84e2f6f2016-09-01 11:44:43 +0200169 __be16 raw_val;
170 u16 nval;
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100171
Linus Walleij9a9a3692016-09-01 11:44:48 +0200172 pm_runtime_get_sync(st->dev);
173
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100174 switch (mask) {
Jonathan Cameron31313fc2012-04-15 17:41:17 +0100175 case IIO_CHAN_INFO_RAW:
Linus Walleij84e2f6f2016-09-01 11:44:43 +0200176 ret = regmap_bulk_read(st->map, chan->address, &raw_val,
177 sizeof(raw_val));
178 if (ret)
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100179 goto error_ret;
Linus Walleij84e2f6f2016-09-01 11:44:43 +0200180 nval = be16_to_cpu(raw_val);
181 /* Only 12 bits are valid */
182 nval >>= 4;
183 *val = nval;
184 ret = IIO_VAL_INT;
185 break;
186 case IIO_CHAN_INFO_OFFSET:
187 /* This has a bias of -2048 */
188 *val = KXSD9_ZERO_G_OFFSET;
Linus Walleij7ac61a02016-08-16 15:33:28 +0200189 ret = IIO_VAL_INT;
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100190 break;
Jonathan Cameronc8a9f802011-10-26 17:41:36 +0100191 case IIO_CHAN_INFO_SCALE:
Linus Walleij0d1fb2d2016-09-01 11:44:40 +0200192 ret = regmap_read(st->map,
193 KXSD9_REG_CTRL_C,
194 &regval);
Linus Walleijbf96f6e2016-09-01 11:44:38 +0200195 if (ret < 0)
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100196 goto error_ret;
Linus Walleij307fe9d2016-09-01 11:44:35 +0200197 *val = 0;
Linus Walleij11adc2b2016-09-01 11:44:45 +0200198 *val2 = kxsd9_micro_scales[regval & KXSD9_CTRL_C_FS_MASK];
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100199 ret = IIO_VAL_INT_PLUS_MICRO;
200 break;
Peter Senna Tschudin73327b42012-09-28 10:57:00 +0100201 }
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100202
203error_ret:
Linus Walleij9a9a3692016-09-01 11:44:48 +0200204 pm_runtime_mark_last_busy(st->dev);
205 pm_runtime_put_autosuspend(st->dev);
206
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100207 return ret;
208};
Linus Walleij0427a102016-09-01 11:44:44 +0200209
210static irqreturn_t kxsd9_trigger_handler(int irq, void *p)
211{
212 const struct iio_poll_func *pf = p;
213 struct iio_dev *indio_dev = pf->indio_dev;
214 struct kxsd9_state *st = iio_priv(indio_dev);
215 int ret;
216 /* 4 * 16bit values AND timestamp */
217 __be16 hw_values[8];
218
219 ret = regmap_bulk_read(st->map,
220 KXSD9_REG_X,
221 &hw_values,
222 8);
223 if (ret) {
224 dev_err(st->dev,
225 "error reading data\n");
226 return ret;
227 }
228
229 iio_push_to_buffers_with_timestamp(indio_dev,
230 hw_values,
231 iio_get_time_ns(indio_dev));
232 iio_trigger_notify_done(indio_dev->trig);
233
234 return IRQ_HANDLED;
235}
236
Linus Walleij9a9a3692016-09-01 11:44:48 +0200237static int kxsd9_buffer_preenable(struct iio_dev *indio_dev)
238{
239 struct kxsd9_state *st = iio_priv(indio_dev);
240
241 pm_runtime_get_sync(st->dev);
242
243 return 0;
244}
245
246static int kxsd9_buffer_postdisable(struct iio_dev *indio_dev)
247{
248 struct kxsd9_state *st = iio_priv(indio_dev);
249
250 pm_runtime_mark_last_busy(st->dev);
251 pm_runtime_put_autosuspend(st->dev);
252
253 return 0;
254}
255
256static const struct iio_buffer_setup_ops kxsd9_buffer_setup_ops = {
257 .preenable = kxsd9_buffer_preenable,
258 .postenable = iio_triggered_buffer_postenable,
259 .predisable = iio_triggered_buffer_predisable,
260 .postdisable = kxsd9_buffer_postdisable,
261};
262
Linus Walleij12884002016-09-01 11:44:49 +0200263static const struct iio_mount_matrix *
264kxsd9_get_mount_matrix(const struct iio_dev *indio_dev,
265 const struct iio_chan_spec *chan)
266{
267 struct kxsd9_state *st = iio_priv(indio_dev);
268
269 return &st->orientation;
270}
271
272static const struct iio_chan_spec_ext_info kxsd9_ext_info[] = {
273 IIO_MOUNT_MATRIX(IIO_SHARED_BY_TYPE, kxsd9_get_mount_matrix),
274 { },
275};
276
Linus Walleij0427a102016-09-01 11:44:44 +0200277#define KXSD9_ACCEL_CHAN(axis, index) \
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100278 { \
279 .type = IIO_ACCEL, \
280 .modified = 1, \
281 .channel2 = IIO_MOD_##axis, \
Jonathan Cameron2f6bb532013-02-27 19:03:36 +0000282 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW), \
Linus Walleij84e2f6f2016-09-01 11:44:43 +0200283 .info_mask_shared_by_type = BIT(IIO_CHAN_INFO_SCALE) | \
284 BIT(IIO_CHAN_INFO_OFFSET), \
Linus Walleij12884002016-09-01 11:44:49 +0200285 .ext_info = kxsd9_ext_info, \
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100286 .address = KXSD9_REG_##axis, \
Linus Walleij0427a102016-09-01 11:44:44 +0200287 .scan_index = index, \
288 .scan_type = { \
289 .sign = 'u', \
290 .realbits = 12, \
291 .storagebits = 16, \
292 .shift = 4, \
293 .endianness = IIO_BE, \
294 }, \
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100295 }
296
Lars-Peter Clausenf4e4b952012-08-09 08:51:00 +0100297static const struct iio_chan_spec kxsd9_channels[] = {
Linus Walleij0427a102016-09-01 11:44:44 +0200298 KXSD9_ACCEL_CHAN(X, 0),
299 KXSD9_ACCEL_CHAN(Y, 1),
300 KXSD9_ACCEL_CHAN(Z, 2),
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100301 {
Jonathan Cameron6835cb62011-09-27 09:56:41 +0100302 .type = IIO_VOLTAGE,
Jonathan Cameron2f6bb532013-02-27 19:03:36 +0000303 .info_mask_separate = BIT(IIO_CHAN_INFO_RAW),
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100304 .indexed = 1,
305 .address = KXSD9_REG_AUX,
Linus Walleij0427a102016-09-01 11:44:44 +0200306 .scan_index = 3,
307 .scan_type = {
308 .sign = 'u',
309 .realbits = 12,
310 .storagebits = 16,
311 .shift = 4,
312 .endianness = IIO_BE,
313 },
314 },
315 IIO_CHAN_SOFT_TIMESTAMP(4),
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100316};
317
Jonathan Camerone435bc12009-08-18 18:06:23 +0100318static const struct attribute_group kxsd9_attribute_group = {
319 .attrs = kxsd9_attributes,
320};
321
Bill Pemberton4ae1c612012-11-19 13:21:57 -0500322static int kxsd9_power_up(struct kxsd9_state *st)
Jonathan Camerone435bc12009-08-18 18:06:23 +0100323{
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100324 int ret;
325
Linus Walleij2bb4a022016-09-01 11:44:46 +0200326 /* Enable the regulators */
327 ret = regulator_bulk_enable(ARRAY_SIZE(st->regs), st->regs);
328 if (ret) {
329 dev_err(st->dev, "Cannot enable regulators\n");
330 return ret;
331 }
332
333 /* Power up */
334 ret = regmap_write(st->map,
335 KXSD9_REG_CTRL_B,
336 KXSD9_CTRL_B_ENABLE);
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100337 if (ret)
338 return ret;
Linus Walleij2bb4a022016-09-01 11:44:46 +0200339
340 /*
341 * Set 1000Hz LPF, 2g fullscale, motion wakeup threshold 1g,
342 * latched wakeup
343 */
344 ret = regmap_write(st->map,
345 KXSD9_REG_CTRL_C,
346 KXSD9_CTRL_C_LP_1000HZ |
347 KXSD9_CTRL_C_MOT_LEV |
348 KXSD9_CTRL_C_MOT_LAT |
Linus Walleij9a9a3692016-09-01 11:44:48 +0200349 st->scale);
Linus Walleij2bb4a022016-09-01 11:44:46 +0200350 if (ret)
351 return ret;
352
353 /*
354 * Power-up time depends on the LPF setting, but typ 15.9 ms, let's
355 * set 20 ms to allow for some slack.
356 */
357 msleep(20);
358
359 return 0;
Jonathan Camerone435bc12009-08-18 18:06:23 +0100360};
361
Linus Walleij2bb4a022016-09-01 11:44:46 +0200362static int kxsd9_power_down(struct kxsd9_state *st)
363{
364 int ret;
365
366 /*
367 * Set into low power mode - since there may be more users of the
368 * regulators this is the first step of the power saving: it will
369 * make sure we conserve power even if there are others users on the
370 * regulators.
371 */
372 ret = regmap_update_bits(st->map,
373 KXSD9_REG_CTRL_B,
374 KXSD9_CTRL_B_ENABLE,
375 0);
376 if (ret)
377 return ret;
378
379 /* Disable the regulators */
380 ret = regulator_bulk_disable(ARRAY_SIZE(st->regs), st->regs);
381 if (ret) {
382 dev_err(st->dev, "Cannot disable regulators\n");
383 return ret;
384 }
385
386 return 0;
387}
388
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100389static const struct iio_info kxsd9_info = {
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100390 .read_raw = &kxsd9_read_raw,
391 .write_raw = &kxsd9_write_raw,
Jonathan Cameron6fe81352011-05-18 14:42:37 +0100392 .attrs = &kxsd9_attribute_group,
393 .driver_module = THIS_MODULE,
394};
395
Linus Walleij0427a102016-09-01 11:44:44 +0200396/* Four channels apart from timestamp, scan mask = 0x0f */
397static const unsigned long kxsd9_scan_masks[] = { 0xf, 0 };
398
Linus Walleij79383aa2016-09-01 11:44:47 +0200399int kxsd9_common_probe(struct device *dev,
Linus Walleij0d1fb2d2016-09-01 11:44:40 +0200400 struct regmap *map,
Linus Walleijbf96f6e2016-09-01 11:44:38 +0200401 const char *name)
Jonathan Camerone435bc12009-08-18 18:06:23 +0100402{
Jonathan Cameroned0c0122011-06-27 13:17:56 +0100403 struct iio_dev *indio_dev;
Jonathan Camerone435bc12009-08-18 18:06:23 +0100404 struct kxsd9_state *st;
Linus Walleij9f907972016-09-01 11:44:36 +0200405 int ret;
Jonathan Camerone435bc12009-08-18 18:06:23 +0100406
Linus Walleij79383aa2016-09-01 11:44:47 +0200407 indio_dev = devm_iio_device_alloc(dev, sizeof(*st));
Sachin Kamat4ee30932013-07-23 07:47:00 +0100408 if (!indio_dev)
409 return -ENOMEM;
410
Jonathan Cameroned0c0122011-06-27 13:17:56 +0100411 st = iio_priv(indio_dev);
Linus Walleij79383aa2016-09-01 11:44:47 +0200412 st->dev = dev;
Linus Walleij0d1fb2d2016-09-01 11:44:40 +0200413 st->map = map;
Jonathan Camerone435bc12009-08-18 18:06:23 +0100414
Jonathan Camerond34dbee2011-08-12 17:47:52 +0100415 indio_dev->channels = kxsd9_channels;
416 indio_dev->num_channels = ARRAY_SIZE(kxsd9_channels);
Linus Walleij9f907972016-09-01 11:44:36 +0200417 indio_dev->name = name;
Linus Walleij79383aa2016-09-01 11:44:47 +0200418 indio_dev->dev.parent = dev;
Jonathan Cameroned0c0122011-06-27 13:17:56 +0100419 indio_dev->info = &kxsd9_info;
420 indio_dev->modes = INDIO_DIRECT_MODE;
Linus Walleij0427a102016-09-01 11:44:44 +0200421 indio_dev->available_scan_masks = kxsd9_scan_masks;
Jonathan Cameroned0c0122011-06-27 13:17:56 +0100422
Linus Walleij12884002016-09-01 11:44:49 +0200423 /* Read the mounting matrix, if present */
424 ret = of_iio_read_mount_matrix(dev,
425 "mount-matrix",
426 &st->orientation);
427 if (ret)
428 return ret;
429
Linus Walleij2bb4a022016-09-01 11:44:46 +0200430 /* Fetch and turn on regulators */
431 st->regs[0].supply = kxsd9_reg_vdd;
432 st->regs[1].supply = kxsd9_reg_iovdd;
Linus Walleij79383aa2016-09-01 11:44:47 +0200433 ret = devm_regulator_bulk_get(dev,
Linus Walleij2bb4a022016-09-01 11:44:46 +0200434 ARRAY_SIZE(st->regs),
435 st->regs);
436 if (ret) {
Linus Walleij79383aa2016-09-01 11:44:47 +0200437 dev_err(dev, "Cannot get regulators\n");
Linus Walleij2bb4a022016-09-01 11:44:46 +0200438 return ret;
439 }
Linus Walleij9a9a3692016-09-01 11:44:48 +0200440 /* Default scaling */
441 st->scale = KXSD9_CTRL_C_FS_2G;
Linus Walleij2bb4a022016-09-01 11:44:46 +0200442
anish kumar3fd47d42011-06-27 13:08:00 +0100443 kxsd9_power_up(st);
Jonathan Camerone435bc12009-08-18 18:06:23 +0100444
Linus Walleij0427a102016-09-01 11:44:44 +0200445 ret = iio_triggered_buffer_setup(indio_dev,
446 iio_pollfunc_store_time,
447 kxsd9_trigger_handler,
Linus Walleij9a9a3692016-09-01 11:44:48 +0200448 &kxsd9_buffer_setup_ops);
Linus Walleij0427a102016-09-01 11:44:44 +0200449 if (ret) {
Linus Walleij79383aa2016-09-01 11:44:47 +0200450 dev_err(dev, "triggered buffer setup failed\n");
Linus Walleij2bb4a022016-09-01 11:44:46 +0200451 goto err_power_down;
Linus Walleij0427a102016-09-01 11:44:44 +0200452 }
453
Linus Walleij9f907972016-09-01 11:44:36 +0200454 ret = iio_device_register(indio_dev);
455 if (ret)
Linus Walleij0427a102016-09-01 11:44:44 +0200456 goto err_cleanup_buffer;
Linus Walleij9f907972016-09-01 11:44:36 +0200457
Linus Walleij79383aa2016-09-01 11:44:47 +0200458 dev_set_drvdata(dev, indio_dev);
Linus Walleij154021a2016-09-01 11:44:37 +0200459
Linus Walleij9a9a3692016-09-01 11:44:48 +0200460 /* Enable runtime PM */
461 pm_runtime_get_noresume(dev);
462 pm_runtime_set_active(dev);
463 pm_runtime_enable(dev);
464 /*
465 * Set autosuspend to two orders of magnitude larger than the
466 * start-up time. 20ms start-up time means 2000ms autosuspend,
467 * i.e. 2 seconds.
468 */
469 pm_runtime_set_autosuspend_delay(dev, 2000);
470 pm_runtime_use_autosuspend(dev);
471 pm_runtime_put(dev);
472
Linus Walleij154021a2016-09-01 11:44:37 +0200473 return 0;
Linus Walleij0427a102016-09-01 11:44:44 +0200474
475err_cleanup_buffer:
476 iio_triggered_buffer_cleanup(indio_dev);
Linus Walleij2bb4a022016-09-01 11:44:46 +0200477err_power_down:
478 kxsd9_power_down(st);
Linus Walleij0427a102016-09-01 11:44:44 +0200479
480 return ret;
Linus Walleij154021a2016-09-01 11:44:37 +0200481}
Linus Walleijbf96f6e2016-09-01 11:44:38 +0200482EXPORT_SYMBOL(kxsd9_common_probe);
Linus Walleij154021a2016-09-01 11:44:37 +0200483
Linus Walleij79383aa2016-09-01 11:44:47 +0200484int kxsd9_common_remove(struct device *dev)
Linus Walleij154021a2016-09-01 11:44:37 +0200485{
Linus Walleij79383aa2016-09-01 11:44:47 +0200486 struct iio_dev *indio_dev = dev_get_drvdata(dev);
Linus Walleij2bb4a022016-09-01 11:44:46 +0200487 struct kxsd9_state *st = iio_priv(indio_dev);
Linus Walleij154021a2016-09-01 11:44:37 +0200488
Linus Walleij0427a102016-09-01 11:44:44 +0200489 iio_triggered_buffer_cleanup(indio_dev);
Linus Walleij154021a2016-09-01 11:44:37 +0200490 iio_device_unregister(indio_dev);
Linus Walleij9a9a3692016-09-01 11:44:48 +0200491 pm_runtime_get_sync(dev);
492 pm_runtime_put_noidle(dev);
493 pm_runtime_disable(dev);
Linus Walleij2bb4a022016-09-01 11:44:46 +0200494 kxsd9_power_down(st);
Linus Walleij154021a2016-09-01 11:44:37 +0200495
Linus Walleij9f907972016-09-01 11:44:36 +0200496 return 0;
Jonathan Camerone435bc12009-08-18 18:06:23 +0100497}
Linus Walleijbf96f6e2016-09-01 11:44:38 +0200498EXPORT_SYMBOL(kxsd9_common_remove);
Jonathan Camerone435bc12009-08-18 18:06:23 +0100499
Linus Walleij9a9a3692016-09-01 11:44:48 +0200500#ifdef CONFIG_PM
501static int kxsd9_runtime_suspend(struct device *dev)
502{
503 struct iio_dev *indio_dev = dev_get_drvdata(dev);
504 struct kxsd9_state *st = iio_priv(indio_dev);
505
506 return kxsd9_power_down(st);
507}
508
509static int kxsd9_runtime_resume(struct device *dev)
510{
511 struct iio_dev *indio_dev = dev_get_drvdata(dev);
512 struct kxsd9_state *st = iio_priv(indio_dev);
513
514 return kxsd9_power_up(st);
515}
516#endif /* CONFIG_PM */
517
518const struct dev_pm_ops kxsd9_dev_pm_ops = {
519 SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
520 pm_runtime_force_resume)
521 SET_RUNTIME_PM_OPS(kxsd9_runtime_suspend,
522 kxsd9_runtime_resume, NULL)
523};
524EXPORT_SYMBOL(kxsd9_dev_pm_ops);
525
Jonathan Cameron0f8c9622012-09-02 21:34:59 +0100526MODULE_AUTHOR("Jonathan Cameron <jic23@kernel.org>");
Linus Walleijbf96f6e2016-09-01 11:44:38 +0200527MODULE_DESCRIPTION("Kionix KXSD9 driver");
Jonathan Camerone435bc12009-08-18 18:06:23 +0100528MODULE_LICENSE("GPL v2");