lkml.org 
[lkml]   [2018]   [Feb]   [2]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH 4.14 151/156] iio: adc: stm32: fix scan of multiple channels with DMA
    Date
    4.14-stable review patch.  If anyone has any objections, please let me know.

    ------------------

    From: Fabrice Gasnier <fabrice.gasnier@st.com>

    commit 04e491ca9df60ffe8637d00d68e5ab8bc73b30d5 upstream.

    By default, watermark is set to '1'. Watermark is used to fine tune
    cyclic dma buffer period. In case watermark is left untouched (e.g. 1)
    and several channels are being scanned, buffer period is wrongly set
    (e.g. to 1 sample). As a consequence, data is never pushed to upper layer.
    Fix buffer period size, by taking scan channels number into account.

    Fixes: 2763ea0585c9 ("iio: adc: stm32: add optional dma support")

    Signed-off-by: Fabrice Gasnier <fabrice.gasnier@st.com>
    Signed-off-by: Jonathan Cameron <Jonathan.Cameron@huawei.com>
    Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

    ---
    drivers/iio/adc/stm32-adc.c | 3 ++-
    1 file changed, 2 insertions(+), 1 deletion(-)

    --- a/drivers/iio/adc/stm32-adc.c
    +++ b/drivers/iio/adc/stm32-adc.c
    @@ -1314,6 +1314,7 @@ static int stm32_adc_set_watermark(struc
    {
    struct stm32_adc *adc = iio_priv(indio_dev);
    unsigned int watermark = STM32_DMA_BUFFER_SIZE / 2;
    + unsigned int rx_buf_sz = STM32_DMA_BUFFER_SIZE;

    /*
    * dma cyclic transfers are used, buffer is split into two periods.
    @@ -1322,7 +1323,7 @@ static int stm32_adc_set_watermark(struc
    * - one buffer (period) driver can push with iio_trigger_poll().
    */
    watermark = min(watermark, val * (unsigned)(sizeof(u16)));
    - adc->rx_buf_sz = watermark * 2;
    + adc->rx_buf_sz = min(rx_buf_sz, watermark * 2 * adc->num_conv);

    return 0;
    }

    \
     
     \ /
      Last update: 2018-02-02 18:33    [W:3.742 / U:0.016 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site