1 // SPDX-License-Identifier: GPL-2.0 2 /* 3 * AD7606 SPI ADC driver 4 * 5 * Copyright 2011 Analog Devices Inc. 6 */ 7 8 #include <linux/delay.h> 9 #include <linux/device.h> 10 #include <linux/err.h> 11 #include <linux/gpio/consumer.h> 12 #include <linux/interrupt.h> 13 #include <linux/kernel.h> 14 #include <linux/module.h> 15 #include <linux/property.h> 16 #include <linux/regulator/consumer.h> 17 #include <linux/sched.h> 18 #include <linux/slab.h> 19 #include <linux/sysfs.h> 20 #include <linux/util_macros.h> 21 22 #include <linux/iio/iio.h> 23 #include <linux/iio/buffer.h> 24 #include <linux/iio/sysfs.h> 25 #include <linux/iio/trigger.h> 26 #include <linux/iio/triggered_buffer.h> 27 #include <linux/iio/trigger_consumer.h> 28 29 #include "ad7606.h" 30 31 /* 32 * Scales are computed as 5000/32768 and 10000/32768 respectively, 33 * so that when applied to the raw values they provide mV values 34 */ 35 static const unsigned int ad7606_scale_avail[2] = { 36 152588, 305176 37 }; 38 39 40 static const unsigned int ad7616_sw_scale_avail[3] = { 41 76293, 152588, 305176 42 }; 43 44 static const unsigned int ad7606_oversampling_avail[7] = { 45 1, 2, 4, 8, 16, 32, 64, 46 }; 47 48 static const unsigned int ad7616_oversampling_avail[8] = { 49 1, 2, 4, 8, 16, 32, 64, 128, 50 }; 51 52 static int ad7606_reset(struct ad7606_state *st) 53 { 54 if (st->gpio_reset) { 55 gpiod_set_value(st->gpio_reset, 1); 56 ndelay(100); /* t_reset >= 100ns */ 57 gpiod_set_value(st->gpio_reset, 0); 58 return 0; 59 } 60 61 return -ENODEV; 62 } 63 64 static int ad7606_reg_access(struct iio_dev *indio_dev, 65 unsigned int reg, 66 unsigned int writeval, 67 unsigned int *readval) 68 { 69 struct ad7606_state *st = iio_priv(indio_dev); 70 int ret; 71 72 guard(mutex)(&st->lock); 73 74 if (readval) { 75 ret = st->bops->reg_read(st, reg); 76 if (ret < 0) 77 return ret; 78 *readval = ret; 79 return 0; 80 } else { 81 return st->bops->reg_write(st, reg, writeval); 82 } 83 } 84 85 static int ad7606_read_samples(struct ad7606_state *st) 86 { 87 unsigned int num = st->chip_info->num_channels - 1; 88 u16 *data = st->data; 89 int ret; 90 91 /* 92 * The frstdata signal is set to high while and after reading the sample 93 * of the first channel and low for all other channels. This can be used 94 * to check that the incoming data is correctly aligned. During normal 95 * operation the data should never become unaligned, but some glitch or 96 * electrostatic discharge might cause an extra read or clock cycle. 97 * Monitoring the frstdata signal allows to recover from such failure 98 * situations. 99 */ 100 101 if (st->gpio_frstdata) { 102 ret = st->bops->read_block(st->dev, 1, data); 103 if (ret) 104 return ret; 105 106 if (!gpiod_get_value(st->gpio_frstdata)) { 107 ad7606_reset(st); 108 return -EIO; 109 } 110 111 data++; 112 num--; 113 } 114 115 return st->bops->read_block(st->dev, num, data); 116 } 117 118 static irqreturn_t ad7606_trigger_handler(int irq, void *p) 119 { 120 struct iio_poll_func *pf = p; 121 struct iio_dev *indio_dev = pf->indio_dev; 122 struct ad7606_state *st = iio_priv(indio_dev); 123 int ret; 124 125 guard(mutex)(&st->lock); 126 127 ret = ad7606_read_samples(st); 128 if (ret) 129 goto error_ret; 130 131 iio_push_to_buffers_with_timestamp(indio_dev, st->data, 132 iio_get_time_ns(indio_dev)); 133 error_ret: 134 iio_trigger_notify_done(indio_dev->trig); 135 /* The rising edge of the CONVST signal starts a new conversion. */ 136 gpiod_set_value(st->gpio_convst, 1); 137 138 return IRQ_HANDLED; 139 } 140 141 static int ad7606_scan_direct(struct iio_dev *indio_dev, unsigned int ch) 142 { 143 struct ad7606_state *st = iio_priv(indio_dev); 144 int ret; 145 146 gpiod_set_value(st->gpio_convst, 1); 147 ret = wait_for_completion_timeout(&st->completion, 148 msecs_to_jiffies(1000)); 149 if (!ret) { 150 ret = -ETIMEDOUT; 151 goto error_ret; 152 } 153 154 ret = ad7606_read_samples(st); 155 if (ret == 0) 156 ret = st->data[ch]; 157 158 error_ret: 159 gpiod_set_value(st->gpio_convst, 0); 160 161 return ret; 162 } 163 164 static int ad7606_read_raw(struct iio_dev *indio_dev, 165 struct iio_chan_spec const *chan, 166 int *val, 167 int *val2, 168 long m) 169 { 170 int ret, ch = 0; 171 struct ad7606_state *st = iio_priv(indio_dev); 172 173 switch (m) { 174 case IIO_CHAN_INFO_RAW: 175 iio_device_claim_direct_scoped(return -EBUSY, indio_dev) { 176 ret = ad7606_scan_direct(indio_dev, chan->address); 177 if (ret < 0) 178 return ret; 179 *val = (short) ret; 180 return IIO_VAL_INT; 181 } 182 unreachable(); 183 case IIO_CHAN_INFO_SCALE: 184 if (st->sw_mode_en) 185 ch = chan->address; 186 *val = 0; 187 *val2 = st->scale_avail[st->range[ch]]; 188 return IIO_VAL_INT_PLUS_MICRO; 189 case IIO_CHAN_INFO_OVERSAMPLING_RATIO: 190 *val = st->oversampling; 191 return IIO_VAL_INT; 192 } 193 return -EINVAL; 194 } 195 196 static ssize_t ad7606_show_avail(char *buf, const unsigned int *vals, 197 unsigned int n, bool micros) 198 { 199 size_t len = 0; 200 int i; 201 202 for (i = 0; i < n; i++) { 203 len += scnprintf(buf + len, PAGE_SIZE - len, 204 micros ? "0.%06u " : "%u ", vals[i]); 205 } 206 buf[len - 1] = '\n'; 207 208 return len; 209 } 210 211 static ssize_t in_voltage_scale_available_show(struct device *dev, 212 struct device_attribute *attr, 213 char *buf) 214 { 215 struct iio_dev *indio_dev = dev_to_iio_dev(dev); 216 struct ad7606_state *st = iio_priv(indio_dev); 217 218 return ad7606_show_avail(buf, st->scale_avail, st->num_scales, true); 219 } 220 221 static IIO_DEVICE_ATTR_RO(in_voltage_scale_available, 0); 222 223 static int ad7606_write_scale_hw(struct iio_dev *indio_dev, int ch, int val) 224 { 225 struct ad7606_state *st = iio_priv(indio_dev); 226 227 gpiod_set_value(st->gpio_range, val); 228 229 return 0; 230 } 231 232 static int ad7606_write_os_hw(struct iio_dev *indio_dev, int val) 233 { 234 struct ad7606_state *st = iio_priv(indio_dev); 235 DECLARE_BITMAP(values, 3); 236 237 values[0] = val & GENMASK(2, 0); 238 239 gpiod_set_array_value(st->gpio_os->ndescs, st->gpio_os->desc, 240 st->gpio_os->info, values); 241 242 /* AD7616 requires a reset to update value */ 243 if (st->chip_info->os_req_reset) 244 ad7606_reset(st); 245 246 return 0; 247 } 248 249 static int ad7606_write_raw(struct iio_dev *indio_dev, 250 struct iio_chan_spec const *chan, 251 int val, 252 int val2, 253 long mask) 254 { 255 struct ad7606_state *st = iio_priv(indio_dev); 256 int i, ret, ch = 0; 257 258 guard(mutex)(&st->lock); 259 260 switch (mask) { 261 case IIO_CHAN_INFO_SCALE: 262 i = find_closest(val2, st->scale_avail, st->num_scales); 263 if (st->sw_mode_en) 264 ch = chan->address; 265 ret = st->write_scale(indio_dev, ch, i); 266 if (ret < 0) 267 return ret; 268 st->range[ch] = i; 269 270 return 0; 271 case IIO_CHAN_INFO_OVERSAMPLING_RATIO: 272 if (val2) 273 return -EINVAL; 274 i = find_closest(val, st->oversampling_avail, 275 st->num_os_ratios); 276 ret = st->write_os(indio_dev, i); 277 if (ret < 0) 278 return ret; 279 280 return 0; 281 default: 282 return -EINVAL; 283 } 284 } 285 286 static ssize_t ad7606_oversampling_ratio_avail(struct device *dev, 287 struct device_attribute *attr, 288 char *buf) 289 { 290 struct iio_dev *indio_dev = dev_to_iio_dev(dev); 291 struct ad7606_state *st = iio_priv(indio_dev); 292 293 return ad7606_show_avail(buf, st->oversampling_avail, 294 st->num_os_ratios, false); 295 } 296 297 static IIO_DEVICE_ATTR(oversampling_ratio_available, 0444, 298 ad7606_oversampling_ratio_avail, NULL, 0); 299 300 static struct attribute *ad7606_attributes_os_and_range[] = { 301 &iio_dev_attr_in_voltage_scale_available.dev_attr.attr, 302 &iio_dev_attr_oversampling_ratio_available.dev_attr.attr, 303 NULL, 304 }; 305 306 static const struct attribute_group ad7606_attribute_group_os_and_range = { 307 .attrs = ad7606_attributes_os_and_range, 308 }; 309 310 static struct attribute *ad7606_attributes_os[] = { 311 &iio_dev_attr_oversampling_ratio_available.dev_attr.attr, 312 NULL, 313 }; 314 315 static const struct attribute_group ad7606_attribute_group_os = { 316 .attrs = ad7606_attributes_os, 317 }; 318 319 static struct attribute *ad7606_attributes_range[] = { 320 &iio_dev_attr_in_voltage_scale_available.dev_attr.attr, 321 NULL, 322 }; 323 324 static const struct attribute_group ad7606_attribute_group_range = { 325 .attrs = ad7606_attributes_range, 326 }; 327 328 static const struct iio_chan_spec ad7605_channels[] = { 329 IIO_CHAN_SOFT_TIMESTAMP(4), 330 AD7605_CHANNEL(0), 331 AD7605_CHANNEL(1), 332 AD7605_CHANNEL(2), 333 AD7605_CHANNEL(3), 334 }; 335 336 static const struct iio_chan_spec ad7606_channels[] = { 337 IIO_CHAN_SOFT_TIMESTAMP(8), 338 AD7606_CHANNEL(0), 339 AD7606_CHANNEL(1), 340 AD7606_CHANNEL(2), 341 AD7606_CHANNEL(3), 342 AD7606_CHANNEL(4), 343 AD7606_CHANNEL(5), 344 AD7606_CHANNEL(6), 345 AD7606_CHANNEL(7), 346 }; 347 348 /* 349 * The current assumption that this driver makes for AD7616, is that it's 350 * working in Hardware Mode with Serial, Burst and Sequencer modes activated. 351 * To activate them, following pins must be pulled high: 352 * -SER/PAR 353 * -SEQEN 354 * And following pins must be pulled low: 355 * -WR/BURST 356 * -DB4/SER1W 357 */ 358 static const struct iio_chan_spec ad7616_channels[] = { 359 IIO_CHAN_SOFT_TIMESTAMP(16), 360 AD7606_CHANNEL(0), 361 AD7606_CHANNEL(1), 362 AD7606_CHANNEL(2), 363 AD7606_CHANNEL(3), 364 AD7606_CHANNEL(4), 365 AD7606_CHANNEL(5), 366 AD7606_CHANNEL(6), 367 AD7606_CHANNEL(7), 368 AD7606_CHANNEL(8), 369 AD7606_CHANNEL(9), 370 AD7606_CHANNEL(10), 371 AD7606_CHANNEL(11), 372 AD7606_CHANNEL(12), 373 AD7606_CHANNEL(13), 374 AD7606_CHANNEL(14), 375 AD7606_CHANNEL(15), 376 }; 377 378 static const struct ad7606_chip_info ad7606_chip_info_tbl[] = { 379 /* More devices added in future */ 380 [ID_AD7605_4] = { 381 .channels = ad7605_channels, 382 .num_channels = 5, 383 }, 384 [ID_AD7606_8] = { 385 .channels = ad7606_channels, 386 .num_channels = 9, 387 .oversampling_avail = ad7606_oversampling_avail, 388 .oversampling_num = ARRAY_SIZE(ad7606_oversampling_avail), 389 }, 390 [ID_AD7606_6] = { 391 .channels = ad7606_channels, 392 .num_channels = 7, 393 .oversampling_avail = ad7606_oversampling_avail, 394 .oversampling_num = ARRAY_SIZE(ad7606_oversampling_avail), 395 }, 396 [ID_AD7606_4] = { 397 .channels = ad7606_channels, 398 .num_channels = 5, 399 .oversampling_avail = ad7606_oversampling_avail, 400 .oversampling_num = ARRAY_SIZE(ad7606_oversampling_avail), 401 }, 402 [ID_AD7606B] = { 403 .channels = ad7606_channels, 404 .num_channels = 9, 405 .oversampling_avail = ad7606_oversampling_avail, 406 .oversampling_num = ARRAY_SIZE(ad7606_oversampling_avail), 407 }, 408 [ID_AD7616] = { 409 .channels = ad7616_channels, 410 .num_channels = 17, 411 .oversampling_avail = ad7616_oversampling_avail, 412 .oversampling_num = ARRAY_SIZE(ad7616_oversampling_avail), 413 .os_req_reset = true, 414 .init_delay_ms = 15, 415 }, 416 }; 417 418 static int ad7606_request_gpios(struct ad7606_state *st) 419 { 420 struct device *dev = st->dev; 421 422 st->gpio_convst = devm_gpiod_get(dev, "adi,conversion-start", 423 GPIOD_OUT_LOW); 424 if (IS_ERR(st->gpio_convst)) 425 return PTR_ERR(st->gpio_convst); 426 427 st->gpio_reset = devm_gpiod_get_optional(dev, "reset", GPIOD_OUT_LOW); 428 if (IS_ERR(st->gpio_reset)) 429 return PTR_ERR(st->gpio_reset); 430 431 st->gpio_range = devm_gpiod_get_optional(dev, "adi,range", 432 GPIOD_OUT_LOW); 433 if (IS_ERR(st->gpio_range)) 434 return PTR_ERR(st->gpio_range); 435 436 st->gpio_standby = devm_gpiod_get_optional(dev, "standby", 437 GPIOD_OUT_LOW); 438 if (IS_ERR(st->gpio_standby)) 439 return PTR_ERR(st->gpio_standby); 440 441 st->gpio_frstdata = devm_gpiod_get_optional(dev, "adi,first-data", 442 GPIOD_IN); 443 if (IS_ERR(st->gpio_frstdata)) 444 return PTR_ERR(st->gpio_frstdata); 445 446 if (!st->chip_info->oversampling_num) 447 return 0; 448 449 st->gpio_os = devm_gpiod_get_array_optional(dev, 450 "adi,oversampling-ratio", 451 GPIOD_OUT_LOW); 452 return PTR_ERR_OR_ZERO(st->gpio_os); 453 } 454 455 /* 456 * The BUSY signal indicates when conversions are in progress, so when a rising 457 * edge of CONVST is applied, BUSY goes logic high and transitions low at the 458 * end of the entire conversion process. The falling edge of the BUSY signal 459 * triggers this interrupt. 460 */ 461 static irqreturn_t ad7606_interrupt(int irq, void *dev_id) 462 { 463 struct iio_dev *indio_dev = dev_id; 464 struct ad7606_state *st = iio_priv(indio_dev); 465 466 if (iio_buffer_enabled(indio_dev)) { 467 gpiod_set_value(st->gpio_convst, 0); 468 iio_trigger_poll_nested(st->trig); 469 } else { 470 complete(&st->completion); 471 } 472 473 return IRQ_HANDLED; 474 }; 475 476 static int ad7606_validate_trigger(struct iio_dev *indio_dev, 477 struct iio_trigger *trig) 478 { 479 struct ad7606_state *st = iio_priv(indio_dev); 480 481 if (st->trig != trig) 482 return -EINVAL; 483 484 return 0; 485 } 486 487 static int ad7606_buffer_postenable(struct iio_dev *indio_dev) 488 { 489 struct ad7606_state *st = iio_priv(indio_dev); 490 491 gpiod_set_value(st->gpio_convst, 1); 492 493 return 0; 494 } 495 496 static int ad7606_buffer_predisable(struct iio_dev *indio_dev) 497 { 498 struct ad7606_state *st = iio_priv(indio_dev); 499 500 gpiod_set_value(st->gpio_convst, 0); 501 502 return 0; 503 } 504 505 static const struct iio_buffer_setup_ops ad7606_buffer_ops = { 506 .postenable = &ad7606_buffer_postenable, 507 .predisable = &ad7606_buffer_predisable, 508 }; 509 510 static const struct iio_info ad7606_info_no_os_or_range = { 511 .read_raw = &ad7606_read_raw, 512 .validate_trigger = &ad7606_validate_trigger, 513 }; 514 515 static const struct iio_info ad7606_info_os_and_range = { 516 .read_raw = &ad7606_read_raw, 517 .write_raw = &ad7606_write_raw, 518 .attrs = &ad7606_attribute_group_os_and_range, 519 .validate_trigger = &ad7606_validate_trigger, 520 }; 521 522 static const struct iio_info ad7606_info_os_range_and_debug = { 523 .read_raw = &ad7606_read_raw, 524 .write_raw = &ad7606_write_raw, 525 .debugfs_reg_access = &ad7606_reg_access, 526 .attrs = &ad7606_attribute_group_os_and_range, 527 .validate_trigger = &ad7606_validate_trigger, 528 }; 529 530 static const struct iio_info ad7606_info_os = { 531 .read_raw = &ad7606_read_raw, 532 .write_raw = &ad7606_write_raw, 533 .attrs = &ad7606_attribute_group_os, 534 .validate_trigger = &ad7606_validate_trigger, 535 }; 536 537 static const struct iio_info ad7606_info_range = { 538 .read_raw = &ad7606_read_raw, 539 .write_raw = &ad7606_write_raw, 540 .attrs = &ad7606_attribute_group_range, 541 .validate_trigger = &ad7606_validate_trigger, 542 }; 543 544 static const struct iio_trigger_ops ad7606_trigger_ops = { 545 .validate_device = iio_trigger_validate_own_device, 546 }; 547 548 int ad7606_probe(struct device *dev, int irq, void __iomem *base_address, 549 const char *name, unsigned int id, 550 const struct ad7606_bus_ops *bops) 551 { 552 struct ad7606_state *st; 553 int ret; 554 struct iio_dev *indio_dev; 555 556 indio_dev = devm_iio_device_alloc(dev, sizeof(*st)); 557 if (!indio_dev) 558 return -ENOMEM; 559 560 st = iio_priv(indio_dev); 561 dev_set_drvdata(dev, indio_dev); 562 563 st->dev = dev; 564 mutex_init(&st->lock); 565 st->bops = bops; 566 st->base_address = base_address; 567 /* tied to logic low, analog input range is +/- 5V */ 568 st->range[0] = 0; 569 st->oversampling = 1; 570 st->scale_avail = ad7606_scale_avail; 571 st->num_scales = ARRAY_SIZE(ad7606_scale_avail); 572 573 ret = devm_regulator_get_enable(dev, "avcc"); 574 if (ret) 575 return dev_err_probe(dev, ret, 576 "Failed to enable specified AVcc supply\n"); 577 578 st->chip_info = &ad7606_chip_info_tbl[id]; 579 580 if (st->chip_info->oversampling_num) { 581 st->oversampling_avail = st->chip_info->oversampling_avail; 582 st->num_os_ratios = st->chip_info->oversampling_num; 583 } 584 585 ret = ad7606_request_gpios(st); 586 if (ret) 587 return ret; 588 589 if (st->gpio_os) { 590 if (st->gpio_range) 591 indio_dev->info = &ad7606_info_os_and_range; 592 else 593 indio_dev->info = &ad7606_info_os; 594 } else { 595 if (st->gpio_range) 596 indio_dev->info = &ad7606_info_range; 597 else 598 indio_dev->info = &ad7606_info_no_os_or_range; 599 } 600 indio_dev->modes = INDIO_DIRECT_MODE; 601 indio_dev->name = name; 602 indio_dev->channels = st->chip_info->channels; 603 indio_dev->num_channels = st->chip_info->num_channels; 604 605 init_completion(&st->completion); 606 607 ret = ad7606_reset(st); 608 if (ret) 609 dev_warn(st->dev, "failed to RESET: no RESET GPIO specified\n"); 610 611 /* AD7616 requires al least 15ms to reconfigure after a reset */ 612 if (st->chip_info->init_delay_ms) { 613 if (msleep_interruptible(st->chip_info->init_delay_ms)) 614 return -ERESTARTSYS; 615 } 616 617 st->write_scale = ad7606_write_scale_hw; 618 st->write_os = ad7606_write_os_hw; 619 620 if (st->bops->sw_mode_config) 621 st->sw_mode_en = device_property_present(st->dev, 622 "adi,sw-mode"); 623 624 if (st->sw_mode_en) { 625 /* Scale of 0.076293 is only available in sw mode */ 626 st->scale_avail = ad7616_sw_scale_avail; 627 st->num_scales = ARRAY_SIZE(ad7616_sw_scale_avail); 628 629 /* After reset, in software mode, ±10 V is set by default */ 630 memset32(st->range, 2, ARRAY_SIZE(st->range)); 631 indio_dev->info = &ad7606_info_os_range_and_debug; 632 633 ret = st->bops->sw_mode_config(indio_dev); 634 if (ret < 0) 635 return ret; 636 } 637 638 st->trig = devm_iio_trigger_alloc(dev, "%s-dev%d", 639 indio_dev->name, 640 iio_device_id(indio_dev)); 641 if (!st->trig) 642 return -ENOMEM; 643 644 st->trig->ops = &ad7606_trigger_ops; 645 iio_trigger_set_drvdata(st->trig, indio_dev); 646 ret = devm_iio_trigger_register(dev, st->trig); 647 if (ret) 648 return ret; 649 650 indio_dev->trig = iio_trigger_get(st->trig); 651 652 ret = devm_request_threaded_irq(dev, irq, 653 NULL, 654 &ad7606_interrupt, 655 IRQF_TRIGGER_FALLING | IRQF_ONESHOT, 656 name, indio_dev); 657 if (ret) 658 return ret; 659 660 ret = devm_iio_triggered_buffer_setup(dev, indio_dev, 661 &iio_pollfunc_store_time, 662 &ad7606_trigger_handler, 663 &ad7606_buffer_ops); 664 if (ret) 665 return ret; 666 667 return devm_iio_device_register(dev, indio_dev); 668 } 669 EXPORT_SYMBOL_NS_GPL(ad7606_probe, IIO_AD7606); 670 671 #ifdef CONFIG_PM_SLEEP 672 673 static int ad7606_suspend(struct device *dev) 674 { 675 struct iio_dev *indio_dev = dev_get_drvdata(dev); 676 struct ad7606_state *st = iio_priv(indio_dev); 677 678 if (st->gpio_standby) { 679 gpiod_set_value(st->gpio_range, 1); 680 gpiod_set_value(st->gpio_standby, 1); 681 } 682 683 return 0; 684 } 685 686 static int ad7606_resume(struct device *dev) 687 { 688 struct iio_dev *indio_dev = dev_get_drvdata(dev); 689 struct ad7606_state *st = iio_priv(indio_dev); 690 691 if (st->gpio_standby) { 692 gpiod_set_value(st->gpio_range, st->range[0]); 693 gpiod_set_value(st->gpio_standby, 1); 694 ad7606_reset(st); 695 } 696 697 return 0; 698 } 699 700 SIMPLE_DEV_PM_OPS(ad7606_pm_ops, ad7606_suspend, ad7606_resume); 701 EXPORT_SYMBOL_NS_GPL(ad7606_pm_ops, IIO_AD7606); 702 703 #endif 704 705 MODULE_AUTHOR("Michael Hennerich <michael.hennerich@analog.com>"); 706 MODULE_DESCRIPTION("Analog Devices AD7606 ADC"); 707 MODULE_LICENSE("GPL v2"); 708