ak8975.c 27 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120
  1. /*
  2. * A sensor driver for the magnetometer AK8975.
  3. *
  4. * Magnetic compass sensor driver for monitoring magnetic flux information.
  5. *
  6. * Copyright (c) 2010, NVIDIA Corporation.
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful, but WITHOUT
  14. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  15. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  16. * more details.
  17. *
  18. * You should have received a copy of the GNU General Public License along
  19. * with this program; if not, write to the Free Software Foundation, Inc.,
  20. * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301, USA.
  21. */
  22. #include <linux/module.h>
  23. #include <linux/kernel.h>
  24. #include <linux/slab.h>
  25. #include <linux/i2c.h>
  26. #include <linux/interrupt.h>
  27. #include <linux/err.h>
  28. #include <linux/mutex.h>
  29. #include <linux/delay.h>
  30. #include <linux/bitops.h>
  31. #include <linux/gpio.h>
  32. #include <linux/of_gpio.h>
  33. #include <linux/acpi.h>
  34. #include <linux/regulator/consumer.h>
  35. #include <linux/pm_runtime.h>
  36. #include <linux/iio/iio.h>
  37. #include <linux/iio/sysfs.h>
  38. #include <linux/iio/buffer.h>
  39. #include <linux/iio/trigger.h>
  40. #include <linux/iio/trigger_consumer.h>
  41. #include <linux/iio/triggered_buffer.h>
  42. #include <linux/iio/magnetometer/ak8975.h>
  43. /*
  44. * Register definitions, as well as various shifts and masks to get at the
  45. * individual fields of the registers.
  46. */
  47. #define AK8975_REG_WIA 0x00
  48. #define AK8975_DEVICE_ID 0x48
  49. #define AK8975_REG_INFO 0x01
  50. #define AK8975_REG_ST1 0x02
  51. #define AK8975_REG_ST1_DRDY_SHIFT 0
  52. #define AK8975_REG_ST1_DRDY_MASK (1 << AK8975_REG_ST1_DRDY_SHIFT)
  53. #define AK8975_REG_HXL 0x03
  54. #define AK8975_REG_HXH 0x04
  55. #define AK8975_REG_HYL 0x05
  56. #define AK8975_REG_HYH 0x06
  57. #define AK8975_REG_HZL 0x07
  58. #define AK8975_REG_HZH 0x08
  59. #define AK8975_REG_ST2 0x09
  60. #define AK8975_REG_ST2_DERR_SHIFT 2
  61. #define AK8975_REG_ST2_DERR_MASK (1 << AK8975_REG_ST2_DERR_SHIFT)
  62. #define AK8975_REG_ST2_HOFL_SHIFT 3
  63. #define AK8975_REG_ST2_HOFL_MASK (1 << AK8975_REG_ST2_HOFL_SHIFT)
  64. #define AK8975_REG_CNTL 0x0A
  65. #define AK8975_REG_CNTL_MODE_SHIFT 0
  66. #define AK8975_REG_CNTL_MODE_MASK (0xF << AK8975_REG_CNTL_MODE_SHIFT)
  67. #define AK8975_REG_CNTL_MODE_POWER_DOWN 0x00
  68. #define AK8975_REG_CNTL_MODE_ONCE 0x01
  69. #define AK8975_REG_CNTL_MODE_SELF_TEST 0x08
  70. #define AK8975_REG_CNTL_MODE_FUSE_ROM 0x0F
  71. #define AK8975_REG_RSVC 0x0B
  72. #define AK8975_REG_ASTC 0x0C
  73. #define AK8975_REG_TS1 0x0D
  74. #define AK8975_REG_TS2 0x0E
  75. #define AK8975_REG_I2CDIS 0x0F
  76. #define AK8975_REG_ASAX 0x10
  77. #define AK8975_REG_ASAY 0x11
  78. #define AK8975_REG_ASAZ 0x12
  79. #define AK8975_MAX_REGS AK8975_REG_ASAZ
  80. /*
  81. * AK09912 Register definitions
  82. */
  83. #define AK09912_REG_WIA1 0x00
  84. #define AK09912_REG_WIA2 0x01
  85. #define AK09912_DEVICE_ID 0x04
  86. #define AK09911_DEVICE_ID 0x05
  87. #define AK09911_REG_INFO1 0x02
  88. #define AK09911_REG_INFO2 0x03
  89. #define AK09912_REG_ST1 0x10
  90. #define AK09912_REG_ST1_DRDY_SHIFT 0
  91. #define AK09912_REG_ST1_DRDY_MASK (1 << AK09912_REG_ST1_DRDY_SHIFT)
  92. #define AK09912_REG_HXL 0x11
  93. #define AK09912_REG_HXH 0x12
  94. #define AK09912_REG_HYL 0x13
  95. #define AK09912_REG_HYH 0x14
  96. #define AK09912_REG_HZL 0x15
  97. #define AK09912_REG_HZH 0x16
  98. #define AK09912_REG_TMPS 0x17
  99. #define AK09912_REG_ST2 0x18
  100. #define AK09912_REG_ST2_HOFL_SHIFT 3
  101. #define AK09912_REG_ST2_HOFL_MASK (1 << AK09912_REG_ST2_HOFL_SHIFT)
  102. #define AK09912_REG_CNTL1 0x30
  103. #define AK09912_REG_CNTL2 0x31
  104. #define AK09912_REG_CNTL_MODE_POWER_DOWN 0x00
  105. #define AK09912_REG_CNTL_MODE_ONCE 0x01
  106. #define AK09912_REG_CNTL_MODE_SELF_TEST 0x10
  107. #define AK09912_REG_CNTL_MODE_FUSE_ROM 0x1F
  108. #define AK09912_REG_CNTL2_MODE_SHIFT 0
  109. #define AK09912_REG_CNTL2_MODE_MASK (0x1F << AK09912_REG_CNTL2_MODE_SHIFT)
  110. #define AK09912_REG_CNTL3 0x32
  111. #define AK09912_REG_TS1 0x33
  112. #define AK09912_REG_TS2 0x34
  113. #define AK09912_REG_TS3 0x35
  114. #define AK09912_REG_I2CDIS 0x36
  115. #define AK09912_REG_TS4 0x37
  116. #define AK09912_REG_ASAX 0x60
  117. #define AK09912_REG_ASAY 0x61
  118. #define AK09912_REG_ASAZ 0x62
  119. #define AK09912_MAX_REGS AK09912_REG_ASAZ
  120. /*
  121. * Miscellaneous values.
  122. */
  123. #define AK8975_MAX_CONVERSION_TIMEOUT 500
  124. #define AK8975_CONVERSION_DONE_POLL_TIME 10
  125. #define AK8975_DATA_READY_TIMEOUT ((100*HZ)/1000)
  126. /*
  127. * Precalculate scale factor (in Gauss units) for each axis and
  128. * store in the device data.
  129. *
  130. * This scale factor is axis-dependent, and is derived from 3 calibration
  131. * factors ASA(x), ASA(y), and ASA(z).
  132. *
  133. * These ASA values are read from the sensor device at start of day, and
  134. * cached in the device context struct.
  135. *
  136. * Adjusting the flux value with the sensitivity adjustment value should be
  137. * done via the following formula:
  138. *
  139. * Hadj = H * ( ( ( (ASA-128)*0.5 ) / 128 ) + 1 )
  140. * where H is the raw value, ASA is the sensitivity adjustment, and Hadj
  141. * is the resultant adjusted value.
  142. *
  143. * We reduce the formula to:
  144. *
  145. * Hadj = H * (ASA + 128) / 256
  146. *
  147. * H is in the range of -4096 to 4095. The magnetometer has a range of
  148. * +-1229uT. To go from the raw value to uT is:
  149. *
  150. * HuT = H * 1229/4096, or roughly, 3/10.
  151. *
  152. * Since 1uT = 0.01 gauss, our final scale factor becomes:
  153. *
  154. * Hadj = H * ((ASA + 128) / 256) * 3/10 * 1/100
  155. * Hadj = H * ((ASA + 128) * 0.003) / 256
  156. *
  157. * Since ASA doesn't change, we cache the resultant scale factor into the
  158. * device context in ak8975_setup().
  159. *
  160. * Given we use IIO_VAL_INT_PLUS_MICRO bit when displaying the scale, we
  161. * multiply the stored scale value by 1e6.
  162. */
  163. static long ak8975_raw_to_gauss(u16 data)
  164. {
  165. return (((long)data + 128) * 3000) / 256;
  166. }
  167. /*
  168. * For AK8963 and AK09911, same calculation, but the device is less sensitive:
  169. *
  170. * H is in the range of +-8190. The magnetometer has a range of
  171. * +-4912uT. To go from the raw value to uT is:
  172. *
  173. * HuT = H * 4912/8190, or roughly, 6/10, instead of 3/10.
  174. */
  175. static long ak8963_09911_raw_to_gauss(u16 data)
  176. {
  177. return (((long)data + 128) * 6000) / 256;
  178. }
  179. /*
  180. * For AK09912, same calculation, except the device is more sensitive:
  181. *
  182. * H is in the range of -32752 to 32752. The magnetometer has a range of
  183. * +-4912uT. To go from the raw value to uT is:
  184. *
  185. * HuT = H * 4912/32752, or roughly, 3/20, instead of 3/10.
  186. */
  187. static long ak09912_raw_to_gauss(u16 data)
  188. {
  189. return (((long)data + 128) * 1500) / 256;
  190. }
  191. /* Compatible Asahi Kasei Compass parts */
  192. enum asahi_compass_chipset {
  193. AK8975,
  194. AK8963,
  195. AK09911,
  196. AK09912,
  197. AK_MAX_TYPE
  198. };
  199. enum ak_ctrl_reg_addr {
  200. ST1,
  201. ST2,
  202. CNTL,
  203. ASA_BASE,
  204. MAX_REGS,
  205. REGS_END,
  206. };
  207. enum ak_ctrl_reg_mask {
  208. ST1_DRDY,
  209. ST2_HOFL,
  210. ST2_DERR,
  211. CNTL_MODE,
  212. MASK_END,
  213. };
  214. enum ak_ctrl_mode {
  215. POWER_DOWN,
  216. MODE_ONCE,
  217. SELF_TEST,
  218. FUSE_ROM,
  219. MODE_END,
  220. };
  221. struct ak_def {
  222. enum asahi_compass_chipset type;
  223. long (*raw_to_gauss)(u16 data);
  224. u16 range;
  225. u8 ctrl_regs[REGS_END];
  226. u8 ctrl_masks[MASK_END];
  227. u8 ctrl_modes[MODE_END];
  228. u8 data_regs[3];
  229. };
  230. static const struct ak_def ak_def_array[AK_MAX_TYPE] = {
  231. {
  232. .type = AK8975,
  233. .raw_to_gauss = ak8975_raw_to_gauss,
  234. .range = 4096,
  235. .ctrl_regs = {
  236. AK8975_REG_ST1,
  237. AK8975_REG_ST2,
  238. AK8975_REG_CNTL,
  239. AK8975_REG_ASAX,
  240. AK8975_MAX_REGS},
  241. .ctrl_masks = {
  242. AK8975_REG_ST1_DRDY_MASK,
  243. AK8975_REG_ST2_HOFL_MASK,
  244. AK8975_REG_ST2_DERR_MASK,
  245. AK8975_REG_CNTL_MODE_MASK},
  246. .ctrl_modes = {
  247. AK8975_REG_CNTL_MODE_POWER_DOWN,
  248. AK8975_REG_CNTL_MODE_ONCE,
  249. AK8975_REG_CNTL_MODE_SELF_TEST,
  250. AK8975_REG_CNTL_MODE_FUSE_ROM},
  251. .data_regs = {
  252. AK8975_REG_HXL,
  253. AK8975_REG_HYL,
  254. AK8975_REG_HZL},
  255. },
  256. {
  257. .type = AK8963,
  258. .raw_to_gauss = ak8963_09911_raw_to_gauss,
  259. .range = 8190,
  260. .ctrl_regs = {
  261. AK8975_REG_ST1,
  262. AK8975_REG_ST2,
  263. AK8975_REG_CNTL,
  264. AK8975_REG_ASAX,
  265. AK8975_MAX_REGS},
  266. .ctrl_masks = {
  267. AK8975_REG_ST1_DRDY_MASK,
  268. AK8975_REG_ST2_HOFL_MASK,
  269. 0,
  270. AK8975_REG_CNTL_MODE_MASK},
  271. .ctrl_modes = {
  272. AK8975_REG_CNTL_MODE_POWER_DOWN,
  273. AK8975_REG_CNTL_MODE_ONCE,
  274. AK8975_REG_CNTL_MODE_SELF_TEST,
  275. AK8975_REG_CNTL_MODE_FUSE_ROM},
  276. .data_regs = {
  277. AK8975_REG_HXL,
  278. AK8975_REG_HYL,
  279. AK8975_REG_HZL},
  280. },
  281. {
  282. .type = AK09911,
  283. .raw_to_gauss = ak8963_09911_raw_to_gauss,
  284. .range = 8192,
  285. .ctrl_regs = {
  286. AK09912_REG_ST1,
  287. AK09912_REG_ST2,
  288. AK09912_REG_CNTL2,
  289. AK09912_REG_ASAX,
  290. AK09912_MAX_REGS},
  291. .ctrl_masks = {
  292. AK09912_REG_ST1_DRDY_MASK,
  293. AK09912_REG_ST2_HOFL_MASK,
  294. 0,
  295. AK09912_REG_CNTL2_MODE_MASK},
  296. .ctrl_modes = {
  297. AK09912_REG_CNTL_MODE_POWER_DOWN,
  298. AK09912_REG_CNTL_MODE_ONCE,
  299. AK09912_REG_CNTL_MODE_SELF_TEST,
  300. AK09912_REG_CNTL_MODE_FUSE_ROM},
  301. .data_regs = {
  302. AK09912_REG_HXL,
  303. AK09912_REG_HYL,
  304. AK09912_REG_HZL},
  305. },
  306. {
  307. .type = AK09912,
  308. .raw_to_gauss = ak09912_raw_to_gauss,
  309. .range = 32752,
  310. .ctrl_regs = {
  311. AK09912_REG_ST1,
  312. AK09912_REG_ST2,
  313. AK09912_REG_CNTL2,
  314. AK09912_REG_ASAX,
  315. AK09912_MAX_REGS},
  316. .ctrl_masks = {
  317. AK09912_REG_ST1_DRDY_MASK,
  318. AK09912_REG_ST2_HOFL_MASK,
  319. 0,
  320. AK09912_REG_CNTL2_MODE_MASK},
  321. .ctrl_modes = {
  322. AK09912_REG_CNTL_MODE_POWER_DOWN,
  323. AK09912_REG_CNTL_MODE_ONCE,
  324. AK09912_REG_CNTL_MODE_SELF_TEST,
  325. AK09912_REG_CNTL_MODE_FUSE_ROM},
  326. .data_regs = {
  327. AK09912_REG_HXL,
  328. AK09912_REG_HYL,
  329. AK09912_REG_HZL},
  330. }
  331. };
  332. /*
  333. * Per-instance context data for the device.
  334. */
  335. struct ak8975_data {
  336. struct i2c_client *client;
  337. const struct ak_def *def;
  338. struct mutex lock;
  339. u8 asa[3];
  340. long raw_to_gauss[3];
  341. int eoc_gpio;
  342. int eoc_irq;
  343. wait_queue_head_t data_ready_queue;
  344. unsigned long flags;
  345. u8 cntl_cache;
  346. struct iio_mount_matrix orientation;
  347. struct regulator *vdd;
  348. struct regulator *vid;
  349. /* Ensure natural alignment of timestamp */
  350. struct {
  351. s16 channels[3];
  352. s64 ts __aligned(8);
  353. } scan;
  354. };
  355. /* Enable attached power regulator if any. */
  356. static int ak8975_power_on(const struct ak8975_data *data)
  357. {
  358. int ret;
  359. ret = regulator_enable(data->vdd);
  360. if (ret) {
  361. dev_warn(&data->client->dev,
  362. "Failed to enable specified Vdd supply\n");
  363. return ret;
  364. }
  365. ret = regulator_enable(data->vid);
  366. if (ret) {
  367. dev_warn(&data->client->dev,
  368. "Failed to enable specified Vid supply\n");
  369. return ret;
  370. }
  371. /*
  372. * According to the datasheet the power supply rise time i 200us
  373. * and the minimum wait time before mode setting is 100us, in
  374. * total 300 us. Add some margin and say minimum 500us here.
  375. */
  376. usleep_range(500, 1000);
  377. return 0;
  378. }
  379. /* Disable attached power regulator if any. */
  380. static void ak8975_power_off(const struct ak8975_data *data)
  381. {
  382. regulator_disable(data->vid);
  383. regulator_disable(data->vdd);
  384. }
  385. /*
  386. * Return 0 if the i2c device is the one we expect.
  387. * return a negative error number otherwise
  388. */
  389. static int ak8975_who_i_am(struct i2c_client *client,
  390. enum asahi_compass_chipset type)
  391. {
  392. u8 wia_val[2];
  393. int ret;
  394. /*
  395. * Signature for each device:
  396. * Device | WIA1 | WIA2
  397. * AK09912 | DEVICE_ID | AK09912_DEVICE_ID
  398. * AK09911 | DEVICE_ID | AK09911_DEVICE_ID
  399. * AK8975 | DEVICE_ID | NA
  400. * AK8963 | DEVICE_ID | NA
  401. */
  402. ret = i2c_smbus_read_i2c_block_data_or_emulated(
  403. client, AK09912_REG_WIA1, 2, wia_val);
  404. if (ret < 0) {
  405. dev_err(&client->dev, "Error reading WIA\n");
  406. return ret;
  407. }
  408. if (wia_val[0] != AK8975_DEVICE_ID)
  409. return -ENODEV;
  410. switch (type) {
  411. case AK8975:
  412. case AK8963:
  413. return 0;
  414. case AK09911:
  415. if (wia_val[1] == AK09911_DEVICE_ID)
  416. return 0;
  417. break;
  418. case AK09912:
  419. if (wia_val[1] == AK09912_DEVICE_ID)
  420. return 0;
  421. break;
  422. default:
  423. dev_err(&client->dev, "Type %d unknown\n", type);
  424. }
  425. return -ENODEV;
  426. }
  427. /*
  428. * Helper function to write to CNTL register.
  429. */
  430. static int ak8975_set_mode(struct ak8975_data *data, enum ak_ctrl_mode mode)
  431. {
  432. u8 regval;
  433. int ret;
  434. regval = (data->cntl_cache & ~data->def->ctrl_masks[CNTL_MODE]) |
  435. data->def->ctrl_modes[mode];
  436. ret = i2c_smbus_write_byte_data(data->client,
  437. data->def->ctrl_regs[CNTL], regval);
  438. if (ret < 0) {
  439. return ret;
  440. }
  441. data->cntl_cache = regval;
  442. /* After mode change wait atleast 100us */
  443. usleep_range(100, 500);
  444. return 0;
  445. }
  446. /*
  447. * Handle data ready irq
  448. */
  449. static irqreturn_t ak8975_irq_handler(int irq, void *data)
  450. {
  451. struct ak8975_data *ak8975 = data;
  452. set_bit(0, &ak8975->flags);
  453. wake_up(&ak8975->data_ready_queue);
  454. return IRQ_HANDLED;
  455. }
  456. /*
  457. * Install data ready interrupt handler
  458. */
  459. static int ak8975_setup_irq(struct ak8975_data *data)
  460. {
  461. struct i2c_client *client = data->client;
  462. int rc;
  463. int irq;
  464. init_waitqueue_head(&data->data_ready_queue);
  465. clear_bit(0, &data->flags);
  466. if (client->irq)
  467. irq = client->irq;
  468. else
  469. irq = gpio_to_irq(data->eoc_gpio);
  470. rc = devm_request_irq(&client->dev, irq, ak8975_irq_handler,
  471. IRQF_TRIGGER_RISING | IRQF_ONESHOT,
  472. dev_name(&client->dev), data);
  473. if (rc < 0) {
  474. dev_err(&client->dev,
  475. "irq %d request failed, (gpio %d): %d\n",
  476. irq, data->eoc_gpio, rc);
  477. return rc;
  478. }
  479. data->eoc_irq = irq;
  480. return rc;
  481. }
  482. /*
  483. * Perform some start-of-day setup, including reading the asa calibration
  484. * values and caching them.
  485. */
  486. static int ak8975_setup(struct i2c_client *client)
  487. {
  488. struct iio_dev *indio_dev = i2c_get_clientdata(client);
  489. struct ak8975_data *data = iio_priv(indio_dev);
  490. int ret;
  491. /* Write the fused rom access mode. */
  492. ret = ak8975_set_mode(data, FUSE_ROM);
  493. if (ret < 0) {
  494. dev_err(&client->dev, "Error in setting fuse access mode\n");
  495. return ret;
  496. }
  497. /* Get asa data and store in the device data. */
  498. ret = i2c_smbus_read_i2c_block_data_or_emulated(
  499. client, data->def->ctrl_regs[ASA_BASE],
  500. 3, data->asa);
  501. if (ret < 0) {
  502. dev_err(&client->dev, "Not able to read asa data\n");
  503. return ret;
  504. }
  505. /* After reading fuse ROM data set power-down mode */
  506. ret = ak8975_set_mode(data, POWER_DOWN);
  507. if (ret < 0) {
  508. dev_err(&client->dev, "Error in setting power-down mode\n");
  509. return ret;
  510. }
  511. if (data->eoc_gpio > 0 || client->irq > 0) {
  512. ret = ak8975_setup_irq(data);
  513. if (ret < 0) {
  514. dev_err(&client->dev,
  515. "Error setting data ready interrupt\n");
  516. return ret;
  517. }
  518. }
  519. data->raw_to_gauss[0] = data->def->raw_to_gauss(data->asa[0]);
  520. data->raw_to_gauss[1] = data->def->raw_to_gauss(data->asa[1]);
  521. data->raw_to_gauss[2] = data->def->raw_to_gauss(data->asa[2]);
  522. return 0;
  523. }
  524. static int wait_conversion_complete_gpio(struct ak8975_data *data)
  525. {
  526. struct i2c_client *client = data->client;
  527. u32 timeout_ms = AK8975_MAX_CONVERSION_TIMEOUT;
  528. int ret;
  529. /* Wait for the conversion to complete. */
  530. while (timeout_ms) {
  531. msleep(AK8975_CONVERSION_DONE_POLL_TIME);
  532. if (gpio_get_value(data->eoc_gpio))
  533. break;
  534. timeout_ms -= AK8975_CONVERSION_DONE_POLL_TIME;
  535. }
  536. if (!timeout_ms) {
  537. dev_err(&client->dev, "Conversion timeout happened\n");
  538. return -EINVAL;
  539. }
  540. ret = i2c_smbus_read_byte_data(client, data->def->ctrl_regs[ST1]);
  541. if (ret < 0)
  542. dev_err(&client->dev, "Error in reading ST1\n");
  543. return ret;
  544. }
  545. static int wait_conversion_complete_polled(struct ak8975_data *data)
  546. {
  547. struct i2c_client *client = data->client;
  548. u8 read_status;
  549. u32 timeout_ms = AK8975_MAX_CONVERSION_TIMEOUT;
  550. int ret;
  551. /* Wait for the conversion to complete. */
  552. while (timeout_ms) {
  553. msleep(AK8975_CONVERSION_DONE_POLL_TIME);
  554. ret = i2c_smbus_read_byte_data(client,
  555. data->def->ctrl_regs[ST1]);
  556. if (ret < 0) {
  557. dev_err(&client->dev, "Error in reading ST1\n");
  558. return ret;
  559. }
  560. read_status = ret;
  561. if (read_status)
  562. break;
  563. timeout_ms -= AK8975_CONVERSION_DONE_POLL_TIME;
  564. }
  565. if (!timeout_ms) {
  566. dev_err(&client->dev, "Conversion timeout happened\n");
  567. return -EINVAL;
  568. }
  569. return read_status;
  570. }
  571. /* Returns 0 if the end of conversion interrupt occured or -ETIME otherwise */
  572. static int wait_conversion_complete_interrupt(struct ak8975_data *data)
  573. {
  574. int ret;
  575. ret = wait_event_timeout(data->data_ready_queue,
  576. test_bit(0, &data->flags),
  577. AK8975_DATA_READY_TIMEOUT);
  578. clear_bit(0, &data->flags);
  579. return ret > 0 ? 0 : -ETIME;
  580. }
  581. static int ak8975_start_read_axis(struct ak8975_data *data,
  582. const struct i2c_client *client)
  583. {
  584. /* Set up the device for taking a sample. */
  585. int ret = ak8975_set_mode(data, MODE_ONCE);
  586. if (ret < 0) {
  587. dev_err(&client->dev, "Error in setting operating mode\n");
  588. return ret;
  589. }
  590. /* Wait for the conversion to complete. */
  591. if (data->eoc_irq)
  592. ret = wait_conversion_complete_interrupt(data);
  593. else if (gpio_is_valid(data->eoc_gpio))
  594. ret = wait_conversion_complete_gpio(data);
  595. else
  596. ret = wait_conversion_complete_polled(data);
  597. if (ret < 0)
  598. return ret;
  599. /* This will be executed only for non-interrupt based waiting case */
  600. if (ret & data->def->ctrl_masks[ST1_DRDY]) {
  601. ret = i2c_smbus_read_byte_data(client,
  602. data->def->ctrl_regs[ST2]);
  603. if (ret < 0) {
  604. dev_err(&client->dev, "Error in reading ST2\n");
  605. return ret;
  606. }
  607. if (ret & (data->def->ctrl_masks[ST2_DERR] |
  608. data->def->ctrl_masks[ST2_HOFL])) {
  609. dev_err(&client->dev, "ST2 status error 0x%x\n", ret);
  610. return -EINVAL;
  611. }
  612. }
  613. return 0;
  614. }
  615. /* Retrieve raw flux value for one of the x, y, or z axis. */
  616. static int ak8975_read_axis(struct iio_dev *indio_dev, int index, int *val)
  617. {
  618. struct ak8975_data *data = iio_priv(indio_dev);
  619. const struct i2c_client *client = data->client;
  620. const struct ak_def *def = data->def;
  621. __le16 rval;
  622. u16 buff;
  623. int ret;
  624. pm_runtime_get_sync(&data->client->dev);
  625. mutex_lock(&data->lock);
  626. ret = ak8975_start_read_axis(data, client);
  627. if (ret)
  628. goto exit;
  629. ret = i2c_smbus_read_i2c_block_data_or_emulated(
  630. client, def->data_regs[index],
  631. sizeof(rval), (u8*)&rval);
  632. if (ret < 0)
  633. goto exit;
  634. mutex_unlock(&data->lock);
  635. pm_runtime_mark_last_busy(&data->client->dev);
  636. pm_runtime_put_autosuspend(&data->client->dev);
  637. /* Swap bytes and convert to valid range. */
  638. buff = le16_to_cpu(rval);
  639. *val = clamp_t(s16, buff, -def->range, def->range);
  640. return IIO_VAL_INT;
  641. exit:
  642. mutex_unlock(&data->lock);
  643. dev_err(&client->dev, "Error in reading axis\n");
  644. return ret;
  645. }
  646. static int ak8975_read_raw(struct iio_dev *indio_dev,
  647. struct iio_chan_spec const *chan,
  648. int *val, int *val2,
  649. long mask)
  650. {
  651. struct ak8975_data *data = iio_priv(indio_dev);
  652. switch (mask) {
  653. case IIO_CHAN_INFO_RAW:
  654. return ak8975_read_axis(indio_dev, chan->address, val);
  655. case IIO_CHAN_INFO_SCALE:
  656. *val = 0;
  657. *val2 = data->raw_to_gauss[chan->address];
  658. return IIO_VAL_INT_PLUS_MICRO;
  659. }
  660. return -EINVAL;
  661. }
  662. static const struct iio_mount_matrix *
  663. ak8975_get_mount_matrix(const struct iio_dev *indio_dev,
  664. const struct iio_chan_spec *chan)
  665. {
  666. return &((struct ak8975_data *)iio_priv(indio_dev))->orientation;
  667. }
  668. static const struct iio_chan_spec_ext_info ak8975_ext_info[] = {
  669. IIO_MOUNT_MATRIX(IIO_SHARED_BY_DIR, ak8975_get_mount_matrix),
  670. { },
  671. };
  672. #define AK8975_CHANNEL(axis, index) \
  673. { \
  674. .type = IIO_MAGN, \
  675. .modified = 1, \
  676. .channel2 = IIO_MOD_##axis, \
  677. .info_mask_separate = BIT(IIO_CHAN_INFO_RAW) | \
  678. BIT(IIO_CHAN_INFO_SCALE), \
  679. .address = index, \
  680. .scan_index = index, \
  681. .scan_type = { \
  682. .sign = 's', \
  683. .realbits = 16, \
  684. .storagebits = 16, \
  685. .endianness = IIO_CPU \
  686. }, \
  687. .ext_info = ak8975_ext_info, \
  688. }
  689. static const struct iio_chan_spec ak8975_channels[] = {
  690. AK8975_CHANNEL(X, 0), AK8975_CHANNEL(Y, 1), AK8975_CHANNEL(Z, 2),
  691. IIO_CHAN_SOFT_TIMESTAMP(3),
  692. };
  693. static const unsigned long ak8975_scan_masks[] = { 0x7, 0 };
  694. static const struct iio_info ak8975_info = {
  695. .read_raw = &ak8975_read_raw,
  696. };
  697. #ifdef CONFIG_ACPI
  698. static const struct acpi_device_id ak_acpi_match[] = {
  699. {"AK8975", AK8975},
  700. {"AK8963", AK8963},
  701. {"INVN6500", AK8963},
  702. {"AK009911", AK09911},
  703. {"AK09911", AK09911},
  704. {"AK09912", AK09912},
  705. { },
  706. };
  707. MODULE_DEVICE_TABLE(acpi, ak_acpi_match);
  708. #endif
  709. static const char *ak8975_match_acpi_device(struct device *dev,
  710. enum asahi_compass_chipset *chipset)
  711. {
  712. const struct acpi_device_id *id;
  713. id = acpi_match_device(dev->driver->acpi_match_table, dev);
  714. if (!id)
  715. return NULL;
  716. *chipset = (int)id->driver_data;
  717. return dev_name(dev);
  718. }
  719. static void ak8975_fill_buffer(struct iio_dev *indio_dev)
  720. {
  721. struct ak8975_data *data = iio_priv(indio_dev);
  722. const struct i2c_client *client = data->client;
  723. const struct ak_def *def = data->def;
  724. int ret;
  725. __le16 fval[3];
  726. mutex_lock(&data->lock);
  727. ret = ak8975_start_read_axis(data, client);
  728. if (ret)
  729. goto unlock;
  730. /*
  731. * For each axis, read the flux value from the appropriate register
  732. * (the register is specified in the iio device attributes).
  733. */
  734. ret = i2c_smbus_read_i2c_block_data_or_emulated(client,
  735. def->data_regs[0],
  736. 3 * sizeof(fval[0]),
  737. (u8 *)fval);
  738. if (ret < 0)
  739. goto unlock;
  740. mutex_unlock(&data->lock);
  741. /* Clamp to valid range. */
  742. data->scan.channels[0] = clamp_t(s16, le16_to_cpu(fval[0]), -def->range, def->range);
  743. data->scan.channels[1] = clamp_t(s16, le16_to_cpu(fval[1]), -def->range, def->range);
  744. data->scan.channels[2] = clamp_t(s16, le16_to_cpu(fval[2]), -def->range, def->range);
  745. iio_push_to_buffers_with_timestamp(indio_dev, &data->scan,
  746. iio_get_time_ns(indio_dev));
  747. return;
  748. unlock:
  749. mutex_unlock(&data->lock);
  750. dev_err(&client->dev, "Error in reading axes block\n");
  751. }
  752. static irqreturn_t ak8975_handle_trigger(int irq, void *p)
  753. {
  754. const struct iio_poll_func *pf = p;
  755. struct iio_dev *indio_dev = pf->indio_dev;
  756. ak8975_fill_buffer(indio_dev);
  757. iio_trigger_notify_done(indio_dev->trig);
  758. return IRQ_HANDLED;
  759. }
  760. static int ak8975_probe(struct i2c_client *client,
  761. const struct i2c_device_id *id)
  762. {
  763. struct ak8975_data *data;
  764. struct iio_dev *indio_dev;
  765. int eoc_gpio;
  766. int err;
  767. const char *name = NULL;
  768. enum asahi_compass_chipset chipset = AK_MAX_TYPE;
  769. const struct ak8975_platform_data *pdata =
  770. dev_get_platdata(&client->dev);
  771. /* Grab and set up the supplied GPIO. */
  772. if (pdata)
  773. eoc_gpio = pdata->eoc_gpio;
  774. else if (client->dev.of_node)
  775. eoc_gpio = of_get_gpio(client->dev.of_node, 0);
  776. else
  777. eoc_gpio = -1;
  778. if (eoc_gpio == -EPROBE_DEFER)
  779. return -EPROBE_DEFER;
  780. /* We may not have a GPIO based IRQ to scan, that is fine, we will
  781. poll if so */
  782. if (gpio_is_valid(eoc_gpio)) {
  783. err = devm_gpio_request_one(&client->dev, eoc_gpio,
  784. GPIOF_IN, "ak_8975");
  785. if (err < 0) {
  786. dev_err(&client->dev,
  787. "failed to request GPIO %d, error %d\n",
  788. eoc_gpio, err);
  789. return err;
  790. }
  791. }
  792. /* Register with IIO */
  793. indio_dev = devm_iio_device_alloc(&client->dev, sizeof(*data));
  794. if (indio_dev == NULL)
  795. return -ENOMEM;
  796. data = iio_priv(indio_dev);
  797. i2c_set_clientdata(client, indio_dev);
  798. data->client = client;
  799. data->eoc_gpio = eoc_gpio;
  800. data->eoc_irq = 0;
  801. if (!pdata) {
  802. err = of_iio_read_mount_matrix(&client->dev,
  803. "mount-matrix",
  804. &data->orientation);
  805. if (err)
  806. return err;
  807. } else
  808. data->orientation = pdata->orientation;
  809. /* id will be NULL when enumerated via ACPI */
  810. if (id) {
  811. chipset = (enum asahi_compass_chipset)(id->driver_data);
  812. name = id->name;
  813. } else if (ACPI_HANDLE(&client->dev)) {
  814. name = ak8975_match_acpi_device(&client->dev, &chipset);
  815. if (!name)
  816. return -ENODEV;
  817. } else
  818. return -ENOSYS;
  819. if (chipset >= AK_MAX_TYPE) {
  820. dev_err(&client->dev, "AKM device type unsupported: %d\n",
  821. chipset);
  822. return -ENODEV;
  823. }
  824. data->def = &ak_def_array[chipset];
  825. /* Fetch the regulators */
  826. data->vdd = devm_regulator_get(&client->dev, "vdd");
  827. if (IS_ERR(data->vdd))
  828. return PTR_ERR(data->vdd);
  829. data->vid = devm_regulator_get(&client->dev, "vid");
  830. if (IS_ERR(data->vid))
  831. return PTR_ERR(data->vid);
  832. err = ak8975_power_on(data);
  833. if (err)
  834. return err;
  835. err = ak8975_who_i_am(client, data->def->type);
  836. if (err < 0) {
  837. dev_err(&client->dev, "Unexpected device\n");
  838. goto power_off;
  839. }
  840. dev_dbg(&client->dev, "Asahi compass chip %s\n", name);
  841. /* Perform some basic start-of-day setup of the device. */
  842. err = ak8975_setup(client);
  843. if (err < 0) {
  844. dev_err(&client->dev, "%s initialization fails\n", name);
  845. goto power_off;
  846. }
  847. mutex_init(&data->lock);
  848. indio_dev->dev.parent = &client->dev;
  849. indio_dev->channels = ak8975_channels;
  850. indio_dev->num_channels = ARRAY_SIZE(ak8975_channels);
  851. indio_dev->info = &ak8975_info;
  852. indio_dev->available_scan_masks = ak8975_scan_masks;
  853. indio_dev->modes = INDIO_DIRECT_MODE;
  854. indio_dev->name = name;
  855. err = iio_triggered_buffer_setup(indio_dev, NULL, ak8975_handle_trigger,
  856. NULL);
  857. if (err) {
  858. dev_err(&client->dev, "triggered buffer setup failed\n");
  859. goto power_off;
  860. }
  861. err = iio_device_register(indio_dev);
  862. if (err) {
  863. dev_err(&client->dev, "device register failed\n");
  864. goto cleanup_buffer;
  865. }
  866. /* Enable runtime PM */
  867. pm_runtime_get_noresume(&client->dev);
  868. pm_runtime_set_active(&client->dev);
  869. pm_runtime_enable(&client->dev);
  870. /*
  871. * The device comes online in 500us, so add two orders of magnitude
  872. * of delay before autosuspending: 50 ms.
  873. */
  874. pm_runtime_set_autosuspend_delay(&client->dev, 50);
  875. pm_runtime_use_autosuspend(&client->dev);
  876. pm_runtime_put(&client->dev);
  877. return 0;
  878. cleanup_buffer:
  879. iio_triggered_buffer_cleanup(indio_dev);
  880. power_off:
  881. ak8975_power_off(data);
  882. return err;
  883. }
  884. static int ak8975_remove(struct i2c_client *client)
  885. {
  886. struct iio_dev *indio_dev = i2c_get_clientdata(client);
  887. struct ak8975_data *data = iio_priv(indio_dev);
  888. pm_runtime_get_sync(&client->dev);
  889. pm_runtime_put_noidle(&client->dev);
  890. pm_runtime_disable(&client->dev);
  891. iio_device_unregister(indio_dev);
  892. iio_triggered_buffer_cleanup(indio_dev);
  893. ak8975_set_mode(data, POWER_DOWN);
  894. ak8975_power_off(data);
  895. return 0;
  896. }
  897. #ifdef CONFIG_PM
  898. static int ak8975_runtime_suspend(struct device *dev)
  899. {
  900. struct i2c_client *client = to_i2c_client(dev);
  901. struct iio_dev *indio_dev = i2c_get_clientdata(client);
  902. struct ak8975_data *data = iio_priv(indio_dev);
  903. int ret;
  904. /* Set the device in power down if it wasn't already */
  905. ret = ak8975_set_mode(data, POWER_DOWN);
  906. if (ret < 0) {
  907. dev_err(&client->dev, "Error in setting power-down mode\n");
  908. return ret;
  909. }
  910. /* Next cut the regulators */
  911. ak8975_power_off(data);
  912. return 0;
  913. }
  914. static int ak8975_runtime_resume(struct device *dev)
  915. {
  916. struct i2c_client *client = to_i2c_client(dev);
  917. struct iio_dev *indio_dev = i2c_get_clientdata(client);
  918. struct ak8975_data *data = iio_priv(indio_dev);
  919. int ret;
  920. /* Take up the regulators */
  921. ak8975_power_on(data);
  922. /*
  923. * We come up in powered down mode, the reading routines will
  924. * put us in the mode to read values later.
  925. */
  926. ret = ak8975_set_mode(data, POWER_DOWN);
  927. if (ret < 0) {
  928. dev_err(&client->dev, "Error in setting power-down mode\n");
  929. return ret;
  930. }
  931. return 0;
  932. }
  933. #endif /* CONFIG_PM */
  934. static const struct dev_pm_ops ak8975_dev_pm_ops = {
  935. SET_SYSTEM_SLEEP_PM_OPS(pm_runtime_force_suspend,
  936. pm_runtime_force_resume)
  937. SET_RUNTIME_PM_OPS(ak8975_runtime_suspend,
  938. ak8975_runtime_resume, NULL)
  939. };
  940. static const struct i2c_device_id ak8975_id[] = {
  941. {"ak8975", AK8975},
  942. {"ak8963", AK8963},
  943. {"AK8963", AK8963},
  944. {"ak09911", AK09911},
  945. {"ak09912", AK09912},
  946. {}
  947. };
  948. MODULE_DEVICE_TABLE(i2c, ak8975_id);
  949. static const struct of_device_id ak8975_of_match[] = {
  950. { .compatible = "asahi-kasei,ak8975", },
  951. { .compatible = "ak8975", },
  952. { .compatible = "asahi-kasei,ak8963", },
  953. { .compatible = "ak8963", },
  954. { .compatible = "asahi-kasei,ak09911", },
  955. { .compatible = "ak09911", },
  956. { .compatible = "asahi-kasei,ak09912", },
  957. { .compatible = "ak09912", },
  958. {}
  959. };
  960. MODULE_DEVICE_TABLE(of, ak8975_of_match);
  961. static struct i2c_driver ak8975_driver = {
  962. .driver = {
  963. .name = "ak8975",
  964. .pm = &ak8975_dev_pm_ops,
  965. .of_match_table = of_match_ptr(ak8975_of_match),
  966. .acpi_match_table = ACPI_PTR(ak_acpi_match),
  967. },
  968. .probe = ak8975_probe,
  969. .remove = ak8975_remove,
  970. .id_table = ak8975_id,
  971. };
  972. module_i2c_driver(ak8975_driver);
  973. MODULE_AUTHOR("Laxman Dewangan <ldewangan@nvidia.com>");
  974. MODULE_DESCRIPTION("AK8975 magnetometer driver");
  975. MODULE_LICENSE("GPL");