Message ID | 20220706211330.120198-1-aidanmacdonald.0x0@gmail.com |
---|---|
Headers | show |
Series | ASoC: cleanups and improvements for jz4740-i2s | expand |
Hi Aidan, Le mer., juil. 6 2022 at 22:13:22 +0100, Aidan MacDonald <aidanmacdonald.0x0@gmail.com> a écrit : > Using regmap for accessing the AIC registers makes the driver a > little easier to read, and later refactors can take advantage of > regmap APIs to further simplify the driver. > > Signed-off-by: Aidan MacDonald <aidanmacdonald.0x0@gmail.com> > --- > sound/soc/jz4740/Kconfig | 1 + > sound/soc/jz4740/jz4740-i2s.c | 99 > +++++++++++++++-------------------- > 2 files changed, 42 insertions(+), 58 deletions(-) > > diff --git a/sound/soc/jz4740/Kconfig b/sound/soc/jz4740/Kconfig > index e72f826062e9..dd3b4507fbe6 100644 > --- a/sound/soc/jz4740/Kconfig > +++ b/sound/soc/jz4740/Kconfig > @@ -3,6 +3,7 @@ config SND_JZ4740_SOC_I2S > tristate "SoC Audio (I2S protocol) for Ingenic JZ4740 SoC" > depends on MIPS || COMPILE_TEST > depends on HAS_IOMEM > + select REGMAP_MMIO > select SND_SOC_GENERIC_DMAENGINE_PCM > help > Say Y if you want to use I2S protocol and I2S codec on Ingenic > JZ4740 > diff --git a/sound/soc/jz4740/jz4740-i2s.c > b/sound/soc/jz4740/jz4740-i2s.c > index ecd8df70d39c..66a901f56392 100644 > --- a/sound/soc/jz4740/jz4740-i2s.c > +++ b/sound/soc/jz4740/jz4740-i2s.c > @@ -9,6 +9,7 @@ > #include <linux/module.h> > #include <linux/mod_devicetable.h> > #include <linux/platform_device.h> > +#include <linux/regmap.h> > #include <linux/slab.h> > > #include <linux/clk.h> > @@ -94,7 +95,7 @@ struct i2s_soc_info { > > struct jz4740_i2s { > struct resource *mem; > - void __iomem *base; > + struct regmap *regmap; > > struct clk *clk_aic; > struct clk *clk_i2s; > @@ -105,39 +106,24 @@ struct jz4740_i2s { > const struct i2s_soc_info *soc_info; > }; > > -static inline uint32_t jz4740_i2s_read(const struct jz4740_i2s *i2s, > - unsigned int reg) > -{ > - return readl(i2s->base + reg); > -} > - > -static inline void jz4740_i2s_write(const struct jz4740_i2s *i2s, > - unsigned int reg, uint32_t value) > -{ > - writel(value, i2s->base + reg); > -} > - > static int jz4740_i2s_startup(struct snd_pcm_substream *substream, > struct snd_soc_dai *dai) > { > struct jz4740_i2s *i2s = snd_soc_dai_get_drvdata(dai); > - uint32_t conf, ctrl; > int ret; > > if (snd_soc_dai_active(dai)) > return 0; > > - ctrl = jz4740_i2s_read(i2s, JZ_REG_AIC_CTRL); > - ctrl |= JZ_AIC_CTRL_FLUSH; > - jz4740_i2s_write(i2s, JZ_REG_AIC_CTRL, ctrl); > + regmap_write_bits(i2s->regmap, JZ_REG_AIC_CTRL, > + JZ_AIC_CTRL_FLUSH, JZ_AIC_CTRL_FLUSH); I don't think you need regmap_write_bits() here, since there is no cache to bypass. You could use regmap_update_bits(), or even better, regmap_set_bits(). > > ret = clk_prepare_enable(i2s->clk_i2s); > if (ret) > return ret; > > - conf = jz4740_i2s_read(i2s, JZ_REG_AIC_CONF); > - conf |= JZ_AIC_CONF_ENABLE; > - jz4740_i2s_write(i2s, JZ_REG_AIC_CONF, conf); > + regmap_update_bits(i2s->regmap, JZ_REG_AIC_CONF, > + JZ_AIC_CONF_ENABLE, JZ_AIC_CONF_ENABLE); Use regmap_set_bits() when you want to set all the bits of the mask. > > return 0; > } > @@ -146,14 +132,12 @@ static void jz4740_i2s_shutdown(struct > snd_pcm_substream *substream, > struct snd_soc_dai *dai) > { > struct jz4740_i2s *i2s = snd_soc_dai_get_drvdata(dai); > - uint32_t conf; > > if (snd_soc_dai_active(dai)) > return; > > - conf = jz4740_i2s_read(i2s, JZ_REG_AIC_CONF); > - conf &= ~JZ_AIC_CONF_ENABLE; > - jz4740_i2s_write(i2s, JZ_REG_AIC_CONF, conf); > + regmap_update_bits(i2s->regmap, JZ_REG_AIC_CONF, > + JZ_AIC_CONF_ENABLE, 0); Use regmap_clear_bits() when you want to clear all bits of the mask. Otherwise, looks fairly good! Cheers, -Paul > > clk_disable_unprepare(i2s->clk_i2s); > } > @@ -162,8 +146,6 @@ static int jz4740_i2s_trigger(struct > snd_pcm_substream *substream, int cmd, > struct snd_soc_dai *dai) > { > struct jz4740_i2s *i2s = snd_soc_dai_get_drvdata(dai); > - > - uint32_t ctrl; > uint32_t mask; > > if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) > @@ -171,38 +153,30 @@ static int jz4740_i2s_trigger(struct > snd_pcm_substream *substream, int cmd, > else > mask = JZ_AIC_CTRL_ENABLE_CAPTURE | JZ_AIC_CTRL_ENABLE_RX_DMA; > > - ctrl = jz4740_i2s_read(i2s, JZ_REG_AIC_CTRL); > - > switch (cmd) { > case SNDRV_PCM_TRIGGER_START: > case SNDRV_PCM_TRIGGER_RESUME: > case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: > - ctrl |= mask; > + regmap_update_bits(i2s->regmap, JZ_REG_AIC_CTRL, mask, mask); > break; > case SNDRV_PCM_TRIGGER_STOP: > case SNDRV_PCM_TRIGGER_SUSPEND: > case SNDRV_PCM_TRIGGER_PAUSE_PUSH: > - ctrl &= ~mask; > + regmap_update_bits(i2s->regmap, JZ_REG_AIC_CTRL, mask, 0); > break; > default: > return -EINVAL; > } > > - jz4740_i2s_write(i2s, JZ_REG_AIC_CTRL, ctrl); > - > return 0; > } > > static int jz4740_i2s_set_fmt(struct snd_soc_dai *dai, unsigned int > fmt) > { > struct jz4740_i2s *i2s = snd_soc_dai_get_drvdata(dai); > - > - uint32_t format = 0; > - uint32_t conf; > - > - conf = jz4740_i2s_read(i2s, JZ_REG_AIC_CONF); > - > - conf &= ~(JZ_AIC_CONF_BIT_CLK_MASTER | JZ_AIC_CONF_SYNC_CLK_MASTER); > + const unsigned int conf_mask = JZ_AIC_CONF_BIT_CLK_MASTER | > + JZ_AIC_CONF_SYNC_CLK_MASTER; > + unsigned int conf = 0, format = 0; > > switch (fmt & SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK) { > case SND_SOC_DAIFMT_BP_FP: > @@ -238,8 +212,8 @@ static int jz4740_i2s_set_fmt(struct snd_soc_dai > *dai, unsigned int fmt) > return -EINVAL; > } > > - jz4740_i2s_write(i2s, JZ_REG_AIC_CONF, conf); > - jz4740_i2s_write(i2s, JZ_REG_AIC_I2S_FMT, format); > + regmap_update_bits(i2s->regmap, JZ_REG_AIC_CONF, conf_mask, conf); > + regmap_write(i2s->regmap, JZ_REG_AIC_I2S_FMT, format); > > return 0; > } > @@ -252,9 +226,9 @@ static int jz4740_i2s_hw_params(struct > snd_pcm_substream *substream, > uint32_t ctrl, div_reg; > int div; > > - ctrl = jz4740_i2s_read(i2s, JZ_REG_AIC_CTRL); > + regmap_read(i2s->regmap, JZ_REG_AIC_CTRL, &ctrl); > + regmap_read(i2s->regmap, JZ_REG_AIC_CLK_DIV, &div_reg); > > - div_reg = jz4740_i2s_read(i2s, JZ_REG_AIC_CLK_DIV); > div = clk_get_rate(i2s->clk_i2s) / (64 * params_rate(params)); > > switch (params_format(params)) { > @@ -291,8 +265,8 @@ static int jz4740_i2s_hw_params(struct > snd_pcm_substream *substream, > } > } > > - jz4740_i2s_write(i2s, JZ_REG_AIC_CTRL, ctrl); > - jz4740_i2s_write(i2s, JZ_REG_AIC_CLK_DIV, div_reg); > + regmap_write(i2s->regmap, JZ_REG_AIC_CTRL, ctrl); > + regmap_write(i2s->regmap, JZ_REG_AIC_CLK_DIV, div_reg); > > return 0; > } > @@ -329,12 +303,10 @@ static int jz4740_i2s_set_sysclk(struct > snd_soc_dai *dai, int clk_id, > static int jz4740_i2s_suspend(struct snd_soc_component *component) > { > struct jz4740_i2s *i2s = snd_soc_component_get_drvdata(component); > - uint32_t conf; > > if (snd_soc_component_active(component)) { > - conf = jz4740_i2s_read(i2s, JZ_REG_AIC_CONF); > - conf &= ~JZ_AIC_CONF_ENABLE; > - jz4740_i2s_write(i2s, JZ_REG_AIC_CONF, conf); > + regmap_update_bits(i2s->regmap, JZ_REG_AIC_CONF, > + JZ_AIC_CONF_ENABLE, 0); > > clk_disable_unprepare(i2s->clk_i2s); > } > @@ -347,7 +319,6 @@ static int jz4740_i2s_suspend(struct > snd_soc_component *component) > static int jz4740_i2s_resume(struct snd_soc_component *component) > { > struct jz4740_i2s *i2s = snd_soc_component_get_drvdata(component); > - uint32_t conf; > int ret; > > ret = clk_prepare_enable(i2s->clk_aic); > @@ -361,9 +332,8 @@ static int jz4740_i2s_resume(struct > snd_soc_component *component) > return ret; > } > > - conf = jz4740_i2s_read(i2s, JZ_REG_AIC_CONF); > - conf |= JZ_AIC_CONF_ENABLE; > - jz4740_i2s_write(i2s, JZ_REG_AIC_CONF, conf); > + regmap_update_bits(i2s->regmap, JZ_REG_AIC_CONF, > + JZ_AIC_CONF_ENABLE, JZ_AIC_CONF_ENABLE); > } > > return 0; > @@ -396,8 +366,8 @@ static int jz4740_i2s_dai_probe(struct > snd_soc_dai *dai) > JZ_AIC_CONF_INTERNAL_CODEC; > } > > - jz4740_i2s_write(i2s, JZ_REG_AIC_CONF, JZ_AIC_CONF_RESET); > - jz4740_i2s_write(i2s, JZ_REG_AIC_CONF, conf); > + regmap_write(i2s->regmap, JZ_REG_AIC_CONF, JZ_AIC_CONF_RESET); > + regmap_write(i2s->regmap, JZ_REG_AIC_CONF, conf); > > return 0; > } > @@ -495,11 +465,19 @@ static const struct of_device_id > jz4740_of_matches[] = { > }; > MODULE_DEVICE_TABLE(of, jz4740_of_matches); > > +static const struct regmap_config jz4740_i2s_regmap_config = { > + .reg_bits = 32, > + .reg_stride = 4, > + .val_bits = 32, > + .max_register = JZ_REG_AIC_FIFO, > +}; > + > static int jz4740_i2s_dev_probe(struct platform_device *pdev) > { > struct device *dev = &pdev->dev; > struct jz4740_i2s *i2s; > struct resource *mem; > + void __iomem *regs; > int ret; > > i2s = devm_kzalloc(dev, sizeof(*i2s), GFP_KERNEL); > @@ -508,9 +486,9 @@ static int jz4740_i2s_dev_probe(struct > platform_device *pdev) > > i2s->soc_info = device_get_match_data(dev); > > - i2s->base = devm_platform_get_and_ioremap_resource(pdev, 0, &mem); > - if (IS_ERR(i2s->base)) > - return PTR_ERR(i2s->base); > + regs = devm_platform_get_and_ioremap_resource(pdev, 0, &mem); > + if (IS_ERR(regs)) > + return PTR_ERR(regs); > > i2s->playback_dma_data.maxburst = 16; > i2s->playback_dma_data.addr = mem->start + JZ_REG_AIC_FIFO; > @@ -526,6 +504,11 @@ static int jz4740_i2s_dev_probe(struct > platform_device *pdev) > if (IS_ERR(i2s->clk_i2s)) > return PTR_ERR(i2s->clk_i2s); > > + i2s->regmap = devm_regmap_init_mmio(&pdev->dev, regs, > + &jz4740_i2s_regmap_config); > + if (IS_ERR(i2s->regmap)) > + return PTR_ERR(i2s->regmap); > + > platform_set_drvdata(pdev, i2s); > > ret = devm_snd_soc_register_component(dev, &jz4740_i2s_component, > -- > 2.35.1 >
Hi Aidan, Le mer., juil. 6 2022 at 22:13:20 +0100, Aidan MacDonald <aidanmacdonald.0x0@gmail.com> a écrit : > This driver doesn't require Open Firmware support. Remove the > OF-specific includes and drop the Kconfig dependency. > > Signed-off-by: Aidan MacDonald <aidanmacdonald.0x0@gmail.com> Acked-by: Paul Cercueil <paul@crapouillou.net> Cheers, -Paul > --- > sound/soc/jz4740/Kconfig | 2 +- > sound/soc/jz4740/jz4740-i2s.c | 3 +-- > 2 files changed, 2 insertions(+), 3 deletions(-) > > diff --git a/sound/soc/jz4740/Kconfig b/sound/soc/jz4740/Kconfig > index 29144720cb62..e72f826062e9 100644 > --- a/sound/soc/jz4740/Kconfig > +++ b/sound/soc/jz4740/Kconfig > @@ -2,7 +2,7 @@ > config SND_JZ4740_SOC_I2S > tristate "SoC Audio (I2S protocol) for Ingenic JZ4740 SoC" > depends on MIPS || COMPILE_TEST > - depends on OF && HAS_IOMEM > + depends on HAS_IOMEM > select SND_SOC_GENERIC_DMAENGINE_PCM > help > Say Y if you want to use I2S protocol and I2S codec on Ingenic > JZ4740 > diff --git a/sound/soc/jz4740/jz4740-i2s.c > b/sound/soc/jz4740/jz4740-i2s.c > index 79afac0c5003..298ff0a83931 100644 > --- a/sound/soc/jz4740/jz4740-i2s.c > +++ b/sound/soc/jz4740/jz4740-i2s.c > @@ -5,10 +5,9 @@ > > #include <linux/init.h> > #include <linux/io.h> > -#include <linux/of.h> > -#include <linux/of_device.h> > #include <linux/kernel.h> > #include <linux/module.h> > +#include <linux/mod_devicetable.h> > #include <linux/platform_device.h> > #include <linux/slab.h> > > -- > 2.35.1 >
Le mer., juil. 6 2022 at 22:13:26 +0100, Aidan MacDonald <aidanmacdonald.0x0@gmail.com> a écrit : > These macros are unused and can be dropped; the information is now > encoded in regmap fields. > > Signed-off-by: Aidan MacDonald <aidanmacdonald.0x0@gmail.com> I think you can remove the macros in the patches where they are being made obsolete. Cheers, -Paul > --- > sound/soc/jz4740/jz4740-i2s.c | 13 ------------- > 1 file changed, 13 deletions(-) > > diff --git a/sound/soc/jz4740/jz4740-i2s.c > b/sound/soc/jz4740/jz4740-i2s.c > index 3c3cf78bf848..b8d2723c5f90 100644 > --- a/sound/soc/jz4740/jz4740-i2s.c > +++ b/sound/soc/jz4740/jz4740-i2s.c > @@ -35,8 +35,6 @@ > #define JZ_REG_AIC_CLK_DIV 0x30 > #define JZ_REG_AIC_FIFO 0x34 > > -#define JZ_AIC_CONF_FIFO_RX_THRESHOLD_MASK (0xf << 12) > -#define JZ_AIC_CONF_FIFO_TX_THRESHOLD_MASK (0xf << 8) > #define JZ_AIC_CONF_OVERFLOW_PLAY_LAST BIT(6) > #define JZ_AIC_CONF_INTERNAL_CODEC BIT(5) > #define JZ_AIC_CONF_I2S BIT(4) > @@ -45,11 +43,6 @@ > #define JZ_AIC_CONF_SYNC_CLK_MASTER BIT(1) > #define JZ_AIC_CONF_ENABLE BIT(0) > > -#define JZ_AIC_CONF_FIFO_RX_THRESHOLD_OFFSET 12 > -#define JZ_AIC_CONF_FIFO_TX_THRESHOLD_OFFSET 8 > -#define JZ4760_AIC_CONF_FIFO_RX_THRESHOLD_OFFSET 24 > -#define JZ4760_AIC_CONF_FIFO_TX_THRESHOLD_OFFSET 16 > - > #define JZ_AIC_CTRL_OUTPUT_SAMPLE_SIZE GENMASK(21, 19) > #define JZ_AIC_CTRL_INPUT_SAMPLE_SIZE GENMASK(18, 16) > #define JZ_AIC_CTRL_ENABLE_RX_DMA BIT(15) > @@ -73,12 +66,6 @@ > > #define JZ_AIC_I2S_STATUS_BUSY BIT(2) > > -#define JZ_AIC_CLK_DIV_MASK 0xf > -#define I2SDIV_DV_SHIFT 0 > -#define I2SDIV_DV_MASK (0xf << I2SDIV_DV_SHIFT) > -#define I2SDIV_IDV_SHIFT 8 > -#define I2SDIV_IDV_MASK (0xf << I2SDIV_IDV_SHIFT) > - > struct i2s_soc_info { > struct snd_soc_dai_driver *dai; > > -- > 2.35.1 >
Le mer., juil. 6 2022 at 22:13:28 +0100, Aidan MacDonald <aidanmacdonald.0x0@gmail.com> a écrit : > On some Ingenic SoCs, such as the X1000, there is a programmable > divider used to generate the I2S system clock from a PLL, rather > than a fixed PLL/2 clock. It doesn't make much sense to call the > clock "pll half" on those SoCs, so the clock name should really be > a SoC-dependent value. Do you really need the .set_sysclk() callback? I've never seen it used on any of the Ingenic boards I have, so to me it's pretty much dead code. Unless you do use this callback, I'd suggest to drop this patch until you do need it. Cheers, -Paul > Signed-off-by: Aidan MacDonald <aidanmacdonald.0x0@gmail.com> > --- > sound/soc/jz4740/jz4740-i2s.c | 8 +++++++- > 1 file changed, 7 insertions(+), 1 deletion(-) > > diff --git a/sound/soc/jz4740/jz4740-i2s.c > b/sound/soc/jz4740/jz4740-i2s.c > index 3a21ee9d34d1..80b355d715ce 100644 > --- a/sound/soc/jz4740/jz4740-i2s.c > +++ b/sound/soc/jz4740/jz4740-i2s.c > @@ -71,6 +71,8 @@ struct i2s_soc_info { > struct reg_field field_tx_fifo_thresh; > struct reg_field field_i2sdiv_capture; > struct reg_field field_i2sdiv_playback; > + > + const char *pll_clk_name; > }; > > struct jz4740_i2s { > @@ -265,7 +267,7 @@ static int jz4740_i2s_set_sysclk(struct > snd_soc_dai *dai, int clk_id, > clk_set_parent(i2s->clk_i2s, parent); > break; > case JZ4740_I2S_CLKSRC_PLL: > - parent = clk_get(NULL, "pll half"); > + parent = clk_get(NULL, i2s->soc_info->pll_clk_name); > if (IS_ERR(parent)) > return PTR_ERR(parent); > clk_set_parent(i2s->clk_i2s, parent); > @@ -387,6 +389,7 @@ static const struct i2s_soc_info > jz4740_i2s_soc_info = { > .field_tx_fifo_thresh = REG_FIELD(JZ_REG_AIC_CONF, 8, 11), > .field_i2sdiv_capture = REG_FIELD(JZ_REG_AIC_CLK_DIV, 0, 3), > .field_i2sdiv_playback = REG_FIELD(JZ_REG_AIC_CLK_DIV, 0, 3), > + .pll_clk_name = "pll half", > }; > > static const struct i2s_soc_info jz4760_i2s_soc_info = { > @@ -395,6 +398,7 @@ static const struct i2s_soc_info > jz4760_i2s_soc_info = { > .field_tx_fifo_thresh = REG_FIELD(JZ_REG_AIC_CONF, 16, 20), > .field_i2sdiv_capture = REG_FIELD(JZ_REG_AIC_CLK_DIV, 0, 3), > .field_i2sdiv_playback = REG_FIELD(JZ_REG_AIC_CLK_DIV, 0, 3), > + .pll_clk_name = "pll half", > }; > > static struct snd_soc_dai_driver jz4770_i2s_dai = { > @@ -421,6 +425,7 @@ static const struct i2s_soc_info > jz4770_i2s_soc_info = { > .field_tx_fifo_thresh = REG_FIELD(JZ_REG_AIC_CONF, 16, 20), > .field_i2sdiv_capture = REG_FIELD(JZ_REG_AIC_CLK_DIV, 8, 11), > .field_i2sdiv_playback = REG_FIELD(JZ_REG_AIC_CLK_DIV, 0, 3), > + .pll_clk_name = "pll half", > }; > > static const struct i2s_soc_info jz4780_i2s_soc_info = { > @@ -429,6 +434,7 @@ static const struct i2s_soc_info > jz4780_i2s_soc_info = { > .field_tx_fifo_thresh = REG_FIELD(JZ_REG_AIC_CONF, 16, 20), > .field_i2sdiv_capture = REG_FIELD(JZ_REG_AIC_CLK_DIV, 8, 11), > .field_i2sdiv_playback = REG_FIELD(JZ_REG_AIC_CLK_DIV, 0, 3), > + .pll_clk_name = "pll half", > }; > > static const struct snd_soc_component_driver jz4740_i2s_component = { > -- > 2.35.1 >
Le mer., juil. 6 2022 at 22:13:30 +0100, Aidan MacDonald <aidanmacdonald.0x0@gmail.com> a écrit : > The I2S controller on JZ47xx SoCs doesn't impose restrictions on > sample rate and the driver doesn't make any assumptions about it, > so the DAI should advertise a continuous sample rate range. > > Signed-off-by: Aidan MacDonald <aidanmacdonald.0x0@gmail.com> Acked-by: Paul Cercueil <paul@crapouillou.net> Cheers, -Paul > --- > sound/soc/jz4740/jz4740-i2s.c | 8 ++++---- > 1 file changed, 4 insertions(+), 4 deletions(-) > > diff --git a/sound/soc/jz4740/jz4740-i2s.c > b/sound/soc/jz4740/jz4740-i2s.c > index ee99c5e781ec..053697c7f19e 100644 > --- a/sound/soc/jz4740/jz4740-i2s.c > +++ b/sound/soc/jz4740/jz4740-i2s.c > @@ -378,13 +378,13 @@ static struct snd_soc_dai_driver jz4740_i2s_dai > = { > .playback = { > .channels_min = 1, > .channels_max = 2, > - .rates = SNDRV_PCM_RATE_8000_48000, > + .rates = SNDRV_PCM_RATE_CONTINUOUS, > .formats = JZ4740_I2S_FMTS, > }, > .capture = { > .channels_min = 2, > .channels_max = 2, > - .rates = SNDRV_PCM_RATE_8000_48000, > + .rates = SNDRV_PCM_RATE_CONTINUOUS, > .formats = JZ4740_I2S_FMTS, > }, > .symmetric_rate = 1, > @@ -415,13 +415,13 @@ static struct snd_soc_dai_driver jz4770_i2s_dai > = { > .playback = { > .channels_min = 1, > .channels_max = 2, > - .rates = SNDRV_PCM_RATE_8000_48000, > + .rates = SNDRV_PCM_RATE_CONTINUOUS, > .formats = JZ4740_I2S_FMTS, > }, > .capture = { > .channels_min = 2, > .channels_max = 2, > - .rates = SNDRV_PCM_RATE_8000_48000, > + .rates = SNDRV_PCM_RATE_CONTINUOUS, > .formats = JZ4740_I2S_FMTS, > }, > .ops = &jz4740_i2s_dai_ops, > -- > 2.35.1 >
Paul Cercueil <paul@crapouillou.net> writes: > Hi Aidan, > > Le mer., juil. 6 2022 at 22:13:22 +0100, Aidan MacDonald > <aidanmacdonald.0x0@gmail.com> a écrit : >> Using regmap for accessing the AIC registers makes the driver a >> little easier to read, and later refactors can take advantage of >> regmap APIs to further simplify the driver. >> Signed-off-by: Aidan MacDonald <aidanmacdonald.0x0@gmail.com> >> --- >> sound/soc/jz4740/Kconfig | 1 + >> sound/soc/jz4740/jz4740-i2s.c | 99 +++++++++++++++-------------------- >> 2 files changed, 42 insertions(+), 58 deletions(-) >> diff --git a/sound/soc/jz4740/Kconfig b/sound/soc/jz4740/Kconfig >> index e72f826062e9..dd3b4507fbe6 100644 >> --- a/sound/soc/jz4740/Kconfig >> +++ b/sound/soc/jz4740/Kconfig >> @@ -3,6 +3,7 @@ config SND_JZ4740_SOC_I2S >> tristate "SoC Audio (I2S protocol) for Ingenic JZ4740 SoC" >> depends on MIPS || COMPILE_TEST >> depends on HAS_IOMEM >> + select REGMAP_MMIO >> select SND_SOC_GENERIC_DMAENGINE_PCM >> help >> Say Y if you want to use I2S protocol and I2S codec on Ingenic JZ4740 >> diff --git a/sound/soc/jz4740/jz4740-i2s.c b/sound/soc/jz4740/jz4740-i2s.c >> index ecd8df70d39c..66a901f56392 100644 >> --- a/sound/soc/jz4740/jz4740-i2s.c >> +++ b/sound/soc/jz4740/jz4740-i2s.c >> @@ -9,6 +9,7 @@ >> #include <linux/module.h> >> #include <linux/mod_devicetable.h> >> #include <linux/platform_device.h> >> +#include <linux/regmap.h> >> #include <linux/slab.h> >> #include <linux/clk.h> >> @@ -94,7 +95,7 @@ struct i2s_soc_info { >> struct jz4740_i2s { >> struct resource *mem; >> - void __iomem *base; >> + struct regmap *regmap; >> struct clk *clk_aic; >> struct clk *clk_i2s; >> @@ -105,39 +106,24 @@ struct jz4740_i2s { >> const struct i2s_soc_info *soc_info; >> }; >> -static inline uint32_t jz4740_i2s_read(const struct jz4740_i2s *i2s, >> - unsigned int reg) >> -{ >> - return readl(i2s->base + reg); >> -} >> - >> -static inline void jz4740_i2s_write(const struct jz4740_i2s *i2s, >> - unsigned int reg, uint32_t value) >> -{ >> - writel(value, i2s->base + reg); >> -} >> - >> static int jz4740_i2s_startup(struct snd_pcm_substream *substream, >> struct snd_soc_dai *dai) >> { >> struct jz4740_i2s *i2s = snd_soc_dai_get_drvdata(dai); >> - uint32_t conf, ctrl; >> int ret; >> if (snd_soc_dai_active(dai)) >> return 0; >> - ctrl = jz4740_i2s_read(i2s, JZ_REG_AIC_CTRL); >> - ctrl |= JZ_AIC_CTRL_FLUSH; >> - jz4740_i2s_write(i2s, JZ_REG_AIC_CTRL, ctrl); >> + regmap_write_bits(i2s->regmap, JZ_REG_AIC_CTRL, >> + JZ_AIC_CTRL_FLUSH, JZ_AIC_CTRL_FLUSH); > > I don't think you need regmap_write_bits() here, since there is no cache to > bypass. You could use regmap_update_bits(), or even better, regmap_set_bits(). > write_bits isn't _exactly_ just a cache bypass operation -- it means "write the register even if the value is the same as what was read." An update_bits doesn't necessarily perform a register write, even if there is no cache and the register is volatile. The distinction shouldn't matter here, since the flush bit is supposed to be self-clearing. So I might as well use regmap_set_bits(). Also: I just noticed this will need to be a regmap field. It seems that all SoCs newer than jz4740 have separate transmit/receive flush bits. At least the JZ4760, JZ4780, and X1000 manuals say as much. Not sure about the JZ4770 since I don't have any documentation for that SoC. >> ret = clk_prepare_enable(i2s->clk_i2s); >> if (ret) >> return ret; >> - conf = jz4740_i2s_read(i2s, JZ_REG_AIC_CONF); >> - conf |= JZ_AIC_CONF_ENABLE; >> - jz4740_i2s_write(i2s, JZ_REG_AIC_CONF, conf); >> + regmap_update_bits(i2s->regmap, JZ_REG_AIC_CONF, >> + JZ_AIC_CONF_ENABLE, JZ_AIC_CONF_ENABLE); > > Use regmap_set_bits() when you want to set all the bits of the mask. > >> return 0; >> } >> @@ -146,14 +132,12 @@ static void jz4740_i2s_shutdown(struct >> snd_pcm_substream *substream, >> struct snd_soc_dai *dai) >> { >> struct jz4740_i2s *i2s = snd_soc_dai_get_drvdata(dai); >> - uint32_t conf; >> if (snd_soc_dai_active(dai)) >> return; >> - conf = jz4740_i2s_read(i2s, JZ_REG_AIC_CONF); >> - conf &= ~JZ_AIC_CONF_ENABLE; >> - jz4740_i2s_write(i2s, JZ_REG_AIC_CONF, conf); >> + regmap_update_bits(i2s->regmap, JZ_REG_AIC_CONF, >> + JZ_AIC_CONF_ENABLE, 0); > > Use regmap_clear_bits() when you want to clear all bits of the mask. > > Otherwise, looks fairly good! > > Cheers, > -Paul > Thanks, I didn't know about set/clear bits but that'll make it even simpler. >> clk_disable_unprepare(i2s->clk_i2s); >> } >> @@ -162,8 +146,6 @@ static int jz4740_i2s_trigger(struct snd_pcm_substream >> *substream, int cmd, >> struct snd_soc_dai *dai) >> { >> struct jz4740_i2s *i2s = snd_soc_dai_get_drvdata(dai); >> - >> - uint32_t ctrl; >> uint32_t mask; >> if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) >> @@ -171,38 +153,30 @@ static int jz4740_i2s_trigger(struct snd_pcm_substream >> *substream, int cmd, >> else >> mask = JZ_AIC_CTRL_ENABLE_CAPTURE | JZ_AIC_CTRL_ENABLE_RX_DMA; >> - ctrl = jz4740_i2s_read(i2s, JZ_REG_AIC_CTRL); >> - >> switch (cmd) { >> case SNDRV_PCM_TRIGGER_START: >> case SNDRV_PCM_TRIGGER_RESUME: >> case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: >> - ctrl |= mask; >> + regmap_update_bits(i2s->regmap, JZ_REG_AIC_CTRL, mask, mask); >> break; >> case SNDRV_PCM_TRIGGER_STOP: >> case SNDRV_PCM_TRIGGER_SUSPEND: >> case SNDRV_PCM_TRIGGER_PAUSE_PUSH: >> - ctrl &= ~mask; >> + regmap_update_bits(i2s->regmap, JZ_REG_AIC_CTRL, mask, 0); >> break; >> default: >> return -EINVAL; >> } >> - jz4740_i2s_write(i2s, JZ_REG_AIC_CTRL, ctrl); >> - >> return 0; >> } >> static int jz4740_i2s_set_fmt(struct snd_soc_dai *dai, unsigned int fmt) >> { >> struct jz4740_i2s *i2s = snd_soc_dai_get_drvdata(dai); >> - >> - uint32_t format = 0; >> - uint32_t conf; >> - >> - conf = jz4740_i2s_read(i2s, JZ_REG_AIC_CONF); >> - >> - conf &= ~(JZ_AIC_CONF_BIT_CLK_MASTER | JZ_AIC_CONF_SYNC_CLK_MASTER); >> + const unsigned int conf_mask = JZ_AIC_CONF_BIT_CLK_MASTER | >> + JZ_AIC_CONF_SYNC_CLK_MASTER; >> + unsigned int conf = 0, format = 0; >> switch (fmt & SND_SOC_DAIFMT_CLOCK_PROVIDER_MASK) { >> case SND_SOC_DAIFMT_BP_FP: >> @@ -238,8 +212,8 @@ static int jz4740_i2s_set_fmt(struct snd_soc_dai *dai, >> unsigned int fmt) >> return -EINVAL; >> } >> - jz4740_i2s_write(i2s, JZ_REG_AIC_CONF, conf); >> - jz4740_i2s_write(i2s, JZ_REG_AIC_I2S_FMT, format); >> + regmap_update_bits(i2s->regmap, JZ_REG_AIC_CONF, conf_mask, conf); >> + regmap_write(i2s->regmap, JZ_REG_AIC_I2S_FMT, format); >> return 0; >> } >> @@ -252,9 +226,9 @@ static int jz4740_i2s_hw_params(struct snd_pcm_substream >> *substream, >> uint32_t ctrl, div_reg; >> int div; >> - ctrl = jz4740_i2s_read(i2s, JZ_REG_AIC_CTRL); >> + regmap_read(i2s->regmap, JZ_REG_AIC_CTRL, &ctrl); >> + regmap_read(i2s->regmap, JZ_REG_AIC_CLK_DIV, &div_reg); >> - div_reg = jz4740_i2s_read(i2s, JZ_REG_AIC_CLK_DIV); >> div = clk_get_rate(i2s->clk_i2s) / (64 * params_rate(params)); >> switch (params_format(params)) { >> @@ -291,8 +265,8 @@ static int jz4740_i2s_hw_params(struct snd_pcm_substream >> *substream, >> } >> } >> - jz4740_i2s_write(i2s, JZ_REG_AIC_CTRL, ctrl); >> - jz4740_i2s_write(i2s, JZ_REG_AIC_CLK_DIV, div_reg); >> + regmap_write(i2s->regmap, JZ_REG_AIC_CTRL, ctrl); >> + regmap_write(i2s->regmap, JZ_REG_AIC_CLK_DIV, div_reg); >> return 0; >> } >> @@ -329,12 +303,10 @@ static int jz4740_i2s_set_sysclk(struct snd_soc_dai >> *dai, int clk_id, >> static int jz4740_i2s_suspend(struct snd_soc_component *component) >> { >> struct jz4740_i2s *i2s = snd_soc_component_get_drvdata(component); >> - uint32_t conf; >> if (snd_soc_component_active(component)) { >> - conf = jz4740_i2s_read(i2s, JZ_REG_AIC_CONF); >> - conf &= ~JZ_AIC_CONF_ENABLE; >> - jz4740_i2s_write(i2s, JZ_REG_AIC_CONF, conf); >> + regmap_update_bits(i2s->regmap, JZ_REG_AIC_CONF, >> + JZ_AIC_CONF_ENABLE, 0); >> clk_disable_unprepare(i2s->clk_i2s); >> } >> @@ -347,7 +319,6 @@ static int jz4740_i2s_suspend(struct snd_soc_component >> *component) >> static int jz4740_i2s_resume(struct snd_soc_component *component) >> { >> struct jz4740_i2s *i2s = snd_soc_component_get_drvdata(component); >> - uint32_t conf; >> int ret; >> ret = clk_prepare_enable(i2s->clk_aic); >> @@ -361,9 +332,8 @@ static int jz4740_i2s_resume(struct snd_soc_component >> *component) >> return ret; >> } >> - conf = jz4740_i2s_read(i2s, JZ_REG_AIC_CONF); >> - conf |= JZ_AIC_CONF_ENABLE; >> - jz4740_i2s_write(i2s, JZ_REG_AIC_CONF, conf); >> + regmap_update_bits(i2s->regmap, JZ_REG_AIC_CONF, >> + JZ_AIC_CONF_ENABLE, JZ_AIC_CONF_ENABLE); >> } >> return 0; >> @@ -396,8 +366,8 @@ static int jz4740_i2s_dai_probe(struct snd_soc_dai *dai) >> JZ_AIC_CONF_INTERNAL_CODEC; >> } >> - jz4740_i2s_write(i2s, JZ_REG_AIC_CONF, JZ_AIC_CONF_RESET); >> - jz4740_i2s_write(i2s, JZ_REG_AIC_CONF, conf); >> + regmap_write(i2s->regmap, JZ_REG_AIC_CONF, JZ_AIC_CONF_RESET); >> + regmap_write(i2s->regmap, JZ_REG_AIC_CONF, conf); >> return 0; >> } >> @@ -495,11 +465,19 @@ static const struct of_device_id jz4740_of_matches[] = >> { >> }; >> MODULE_DEVICE_TABLE(of, jz4740_of_matches); >> +static const struct regmap_config jz4740_i2s_regmap_config = { >> + .reg_bits = 32, >> + .reg_stride = 4, >> + .val_bits = 32, >> + .max_register = JZ_REG_AIC_FIFO, >> +}; >> + >> static int jz4740_i2s_dev_probe(struct platform_device *pdev) >> { >> struct device *dev = &pdev->dev; >> struct jz4740_i2s *i2s; >> struct resource *mem; >> + void __iomem *regs; >> int ret; >> i2s = devm_kzalloc(dev, sizeof(*i2s), GFP_KERNEL); >> @@ -508,9 +486,9 @@ static int jz4740_i2s_dev_probe(struct platform_device >> *pdev) >> i2s->soc_info = device_get_match_data(dev); >> - i2s->base = devm_platform_get_and_ioremap_resource(pdev, 0, &mem); >> - if (IS_ERR(i2s->base)) >> - return PTR_ERR(i2s->base); >> + regs = devm_platform_get_and_ioremap_resource(pdev, 0, &mem); >> + if (IS_ERR(regs)) >> + return PTR_ERR(regs); >> i2s->playback_dma_data.maxburst = 16; >> i2s->playback_dma_data.addr = mem->start + JZ_REG_AIC_FIFO; >> @@ -526,6 +504,11 @@ static int jz4740_i2s_dev_probe(struct platform_device >> *pdev) >> if (IS_ERR(i2s->clk_i2s)) >> return PTR_ERR(i2s->clk_i2s); >> + i2s->regmap = devm_regmap_init_mmio(&pdev->dev, regs, >> + &jz4740_i2s_regmap_config); >> + if (IS_ERR(i2s->regmap)) >> + return PTR_ERR(i2s->regmap); >> + >> platform_set_drvdata(pdev, i2s); >> ret = devm_snd_soc_register_component(dev, &jz4740_i2s_component, >> -- >> 2.35.1 >>
Paul Cercueil <paul@crapouillou.net> writes: > Le mer., juil. 6 2022 at 22:13:28 +0100, Aidan MacDonald > <aidanmacdonald.0x0@gmail.com> a écrit : >> On some Ingenic SoCs, such as the X1000, there is a programmable >> divider used to generate the I2S system clock from a PLL, rather >> than a fixed PLL/2 clock. It doesn't make much sense to call the >> clock "pll half" on those SoCs, so the clock name should really be >> a SoC-dependent value. > > Do you really need the .set_sysclk() callback? I've never seen it used on any > of the Ingenic boards I have, so to me it's pretty much dead code. Unless you > do use this callback, I'd suggest to drop this patch until you do need it. > > Cheers, > -Paul > Yes, one of my boards has an external codec (AK4376) that needs the sysclock and I've patched simple-card to be able to set a non-zero sysclock ID. >> Signed-off-by: Aidan MacDonald <aidanmacdonald.0x0@gmail.com> >> --- >> sound/soc/jz4740/jz4740-i2s.c | 8 +++++++- >> 1 file changed, 7 insertions(+), 1 deletion(-) >> diff --git a/sound/soc/jz4740/jz4740-i2s.c b/sound/soc/jz4740/jz4740-i2s.c >> index 3a21ee9d34d1..80b355d715ce 100644 >> --- a/sound/soc/jz4740/jz4740-i2s.c >> +++ b/sound/soc/jz4740/jz4740-i2s.c >> @@ -71,6 +71,8 @@ struct i2s_soc_info { >> struct reg_field field_tx_fifo_thresh; >> struct reg_field field_i2sdiv_capture; >> struct reg_field field_i2sdiv_playback; >> + >> + const char *pll_clk_name; >> }; >> struct jz4740_i2s { >> @@ -265,7 +267,7 @@ static int jz4740_i2s_set_sysclk(struct snd_soc_dai *dai, >> int clk_id, >> clk_set_parent(i2s->clk_i2s, parent); >> break; >> case JZ4740_I2S_CLKSRC_PLL: >> - parent = clk_get(NULL, "pll half"); >> + parent = clk_get(NULL, i2s->soc_info->pll_clk_name); >> if (IS_ERR(parent)) >> return PTR_ERR(parent); >> clk_set_parent(i2s->clk_i2s, parent); >> @@ -387,6 +389,7 @@ static const struct i2s_soc_info jz4740_i2s_soc_info = { >> .field_tx_fifo_thresh = REG_FIELD(JZ_REG_AIC_CONF, 8, 11), >> .field_i2sdiv_capture = REG_FIELD(JZ_REG_AIC_CLK_DIV, 0, 3), >> .field_i2sdiv_playback = REG_FIELD(JZ_REG_AIC_CLK_DIV, 0, 3), >> + .pll_clk_name = "pll half", >> }; >> static const struct i2s_soc_info jz4760_i2s_soc_info = { >> @@ -395,6 +398,7 @@ static const struct i2s_soc_info jz4760_i2s_soc_info = { >> .field_tx_fifo_thresh = REG_FIELD(JZ_REG_AIC_CONF, 16, 20), >> .field_i2sdiv_capture = REG_FIELD(JZ_REG_AIC_CLK_DIV, 0, 3), >> .field_i2sdiv_playback = REG_FIELD(JZ_REG_AIC_CLK_DIV, 0, 3), >> + .pll_clk_name = "pll half", >> }; >> static struct snd_soc_dai_driver jz4770_i2s_dai = { >> @@ -421,6 +425,7 @@ static const struct i2s_soc_info jz4770_i2s_soc_info = { >> .field_tx_fifo_thresh = REG_FIELD(JZ_REG_AIC_CONF, 16, 20), >> .field_i2sdiv_capture = REG_FIELD(JZ_REG_AIC_CLK_DIV, 8, 11), >> .field_i2sdiv_playback = REG_FIELD(JZ_REG_AIC_CLK_DIV, 0, 3), >> + .pll_clk_name = "pll half", >> }; >> static const struct i2s_soc_info jz4780_i2s_soc_info = { >> @@ -429,6 +434,7 @@ static const struct i2s_soc_info jz4780_i2s_soc_info = { >> .field_tx_fifo_thresh = REG_FIELD(JZ_REG_AIC_CONF, 16, 20), >> .field_i2sdiv_capture = REG_FIELD(JZ_REG_AIC_CLK_DIV, 8, 11), >> .field_i2sdiv_playback = REG_FIELD(JZ_REG_AIC_CLK_DIV, 0, 3), >> + .pll_clk_name = "pll half", >> }; >> static const struct snd_soc_component_driver jz4740_i2s_component = { >> -- >> 2.35.1 >>