Lines Matching +full:vref +full:- +full:p
1 // SPDX-License-Identifier: GPL-2.0
5 * Copyright (C) 2017, STMicroelectronics - All Rights Reserved
10 #include <linux/dma-mapping.h>
11 #include <linux/iio/adc/stm32-dfsdm-adc.h>
14 #include <linux/iio/hw-consumer.h>
16 #include <linux/iio/timer/stm32-lptim-trigger.h>
17 #include <linux/iio/timer/stm32-timer-trigger.h>
29 #include "stm32-dfsdm.h"
44 /* Limit filter output resolution to 31 bits. (i.e. sample range is +/-2^30) */
48 * Data from filters are in the range +/-2^(n-1)
49 * 2^(n-1) maximum positive value cannot be coded in 2's complement n bits
50 * An extra bit is required to avoid wrap-around of the binary code for 2^(n-1)
130 const struct stm32_dfsdm_str2field *p = list;
132 for (p = list; p && p->name; p++)
133 if (!strcmp(p->name, str))
134 return p->val;
136 return -EINVAL;
140 * struct stm32_dfsdm_trig_info - DFSDM trigger info
186 !strcmp(stm32_dfsdm_trigs[i].name, trig->name)) {
191 return -EINVAL;
201 unsigned int p = fl->ford; /* filter order (ford) */
202 struct stm32_dfsdm_filter_osr *flo = &fl->flo[fast];
214 if (fl->ford == DFSDM_FASTSINC_ORDER) {
216 p = 2;
227 else if (fl->ford == DFSDM_FASTSINC_ORDER)
230 d = fosr * (iosr - 1 + p) + p;
240 * res = m * fosr^p x iosr (with m=1, p=ford)
242 * res = m * fosr^p x iosr (with m=2, p=2)
245 for (i = p - 1; i > 0; i--) {
257 if (res >= flo->res) {
258 flo->res = res;
259 flo->fosr = fosr;
260 flo->iosr = iosr;
262 bits = fls(flo->res);
264 max = flo->res << 8;
267 if (flo->res > BIT(bits - 1))
270 max--;
272 shift = DFSDM_DATA_RES - bits;
281 flo->rshift = 0;
282 flo->lshift = shift;
294 flo->rshift = 1 - shift;
295 flo->lshift = 1;
296 max >>= flo->rshift;
298 flo->max = (s32)max;
299 flo->bits = bits;
302 fast, flo->fosr, flo->iosr,
303 flo->res, bits, flo->rshift,
304 flo->lshift);
309 if (!flo->res)
310 return -EINVAL;
319 struct stm32_dfsdm_filter *fl = &adc->dfsdm->fl_list[adc->fl_id];
322 memset(&fl->flo[0], 0, sizeof(fl->flo[0]));
323 memset(&fl->flo[1], 0, sizeof(fl->flo[1]));
328 dev_err(&indio_dev->dev,
331 return -EINVAL;
340 struct regmap *regmap = adc->dfsdm->regmap;
345 for_each_set_bit(bit, &adc->smask, sizeof(adc->smask) * BITS_PER_BYTE) {
346 chan = indio_dev->channels + bit;
347 ret = regmap_update_bits(regmap, DFSDM_CHCFGR1(chan->channel),
360 struct regmap *regmap = adc->dfsdm->regmap;
364 for_each_set_bit(bit, &adc->smask, sizeof(adc->smask) * BITS_PER_BYTE) {
365 chan = indio_dev->channels + bit;
366 regmap_update_bits(regmap, DFSDM_CHCFGR1(chan->channel),
375 unsigned int id = ch->id;
376 struct regmap *regmap = dfsdm->regmap;
381 DFSDM_CHCFGR1_SITP(ch->type));
386 DFSDM_CHCFGR1_SPICKSEL(ch->src));
391 DFSDM_CHCFGR1_CHINSEL(ch->alt_si));
398 struct stm32_dfsdm *dfsdm = adc->dfsdm;
402 ret = regmap_update_bits(dfsdm->regmap, DFSDM_CR1(fl_id),
408 if (adc->nconv > 1 || trig)
412 return regmap_update_bits(dfsdm->regmap, DFSDM_CR1(fl_id),
421 regmap_update_bits(dfsdm->regmap, DFSDM_CR1(fl_id),
430 struct regmap *regmap = adc->dfsdm->regmap;
459 struct regmap *regmap = adc->dfsdm->regmap;
460 struct stm32_dfsdm_filter *fl = &adc->dfsdm->fl_list[fl_id];
461 struct stm32_dfsdm_filter_osr *flo = &fl->flo[0];
466 fl->fast = 0;
472 if (adc->nconv == 1 && !trig && iio_buffer_enabled(indio_dev)) {
473 if (fl->flo[1].res >= fl->flo[0].res) {
474 fl->fast = 1;
475 flo = &fl->flo[1];
479 if (!flo->res)
480 return -EINVAL;
482 dev_dbg(&indio_dev->dev, "Samples actual resolution: %d bits",
483 min(flo->bits, (u32)DFSDM_DATA_RES - 1));
485 for_each_set_bit(bit, &adc->smask,
486 sizeof(adc->smask) * BITS_PER_BYTE) {
487 chan = indio_dev->channels + bit;
490 DFSDM_CHCFGR2(chan->channel),
492 DFSDM_CHCFGR2_DTRBS(flo->rshift));
505 struct regmap *regmap = adc->dfsdm->regmap;
506 struct stm32_dfsdm_filter *fl = &adc->dfsdm->fl_list[fl_id];
507 struct stm32_dfsdm_filter_osr *flo = &fl->flo[fl->fast];
515 DFSDM_FCR_IOSR(flo->iosr - 1));
521 DFSDM_FCR_FOSR(flo->fosr - 1));
526 DFSDM_FCR_FORD(fl->ford));
536 DFSDM_CR1_FAST(fl->fast));
542 * ----------------------------------------------------------------
545 * --------------|---------|--------------|----------|------------|
548 * --------------|---------|--------------|----------|------------|
551 * --------------|---------|--------------|----------|------------|
554 * --------------|---------|--------------|----------|------------|
557 * ----------------------------------------------------------------
559 if (adc->nconv == 1 && !trig) {
560 bit = __ffs(adc->smask);
561 chan = indio_dev->channels + bit;
564 cr1 = DFSDM_CR1_RCH(chan->channel);
570 cr1 |= DFSDM_CR1_RSYNC(fl->sync_mode);
573 for_each_set_bit(bit, &adc->smask,
574 sizeof(adc->smask) * BITS_PER_BYTE) {
575 chan = indio_dev->channels + bit;
576 jchg |= BIT(chan->channel);
583 cr1 = DFSDM_CR1_JSCAN((adc->nconv > 1) ? 1 : 0);
588 * - conversions in sync with filter 0
589 * - triggered conversions
591 if (!fl->sync_mode && !trig)
592 return -EINVAL;
593 cr1 |= DFSDM_CR1_JSYNC(fl->sync_mode);
606 int chan_idx = ch->scan_index;
609 ret = of_property_read_u32_index(indio_dev->dev.of_node,
610 "st,adc-channels", chan_idx,
611 &ch->channel);
613 dev_err(&indio_dev->dev,
614 " Error parsing 'st,adc-channels' for idx %d\n",
618 if (ch->channel >= dfsdm->num_chs) {
619 dev_err(&indio_dev->dev,
621 ch->channel, dfsdm->num_chs);
622 return -EINVAL;
625 ret = of_property_read_string_index(indio_dev->dev.of_node,
626 "st,adc-channel-names", chan_idx,
627 &ch->datasheet_name);
629 dev_err(&indio_dev->dev,
630 " Error parsing 'st,adc-channel-names' for idx %d\n",
635 df_ch = &dfsdm->ch_list[ch->channel];
636 df_ch->id = ch->channel;
638 ret = of_property_read_string_index(indio_dev->dev.of_node,
639 "st,adc-channel-types", chan_idx,
648 df_ch->type = val;
650 ret = of_property_read_string_index(indio_dev->dev.of_node,
651 "st,adc-channel-clk-src", chan_idx,
660 df_ch->src = val;
662 ret = of_property_read_u32_index(indio_dev->dev.of_node,
663 "st,adc-alt-channel", chan_idx,
664 &df_ch->alt_si);
666 df_ch->alt_si = 0;
682 ret = fwnode_property_read_u32(node, "reg", &ch->channel);
684 dev_err(&indio_dev->dev, "Missing channel index %d\n", ret);
688 if (ch->channel >= dfsdm->num_chs) {
689 dev_err(&indio_dev->dev, " Error bad channel number %d (max = %d)\n",
690 ch->channel, dfsdm->num_chs);
691 return -EINVAL;
696 ret = fwnode_property_read_string(node, "label", &ch->datasheet_name);
698 dev_err(&indio_dev->dev,
699 " Error parsing 'label' for idx %d\n", ch->channel);
704 df_ch = &dfsdm->ch_list[ch->channel];
705 df_ch->id = ch->channel;
707 ret = fwnode_property_read_string(node, "st,adc-channel-type", &of_str);
715 df_ch->type = val;
717 ret = fwnode_property_read_string(node, "st,adc-channel-clk-src", &of_str);
725 df_ch->src = val;
727 ret = fwnode_property_read_u32(node, "st,adc-alt-channel", &df_ch->alt_si);
728 if (ret != -EINVAL)
729 df_ch->alt_si = 0;
731 if (adc->dev_data->type == DFSDM_IIO) {
732 backend = devm_iio_backend_fwnode_get(&indio_dev->dev, NULL, node);
734 return dev_err_probe(&indio_dev->dev, PTR_ERR(backend),
736 adc->backend[ch->scan_index] = backend;
749 return snprintf(buf, PAGE_SIZE, "%d\n", adc->spi_freq);
762 dev_dbg(&indio_dev->dev,
770 adc->sample_freq = spi_freq / oversamp;
771 adc->oversamp = oversamp;
782 struct stm32_dfsdm_channel *ch = &adc->dfsdm->ch_list[chan->channel];
783 unsigned int sample_freq = adc->sample_freq;
787 dev_err(&indio_dev->dev, "enter %s\n", __func__);
789 if (ch->src != DFSDM_CHANNEL_SPI_CLOCK_EXTERNAL)
790 return -EPERM;
797 return -EINVAL;
804 adc->spi_freq = spi_freq;
813 struct regmap *regmap = adc->dfsdm->regmap;
816 ret = stm32_dfsdm_channels_configure(indio_dev, adc->fl_id, trig);
824 ret = stm32_dfsdm_filter_configure(indio_dev, adc->fl_id, trig);
828 ret = stm32_dfsdm_start_filter(adc, adc->fl_id, trig);
835 regmap_clear_bits(regmap, DFSDM_CR1(adc->fl_id), DFSDM_CR1_CFG_MASK);
845 struct regmap *regmap = adc->dfsdm->regmap;
847 stm32_dfsdm_stop_filter(adc->dfsdm, adc->fl_id);
849 regmap_clear_bits(regmap, DFSDM_CR1(adc->fl_id), DFSDM_CR1_CFG_MASK);
864 * - always one buffer (period) DMA is working on
865 * - one buffer (period) driver pushed to ASoC side.
868 adc->buf_sz = min(rx_buf_sz, watermark * 2 * adc->nconv);
878 status = dmaengine_tx_status(adc->dma_chan,
879 adc->dma_chan->cookie,
883 unsigned int i = adc->buf_sz - state.residue;
887 if (i >= adc->bufi)
888 size = i - adc->bufi;
890 size = adc->buf_sz + i - adc->bufi;
901 struct stm32_dfsdm_filter *fl = &adc->dfsdm->fl_list[adc->fl_id];
902 struct stm32_dfsdm_filter_osr *flo = &fl->flo[fl->fast];
903 unsigned int i = adc->nconv;
906 while (i--) {
909 /* Convert 2^(n-1) sample to 2^(n-1)-1 to avoid wrap-around */
910 if (*ptr > flo->max)
911 *ptr -= 1;
916 *ptr <<= flo->lshift;
938 dev_dbg(&indio_dev->dev, "pos = %d, available = %d\n",
939 adc->bufi, available);
940 old_pos = adc->bufi;
942 while (available >= indio_dev->scan_bytes) {
943 s32 *buffer = (s32 *)&adc->rx_buf[adc->bufi];
947 available -= indio_dev->scan_bytes;
948 adc->bufi += indio_dev->scan_bytes;
949 if (adc->bufi >= adc->buf_sz) {
950 if (adc->cb)
951 adc->cb(&adc->rx_buf[old_pos],
952 adc->buf_sz - old_pos, adc->cb_priv);
953 adc->bufi = 0;
965 if (adc->dev_data->type == DFSDM_IIO)
968 if (adc->cb)
969 adc->cb(&adc->rx_buf[old_pos], adc->bufi - old_pos,
970 adc->cb_priv);
977 * The DFSDM supports half-word transfers. However, for 16 bits record,
982 .src_addr = (dma_addr_t)adc->dfsdm->phys_base,
989 if (!adc->dma_chan)
990 return -EINVAL;
992 dev_dbg(&indio_dev->dev, "size=%d watermark=%d\n",
993 adc->buf_sz, adc->buf_sz / 2);
995 if (adc->nconv == 1 && !indio_dev->trig)
996 config.src_addr += DFSDM_RDATAR(adc->fl_id);
998 config.src_addr += DFSDM_JDATAR(adc->fl_id);
999 ret = dmaengine_slave_config(adc->dma_chan, &config);
1004 desc = dmaengine_prep_dma_cyclic(adc->dma_chan,
1005 adc->dma_buf,
1006 adc->buf_sz, adc->buf_sz / 2,
1010 return -EBUSY;
1012 desc->callback = stm32_dfsdm_dma_buffer_done;
1013 desc->callback_param = indio_dev;
1021 dma_async_issue_pending(adc->dma_chan);
1023 if (adc->nconv == 1 && !indio_dev->trig) {
1025 ret = regmap_set_bits(adc->dfsdm->regmap,
1026 DFSDM_CR1(adc->fl_id),
1030 ret = regmap_set_bits(adc->dfsdm->regmap,
1031 DFSDM_CR1(adc->fl_id),
1041 dmaengine_terminate_all(adc->dma_chan);
1050 if (!adc->dma_chan)
1053 regmap_clear_bits(adc->dfsdm->regmap, DFSDM_CR1(adc->fl_id),
1055 dmaengine_terminate_all(adc->dma_chan);
1063 adc->nconv = bitmap_weight(scan_mask, iio_get_masklength(indio_dev));
1064 adc->smask = *scan_mask;
1066 dev_dbg(&indio_dev->dev, "nconv=%d mask=%lx\n", adc->nconv, *scan_mask);
1078 adc->bufi = 0;
1080 if (adc->hwc) {
1081 ret = iio_hw_consumer_enable(adc->hwc);
1086 if (adc->backend) {
1087 while (adc->backend[i]) {
1088 ret = iio_backend_enable(adc->backend[i]);
1095 ret = stm32_dfsdm_start_dfsdm(adc->dfsdm);
1101 dev_err(&indio_dev->dev, "Can't start DMA\n");
1105 ret = stm32_dfsdm_start_conv(indio_dev, indio_dev->trig);
1107 dev_err(&indio_dev->dev, "Can't start conversion\n");
1116 stm32_dfsdm_stop_dfsdm(adc->dfsdm);
1118 if (adc->hwc)
1119 iio_hw_consumer_disable(adc->hwc);
1133 stm32_dfsdm_stop_dfsdm(adc->dfsdm);
1135 if (adc->backend) {
1136 while (adc->backend[i]) {
1137 iio_backend_disable(adc->backend[i]);
1142 if (adc->hwc)
1143 iio_hw_consumer_disable(adc->hwc);
1154 * stm32_dfsdm_get_buff_cb() - register a callback that will be called when
1159 * - data: pointer to data buffer
1160 * - size: size in byte of the data buffer
1161 * - private: pointer to consumer private structure.
1172 return -EINVAL;
1175 adc->cb = cb;
1176 adc->cb_priv = private;
1183 * stm32_dfsdm_release_buff_cb - unregister buffer callback
1192 return -EINVAL;
1195 adc->cb = NULL;
1196 adc->cb_priv = NULL;
1209 reinit_completion(&adc->completion);
1211 adc->buffer = res;
1213 ret = stm32_dfsdm_start_dfsdm(adc->dfsdm);
1217 ret = regmap_update_bits(adc->dfsdm->regmap, DFSDM_CR2(adc->fl_id),
1222 adc->nconv = 1;
1223 adc->smask = BIT(chan->scan_index);
1226 regmap_update_bits(adc->dfsdm->regmap, DFSDM_CR2(adc->fl_id),
1231 time_left = wait_for_completion_interruptible_timeout(&adc->completion,
1235 regmap_update_bits(adc->dfsdm->regmap, DFSDM_CR2(adc->fl_id),
1239 ret = -ETIMEDOUT;
1250 stm32_dfsdm_stop_dfsdm(adc->dfsdm);
1260 struct stm32_dfsdm_channel *ch = &adc->dfsdm->ch_list[chan->channel];
1262 int ret = -EINVAL;
1264 switch (ch->src) {
1266 spi_freq = adc->dfsdm->spi_master_freq;
1270 spi_freq = adc->dfsdm->spi_master_freq / 2;
1273 spi_freq = adc->spi_freq;
1279 return -EBUSY;
1283 dev_dbg(&indio_dev->dev,
1285 adc->sample_freq, spi_freq / val);
1286 adc->oversamp = val;
1287 adc->sample_freq = spi_freq / val;
1294 return -EINVAL;
1297 return -EBUSY;
1304 return -EINVAL;
1314 if (adc->hwc)
1315 ret = iio_hw_consumer_enable(adc->hwc);
1316 if (adc->backend)
1317 ret = iio_backend_enable(adc->backend[chan->scan_index]);
1319 dev_err(&indio_dev->dev,
1321 __func__, chan->channel);
1325 if (adc->hwc)
1326 iio_hw_consumer_disable(adc->hwc);
1327 if (adc->backend)
1328 iio_backend_disable(adc->backend[chan->scan_index]);
1330 dev_err(&indio_dev->dev,
1332 __func__, chan->channel);
1345 struct stm32_dfsdm_filter *fl = &adc->dfsdm->fl_list[adc->fl_id];
1346 struct stm32_dfsdm_filter_osr *flo = &fl->flo[fl->fast];
1347 u32 max = flo->max << (flo->lshift - chan->scan_type.shift);
1348 int idx = chan->scan_index;
1351 if (flo->lshift < chan->scan_type.shift)
1352 max = flo->max >> (chan->scan_type.shift - flo->lshift);
1357 return -EBUSY;
1366 *val = adc->oversamp;
1371 *val = adc->sample_freq;
1379 * than 2^n, where n = realbits - 1.
1384 if (adc->backend) {
1385 ret = iio_backend_read_scale(adc->backend[idx], chan, val, NULL);
1389 *val = div_u64((u64)*val * (u64)BIT(DFSDM_DATA_RES - 1), max);
1390 *val2 = chan->scan_type.realbits;
1391 if (chan->differential)
1398 * DFSDM output data are in the range [-2^n, 2^n],
1399 * with n = realbits - 1.
1400 * - Differential modulator:
1402 * - Single ended modulator:
1403 * Input is in [0V, Vref] range,
1404 * where 0V corresponds to -2^n, and Vref to 2^n.
1406 * offset = offset(sd) * vref / res(sd) * max / vref.
1408 if (adc->backend) {
1409 ret = iio_backend_read_offset(adc->backend[idx], chan, val, NULL);
1413 *val = div_u64((u64)max * *val, BIT(*val2 - 1));
1414 if (!chan->differential)
1420 return -EINVAL;
1426 return stm32_dfsdm_get_jextsel(indio_dev, trig) < 0 ? -EINVAL : 0;
1448 struct regmap *regmap = adc->dfsdm->regmap;
1451 regmap_read(regmap, DFSDM_ISR(adc->fl_id), &status);
1452 regmap_read(regmap, DFSDM_CR2(adc->fl_id), &int_en);
1456 regmap_read(regmap, DFSDM_RDATAR(adc->fl_id), adc->buffer);
1457 complete(&adc->completion);
1462 dev_warn(&indio_dev->dev, "Overrun detected\n");
1463 regmap_set_bits(regmap, DFSDM_ICR(adc->fl_id),
1489 if (adc->dma_chan) {
1490 dma_free_coherent(adc->dma_chan->device->dev,
1492 adc->rx_buf, adc->dma_buf);
1493 dma_release_channel(adc->dma_chan);
1502 adc->dma_chan = dma_request_chan(dev, "rx");
1503 if (IS_ERR(adc->dma_chan)) {
1504 int ret = PTR_ERR(adc->dma_chan);
1506 adc->dma_chan = NULL;
1510 adc->rx_buf = dma_alloc_coherent(adc->dma_chan->device->dev,
1512 &adc->dma_buf, GFP_KERNEL);
1513 if (!adc->rx_buf) {
1514 dma_release_channel(adc->dma_chan);
1515 return -ENOMEM;
1518 indio_dev->modes |= INDIO_BUFFER_SOFTWARE;
1519 indio_dev->setup_ops = &stm32_dfsdm_buffer_setup_ops;
1531 ret = stm32_dfsdm_generic_channel_parse_of(adc->dfsdm, indio_dev, ch, child);
1533 ret = stm32_dfsdm_channel_parse_of(adc->dfsdm, indio_dev, ch);
1535 return dev_err_probe(&indio_dev->dev, ret, "Failed to parse channel\n");
1537 ch->type = IIO_VOLTAGE;
1538 ch->indexed = 1;
1545 ch->info_mask_separate = BIT(IIO_CHAN_INFO_RAW) |
1550 ch->info_mask_separate = BIT(IIO_CHAN_INFO_RAW);
1553 ch->info_mask_shared_by_all = BIT(IIO_CHAN_INFO_OVERSAMPLING_RATIO) |
1556 if (adc->dev_data->type == DFSDM_AUDIO) {
1557 ch->ext_info = dfsdm_adc_audio_ext_info;
1558 ch->scan_index = 0;
1560 ch->scan_type.shift = 8;
1562 ch->scan_type.sign = 's';
1563 ch->scan_type.realbits = 24;
1564 ch->scan_type.storagebits = 32;
1566 return stm32_dfsdm_chan_configure(adc->dfsdm,
1567 &adc->dfsdm->ch_list[ch->channel]);
1572 int num_ch = indio_dev->num_channels;
1580 return dev_err_probe(&indio_dev->dev, ret, "Channels init failed\n");
1590 device_for_each_child_node_scoped(&indio_dev->dev, child) {
1598 return dev_err_probe(&indio_dev->dev, ret, "Channels init failed\n");
1614 /* If st,adc-channels is defined legacy binding is used. Else assume generic binding. */
1615 num_ch = of_property_count_u32_elems(indio_dev->dev.of_node, "st,adc-channels");
1619 ch = devm_kzalloc(&indio_dev->dev, sizeof(*ch), GFP_KERNEL);
1621 return -ENOMEM;
1623 indio_dev->num_channels = 1;
1624 indio_dev->channels = ch;
1632 dev_err(&indio_dev->dev, "Channels init failed\n");
1635 ch->info_mask_separate = BIT(IIO_CHAN_INFO_SAMP_FREQ);
1637 d_ch = &adc->dfsdm->ch_list[ch->channel];
1638 if (d_ch->src != DFSDM_CHANNEL_SPI_CLOCK_EXTERNAL)
1639 adc->spi_freq = adc->dfsdm->spi_master_freq;
1651 adc->oversamp = DFSDM_DEFAULT_OVERSAMPLING;
1652 ret = stm32_dfsdm_compute_all_osrs(indio_dev, adc->oversamp);
1656 num_ch = device_get_child_node_count(&indio_dev->dev);
1659 num_ch = of_property_count_u32_elems(indio_dev->dev.of_node, "st,adc-channels");
1661 dev_err(&indio_dev->dev, "Bad st,adc-channels\n");
1668 if (num_ch > adc->dfsdm->num_chs) {
1669 dev_err(&indio_dev->dev, "Number of channel [%d] exceeds [%d]\n",
1670 num_ch, adc->dfsdm->num_chs);
1671 return -EINVAL;
1673 indio_dev->num_channels = num_ch;
1677 adc->hwc = devm_iio_hw_consumer_alloc(&indio_dev->dev);
1678 if (IS_ERR(adc->hwc))
1679 return dev_err_probe(&indio_dev->dev, -EPROBE_DEFER,
1683 adc->hwc = NULL;
1685 adc->backend = devm_kcalloc(&indio_dev->dev, num_ch, sizeof(*adc->backend),
1687 if (!adc->backend)
1688 return -ENOMEM;
1691 ch = devm_kcalloc(&indio_dev->dev, num_ch, sizeof(*ch), GFP_KERNEL);
1693 return -ENOMEM;
1694 indio_dev->channels = ch;
1703 init_completion(&adc->completion);
1708 if (ret != -ENODEV)
1721 dev_err(&indio_dev->dev, "buffer setup failed\n");
1726 indio_dev->modes |= INDIO_HARDWARE_TRIGGERED;
1743 .compatible = "st,stm32-dfsdm-adc",
1747 .compatible = "st,stm32-dfsdm-dmic",
1756 struct device *dev = &pdev->dev;
1758 struct device_node *np = dev->of_node;
1768 return -ENOMEM;
1772 adc->dfsdm = dev_get_drvdata(dev->parent);
1774 iio->dev.of_node = np;
1775 iio->modes = INDIO_DIRECT_MODE;
1779 ret = of_property_read_u32(dev->of_node, "reg", &adc->fl_id);
1780 if (ret != 0 || adc->fl_id >= adc->dfsdm->num_fls) {
1782 return -EINVAL;
1785 name = devm_kzalloc(dev, sizeof("dfsdm-adc0"), GFP_KERNEL);
1787 return -ENOMEM;
1788 if (dev_data->type == DFSDM_AUDIO) {
1789 iio->info = &stm32_dfsdm_info_audio;
1790 snprintf(name, sizeof("dfsdm-pdm0"), "dfsdm-pdm%d", adc->fl_id);
1792 iio->info = &stm32_dfsdm_info_adc;
1793 snprintf(name, sizeof("dfsdm-adc0"), "dfsdm-adc%d", adc->fl_id);
1795 iio->name = name;
1806 0, pdev->name, iio);
1812 ret = of_property_read_u32(dev->of_node, "st,filter-order", &val);
1818 adc->dfsdm->fl_list[adc->fl_id].ford = val;
1820 ret = of_property_read_u32(dev->of_node, "st,filter0-sync", &val);
1822 adc->dfsdm->fl_list[adc->fl_id].sync_mode = val;
1824 adc->dev_data = dev_data;
1825 ret = dev_data->init(dev, iio);
1833 if (dev_data->type == DFSDM_AUDIO) {
1856 if (adc->dev_data->type == DFSDM_AUDIO)
1857 of_platform_depopulate(&pdev->dev);
1881 for (i = 0; i < indio_dev->num_channels; i++) {
1882 chan = indio_dev->channels + i;
1883 ch = &adc->dfsdm->ch_list[chan->channel];
1884 ret = stm32_dfsdm_chan_configure(adc->dfsdm, ch);
1901 .name = "stm32-dfsdm-adc",