]> www.infradead.org Git - linux.git/commitdiff
iio: adc: adi-axi-adc: make sure DRP is locked on enable
authorNuno Sa <nuno.sa@analog.com>
Fri, 31 May 2024 09:41:55 +0000 (11:41 +0200)
committerJonathan Cameron <Jonathan.Cameron@huawei.com>
Tue, 4 Jun 2024 18:53:07 +0000 (19:53 +0100)
When enabling the core, make sure DRP (Dynamic Reconfiguration Port)
is locked. Most of the designs don't really use it but we still get the
lock bit set. So let's do it all the time so the code is generic.

While at it reduce the timeout time to 1 microsecond as it seems to be
enough and goes in line with what we have on the similar DAC core
(adi-axi-dac).

Signed-off-by: Nuno Sa <nuno.sa@analog.com>
Link: https://lore.kernel.org/r/20240531-dev-axi-adc-drp-v3-2-e3fa79447c67@analog.com
Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
drivers/iio/adc/adi-axi-adc.c

index bf51d619ebbc9fc916758af0142d5cf3c94a2b93..0f8bd1d7513120440e86734ec358fba535e2d273 100644 (file)
@@ -42,6 +42,9 @@
 #define ADI_AXI_ADC_REG_CTRL                   0x0044
 #define    ADI_AXI_ADC_CTRL_DDR_EDGESEL_MASK   BIT(1)
 
+#define ADI_AXI_ADC_REG_DRP_STATUS             0x0074
+#define   ADI_AXI_ADC_DRP_LOCKED               BIT(17)
+
 /* ADC Channel controls */
 
 #define ADI_AXI_REG_CHAN_CTRL(c)               (0x0400 + (c) * 0x40)
@@ -83,6 +86,7 @@ struct adi_axi_adc_state {
 static int axi_adc_enable(struct iio_backend *back)
 {
        struct adi_axi_adc_state *st = iio_backend_get_priv(back);
+       unsigned int __val;
        int ret;
 
        guard(mutex)(&st->lock);
@@ -91,7 +95,17 @@ static int axi_adc_enable(struct iio_backend *back)
        if (ret)
                return ret;
 
-       fsleep(10000);
+       /*
+        * Make sure the DRP (Dynamic Reconfiguration Port) is locked. Not all
+        * designs really use it but if they don't we still get the lock bit
+        * set. So let's do it all the time so the code is generic.
+        */
+       ret = regmap_read_poll_timeout(st->regmap, ADI_AXI_ADC_REG_DRP_STATUS,
+                                      __val, __val & ADI_AXI_ADC_DRP_LOCKED,
+                                      100, 1000);
+       if (ret)
+               return ret;
+
        return regmap_set_bits(st->regmap, ADI_AXI_REG_RSTN,
                               ADI_AXI_REG_RSTN_RSTN | ADI_AXI_REG_RSTN_MMCM_RSTN);
 }