lkml.org 
[lkml]   [2020]   [Oct]   [27]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
    Patch in this message
    /
    From
    Subject[PATCH v9 06/14] ASoC: sun4i-i2s: Fix sun8i volatile regs
    Date
    The FIFO TX reg is volatile and sun8i i2s register
    mapping is different from sun4i.

    Even if in this case it's doesn't create an issue,
    Avoid setting some regs that are undefined in sun8i.

    Acked-by: Maxime Ripard <mripard@kernel.org>
    Reviewed-by: Chen-Yu Tsai <wens@csie.org>
    Signed-off-by: Clément Péron <peron.clem@gmail.com>
    ---
    sound/soc/sunxi/sun4i-i2s.c | 15 +++++++++++----
    1 file changed, 11 insertions(+), 4 deletions(-)

    diff --git a/sound/soc/sunxi/sun4i-i2s.c b/sound/soc/sunxi/sun4i-i2s.c
    index 39b56d0de1fd..83537538f8ee 100644
    --- a/sound/soc/sunxi/sun4i-i2s.c
    +++ b/sound/soc/sunxi/sun4i-i2s.c
    @@ -1162,12 +1162,19 @@ static bool sun8i_i2s_rd_reg(struct device *dev, unsigned int reg)

    static bool sun8i_i2s_volatile_reg(struct device *dev, unsigned int reg)
    {
    - if (reg == SUN8I_I2S_INT_STA_REG)
    + switch (reg) {
    + case SUN4I_I2S_FIFO_CTRL_REG:
    + case SUN4I_I2S_FIFO_RX_REG:
    + case SUN4I_I2S_FIFO_STA_REG:
    + case SUN4I_I2S_RX_CNT_REG:
    + case SUN4I_I2S_TX_CNT_REG:
    + case SUN8I_I2S_FIFO_TX_REG:
    + case SUN8I_I2S_INT_STA_REG:
    return true;
    - if (reg == SUN8I_I2S_FIFO_TX_REG)
    - return false;

    - return sun4i_i2s_volatile_reg(dev, reg);
    + default:
    + return false;
    + }
    }

    static const struct reg_default sun4i_i2s_reg_defaults[] = {
    --
    2.25.1
    \
     
     \ /
      Last update: 2020-10-27 19:33    [W:4.494 / U:0.008 seconds]
    ©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site