diff options
author | Mark Brown <broonie@kernel.org> | 2023-08-23 20:54:51 +0200 |
---|---|---|
committer | Mark Brown <broonie@kernel.org> | 2023-08-23 20:54:51 +0200 |
commit | 1a512d13837ac5db2a6174315957b64c369f1fe0 (patch) | |
tree | 40a8408a84495ef95134c67ddadcd292c159b4b8 /include/sound | |
parent | ASoC: rsnd: tidyup ADG (diff) | |
parent | ASoC: dwc: i2s: Add StarFive JH7110 SoC support (diff) | |
download | linux-1a512d13837ac5db2a6174315957b64c369f1fe0.tar.xz linux-1a512d13837ac5db2a6174315957b64c369f1fe0.zip |
Add I2S support for the StarFive JH7110 SoC
Merge series from Xingyu Wu <xingyu.wu@starfivetech.com>:
This patch series adds I2S support for the StarFive JH7110 RISC-V
SoC based on Designware I2S controller. There has three I2S channels
(RX/TX0/TX1) on the JH7110 SoC, one of which is for record(RX) and
two for playback(TX).
The first patch adds support for the StarFive JH7110 SoC in the
Designware I2S bindings.
The second patch adds the ops to get data from platform bus in the
I2S driver.
The third patch adds support for the StarFive JH7110 SoC in
the Designware I2S driver.
The fourth patch fixes the name of I2STX1 pinmux.
The last patch adds device node of I2S RX/TX0/TX1 in JH7110 dts.
This patch series is based on Linux-next(20230818) which is merge
clock, syscon and dma nodes for the StarFive JH7110 SoC.
The series has been tested and works normally on the VisionFive 2
board by plugging an audio expansion board.
Diffstat (limited to 'include/sound')
-rw-r--r-- | include/sound/designware_i2s.h | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/include/sound/designware_i2s.h b/include/sound/designware_i2s.h index 80d275b9ae0d..f6803205a9fb 100644 --- a/include/sound/designware_i2s.h +++ b/include/sound/designware_i2s.h @@ -21,6 +21,8 @@ struct i2s_clk_config_data { u32 sample_rate; }; +struct dw_i2s_dev; + struct i2s_platform_data { #define DWC_I2S_PLAY (1 << 0) #define DWC_I2S_RECORD (1 << 1) @@ -42,6 +44,7 @@ struct i2s_platform_data { void *capture_dma_data; bool (*filter)(struct dma_chan *chan, void *slave); int (*i2s_clk_cfg)(struct i2s_clk_config_data *config); + int (*i2s_pd_init)(struct dw_i2s_dev *dev); }; struct i2s_dma_data { |