Skip to content

Commit

Permalink
iio: adc: adi-axi-adc: set data format
Browse files Browse the repository at this point in the history
Add support for selecting the data format within the AXI ADC ip.

Signed-off-by: Antoniu Miclaus <[email protected]>
  • Loading branch information
amiclaus committed Aug 1, 2024
1 parent 683e3f6 commit 13807bd
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions drivers/iio/adc/adi-axi-adc.c
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@
#define ADI_AXI_ADC_REG_CTRL 0x0044
#define ADI_AXI_ADC_CTRL_DDR_EDGESEL_MASK BIT(1)

#define ADI_AXI_ADC_REG_CNTRL_3 0x004c

/* ADC Channel controls */

#define ADI_AXI_REG_CHAN_CTRL(c) (0x0400 + (c) * 0x40)
Expand Down Expand Up @@ -255,6 +257,24 @@ static int axi_adc_interface_type_get(struct iio_backend *back,
return 0;
}

static int axi_adc_data_size_set(struct iio_backend *back,
ssize_t size)
{
struct adi_axi_adc_state *st = iio_backend_get_priv(back);
unsigned int val;

if (size <= 20)
val = 0;
else if (size <= 24)
val = 1;
else if (size <= 32)
val = 3;
else
return -EINVAL;

return regmap_write(st->regmap, ADI_AXI_ADC_REG_CNTRL_3, val);
}

static struct iio_buffer *axi_adc_request_buffer(struct iio_backend *back,
struct iio_dev *indio_dev)
{
Expand Down Expand Up @@ -292,6 +312,7 @@ static const struct iio_backend_ops adi_axi_adc_generic = {
.test_pattern_set = axi_adc_test_pattern_set,
.chan_status = axi_adc_chan_status,
.interface_type_get = axi_adc_interface_type_get,
.data_size_set = axi_adc_data_size_set,
};

static int adi_axi_adc_probe(struct platform_device *pdev)
Expand Down

0 comments on commit 13807bd

Please sign in to comment.