* [PATCH v2 0/9] ASoC: Some issues about loongson i2s
@ 2024-09-24 6:59 Binbin Zhou
2024-09-24 6:59 ` [PATCH v2 1/9] ASoC: dt-bindings: Add Everest ES8323 Codec Binbin Zhou
` (9 more replies)
0 siblings, 10 replies; 26+ messages in thread
From: Binbin Zhou @ 2024-09-24 6:59 UTC (permalink / raw)
To: Binbin Zhou, Huacai Chen, Liam Girdwood, Mark Brown,
Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski,
Conor Dooley
Cc: Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch,
Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald,
Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina,
Masahiro Yamada, Shuming Fan, Binbin Zhou
Hi all:
This patch set is mainly about Loongson i2s related issues.
Please allow me to briefly explain this patch set:
Patch 1-2: Add ES8323 codec required on Loongson-2K2000
Patch 3-4: Add uda1342 codec required on Loongson-2K1000
Patch 5: Fix the problem of unable to detect codec under FDT system.
Patch 6-7: Add Loongson i2s platform device support
Patch 8-9: Related DTS support.
Thanks.
-------
V2:
- Spilt the improve code readability patch to a separate patch series.
The link is:
https://lore.kernel.org/all/cover.1725844530.git.zhoubinbin@loongson.cn/
patch (1/9):
- Add es8323 compatible in everest,es8316.yaml instead of creating a
new yaml file;
patch (2/9):
- Use regmap_config.reg_defaults instead of snd_soc_component_driver.{read/write};
- Use the more modern _CBC_CFC(SND_SOC_DAIFMT_BC_FC);
- Rewrite suspend/resume function with regmap;
- Drop i2c_check_functionality();
- Use named variables for the enums rather than putting them into an array;
patch (3/9):
- Add Reviewed-by tag from Krzysztof;
patch (4/9):
- Drop unused param to avoid lkp warnning;
- Drop some noisy log message(dev_info);
- Use normal conditional statements to improve legibility;
- Use provider/consumer instead of master/slave;
- Use the more modern _CBC_CFC(SND_SOC_DAIFMT_BC_FC);
- Drop uda1342_set_bias_level() for it does nothing;
- Drop uda1342_mixer_enum[] for it is unused;
- Point to controls/routes arrays from the component struct;
- REGCACHE_MAP instead of REGCACHE_RBTREE.
patch (5/9):
- Add of_node_put(args.np) after snd_soc_get_dai_name();
- Use matching label name, such as codec_put instead of free_codec;
- Rewrote the loongson_parse_cpu() and loongson_parse_codec() function
interfaces to avoid dropping a reference from a pointer that is a
random stack value
patch (6/9):
- Rename file name as loongson,ls2k1000-i2s.yaml;
- List and describe items for reg property;
- 'unevaluatedProperties: false' instead of 'additionalProperties:
false';
patch (7/9):
- Fix lkp warnning;
- Reorder Kconfig items, let
SND_SOC_LOONGSON_I2S_{PCI,PLATFORM} select SND_SOC_LOONGSON_CARD.
Link to v1:
https://lore.kernel.org/all/cover.1725518229.git.zhoubinbin@loongson.cn/
Binbin Zhou (9):
ASoC: dt-bindings: Add Everest ES8323 Codec
ASoC: codecs: Add support for ES8323
ASoC: dt-bindings: Add NXP uda1342 Codec
ASoC: codecs: Add uda1342 codec driver
ASoC: loongson: Fix codec detection failure on FDT systems
ASoC: dt-bindings: Add Loongson I2S controller
ASoC: loongson: Add I2S controller driver as platform device
LoongArch: dts: Add I2S support to Loongson-2K1000
LoongArch: dts: Add I2S support to Loongson-2K2000
.../bindings/sound/everest,es8316.yaml | 4 +-
.../bindings/sound/loongson,ls2k1000-i2s.yaml | 68 ++
.../bindings/sound/nxp,uda1342.yaml | 42 +
arch/loongarch/boot/dts/loongson-2k1000.dtsi | 17 +-
arch/loongarch/boot/dts/loongson-2k2000.dtsi | 22 +-
sound/soc/codecs/Kconfig | 13 +
sound/soc/codecs/Makefile | 4 +
sound/soc/codecs/es8323.c | 737 ++++++++++++++++++
sound/soc/codecs/es8323.h | 78 ++
sound/soc/codecs/uda1342.c | 355 +++++++++
sound/soc/codecs/uda1342.h | 79 ++
sound/soc/loongson/Kconfig | 31 +-
sound/soc/loongson/Makefile | 3 +
sound/soc/loongson/loongson_card.c | 81 +-
sound/soc/loongson/loongson_i2s_plat.c | 186 +++++
15 files changed, 1679 insertions(+), 41 deletions(-)
create mode 100644 Documentation/devicetree/bindings/sound/loongson,ls2k1000-i2s.yaml
create mode 100644 Documentation/devicetree/bindings/sound/nxp,uda1342.yaml
create mode 100644 sound/soc/codecs/es8323.c
create mode 100644 sound/soc/codecs/es8323.h
create mode 100644 sound/soc/codecs/uda1342.c
create mode 100644 sound/soc/codecs/uda1342.h
create mode 100644 sound/soc/loongson/loongson_i2s_plat.c
--
2.43.5
^ permalink raw reply [flat|nested] 26+ messages in thread* [PATCH v2 1/9] ASoC: dt-bindings: Add Everest ES8323 Codec 2024-09-24 6:59 [PATCH v2 0/9] ASoC: Some issues about loongson i2s Binbin Zhou @ 2024-09-24 6:59 ` Binbin Zhou 2024-09-24 23:26 ` Rob Herring (Arm) 2024-09-24 7:00 ` [PATCH v2 2/9] ASoC: codecs: Add support for ES8323 Binbin Zhou ` (8 subsequent siblings) 9 siblings, 1 reply; 26+ messages in thread From: Binbin Zhou @ 2024-09-24 6:59 UTC (permalink / raw) To: Binbin Zhou, Huacai Chen, Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley Cc: Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan, Binbin Zhou, Daniel Drake, Katsuhiro Suzuki, Matteo Martelli Add DT bindings documentation for the Everest-semi ES8323 codec. Everest-semi ES8323 codec is a low-power mono audio codec with I2S audio interface and I2C control. Cc: Daniel Drake <drake@endlessm.com> Cc: Katsuhiro Suzuki <katsuhiro@katsuster.net> Cc: Matteo Martelli <matteomartelli3@gmail.com> Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn> --- Documentation/devicetree/bindings/sound/everest,es8316.yaml | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Documentation/devicetree/bindings/sound/everest,es8316.yaml b/Documentation/devicetree/bindings/sound/everest,es8316.yaml index 214f135b7777..e4b2eb5fae2f 100644 --- a/Documentation/devicetree/bindings/sound/everest,es8316.yaml +++ b/Documentation/devicetree/bindings/sound/everest,es8316.yaml @@ -4,12 +4,13 @@ $id: http://devicetree.org/schemas/sound/everest,es8316.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# -title: Everest ES8311 and ES8316 audio CODECs +title: Everest ES8311, ES8316 and ES8323 audio CODECs maintainers: - Daniel Drake <drake@endlessm.com> - Katsuhiro Suzuki <katsuhiro@katsuster.net> - Matteo Martelli <matteomartelli3@gmail.com> + - Binbin Zhou <zhoubinbin@loongson.cn> allOf: - $ref: dai-common.yaml# @@ -19,6 +20,7 @@ properties: enum: - everest,es8311 - everest,es8316 + - everest,es8323 reg: maxItems: 1 -- 2.43.5 ^ permalink raw reply related [flat|nested] 26+ messages in thread
* Re: [PATCH v2 1/9] ASoC: dt-bindings: Add Everest ES8323 Codec 2024-09-24 6:59 ` [PATCH v2 1/9] ASoC: dt-bindings: Add Everest ES8323 Codec Binbin Zhou @ 2024-09-24 23:26 ` Rob Herring (Arm) 0 siblings, 0 replies; 26+ messages in thread From: Rob Herring (Arm) @ 2024-09-24 23:26 UTC (permalink / raw) To: Binbin Zhou Cc: Prasad Kumpatla, Katsuhiro Suzuki, Jaroslav Kysela, Binbin Zhou, Rob Herring, Weidong Wang, Pierre-Louis Bossart, Shuming Fan, Mark Brown, Daniel Drake, Xuerui Wang, devicetree, Takashi Iwai, Huacai Chen, Huacai Chen, Masahiro Yamada, Krzysztof Kozlowski, Herve Codina, loongarch, Richard Fitzgerald, Luca Ceresoli, Neil Armstrong, linux-sound, Conor Dooley, Matteo Martelli, Liam Girdwood On Tue, 24 Sep 2024 14:59:50 +0800, Binbin Zhou wrote: > Add DT bindings documentation for the Everest-semi ES8323 codec. > > Everest-semi ES8323 codec is a low-power mono audio codec with I2S > audio interface and I2C control. > > Cc: Daniel Drake <drake@endlessm.com> > Cc: Katsuhiro Suzuki <katsuhiro@katsuster.net> > Cc: Matteo Martelli <matteomartelli3@gmail.com> > Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn> > --- > Documentation/devicetree/bindings/sound/everest,es8316.yaml | 4 +++- > 1 file changed, 3 insertions(+), 1 deletion(-) > Acked-by: Rob Herring (Arm) <robh@kernel.org> ^ permalink raw reply [flat|nested] 26+ messages in thread
* [PATCH v2 2/9] ASoC: codecs: Add support for ES8323 2024-09-24 6:59 [PATCH v2 0/9] ASoC: Some issues about loongson i2s Binbin Zhou 2024-09-24 6:59 ` [PATCH v2 1/9] ASoC: dt-bindings: Add Everest ES8323 Codec Binbin Zhou @ 2024-09-24 7:00 ` Binbin Zhou 2024-09-24 9:03 ` Mark Brown 2024-09-24 7:00 ` [PATCH v2 3/9] ASoC: dt-bindings: Add NXP uda1342 Codec Binbin Zhou ` (7 subsequent siblings) 9 siblings, 1 reply; 26+ messages in thread From: Binbin Zhou @ 2024-09-24 7:00 UTC (permalink / raw) To: Binbin Zhou, Huacai Chen, Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley Cc: Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan, Binbin Zhou Add a codec driver for the Everest ES8323. It supports two separate audio outputs and two separate audio inputs. Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn> --- sound/soc/codecs/Kconfig | 5 + sound/soc/codecs/Makefile | 2 + sound/soc/codecs/es8323.c | 737 ++++++++++++++++++++++++++++++++++++++ sound/soc/codecs/es8323.h | 78 ++++ 4 files changed, 822 insertions(+) create mode 100644 sound/soc/codecs/es8323.c create mode 100644 sound/soc/codecs/es8323.h diff --git a/sound/soc/codecs/Kconfig b/sound/soc/codecs/Kconfig index 7092842480ef..79b2a16e4202 100644 --- a/sound/soc/codecs/Kconfig +++ b/sound/soc/codecs/Kconfig @@ -112,6 +112,7 @@ config SND_SOC_ALL_CODECS imply SND_SOC_DA9055 imply SND_SOC_DMIC imply SND_SOC_ES8316 + imply SND_SOC_ES8323 imply SND_SOC_ES8326 imply SND_SOC_ES8328_SPI imply SND_SOC_ES8328_I2C @@ -1143,6 +1144,10 @@ config SND_SOC_ES8316 tristate "Everest Semi ES8316 CODEC" depends on I2C +config SND_SOC_ES8323 + tristate "Everest Semi ES8323 CODEC" + depends on I2C + config SND_SOC_ES8326 tristate "Everest Semi ES8326 CODEC" depends on I2C diff --git a/sound/soc/codecs/Makefile b/sound/soc/codecs/Makefile index 54cbc3feae32..62fe972514a4 100644 --- a/sound/soc/codecs/Makefile +++ b/sound/soc/codecs/Makefile @@ -125,6 +125,7 @@ snd-soc-es7241-y := es7241.o snd-soc-es83xx-dsm-common-y := es83xx-dsm-common.o snd-soc-es8311-y := es8311.o snd-soc-es8316-y := es8316.o +snd-soc-es8323-y := es8323.o snd-soc-es8326-y := es8326.o snd-soc-es8328-y := es8328.o snd-soc-es8328-i2c-y := es8328-i2c.o @@ -532,6 +533,7 @@ obj-$(CONFIG_SND_SOC_ES7241) += snd-soc-es7241.o obj-$(CONFIG_SND_SOC_ES83XX_DSM_COMMON) += snd-soc-es83xx-dsm-common.o obj-$(CONFIG_SND_SOC_ES8311) += snd-soc-es8311.o obj-$(CONFIG_SND_SOC_ES8316) += snd-soc-es8316.o +obj-$(CONFIG_SND_SOC_ES8323) += snd-soc-es8323.o obj-$(CONFIG_SND_SOC_ES8326) += snd-soc-es8326.o obj-$(CONFIG_SND_SOC_ES8328) += snd-soc-es8328.o obj-$(CONFIG_SND_SOC_ES8328_I2C)+= snd-soc-es8328-i2c.o diff --git a/sound/soc/codecs/es8323.c b/sound/soc/codecs/es8323.c new file mode 100644 index 000000000000..faade7b17248 --- /dev/null +++ b/sound/soc/codecs/es8323.c @@ -0,0 +1,737 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * es8323.c -- es8323 ALSA SoC audio driver + * + * Copyright Rockchip Electronics Co. Ltd. + * Copyright Everest Semiconductor Co.,Ltd. + * Copyright Loongson Technology Co.,Ltd. + * + * Author: Mark Brown <broonie@kernel.org> + * Jianqun Xu <jay.xu@rock-chips.com> + * Nickey Yang <nickey.yang@rock-chips.com> + * Further cleanup and restructuring by: + * Binbin Zhou <zhoubinbin@loongson.cn> + */ + +#include <linux/module.h> +#include <linux/acpi.h> +#include <linux/clk.h> +#include <linux/delay.h> +#include <linux/i2c.h> +#include <linux/mod_devicetable.h> +#include <linux/regmap.h> +#include <sound/pcm.h> +#include <sound/pcm_params.h> +#include <sound/soc.h> +#include <sound/soc-dapm.h> +#include <sound/tlv.h> + +#include "es8323.h" + +struct es8323_priv { + unsigned int sysclk; + struct clk *mclk; + struct regmap *regmap; + struct snd_pcm_hw_constraint_list *sysclk_constraints; + struct snd_soc_component *component; +}; + +/* es8323 register cache */ +static const struct reg_default es8323_reg_defaults[] = { + { ES8323_CONTROL1, 0x06 }, + { ES8323_CONTROL2, 0x1c }, + { ES8323_CHIPPOWER, 0xc3 }, + { ES8323_ADCPOWER, 0xfc }, + { ES8323_DACPOWER, 0xc0 }, + { ES8323_CHIPLOPOW1, 0x00 }, + { ES8323_CHIPLOPOW2, 0x00 }, + { ES8323_ANAVOLMANAG, 0x7c }, + { ES8323_MASTERMODE, 0x80 }, + { ES8323_ADCCONTROL1, 0x00 }, + { ES8323_ADCCONTROL2, 0x00 }, + { ES8323_ADCCONTROL3, 0x06 }, + { ES8323_ADCCONTROL4, 0x00 }, + { ES8323_ADCCONTROL5, 0x06 }, + { ES8323_ADCCONTROL6, 0x30 }, + { ES8323_ADC_MUTE, 0x30 }, + { ES8323_LADC_VOL, 0xc0 }, + { ES8323_RADC_VOL, 0xc0 }, + { ES8323_ADCCONTROL10, 0x38 }, + { ES8323_ADCCONTROL11, 0xb0 }, + { ES8323_ADCCONTROL12, 0x32 }, + { ES8323_ADCCONTROL13, 0x06 }, + { ES8323_ADCCONTROL14, 0x00 }, + { ES8323_DACCONTROL1, 0x00 }, + { ES8323_DACCONTROL2, 0x06 }, + { ES8323_DAC_MUTE, 0x30 }, + { ES8323_LDAC_VOL, 0xc0 }, + { ES8323_RDAC_VOL, 0xc0 }, + { ES8323_DACCONTROL6, 0x08 }, + { ES8323_DACCONTROL7, 0x06 }, + { ES8323_DACCONTROL8, 0x1f }, + { ES8323_DACCONTROL9, 0xf7 }, + { ES8323_DACCONTROL10, 0xfd }, + { ES8323_DACCONTROL11, 0xff }, + { ES8323_DACCONTROL12, 0x1f }, + { ES8323_DACCONTROL13, 0xf7 }, + { ES8323_DACCONTROL14, 0xfd }, + { ES8323_DACCONTROL15, 0xff }, + { ES8323_DACCONTROL16, 0x00 }, + { ES8323_DACCONTROL17, 0x38 }, + { ES8323_DACCONTROL18, 0x38 }, + { ES8323_DACCONTROL19, 0x38 }, + { ES8323_DACCONTROL20, 0x38 }, + { ES8323_DACCONTROL21, 0x38 }, + { ES8323_DACCONTROL22, 0x38 }, + { ES8323_DACCONTROL23, 0x00 }, + { ES8323_LOUT1_VOL, 0x00 }, + { ES8323_ROUT1_VOL, 0x00 }, +}; + +static const char *const es8323_stereo_3d_texts[] = { "No 3D ", "Level 1", "Level 2", "Level 3", + "Level 4", "Level 5", "Level 6", "Level 7" }; +static SOC_ENUM_SINGLE_DECL(es8323_stereo_3d_enum, ES8323_DACCONTROL7, 2, es8323_stereo_3d_texts); + +static const char *const es8323_alc_func_texts[] = { "Off", "Right", "Left", "Stereo" }; +static SOC_ENUM_SINGLE_DECL(es8323_alc_function_enum, + ES8323_ADCCONTROL10, 6, es8323_alc_func_texts); + +static const char *const es8323_ng_type_texts[] = { "Constant PGA Gain", "Mute ADC Output" }; +static SOC_ENUM_SINGLE_DECL(es8323_alc_ng_type_enum, ES8323_ADCCONTROL14, 1, es8323_ng_type_texts); + +static const char *const es8323_deemph_texts[] = { "None", "32Khz", "44.1Khz", "48Khz" }; +static SOC_ENUM_SINGLE_DECL(es8323_playback_deemphasis_enum, + ES8323_DACCONTROL6, 6, es8323_deemph_texts); + +static const char *const es8323_adcpol_texts[] = { "Normal", "L Invert", + "R Invert", "L + R Invert" }; +static SOC_ENUM_SINGLE_DECL(es8323_capture_polarity_enum, + ES8323_ADCCONTROL6, 6, es8323_adcpol_texts); + +static const DECLARE_TLV_DB_SCALE(es8323_adc_tlv, -9600, 50, 1); +static const DECLARE_TLV_DB_SCALE(es8323_dac_tlv, -9600, 50, 1); +static const DECLARE_TLV_DB_SCALE(es8323_out_tlv, -4500, 150, 0); +static const DECLARE_TLV_DB_SCALE(es8323_bypass_tlv, 0, 300, 0); +static const DECLARE_TLV_DB_SCALE(es8323_bypass_tlv2, -15, 300, 0); + +static const struct snd_kcontrol_new es8323_snd_controls[] = { + SOC_ENUM("3D Mode", es8323_stereo_3d_enum), + SOC_ENUM("ALC Capture Function", es8323_alc_function_enum), + SOC_ENUM("ALC Capture NG Type", es8323_alc_ng_type_enum), + SOC_ENUM("Playback De-emphasis", es8323_playback_deemphasis_enum), + SOC_ENUM("Capture Polarity", es8323_capture_polarity_enum), + SOC_SINGLE("ALC Capture ZC Switch", ES8323_ADCCONTROL13, 6, 1, 0), + SOC_SINGLE("ALC Capture Decay Time", ES8323_ADCCONTROL12, 4, 15, 0), + SOC_SINGLE("ALC Capture Attack Time", ES8323_ADCCONTROL12, 0, 15, 0), + SOC_SINGLE("ALC Capture NG Threshold", ES8323_ADCCONTROL14, 3, 31, 0), + SOC_SINGLE("ALC Capture NG Switch", ES8323_ADCCONTROL14, 0, 1, 0), + SOC_SINGLE("ZC Timeout Switch", ES8323_ADCCONTROL13, 6, 1, 0), + SOC_SINGLE("Capture Mute Switch", ES8323_ADC_MUTE, 2, 1, 0), + SOC_SINGLE_TLV("Left Channel Capture Volume", ES8323_ADCCONTROL1, 4, 8, + 0, es8323_bypass_tlv), + SOC_SINGLE_TLV("Right Channel Capture Volume", ES8323_ADCCONTROL1, 0, + 8, 0, es8323_bypass_tlv), + SOC_SINGLE_TLV("Left Mixer Left Bypass Volume", ES8323_DACCONTROL17, 3, + 7, 1, es8323_bypass_tlv2), + SOC_SINGLE_TLV("Right Mixer Right Bypass Volume", ES8323_DACCONTROL20, + 3, 7, 1, es8323_bypass_tlv2), + SOC_DOUBLE_R_TLV("PCM Volume", ES8323_LDAC_VOL, ES8323_RDAC_VOL, + 0, 192, 1, es8323_dac_tlv), + SOC_DOUBLE_R_TLV("Capture Digital Volume", ES8323_LADC_VOL, + ES8323_RADC_VOL, 0, 192, 1, es8323_adc_tlv), + SOC_DOUBLE_R_TLV("Output 1 Playback Volume", ES8323_LOUT1_VOL, + ES8323_ROUT1_VOL, 0, 33, 0, es8323_out_tlv), + SOC_DOUBLE_R_TLV("Output 2 Playback Volume", ES8323_LOUT2_VOL, + ES8323_ROUT2_VOL, 0, 33, 0, es8323_out_tlv), +}; + +/* Left DAC Route */ +static const char *const es8323_pga_sell[] = { "Line 1L", "Line 2L", "NC", "DifferentialL" }; +static SOC_ENUM_SINGLE_DECL(es8323_left_dac_enum, ES8323_ADCCONTROL2, 6, es8323_pga_sell); +static const struct snd_kcontrol_new es8323_left_dac_mux_controls = + SOC_DAPM_ENUM("Left DAC Route", es8323_left_dac_enum); + +/* Right DAC Route */ +static const char *const es8323_pga_selr[] = { "Line 1R", "Line 2R", "NC", "DifferentialR" }; +static SOC_ENUM_SINGLE_DECL(es8323_right_dac_enum, ES8323_ADCCONTROL2, 4, es8323_pga_selr); +static const struct snd_kcontrol_new es8323_right_dac_mux_controls = + SOC_DAPM_ENUM("Right DAC Route", es8323_right_dac_enum); + +/* Left Line Mux */ +static const char *const es8323_lin_sell[] = { "Line 1L", "Line 2L", "NC", "MicL" }; +static SOC_ENUM_SINGLE_DECL(es8323_llin_enum, ES8323_DACCONTROL16, 3, es8323_lin_sell); +static const struct snd_kcontrol_new es8323_left_line_controls = + SOC_DAPM_ENUM("LLIN Mux", es8323_llin_enum); + +/* Right Line Mux */ +static const char *const es8323_lin_selr[] = { "Line 1R", "Line 2R", "NC", "MicR" }; +static SOC_ENUM_SINGLE_DECL(es8323_rlin_enum, ES8323_DACCONTROL16, 0, es8323_lin_selr); +static const struct snd_kcontrol_new es8323_right_line_controls = + SOC_DAPM_ENUM("RLIN Mux", es8323_rlin_enum); + +/* Differential Mux */ +static const char *const es8323_diffmux_sel[] = { "Line 1", "Line 2" }; +static SOC_ENUM_SINGLE_DECL(es8323_diffmux_enum, ES8323_ADCCONTROL3, 7, es8323_diffmux_sel); +static const struct snd_kcontrol_new es8323_diffmux_controls = + SOC_DAPM_ENUM("Route2", es8323_diffmux_enum); + +/* Mono ADC Mux */ +static const char *const es8323_mono_adc_mux[] = { "Stereo", "Mono (Left)", "Mono (Right)" }; +static SOC_ENUM_SINGLE_DECL(es8323_mono_adc_mux_enum, ES8323_ADCCONTROL3, 3, es8323_mono_adc_mux); +static const struct snd_kcontrol_new es8323_mono_adc_mux_controls = + SOC_DAPM_ENUM("Mono Mux", es8323_mono_adc_mux_enum); + +/* Left Mixer */ +static const struct snd_kcontrol_new es8323_left_mixer_controls[] = { + SOC_DAPM_SINGLE("Left Playback Switch", SND_SOC_NOPM, 7, 1, 1), + SOC_DAPM_SINGLE("Left Bypass Switch", ES8323_DACCONTROL17, 6, 1, 0), +}; + +/* Right Mixer */ +static const struct snd_kcontrol_new es8323_right_mixer_controls[] = { + SOC_DAPM_SINGLE("Right Playback Switch", SND_SOC_NOPM, 6, 1, 1), + SOC_DAPM_SINGLE("Right Bypass Switch", ES8323_DACCONTROL20, 6, 1, 0), +}; + +static const struct snd_soc_dapm_widget es8323_dapm_widgets[] = { + SND_SOC_DAPM_INPUT("LINPUT1"), + SND_SOC_DAPM_INPUT("LINPUT2"), + SND_SOC_DAPM_INPUT("RINPUT1"), + SND_SOC_DAPM_INPUT("RINPUT2"), + + SND_SOC_DAPM_MICBIAS("Mic Bias", SND_SOC_NOPM, 3, 1), + + /* Muxes */ + SND_SOC_DAPM_MUX("Left PGA Mux", SND_SOC_NOPM, 0, 0, &es8323_left_dac_mux_controls), + SND_SOC_DAPM_MUX("Right PGA Mux", SND_SOC_NOPM, 0, 0, &es8323_right_dac_mux_controls), + SND_SOC_DAPM_MUX("Differential Mux", SND_SOC_NOPM, 0, 0, &es8323_diffmux_controls), + SND_SOC_DAPM_MUX("Left ADC Mux", SND_SOC_NOPM, 0, 0, &es8323_mono_adc_mux_controls), + SND_SOC_DAPM_MUX("Right ADC Mux", SND_SOC_NOPM, 0, 0, &es8323_mono_adc_mux_controls), + SND_SOC_DAPM_MUX("Left Line Mux", SND_SOC_NOPM, 0, 0, &es8323_left_line_controls), + SND_SOC_DAPM_MUX("Right Line Mux", SND_SOC_NOPM, 0, 0, &es8323_right_line_controls), + + SND_SOC_DAPM_ADC("Right ADC", "Right Capture", SND_SOC_NOPM, 4, 1), + SND_SOC_DAPM_ADC("Left ADC", "Left Capture", SND_SOC_NOPM, 5, 1), + SND_SOC_DAPM_DAC("Right DAC", "Right Playback", SND_SOC_NOPM, 6, 1), + SND_SOC_DAPM_DAC("Left DAC", "Left Playback", SND_SOC_NOPM, 7, 1), + + SND_SOC_DAPM_MIXER("Left Mixer", SND_SOC_NOPM, 0, 0, + &es8323_left_mixer_controls[0], + ARRAY_SIZE(es8323_left_mixer_controls)), + SND_SOC_DAPM_MIXER("Right Mixer", SND_SOC_NOPM, 0, 0, + &es8323_right_mixer_controls[0], + ARRAY_SIZE(es8323_right_mixer_controls)), + + SND_SOC_DAPM_PGA("Right ADC Power", SND_SOC_NOPM, 6, 1, NULL, 0), + SND_SOC_DAPM_PGA("Left ADC Power", SND_SOC_NOPM, 7, 1, NULL, 0), + SND_SOC_DAPM_PGA("Right Out 2", SND_SOC_NOPM, 2, 0, NULL, 0), + SND_SOC_DAPM_PGA("Left Out 2", SND_SOC_NOPM, 3, 0, NULL, 0), + SND_SOC_DAPM_PGA("Right Out 1", SND_SOC_NOPM, 4, 0, NULL, 0), + SND_SOC_DAPM_PGA("Left Out 1", SND_SOC_NOPM, 5, 0, NULL, 0), + SND_SOC_DAPM_PGA("LAMP", ES8323_ADCCONTROL1, 4, 0, NULL, 0), + SND_SOC_DAPM_PGA("RAMP", ES8323_ADCCONTROL1, 0, 0, NULL, 0), + + SND_SOC_DAPM_OUTPUT("LOUT1"), + SND_SOC_DAPM_OUTPUT("ROUT1"), + SND_SOC_DAPM_OUTPUT("LOUT2"), + SND_SOC_DAPM_OUTPUT("ROUT2"), + SND_SOC_DAPM_OUTPUT("VREF"), +}; + +static const struct snd_soc_dapm_route es8323_dapm_routes[] = { + /*12.22*/ + {"Left PGA Mux", "Line 1L", "LINPUT1"}, + {"Left PGA Mux", "Line 2L", "LINPUT2"}, + {"Left PGA Mux", "DifferentialL", "Differential Mux"}, + + {"Right PGA Mux", "Line 1R", "RINPUT1"}, + {"Right PGA Mux", "Line 2R", "RINPUT2"}, + {"Right PGA Mux", "DifferentialR", "Differential Mux"}, + + {"Differential Mux", "Line 1", "LINPUT1"}, + {"Differential Mux", "Line 1", "RINPUT1"}, + {"Differential Mux", "Line 2", "LINPUT2"}, + {"Differential Mux", "Line 2", "RINPUT2"}, + + {"Left ADC Mux", "Stereo", "Right PGA Mux"}, + {"Left ADC Mux", "Stereo", "Left PGA Mux"}, + {"Left ADC Mux", "Mono (Left)", "Left PGA Mux"}, + + {"Right ADC Mux", "Stereo", "Left PGA Mux"}, + {"Right ADC Mux", "Stereo", "Right PGA Mux"}, + {"Right ADC Mux", "Mono (Right)", "Right PGA Mux"}, + + {"Left ADC Power", NULL, "Left ADC Mux"}, + {"Right ADC Power", NULL, "Right ADC Mux"}, + {"Left ADC", NULL, "Left ADC Power"}, + {"Right ADC", NULL, "Right ADC Power"}, + + {"Left Line Mux", "Line 1L", "LINPUT1"}, + {"Left Line Mux", "Line 2L", "LINPUT2"}, + {"Left Line Mux", "MicL", "Left PGA Mux"}, + + {"Right Line Mux", "Line 1R", "RINPUT1"}, + {"Right Line Mux", "Line 2R", "RINPUT2"}, + {"Right Line Mux", "MicR", "Right PGA Mux"}, + + {"Left Mixer", "Left Playback Switch", "Left DAC"}, + {"Left Mixer", "Left Bypass Switch", "Left Line Mux"}, + + {"Right Mixer", "Right Playback Switch", "Right DAC"}, + {"Right Mixer", "Right Bypass Switch", "Right Line Mux"}, + + {"Left Out 1", NULL, "Left Mixer"}, + {"LOUT1", NULL, "Left Out 1"}, + {"Right Out 1", NULL, "Right Mixer"}, + {"ROUT1", NULL, "Right Out 1"}, + + {"Left Out 2", NULL, "Left Mixer"}, + {"LOUT2", NULL, "Left Out 2"}, + {"Right Out 2", NULL, "Right Mixer"}, + {"ROUT2", NULL, "Right Out 2"}, +}; + +struct coeff_div { + u32 mclk; + u32 rate; + u16 fs; + u8 sr:4; + u8 usb:1; +}; + +/* codec hifi mclk clock divider coefficients */ +static const struct coeff_div es8323_coeff_div[] = { + /* 8k */ + {12288000, 8000, 1536, 0xa, 0x0}, + {11289600, 8000, 1408, 0x9, 0x0}, + {18432000, 8000, 2304, 0xc, 0x0}, + {16934400, 8000, 2112, 0xb, 0x0}, + {12000000, 8000, 1500, 0xb, 0x1}, + + /* 11.025k */ + {11289600, 11025, 1024, 0x7, 0x0}, + {16934400, 11025, 1536, 0xa, 0x0}, + {12000000, 11025, 1088, 0x9, 0x1}, + + /* 16k */ + {12288000, 16000, 768, 0x6, 0x0}, + {18432000, 16000, 1152, 0x8, 0x0}, + {12000000, 16000, 750, 0x7, 0x1}, + + /* 22.05k */ + {11289600, 22050, 512, 0x4, 0x0}, + {16934400, 22050, 768, 0x6, 0x0}, + {12000000, 22050, 544, 0x6, 0x1}, + + /* 32k */ + {12288000, 32000, 384, 0x3, 0x0}, + {18432000, 32000, 576, 0x5, 0x0}, + {12000000, 32000, 375, 0x4, 0x1}, + + /* 44.1k */ + {11289600, 44100, 256, 0x2, 0x0}, + {16934400, 44100, 384, 0x3, 0x0}, + {12000000, 44100, 272, 0x3, 0x1}, + + /* 48k */ + {12288000, 48000, 256, 0x2, 0x0}, + {18432000, 48000, 384, 0x3, 0x0}, + {12000000, 48000, 250, 0x2, 0x1}, + + /* 88.2k */ + {11289600, 88200, 128, 0x0, 0x0}, + {16934400, 88200, 192, 0x1, 0x0}, + {12000000, 88200, 136, 0x1, 0x1}, + + /* 96k */ + {12288000, 96000, 128, 0x0, 0x0}, + {18432000, 96000, 192, 0x1, 0x0}, + {12000000, 96000, 125, 0x0, 0x1}, +}; + +static unsigned int rates_12288[] = { + 8000, 12000, 16000, 24000, 24000, 32000, 48000, 96000, +}; + +static struct snd_pcm_hw_constraint_list constraints_12288 = { + .count = ARRAY_SIZE(rates_12288), + .list = rates_12288, +}; + +static unsigned int rates_112896[] = { + 8000, 11025, 22050, 44100, +}; + +static struct snd_pcm_hw_constraint_list constraints_112896 = { + .count = ARRAY_SIZE(rates_112896), + .list = rates_112896, +}; + +static unsigned int rates_12[] = { + 8000, 11025, 12000, 16000, 22050, 24000, + 32000, 44100, 48000, 48000, 88235, 96000, +}; + +static struct snd_pcm_hw_constraint_list constraints_12 = { + .count = ARRAY_SIZE(rates_12), + .list = rates_12, +}; + +static inline int get_coeff(int mclk, int rate) +{ + int i; + + for (i = 0; i < ARRAY_SIZE(es8323_coeff_div); i++) { + if (es8323_coeff_div[i].rate == rate && + es8323_coeff_div[i].mclk == mclk) + return i; + } + + return -EINVAL; +} + +static int es8323_set_dai_sysclk(struct snd_soc_dai *codec_dai, + int clk_id, unsigned int freq, int dir) +{ + struct snd_soc_component *component = codec_dai->component; + struct es8323_priv *es8323 = snd_soc_component_get_drvdata(component); + + switch (freq) { + case 11289600: + case 18432000: + case 22579200: + case 36864000: + es8323->sysclk_constraints = &constraints_112896; + break; + case 12288000: + case 16934400: + case 24576000: + case 33868800: + es8323->sysclk_constraints = &constraints_12288; + break; + case 12000000: + case 24000000: + es8323->sysclk_constraints = &constraints_12; + break; + default: + return -EINVAL; + } + + es8323->sysclk = freq; + return 0; +} + +static int es8323_set_dai_fmt(struct snd_soc_dai *codec_dai, unsigned int fmt) +{ + struct snd_soc_component *component = codec_dai->component; + u8 iface = snd_soc_component_read(component, ES8323_MASTERMODE); + u8 adciface = snd_soc_component_read(component, ES8323_ADC_IFACE); + u8 daciface = snd_soc_component_read(component, ES8323_DAC_IFACE); + + switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) { + case SND_SOC_DAIFMT_BC_FP: + iface |= 0x80; + break; + case SND_SOC_DAIFMT_BC_FC: + iface &= 0x7F; + break; + default: + return -EINVAL; + } + + /* interface format */ + switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { + case SND_SOC_DAIFMT_I2S: + adciface &= 0xFC; + daciface &= 0xF9; + break; + case SND_SOC_DAIFMT_RIGHT_J: + case SND_SOC_DAIFMT_LEFT_J: + case SND_SOC_DAIFMT_DSP_A: + case SND_SOC_DAIFMT_DSP_B: + break; + default: + return -EINVAL; + } + + /* clock inversion */ + switch (fmt & SND_SOC_DAIFMT_INV_MASK) { + case SND_SOC_DAIFMT_NB_NF: + iface &= 0xDF; + adciface &= 0xDF; + daciface &= 0xBF; + break; + case SND_SOC_DAIFMT_IB_IF: + iface |= 0x20; + adciface |= 0x20; + daciface |= 0x40; + break; + case SND_SOC_DAIFMT_IB_NF: + iface |= 0x20; + adciface &= 0xDF; + daciface &= 0xBF; + break; + case SND_SOC_DAIFMT_NB_IF: + iface &= 0xDF; + adciface |= 0x20; + daciface |= 0x40; + break; + default: + return -EINVAL; + } + + snd_soc_component_write(component, ES8323_MASTERMODE, iface); + snd_soc_component_write(component, ES8323_ADC_IFACE, adciface); + snd_soc_component_write(component, ES8323_DAC_IFACE, daciface); + + return 0; +} + +static int es8323_pcm_startup(struct snd_pcm_substream *substream, + struct snd_soc_dai *dai) +{ + struct snd_soc_component *component = dai->component; + struct es8323_priv *es8323 = snd_soc_component_get_drvdata(component); + + if (es8323->sysclk) { + snd_pcm_hw_constraint_list(substream->runtime, 0, + SNDRV_PCM_HW_PARAM_RATE, + es8323->sysclk_constraints); + } + + return 0; +} + +static int es8323_pcm_hw_params(struct snd_pcm_substream *substream, + struct snd_pcm_hw_params *params, + struct snd_soc_dai *dai) +{ + struct snd_soc_component *component = dai->component; + struct es8323_priv *es8323 = snd_soc_component_get_drvdata(component); + u16 srate = snd_soc_component_read(component, ES8323_MASTERMODE) & 0x80; + u16 adciface = snd_soc_component_read(component, ES8323_ADC_IFACE) & 0xE3; + u16 daciface = snd_soc_component_read(component, ES8323_DAC_IFACE) & 0xC7; + int coeff; + + coeff = get_coeff(es8323->sysclk, params_rate(params)); + if (coeff < 0) { + coeff = get_coeff(es8323->sysclk / 2, params_rate(params)); + srate |= 0x40; + } + + if (coeff < 0) { + dev_err(component->dev, + "Unable to configure sample rate %dHz with %dHz MCLK\n", + params_rate(params), es8323->sysclk); + return coeff; + } + + /* bit size */ + switch (params_format(params)) { + case SNDRV_PCM_FORMAT_S16_LE: + adciface |= 0xc; + daciface |= 0x18; + break; + case SNDRV_PCM_FORMAT_S20_3LE: + adciface |= 0x4; + daciface |= 0x8; + break; + case SNDRV_PCM_FORMAT_S24_LE: + break; + case SNDRV_PCM_FORMAT_S32_LE: + adciface |= 0x10; + daciface |= 0x20; + break; + } + + snd_soc_component_write(component, ES8323_DAC_IFACE, daciface); + snd_soc_component_write(component, ES8323_ADC_IFACE, adciface); + + snd_soc_component_write(component, ES8323_MASTERMODE, srate); + snd_soc_component_write(component, ES8323_ADCCONTROL5, + es8323_coeff_div[coeff].sr | + (es8323_coeff_div[coeff].usb) << 4); + snd_soc_component_write(component, ES8323_DACCONTROL2, + es8323_coeff_div[coeff].sr | + (es8323_coeff_div[coeff].usb) << 4); + + snd_soc_component_write(component, ES8323_DACPOWER, 0x3c); + + return 0; +} + +static int es8323_mute_stream(struct snd_soc_dai *dai, int mute, int stream) +{ + struct snd_soc_component *component = dai->component; + u32 val = mute ? 0x6 : 0x2; + + snd_soc_component_write(component, ES8323_DAC_MUTE, val); + + return 0; +} + +static const struct snd_soc_dai_ops es8323_ops = { + .startup = es8323_pcm_startup, + .hw_params = es8323_pcm_hw_params, + .set_fmt = es8323_set_dai_fmt, + .set_sysclk = es8323_set_dai_sysclk, + .mute_stream = es8323_mute_stream, +}; + +#define ES8323_FORMATS (SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S20_3LE |\ + SNDRV_PCM_FMTBIT_S24_LE) + +static struct snd_soc_dai_driver es8323_dai = { + .name = "ES8323 HiFi", + .playback = { + .stream_name = "Playback", + .channels_min = 1, + .channels_max = 2, + .rates = SNDRV_PCM_RATE_8000_96000, + .formats = ES8323_FORMATS, + }, + .capture = { + .stream_name = "Capture", + .channels_min = 1, + .channels_max = 2, + .rates = SNDRV_PCM_RATE_8000_96000, + .formats = ES8323_FORMATS, + }, + .ops = &es8323_ops, + .symmetric_rate = 1, +}; + +static int es8323_probe(struct snd_soc_component *component) +{ + struct es8323_priv *es8323 = snd_soc_component_get_drvdata(component); + int ret; + + es8323->component = component; + + es8323->mclk = devm_clk_get_optional(component->dev, "mclk"); + if (IS_ERR(es8323->mclk)) { + dev_err(component->dev, "unable to get mclk\n"); + return PTR_ERR(es8323->mclk); + } + + if (!es8323->mclk) + dev_warn(component->dev, "assuming static mclk\n"); + + ret = clk_prepare_enable(es8323->mclk); + if (ret) { + dev_err(component->dev, "unable to enable mclk\n"); + return ret; + } + + snd_soc_component_write(component, ES8323_CONTROL2, 0x60); + snd_soc_component_write(component, ES8323_CHIPPOWER, 0x00); + snd_soc_component_write(component, ES8323_DACCONTROL17, 0xB8); + + return 0; +} + +static void es8323_remove(struct snd_soc_component *component) +{ + struct es8323_priv *es8323 = snd_soc_component_get_drvdata(component); + + clk_disable_unprepare(es8323->mclk); +} + +static int es8323_suspend(struct snd_soc_component *component) +{ + struct es8323_priv *es8323 = snd_soc_component_get_drvdata(component); + + regcache_cache_only(es8323->regmap, true); + regcache_mark_dirty(es8323->regmap); + + return 0; +} + +static int es8323_resume(struct snd_soc_component *component) +{ + struct es8323_priv *es8323 = snd_soc_component_get_drvdata(component); + + regcache_cache_only(es8323->regmap, false); + regcache_sync(es8323->regmap); + + return 0; +} + +static const struct snd_soc_component_driver soc_component_dev_es8323 = { + .probe = es8323_probe, + .remove = es8323_remove, + .suspend = es8323_suspend, + .resume = es8323_resume, + .controls = es8323_snd_controls, + .num_controls = ARRAY_SIZE(es8323_snd_controls), + .dapm_widgets = es8323_dapm_widgets, + .num_dapm_widgets = ARRAY_SIZE(es8323_dapm_widgets), + .dapm_routes = es8323_dapm_routes, + .num_dapm_routes = ARRAY_SIZE(es8323_dapm_routes), + .use_pmdown_time = 1, + .endianness = 1, +}; + +static const struct regmap_config es8323_regmap = { + .reg_bits = 8, + .val_bits = 8, + .use_single_read = true, + .use_single_write = true, + .max_register = 0x53, + .reg_defaults = es8323_reg_defaults, + .num_reg_defaults = ARRAY_SIZE(es8323_reg_defaults), + .cache_type = REGCACHE_MAPLE, +}; + +static int es8323_i2c_probe(struct i2c_client *i2c_client) +{ + struct es8323_priv *es8323; + struct device *dev = &i2c_client->dev; + + es8323 = devm_kzalloc(dev, sizeof(*es8323), GFP_KERNEL); + if (IS_ERR(es8323)) + return -ENOMEM; + + i2c_set_clientdata(i2c_client, es8323); + + es8323->regmap = devm_regmap_init_i2c(i2c_client, &es8323_regmap); + if (IS_ERR(es8323->regmap)) + return PTR_ERR(es8323->regmap); + + return devm_snd_soc_register_component(dev, + &soc_component_dev_es8323, + &es8323_dai, 1); +} + +static const struct i2c_device_id es8323_i2c_id[] = { + { "es8323", 0 }, + { } +}; +MODULE_DEVICE_TABLE(i2c, es8323_i2c_id); + +static const struct acpi_device_id es8323_acpi_match[] = { + { "ESSX8323", 0 }, + { } +}; +MODULE_DEVICE_TABLE(acpi, es8323_acpi_match); + +static const struct of_device_id es8323_of_match[] = { + { .compatible = "everest,es8323" }, + { } +}; +MODULE_DEVICE_TABLE(of, es8323_of_match); + +static struct i2c_driver es8323_i2c_driver = { + .driver = { + .name = "ES8323", + .acpi_match_table = es8323_acpi_match, + .of_match_table = es8323_of_match, + }, + .probe = es8323_i2c_probe, + .id_table = es8323_i2c_id, +}; +module_i2c_driver(es8323_i2c_driver); + +MODULE_DESCRIPTION("Everest Semi ES8323 ALSA SoC Codec Driver"); +MODULE_AUTHOR("Binbin Zhou <zhoubinbin@loongson.cn>"); +MODULE_LICENSE("GPL"); diff --git a/sound/soc/codecs/es8323.h b/sound/soc/codecs/es8323.h new file mode 100644 index 000000000000..f986c9301dc6 --- /dev/null +++ b/sound/soc/codecs/es8323.h @@ -0,0 +1,78 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* + * Copyright Openedhand Ltd. + * + * Author: Richard Purdie <richard@openedhand.com> + * Binbin Zhou <zhoubinbin@loongson.cn> + * + */ + +#ifndef _ES8323_H +#define _ES8323_H + +/* ES8323 register space */ + +/* Chip Control and Power Management */ +#define ES8323_CONTROL1 0x00 +#define ES8323_CONTROL2 0x01 +#define ES8323_CHIPPOWER 0x02 +#define ES8323_ADCPOWER 0x03 +#define ES8323_DACPOWER 0x04 +#define ES8323_CHIPLOPOW1 0x05 +#define ES8323_CHIPLOPOW2 0x06 +#define ES8323_ANAVOLMANAG 0x07 +#define ES8323_MASTERMODE 0x08 + +/* ADC Control */ +#define ES8323_ADCCONTROL1 0x09 +#define ES8323_ADCCONTROL2 0x0a +#define ES8323_ADCCONTROL3 0x0b +#define ES8323_ADCCONTROL4 0x0c +#define ES8323_ADCCONTROL5 0x0d +#define ES8323_ADCCONTROL6 0x0e +#define ES8323_ADC_MUTE 0x0f +#define ES8323_LADC_VOL 0x10 +#define ES8323_RADC_VOL 0x11 +#define ES8323_ADCCONTROL10 0x12 +#define ES8323_ADCCONTROL11 0x13 +#define ES8323_ADCCONTROL12 0x14 +#define ES8323_ADCCONTROL13 0x15 +#define ES8323_ADCCONTROL14 0x16 + +/* DAC Control */ +#define ES8323_DACCONTROL1 0x17 +#define ES8323_DACCONTROL2 0x18 +#define ES8323_DAC_MUTE 0x19 +#define ES8323_LDAC_VOL 0x1a +#define ES8323_RDAC_VOL 0x1b +#define ES8323_DACCONTROL6 0x1c +#define ES8323_DACCONTROL7 0x1d +#define ES8323_DACCONTROL8 0x1e +#define ES8323_DACCONTROL9 0x1f +#define ES8323_DACCONTROL10 0x20 +#define ES8323_DACCONTROL11 0x21 +#define ES8323_DACCONTROL12 0x22 +#define ES8323_DACCONTROL13 0x23 +#define ES8323_DACCONTROL14 0x24 +#define ES8323_DACCONTROL15 0x25 +#define ES8323_DACCONTROL16 0x26 +#define ES8323_DACCONTROL17 0x27 +#define ES8323_DACCONTROL18 0x28 +#define ES8323_DACCONTROL19 0x29 +#define ES8323_DACCONTROL20 0x2a +#define ES8323_DACCONTROL21 0x2b +#define ES8323_DACCONTROL22 0x2c +#define ES8323_DACCONTROL23 0x2d +#define ES8323_LOUT1_VOL 0x2e +#define ES8323_ROUT1_VOL 0x2f +#define ES8323_LOUT2_VOL 0x30 +#define ES8323_ROUT2_VOL 0x31 +#define ES8323_DACCONTROL28 0x32 +#define ES8323_DACCONTROL29 0x33 +#define ES8323_DACCONTROL30 0x34 + +#define ES8323_ADC_IFACE ES8323_ADCCONTROL4 +#define ES8323_ADC_SRATE ES8323_ADCCONTROL5 +#define ES8323_DAC_IFACE ES8323_DACCONTROL1 +#define ES8323_DAC_SRATE ES8323_DACCONTROL2 +#endif -- 2.43.5 ^ permalink raw reply related [flat|nested] 26+ messages in thread
* Re: [PATCH v2 2/9] ASoC: codecs: Add support for ES8323 2024-09-24 7:00 ` [PATCH v2 2/9] ASoC: codecs: Add support for ES8323 Binbin Zhou @ 2024-09-24 9:03 ` Mark Brown 2024-09-25 8:44 ` Binbin Zhou 0 siblings, 1 reply; 26+ messages in thread From: Mark Brown @ 2024-09-24 9:03 UTC (permalink / raw) To: Binbin Zhou Cc: Binbin Zhou, Huacai Chen, Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan [-- Attachment #1: Type: text/plain, Size: 518 bytes --] On Tue, Sep 24, 2024 at 03:00:19PM +0800, Binbin Zhou wrote: > + /* interface format */ > + switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { > + case SND_SOC_DAIFMT_I2S: > + adciface &= 0xFC; > + daciface &= 0xF9; > + break; > + case SND_SOC_DAIFMT_RIGHT_J: > + case SND_SOC_DAIFMT_LEFT_J: > + case SND_SOC_DAIFMT_DSP_A: > + case SND_SOC_DAIFMT_DSP_B: > + break; This results in an identical configuration for everything except I2S which must be buggy, these are distinct formats in ways that are visible on the bus. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 488 bytes --] ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 2/9] ASoC: codecs: Add support for ES8323 2024-09-24 9:03 ` Mark Brown @ 2024-09-25 8:44 ` Binbin Zhou 0 siblings, 0 replies; 26+ messages in thread From: Binbin Zhou @ 2024-09-25 8:44 UTC (permalink / raw) To: Mark Brown Cc: Binbin Zhou, Huacai Chen, Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan Hi Mark: On Tue, Sep 24, 2024 at 3:04 PM Mark Brown <broonie@kernel.org> wrote: > > On Tue, Sep 24, 2024 at 03:00:19PM +0800, Binbin Zhou wrote: > > > + /* interface format */ > > + switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { > > + case SND_SOC_DAIFMT_I2S: > > + adciface &= 0xFC; > > + daciface &= 0xF9; > > + break; > > + case SND_SOC_DAIFMT_RIGHT_J: > > + case SND_SOC_DAIFMT_LEFT_J: > > + case SND_SOC_DAIFMT_DSP_A: > > + case SND_SOC_DAIFMT_DSP_B: > > + break; > > This results in an identical configuration for everything except I2S > which must be buggy, these are distinct formats in ways that are visible > on the bus. Ok, I checked the datasheet for the ES8323 and it has set bits for LEFT_J/RIGHT_J etc. In the next version, I'll patch it all. Thanks. Binbin ^ permalink raw reply [flat|nested] 26+ messages in thread
* [PATCH v2 3/9] ASoC: dt-bindings: Add NXP uda1342 Codec 2024-09-24 6:59 [PATCH v2 0/9] ASoC: Some issues about loongson i2s Binbin Zhou 2024-09-24 6:59 ` [PATCH v2 1/9] ASoC: dt-bindings: Add Everest ES8323 Codec Binbin Zhou 2024-09-24 7:00 ` [PATCH v2 2/9] ASoC: codecs: Add support for ES8323 Binbin Zhou @ 2024-09-24 7:00 ` Binbin Zhou 2024-09-24 7:00 ` [PATCH v2 4/9] ASoC: codecs: Add uda1342 codec driver Binbin Zhou ` (6 subsequent siblings) 9 siblings, 0 replies; 26+ messages in thread From: Binbin Zhou @ 2024-09-24 7:00 UTC (permalink / raw) To: Binbin Zhou, Huacai Chen, Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley Cc: Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan, Binbin Zhou, Krzysztof Kozlowski Add NXP uda1342 CODEC binding with DT schema format using json-schema. Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn> Reviewed-by: Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org> --- .../bindings/sound/nxp,uda1342.yaml | 42 +++++++++++++++++++ 1 file changed, 42 insertions(+) create mode 100644 Documentation/devicetree/bindings/sound/nxp,uda1342.yaml diff --git a/Documentation/devicetree/bindings/sound/nxp,uda1342.yaml b/Documentation/devicetree/bindings/sound/nxp,uda1342.yaml new file mode 100644 index 000000000000..71c6a5a2f5bc --- /dev/null +++ b/Documentation/devicetree/bindings/sound/nxp,uda1342.yaml @@ -0,0 +1,42 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/sound/nxp,uda1342.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: NXP uda1342 audio CODECs + +maintainers: + - Binbin Zhou <zhoubinbin@loongson.cn> + +allOf: + - $ref: dai-common.yaml# + +properties: + compatible: + const: nxp,uda1342 + + reg: + maxItems: 1 + + '#sound-dai-cells': + const: 0 + +required: + - compatible + - reg + - '#sound-dai-cells' + +unevaluatedProperties: false + +examples: + - | + i2c { + #address-cells = <1>; + #size-cells = <0>; + codec@1a { + compatible = "nxp,uda1342"; + reg = <0x1a>; + #sound-dai-cells = <0>; + }; + }; -- 2.43.5 ^ permalink raw reply related [flat|nested] 26+ messages in thread
* [PATCH v2 4/9] ASoC: codecs: Add uda1342 codec driver 2024-09-24 6:59 [PATCH v2 0/9] ASoC: Some issues about loongson i2s Binbin Zhou ` (2 preceding siblings ...) 2024-09-24 7:00 ` [PATCH v2 3/9] ASoC: dt-bindings: Add NXP uda1342 Codec Binbin Zhou @ 2024-09-24 7:00 ` Binbin Zhou 2024-09-24 9:09 ` Mark Brown ` (2 more replies) 2024-09-24 7:00 ` [PATCH v2 5/9] ASoC: loongson: Fix codec detection failure on FDT systems Binbin Zhou ` (5 subsequent siblings) 9 siblings, 3 replies; 26+ messages in thread From: Binbin Zhou @ 2024-09-24 7:00 UTC (permalink / raw) To: Binbin Zhou, Huacai Chen, Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley Cc: Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan, Binbin Zhou The UDA1342 is an NXP audio codec, support 2x Stereo audio ADC (4x PGA mic inputs), stereo audio DAC, with basic audio processing. Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn> --- sound/soc/codecs/Kconfig | 8 + sound/soc/codecs/Makefile | 2 + sound/soc/codecs/uda1342.c | 355 +++++++++++++++++++++++++++++++++++++ sound/soc/codecs/uda1342.h | 79 +++++++++ 4 files changed, 444 insertions(+) create mode 100644 sound/soc/codecs/uda1342.c create mode 100644 sound/soc/codecs/uda1342.h diff --git a/sound/soc/codecs/Kconfig b/sound/soc/codecs/Kconfig index 79b2a16e4202..979824fb90b0 100644 --- a/sound/soc/codecs/Kconfig +++ b/sound/soc/codecs/Kconfig @@ -282,6 +282,7 @@ config SND_SOC_ALL_CODECS imply SND_SOC_TWL4030 imply SND_SOC_TWL6040 imply SND_SOC_UDA1334 + imply SND_SOC_UDA1342 imply SND_SOC_UDA1380 imply SND_SOC_WCD9335 imply SND_SOC_WCD934X @@ -2119,6 +2120,13 @@ config SND_SOC_UDA1334 and has basic features such as de-emphasis (at 44.1 kHz sampling rate) and mute. +config SND_SOC_UDA1342 + tristate "NXP UDA1342 CODEC" + depends on I2C + help + The UDA1342 is an NXP audio codec, support 2x Stereo audio ADC (4x PGA mic inputs), + stereo audio DAC, with basic audio processing. + config SND_SOC_UDA1380 tristate depends on I2C diff --git a/sound/soc/codecs/Makefile b/sound/soc/codecs/Makefile index 62fe972514a4..add76b50c185 100644 --- a/sound/soc/codecs/Makefile +++ b/sound/soc/codecs/Makefile @@ -320,6 +320,7 @@ snd-soc-ts3a227e-y := ts3a227e.o snd-soc-twl4030-y := twl4030.o snd-soc-twl6040-y := twl6040.o snd-soc-uda1334-y := uda1334.o +snd-soc-uda1342-y := uda1342.o snd-soc-uda1380-y := uda1380.o snd-soc-wcd-classh-y := wcd-clsh-v2.o snd-soc-wcd-mbhc-y := wcd-mbhc-v2.o @@ -725,6 +726,7 @@ obj-$(CONFIG_SND_SOC_TS3A227E) += snd-soc-ts3a227e.o obj-$(CONFIG_SND_SOC_TWL4030) += snd-soc-twl4030.o obj-$(CONFIG_SND_SOC_TWL6040) += snd-soc-twl6040.o obj-$(CONFIG_SND_SOC_UDA1334) += snd-soc-uda1334.o +obj-$(CONFIG_SND_SOC_UDA1342) += snd-soc-uda1342.o obj-$(CONFIG_SND_SOC_UDA1380) += snd-soc-uda1380.o obj-$(CONFIG_SND_SOC_WCD_CLASSH) += snd-soc-wcd-classh.o obj-$(CONFIG_SND_SOC_WCD_MBHC) += snd-soc-wcd-mbhc.o diff --git a/sound/soc/codecs/uda1342.c b/sound/soc/codecs/uda1342.c new file mode 100644 index 000000000000..0eae19c6d651 --- /dev/null +++ b/sound/soc/codecs/uda1342.c @@ -0,0 +1,355 @@ +// SPDX-License-Identifier: GPL-2.0-only +/* + * uda1342.c -- UDA1342 ALSA SoC Codec driver + * + * Modifications by Christian Pellegrin <chripell@evolware.org> + * + * Copyright 2007 Dension Audio Systems Ltd. + * Author: Zoltan Devai + * + * Based on the WM87xx drivers by Liam Girdwood and Richard Purdie + */ + +#include <linux/module.h> +#include <linux/i2c.h> +#include <sound/core.h> +#include <sound/pcm.h> +#include <sound/pcm_params.h> +#include <linux/pm_runtime.h> +#include <sound/soc.h> +#include <sound/tlv.h> + +#include "uda1342.h" + +#define UDA134X_FORMATS (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE | \ + SNDRV_PCM_FMTBIT_S18_3LE | SNDRV_PCM_FMTBIT_S20_3LE) + +struct uda1342_priv { + int sysclk; + int dai_fmt; + + struct snd_pcm_substream *provider_substream; + struct snd_pcm_substream *consumer_substream; + + struct regmap *regmap; + struct i2c_client *i2c; +}; + +static const struct reg_default uda1342_reg_defaults[] = { + { 0x00, 0x1042 }, + { 0x01, 0x0000 }, + { 0x10, 0x0088 }, + { 0x11, 0x0000 }, + { 0x12, 0x0000 }, + { 0x20, 0x0080 }, + { 0x21, 0x0080 }, +}; + +static inline void uda1342_reset(struct uda1342_priv *uda1342) +{ + regmap_write(uda1342->regmap, 0x00, BIT(15)); +} + +static int uda1342_mute(struct snd_soc_dai *dai, int mute, int direction) +{ + struct snd_soc_component *component = dai->component; + struct uda1342_priv *uda1342 = snd_soc_component_get_drvdata(component); + unsigned int mask; + unsigned int val = 0; + + /* Master mute */ + mask = BIT(5); + if (mute) + val = mask; + + return regmap_update_bits(uda1342->regmap, 0x10, mask, val); +} + +static int uda1342_startup(struct snd_pcm_substream *substream, + struct snd_soc_dai *dai) +{ + struct snd_soc_component *component = dai->component; + struct uda1342_priv *uda1342 = snd_soc_component_get_drvdata(component); + struct snd_pcm_runtime *master_runtime; + + if (uda1342->provider_substream) { + master_runtime = uda1342->provider_substream->runtime; + + snd_pcm_hw_constraint_single(substream->runtime, + SNDRV_PCM_HW_PARAM_RATE, master_runtime->rate); + snd_pcm_hw_constraint_single(substream->runtime, + SNDRV_PCM_HW_PARAM_SAMPLE_BITS, + master_runtime->sample_bits); + + uda1342->consumer_substream = substream; + } else { + uda1342->provider_substream = substream; + } + + return 0; +} + +static void uda1342_shutdown(struct snd_pcm_substream *substream, + struct snd_soc_dai *dai) +{ + struct snd_soc_component *component = dai->component; + struct uda1342_priv *uda1342 = snd_soc_component_get_drvdata(component); + + if (uda1342->provider_substream == substream) + uda1342->provider_substream = uda1342->consumer_substream; + + uda1342->consumer_substream = NULL; +} + +static int uda1342_hw_params(struct snd_pcm_substream *substream, + struct snd_pcm_hw_params *params, struct snd_soc_dai *dai) +{ + struct snd_soc_component *component = dai->component; + struct uda1342_priv *uda1342 = snd_soc_component_get_drvdata(component); + struct device *dev = &uda1342->i2c->dev; + unsigned int hw_params = 0; + + if (substream == uda1342->consumer_substream) { + dev_info(dev, "ignoring hw_params for consumer substream\n"); + return 0; + } + + /* set SYSCLK / fs ratio */ + switch (uda1342->sysclk / params_rate(params)) { + case 512: + break; + case 384: + hw_params |= BIT(4); + break; + case 256: + hw_params |= BIT(5); + break; + default: + dev_err(dev, "unsupported frequency\n"); + return -EINVAL; + } + + /* set DAI format and word length */ + switch (uda1342->dai_fmt & SND_SOC_DAIFMT_FORMAT_MASK) { + case SND_SOC_DAIFMT_I2S: + break; + case SND_SOC_DAIFMT_RIGHT_J: + switch (params_width(params)) { + case 16: + hw_params |= BIT(1); + break; + case 18: + hw_params |= BIT(2); + break; + case 20: + hw_params |= BIT(2) | BIT(1); + break; + default: + dev_err(dev, "unsupported format (right)\n"); + return -EINVAL; + } + break; + case SND_SOC_DAIFMT_LEFT_J: + hw_params |= BIT(3); + break; + default: + dev_err(dev, "unsupported format\n"); + return -EINVAL; + } + + return regmap_update_bits(uda1342->regmap, 0x0, + STATUS0_DAIFMT_MASK | STATUS0_SYSCLK_MASK, hw_params); +} + +static int uda1342_set_dai_sysclk(struct snd_soc_dai *codec_dai, + int clk_id, unsigned int freq, int dir) +{ + struct snd_soc_component *component = codec_dai->component; + struct uda1342_priv *uda1342 = snd_soc_component_get_drvdata(component); + struct device *dev = &uda1342->i2c->dev; + + /* + * Anything between 256fs*8Khz and 512fs*48Khz should be acceptable + * because the codec is slave. Of course limitations of the clock + * master (the IIS controller) apply. + * We'll error out on set_hw_params if it's not OK + */ + if ((freq >= (256 * 8000)) && (freq <= (512 * 48000))) { + uda1342->sysclk = freq; + return 0; + } + + dev_err(dev, "unsupported sysclk\n"); + + return -EINVAL; +} + +static int uda1342_set_dai_fmt(struct snd_soc_dai *codec_dai, unsigned int fmt) +{ + struct snd_soc_component *component = codec_dai->component; + struct uda1342_priv *uda1342 = snd_soc_component_get_drvdata(component); + + /* codec supports only full consumer mode */ + if ((fmt & SND_SOC_DAIFMT_MASTER_MASK) != SND_SOC_DAIFMT_BC_FC) { + dev_err(&uda1342->i2c->dev, "unsupported consumer mode.\n"); + return -EINVAL; + } + + /* We can't setup DAI format here as it depends on the word bit num */ + /* so let's just store the value for later */ + uda1342->dai_fmt = fmt; + + return 0; +} + +static const char *const uda1342_deemph[] = {"None", "32Khz", "44.1Khz", "48Khz"}; +static const char *const uda1342_mixmode[] = {"Differential", "Analog1", "Analog2", "Both"}; + +static const struct snd_kcontrol_new uda1342_snd_controls[] = { + SOC_SINGLE("Master Playback Volume", 0x11, 0, 0x3F, 1), + SOC_SINGLE("Analog1 Volume", 0x12, 0, 0x1F, 1), +}; + +/* Common DAPM widgets */ +static const struct snd_soc_dapm_widget uda1342_dapm_widgets[] = { + SND_SOC_DAPM_INPUT("VINL1"), + SND_SOC_DAPM_INPUT("VINR1"), + SND_SOC_DAPM_INPUT("VINL2"), + SND_SOC_DAPM_INPUT("VINR2"), + + SND_SOC_DAPM_DAC("DAC", "Playback", 0, 1, 0), + SND_SOC_DAPM_ADC("ADC", "Capture", 0, 9, 0), + + SND_SOC_DAPM_OUTPUT("VOUTL"), + SND_SOC_DAPM_OUTPUT("VOUTR"), +}; + +static const struct snd_soc_dapm_route uda1342_dapm_routes[] = { + { "ADC", NULL, "VINL1" }, + { "ADC", NULL, "VINR1" }, + { "ADC", NULL, "VINL2" }, + { "ADC", NULL, "VINR2" }, + { "VOUTL", NULL, "DAC" }, + { "VOUTR", NULL, "DAC" }, +}; + +static const struct snd_soc_dai_ops uda1342_dai_ops = { + .startup = uda1342_startup, + .shutdown = uda1342_shutdown, + .hw_params = uda1342_hw_params, + .mute_stream = uda1342_mute, + .set_sysclk = uda1342_set_dai_sysclk, + .set_fmt = uda1342_set_dai_fmt, +}; + +static struct snd_soc_dai_driver uda1342_dai = { + .name = "uda1342-hifi", + /* playback capabilities */ + .playback = { + .stream_name = "Playback", + .channels_min = 1, + .channels_max = 2, + .rates = SNDRV_PCM_RATE_8000_48000, + .formats = UDA134X_FORMATS, + }, + /* capture capabilities */ + .capture = { + .stream_name = "Capture", + .channels_min = 1, + .channels_max = 2, + .rates = SNDRV_PCM_RATE_8000_48000, + .formats = UDA134X_FORMATS, + }, + /* pcm operations */ + .ops = &uda1342_dai_ops, +}; + +static const struct snd_soc_component_driver soc_component_dev_uda1342 = { + .num_controls = ARRAY_SIZE(uda1342_snd_controls), + .dapm_widgets = uda1342_dapm_widgets, + .num_dapm_widgets = ARRAY_SIZE(uda1342_dapm_widgets), + .dapm_routes = uda1342_dapm_routes, + .num_dapm_routes = ARRAY_SIZE(uda1342_dapm_routes), + .suspend_bias_off = 1, + .idle_bias_on = 1, + .use_pmdown_time = 1, + .endianness = 1, +}; + +static const struct regmap_config uda1342_regmap = { + .reg_bits = 8, + .val_bits = 16, + .max_register = 0x21, + .reg_defaults = uda1342_reg_defaults, + .num_reg_defaults = ARRAY_SIZE(uda1342_reg_defaults), + .cache_type = REGCACHE_MAPLE, +}; + +static int uda1342_i2c_probe(struct i2c_client *i2c) +{ + struct uda1342_priv *uda1342; + + uda1342 = devm_kzalloc(&i2c->dev, sizeof(*uda1342), GFP_KERNEL); + if (!uda1342) + return -ENOMEM; + + uda1342->regmap = devm_regmap_init_i2c(i2c, &uda1342_regmap); + if (IS_ERR(uda1342->regmap)) + return PTR_ERR(uda1342->regmap); + + i2c_set_clientdata(i2c, uda1342); + uda1342->i2c = i2c; + + return devm_snd_soc_register_component(&i2c->dev, + &soc_component_dev_uda1342, + &uda1342_dai, 1); +} + +static int uda1342_suspend(struct device *dev) +{ + struct uda1342_priv *uda1342 = dev_get_drvdata(dev); + + regcache_cache_only(uda1342->regmap, true); + + return 0; +} + +static int uda1342_resume(struct device *dev) +{ + struct uda1342_priv *uda1342 = dev_get_drvdata(dev); + + regcache_mark_dirty(uda1342->regmap); + regcache_sync(uda1342->regmap); + + return 0; +} + +static DEFINE_RUNTIME_DEV_PM_OPS(uda1342_pm_ops, + uda1342_suspend, uda1342_resume, NULL); + +static const struct i2c_device_id uda1342_i2c_id[] = { + { "uda1342", 0 }, + { } +}; +MODULE_DEVICE_TABLE(i2c, uda1342_i2c_id); + +static const struct of_device_id uda1342_of_match[] = { + { .compatible = "nxp,uda1342" }, + { } +}; +MODULE_DEVICE_TABLE(of, uda1342_of_match); + +static struct i2c_driver uda1342_i2c_driver = { + .driver = { + .name = "uda1342", + .of_match_table = uda1342_of_match, + .pm = pm_sleep_ptr(&uda1342_pm_ops), + }, + .probe = uda1342_i2c_probe, + .id_table = uda1342_i2c_id, +}; +module_i2c_driver(uda1342_i2c_driver); + +MODULE_DESCRIPTION("UDA1342 ALSA soc codec driver"); +MODULE_AUTHOR("Zoltan Devai, Christian Pellegrin <chripell@evolware.org>"); +MODULE_LICENSE("GPL"); diff --git a/sound/soc/codecs/uda1342.h b/sound/soc/codecs/uda1342.h new file mode 100644 index 000000000000..fb1a34ac4081 --- /dev/null +++ b/sound/soc/codecs/uda1342.h @@ -0,0 +1,79 @@ +/* SPDX-License-Identifier: GPL-2.0-only */ +/* + * Audio support for NXP UDA1342 + * + * Copyright (c) 2005 Giorgio Padrin <giorgio@mandarinlogiq.org> + * Copyright (c) 2024 Binbin Zhou <zhoubinbin@loongson.cn> + * Copyright (c) 2024 Loongson Technology Corporation Limited. + */ + +#ifndef _UDA1342_H +#define _UDA1342_H + +#define UDA1342_CLK 0x00 +#define UDA1342_IFACE 0x01 +#define UDA1342_PM 0x02 +#define UDA1342_AMIX 0x03 +#define UDA1342_HP 0x04 +#define UDA1342_MVOL 0x11 +#define UDA1342_MIXVOL 0x12 +#define UDA1342_MODE 0x12 +#define UDA1342_DEEMP 0x13 +#define UDA1342_MIXER 0x14 +#define UDA1342_INTSTAT 0x18 +#define UDA1342_DEC 0x20 +#define UDA1342_PGA 0x21 +#define UDA1342_ADC 0x22 +#define UDA1342_AGC 0x23 +#define UDA1342_DECSTAT 0x28 +#define UDA1342_RESET 0x7f + +/* Register flags */ +#define R00_EN_ADC 0x0800 +#define R00_EN_DEC 0x0400 +#define R00_EN_DAC 0x0200 +#define R00_EN_INT 0x0100 +#define R00_DAC_CLK 0x0010 +#define R01_SFORI_I2S 0x0000 +#define R01_SFORI_LSB16 0x0100 +#define R01_SFORI_LSB18 0x0200 +#define R01_SFORI_LSB20 0x0300 +#define R01_SFORI_MSB 0x0500 +#define R01_SFORI_MASK 0x0700 +#define R01_SFORO_I2S 0x0000 +#define R01_SFORO_LSB16 0x0001 +#define R01_SFORO_LSB18 0x0002 +#define R01_SFORO_LSB20 0x0003 +#define R01_SFORO_LSB24 0x0004 +#define R01_SFORO_MSB 0x0005 +#define R01_SFORO_MASK 0x0007 +#define R01_SEL_SOURCE 0x0040 +#define R01_SIM 0x0010 +#define R02_PON_PLL 0x8000 +#define R02_PON_HP 0x2000 +#define R02_PON_DAC 0x0400 +#define R02_PON_BIAS 0x0100 +#define R02_EN_AVC 0x0080 +#define R02_PON_AVC 0x0040 +#define R02_PON_LNA 0x0010 +#define R02_PON_PGAL 0x0008 +#define R02_PON_ADCL 0x0004 +#define R02_PON_PGAR 0x0002 +#define R02_PON_ADCR 0x0001 +#define R13_MTM 0x4000 +#define R14_SILENCE 0x0080 +#define R14_SDET_ON 0x0040 +#define R21_MT_ADC 0x8000 +#define R22_SEL_LNA 0x0008 +#define R22_SEL_MIC 0x0004 +#define R22_SKIP_DCFIL 0x0002 +#define R23_AGC_EN 0x0001 + +#define UDA1342_DAI_DUPLEX 0 /* playback and capture on single DAI */ +#define UDA1342_DAI_PLAYBACK 1 /* playback DAI */ +#define UDA1342_DAI_CAPTURE 2 /* capture DAI */ + +#define STATUS0_DAIFMT_MASK (~(7 << 1)) +#define STATUS0_SYSCLK_MASK (~(3 << 4)) + +#endif /* _UDA1342_H */ -- 2.43.5 ^ permalink raw reply related [flat|nested] 26+ messages in thread
* Re: [PATCH v2 4/9] ASoC: codecs: Add uda1342 codec driver 2024-09-24 7:00 ` [PATCH v2 4/9] ASoC: codecs: Add uda1342 codec driver Binbin Zhou @ 2024-09-24 9:09 ` Mark Brown 2024-09-24 15:58 ` kernel test robot 2024-09-24 17:31 ` kernel test robot 2 siblings, 0 replies; 26+ messages in thread From: Mark Brown @ 2024-09-24 9:09 UTC (permalink / raw) To: Binbin Zhou Cc: Binbin Zhou, Huacai Chen, Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan [-- Attachment #1: Type: text/plain, Size: 1216 bytes --] On Tue, Sep 24, 2024 at 03:00:31PM +0800, Binbin Zhou wrote: > @@ -0,0 +1,355 @@ > +// SPDX-License-Identifier: GPL-2.0-only > +/* > + * uda1342.c -- UDA1342 ALSA SoC Codec driver > + * > + * Modifications by Christian Pellegrin <chripell@evolware.org> Please make the entire comment a C++ comment so things look more intentional. > +static int uda1342_hw_params(struct snd_pcm_substream *substream, > + struct snd_pcm_hw_params *params, struct snd_soc_dai *dai) > +{ > + struct snd_soc_component *component = dai->component; > + struct uda1342_priv *uda1342 = snd_soc_component_get_drvdata(component); > + struct device *dev = &uda1342->i2c->dev; > + unsigned int hw_params = 0; > + > + if (substream == uda1342->consumer_substream) { > + dev_info(dev, "ignoring hw_params for consumer substream\n"); > + return 0; > + } This is going to spam the logs loudly, dev_dbg() at most. For modern ALSA it's probably good to check that the configuration is the same, indeed it'd be good to set constraints for the configuration of the parent stream. We used to have to care about OSS which would transiently write invalid configurations but that was well over 10 years ago so probably isn't relevant here. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 488 bytes --] ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 4/9] ASoC: codecs: Add uda1342 codec driver 2024-09-24 7:00 ` [PATCH v2 4/9] ASoC: codecs: Add uda1342 codec driver Binbin Zhou 2024-09-24 9:09 ` Mark Brown @ 2024-09-24 15:58 ` kernel test robot 2024-09-24 17:31 ` kernel test robot 2 siblings, 0 replies; 26+ messages in thread From: kernel test robot @ 2024-09-24 15:58 UTC (permalink / raw) To: Binbin Zhou, Binbin Zhou, Huacai Chen, Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley Cc: oe-kbuild-all, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan Hi Binbin, kernel test robot noticed the following build warnings: [auto build test WARNING on broonie-sound/for-next] [also build test WARNING on robh/for-next linus/master v6.11 next-20240924] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch#_base_tree_information] url: https://github.com/intel-lab-lkp/linux/commits/Binbin-Zhou/ASoC-dt-bindings-Add-Everest-ES8323-Codec/20240924-150942 base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next patch link: https://lore.kernel.org/r/c69743ea929fed210128de765967ea045ebd6b27.1727056789.git.zhoubinbin%40loongson.cn patch subject: [PATCH v2 4/9] ASoC: codecs: Add uda1342 codec driver config: alpha-allyesconfig (https://download.01.org/0day-ci/archive/20240924/202409242348.1aLlK9i6-lkp@intel.com/config) compiler: alpha-linux-gcc (GCC) 13.3.0 reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240924/202409242348.1aLlK9i6-lkp@intel.com/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp@intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202409242348.1aLlK9i6-lkp@intel.com/ All warnings (new ones prefixed by >>): >> sound/soc/codecs/uda1342.c:206:26: warning: 'uda1342_mixmode' defined but not used [-Wunused-const-variable=] 206 | static const char *const uda1342_mixmode[] = {"Differential", "Analog1", "Analog2", "Both"}; | ^~~~~~~~~~~~~~~ >> sound/soc/codecs/uda1342.c:205:26: warning: 'uda1342_deemph' defined but not used [-Wunused-const-variable=] 205 | static const char *const uda1342_deemph[] = {"None", "32Khz", "44.1Khz", "48Khz"}; | ^~~~~~~~~~~~~~ vim +/uda1342_mixmode +206 sound/soc/codecs/uda1342.c 204 > 205 static const char *const uda1342_deemph[] = {"None", "32Khz", "44.1Khz", "48Khz"}; > 206 static const char *const uda1342_mixmode[] = {"Differential", "Analog1", "Analog2", "Both"}; 207 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 4/9] ASoC: codecs: Add uda1342 codec driver 2024-09-24 7:00 ` [PATCH v2 4/9] ASoC: codecs: Add uda1342 codec driver Binbin Zhou 2024-09-24 9:09 ` Mark Brown 2024-09-24 15:58 ` kernel test robot @ 2024-09-24 17:31 ` kernel test robot 2 siblings, 0 replies; 26+ messages in thread From: kernel test robot @ 2024-09-24 17:31 UTC (permalink / raw) To: Binbin Zhou, Binbin Zhou, Huacai Chen, Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley Cc: llvm, oe-kbuild-all, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan Hi Binbin, kernel test robot noticed the following build warnings: [auto build test WARNING on broonie-sound/for-next] [also build test WARNING on robh/for-next linus/master v6.11 next-20240924] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch#_base_tree_information] url: https://github.com/intel-lab-lkp/linux/commits/Binbin-Zhou/ASoC-dt-bindings-Add-Everest-ES8323-Codec/20240924-150942 base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next patch link: https://lore.kernel.org/r/c69743ea929fed210128de765967ea045ebd6b27.1727056789.git.zhoubinbin%40loongson.cn patch subject: [PATCH v2 4/9] ASoC: codecs: Add uda1342 codec driver config: hexagon-allmodconfig (https://download.01.org/0day-ci/archive/20240925/202409250031.jLVR7xNR-lkp@intel.com/config) compiler: clang version 20.0.0git (https://github.com/llvm/llvm-project 8663a75fa2f31299ab8d1d90288d9df92aadee88) reproduce (this is a W=1 build): (https://download.01.org/0day-ci/archive/20240925/202409250031.jLVR7xNR-lkp@intel.com/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp@intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202409250031.jLVR7xNR-lkp@intel.com/ All warnings (new ones prefixed by >>): In file included from sound/soc/codecs/uda1342.c:14: In file included from include/linux/i2c.h:19: In file included from include/linux/regulator/consumer.h:35: In file included from include/linux/suspend.h:5: In file included from include/linux/swap.h:9: In file included from include/linux/memcontrol.h:13: In file included from include/linux/cgroup.h:25: In file included from include/linux/kernel_stat.h:8: In file included from include/linux/interrupt.h:11: In file included from include/linux/hardirq.h:11: In file included from ./arch/hexagon/include/generated/asm/hardirq.h:1: In file included from include/asm-generic/hardirq.h:17: In file included from include/linux/irq.h:20: In file included from include/linux/io.h:14: In file included from arch/hexagon/include/asm/io.h:328: include/asm-generic/io.h:548:31: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic] 548 | val = __raw_readb(PCI_IOBASE + addr); | ~~~~~~~~~~ ^ include/asm-generic/io.h:561:61: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic] 561 | val = __le16_to_cpu((__le16 __force)__raw_readw(PCI_IOBASE + addr)); | ~~~~~~~~~~ ^ include/uapi/linux/byteorder/little_endian.h:37:51: note: expanded from macro '__le16_to_cpu' 37 | #define __le16_to_cpu(x) ((__force __u16)(__le16)(x)) | ^ In file included from sound/soc/codecs/uda1342.c:14: In file included from include/linux/i2c.h:19: In file included from include/linux/regulator/consumer.h:35: In file included from include/linux/suspend.h:5: In file included from include/linux/swap.h:9: In file included from include/linux/memcontrol.h:13: In file included from include/linux/cgroup.h:25: In file included from include/linux/kernel_stat.h:8: In file included from include/linux/interrupt.h:11: In file included from include/linux/hardirq.h:11: In file included from ./arch/hexagon/include/generated/asm/hardirq.h:1: In file included from include/asm-generic/hardirq.h:17: In file included from include/linux/irq.h:20: In file included from include/linux/io.h:14: In file included from arch/hexagon/include/asm/io.h:328: include/asm-generic/io.h:574:61: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic] 574 | val = __le32_to_cpu((__le32 __force)__raw_readl(PCI_IOBASE + addr)); | ~~~~~~~~~~ ^ include/uapi/linux/byteorder/little_endian.h:35:51: note: expanded from macro '__le32_to_cpu' 35 | #define __le32_to_cpu(x) ((__force __u32)(__le32)(x)) | ^ In file included from sound/soc/codecs/uda1342.c:14: In file included from include/linux/i2c.h:19: In file included from include/linux/regulator/consumer.h:35: In file included from include/linux/suspend.h:5: In file included from include/linux/swap.h:9: In file included from include/linux/memcontrol.h:13: In file included from include/linux/cgroup.h:25: In file included from include/linux/kernel_stat.h:8: In file included from include/linux/interrupt.h:11: In file included from include/linux/hardirq.h:11: In file included from ./arch/hexagon/include/generated/asm/hardirq.h:1: In file included from include/asm-generic/hardirq.h:17: In file included from include/linux/irq.h:20: In file included from include/linux/io.h:14: In file included from arch/hexagon/include/asm/io.h:328: include/asm-generic/io.h:585:33: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic] 585 | __raw_writeb(value, PCI_IOBASE + addr); | ~~~~~~~~~~ ^ include/asm-generic/io.h:595:59: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic] 595 | __raw_writew((u16 __force)cpu_to_le16(value), PCI_IOBASE + addr); | ~~~~~~~~~~ ^ include/asm-generic/io.h:605:59: warning: performing pointer arithmetic on a null pointer has undefined behavior [-Wnull-pointer-arithmetic] 605 | __raw_writel((u32 __force)cpu_to_le32(value), PCI_IOBASE + addr); | ~~~~~~~~~~ ^ In file included from sound/soc/codecs/uda1342.c:14: In file included from include/linux/i2c.h:19: In file included from include/linux/regulator/consumer.h:35: In file included from include/linux/suspend.h:5: In file included from include/linux/swap.h:9: In file included from include/linux/memcontrol.h:21: In file included from include/linux/mm.h:2228: include/linux/vmstat.h:514:36: warning: arithmetic between different enumeration types ('enum node_stat_item' and 'enum lru_list') [-Wenum-enum-conversion] 514 | return node_stat_name(NR_LRU_BASE + lru) + 3; // skip "nr_" | ~~~~~~~~~~~ ^ ~~~ sound/soc/codecs/uda1342.c:48:20: warning: unused function 'uda1342_reset' [-Wunused-function] 48 | static inline void uda1342_reset(struct uda1342_priv *uda1342) | ^~~~~~~~~~~~~ >> sound/soc/codecs/uda1342.c:205:26: warning: unused variable 'uda1342_deemph' [-Wunused-const-variable] 205 | static const char *const uda1342_deemph[] = {"None", "32Khz", "44.1Khz", "48Khz"}; | ^~~~~~~~~~~~~~ >> sound/soc/codecs/uda1342.c:206:26: warning: unused variable 'uda1342_mixmode' [-Wunused-const-variable] 206 | static const char *const uda1342_mixmode[] = {"Differential", "Analog1", "Analog2", "Both"}; | ^~~~~~~~~~~~~~~ sound/soc/codecs/uda1342.c:208:38: warning: variable 'uda1342_snd_controls' is not needed and will not be emitted [-Wunneeded-internal-declaration] 208 | static const struct snd_kcontrol_new uda1342_snd_controls[] = { | ^~~~~~~~~~~~~~~~~~~~ 11 warnings generated. vim +/uda1342_deemph +205 sound/soc/codecs/uda1342.c 204 > 205 static const char *const uda1342_deemph[] = {"None", "32Khz", "44.1Khz", "48Khz"}; > 206 static const char *const uda1342_mixmode[] = {"Differential", "Analog1", "Analog2", "Both"}; 207 -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki ^ permalink raw reply [flat|nested] 26+ messages in thread
* [PATCH v2 5/9] ASoC: loongson: Fix codec detection failure on FDT systems 2024-09-24 6:59 [PATCH v2 0/9] ASoC: Some issues about loongson i2s Binbin Zhou ` (3 preceding siblings ...) 2024-09-24 7:00 ` [PATCH v2 4/9] ASoC: codecs: Add uda1342 codec driver Binbin Zhou @ 2024-09-24 7:00 ` Binbin Zhou 2024-09-24 9:19 ` Mark Brown 2024-09-24 7:00 ` [PATCH v2 6/9] ASoC: dt-bindings: Add Loongson I2S controller Binbin Zhou ` (4 subsequent siblings) 9 siblings, 1 reply; 26+ messages in thread From: Binbin Zhou @ 2024-09-24 7:00 UTC (permalink / raw) To: Binbin Zhou, Huacai Chen, Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley Cc: Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan, Binbin Zhou When the Codec is compiled into a module, we can't use snd_soc_of_get_dlc() to get the codec dai_name, use snd_soc_get_dai_name() instead. Also, for the cpu dailink, its dai_name is already defined as "loongson-i2s", so just get the corresponding of_node attribute here. Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn> --- sound/soc/loongson/loongson_card.c | 81 ++++++++++++++++++++---------- 1 file changed, 55 insertions(+), 26 deletions(-) diff --git a/sound/soc/loongson/loongson_card.c b/sound/soc/loongson/loongson_card.c index 7379f24d385c..b07b8652d95b 100644 --- a/sound/soc/loongson/loongson_card.c +++ b/sound/soc/loongson/loongson_card.c @@ -119,48 +119,77 @@ static int loongson_card_parse_acpi(struct loongson_card_data *data) return 0; } -static int loongson_card_parse_of(struct loongson_card_data *data) +static int loongson_parse_cpu(struct snd_soc_card *card) { - struct device_node *cpu, *codec; - struct snd_soc_card *card = &data->snd_card; + struct device_node *dai_node = NULL, *cpu = NULL; struct device *dev = card->dev; - int ret, i; + int i; cpu = of_get_child_by_name(dev->of_node, "cpu"); - if (!cpu) { - dev_err(dev, "platform property missing or invalid\n"); + if (!cpu) return -EINVAL; + + dai_node = of_parse_phandle(cpu, "sound-dai", 0); + of_node_put(cpu); + if (!dai_node) + return -EINVAL; + + for (i = 0; i < card->num_links; i++) { + loongson_dai_links[i].platforms->of_node = dai_node; + loongson_dai_links[i].cpus->of_node = dai_node; } + + of_node_put(dai_node); + return 0; +} + +static int loongson_parse_codec(struct snd_soc_card *card) +{ + struct device_node *codec = NULL, *dai_node = NULL; + struct device *dev = card->dev; + struct of_phandle_args args; + const char *dai_name; + int ret = 0, i; + codec = of_get_child_by_name(dev->of_node, "codec"); - if (!codec) { - dev_err(dev, "audio-codec property missing or invalid\n"); - of_node_put(cpu); + if (!codec) return -EINVAL; + + ret = of_parse_phandle_with_args(codec, "sound-dai", "#sound-dai-cells", 0, &args); + if (ret) + goto codec_put; + + ret = snd_soc_get_dai_name(&args, &dai_name); + of_node_put(args.np); + if (ret) + goto codec_put; + + dai_node = of_parse_phandle(codec, "sound-dai", 0); + if (!dai_node) { + ret = -EINVAL; + goto codec_put; } for (i = 0; i < card->num_links; i++) { - ret = snd_soc_of_get_dlc(cpu, NULL, loongson_dai_links[i].cpus, 0); - if (ret < 0) { - dev_err(dev, "getting cpu dlc error (%d)\n", ret); - goto err; - } - - ret = snd_soc_of_get_dlc(codec, NULL, loongson_dai_links[i].codecs, 0); - if (ret < 0) { - dev_err(dev, "getting codec dlc error (%d)\n", ret); - goto err; - } + loongson_dai_links[i].codecs->of_node = dai_node; + loongson_dai_links[i].codecs->dai_name = dai_name; } - of_node_put(cpu); +codec_put: of_node_put(codec); + return ret; +} - return 0; +static int loongson_card_parse_of(struct loongson_card_data *data) +{ + struct snd_soc_card *card = &data->snd_card; + int ret; -err: - of_node_put(cpu); - of_node_put(codec); - return ret; + ret = loongson_parse_cpu(card); + if (ret) + return ret; + + return loongson_parse_codec(card); } static int loongson_asoc_card_probe(struct platform_device *pdev) -- 2.43.5 ^ permalink raw reply related [flat|nested] 26+ messages in thread
* Re: [PATCH v2 5/9] ASoC: loongson: Fix codec detection failure on FDT systems 2024-09-24 7:00 ` [PATCH v2 5/9] ASoC: loongson: Fix codec detection failure on FDT systems Binbin Zhou @ 2024-09-24 9:19 ` Mark Brown 2024-09-25 9:05 ` Binbin Zhou 0 siblings, 1 reply; 26+ messages in thread From: Mark Brown @ 2024-09-24 9:19 UTC (permalink / raw) To: Binbin Zhou Cc: Binbin Zhou, Huacai Chen, Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan [-- Attachment #1: Type: text/plain, Size: 297 bytes --] On Tue, Sep 24, 2024 at 03:00:32PM +0800, Binbin Zhou wrote: > When the Codec is compiled into a module, we can't use > snd_soc_of_get_dlc() to get the codec dai_name, use > snd_soc_get_dai_name() instead. What is the issue with using snd_soc_of_get_dlc()? Shouldn't we fix the helper instead? [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 488 bytes --] ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 5/9] ASoC: loongson: Fix codec detection failure on FDT systems 2024-09-24 9:19 ` Mark Brown @ 2024-09-25 9:05 ` Binbin Zhou 0 siblings, 0 replies; 26+ messages in thread From: Binbin Zhou @ 2024-09-25 9:05 UTC (permalink / raw) To: Mark Brown Cc: Binbin Zhou, Huacai Chen, Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan Hi Mark: On Tue, Sep 24, 2024 at 3:19 PM Mark Brown <broonie@kernel.org> wrote: > > On Tue, Sep 24, 2024 at 03:00:32PM +0800, Binbin Zhou wrote: > > > When the Codec is compiled into a module, we can't use > > snd_soc_of_get_dlc() to get the codec dai_name, use > > snd_soc_get_dai_name() instead. > > What is the issue with using snd_soc_of_get_dlc()? Shouldn't we fix the > helper instead? I'm very sorry for this part, I checked and tested it again and I should have over-modified it as well as the use of snd_soc_of_get_dlc() is correct. In fact, what's really being missed here is the assignment of snd_soc_dai_link.platforms->of_node, which causes component_empty for soc_dai_link_sanity_check(). I'll rewrite this part in the next patch set. Thanks. Binbin ^ permalink raw reply [flat|nested] 26+ messages in thread
* [PATCH v2 6/9] ASoC: dt-bindings: Add Loongson I2S controller 2024-09-24 6:59 [PATCH v2 0/9] ASoC: Some issues about loongson i2s Binbin Zhou ` (4 preceding siblings ...) 2024-09-24 7:00 ` [PATCH v2 5/9] ASoC: loongson: Fix codec detection failure on FDT systems Binbin Zhou @ 2024-09-24 7:00 ` Binbin Zhou 2024-09-24 23:27 ` Rob Herring (Arm) 2024-09-24 7:00 ` [PATCH v2 7/9] ASoC: loongson: Add I2S controller driver as platform device Binbin Zhou ` (3 subsequent siblings) 9 siblings, 1 reply; 26+ messages in thread From: Binbin Zhou @ 2024-09-24 7:00 UTC (permalink / raw) To: Binbin Zhou, Huacai Chen, Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley Cc: Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan, Binbin Zhou Add Loongson I2S controller binding with DT schema format using json-schema. Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn> --- .../bindings/sound/loongson,ls2k1000-i2s.yaml | 68 +++++++++++++++++++ 1 file changed, 68 insertions(+) create mode 100644 Documentation/devicetree/bindings/sound/loongson,ls2k1000-i2s.yaml diff --git a/Documentation/devicetree/bindings/sound/loongson,ls2k1000-i2s.yaml b/Documentation/devicetree/bindings/sound/loongson,ls2k1000-i2s.yaml new file mode 100644 index 000000000000..da79510bb2d9 --- /dev/null +++ b/Documentation/devicetree/bindings/sound/loongson,ls2k1000-i2s.yaml @@ -0,0 +1,68 @@ +# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause) +%YAML 1.2 +--- +$id: http://devicetree.org/schemas/sound/loongson,ls2k1000-i2s.yaml# +$schema: http://devicetree.org/meta-schemas/core.yaml# + +title: Loongson-2K1000 I2S controller + +maintainers: + - Binbin Zhou <zhoubinbin@loongson.cn> + +allOf: + - $ref: dai-common.yaml# + +properties: + compatible: + const: loongson,ls2k1000-i2s + + reg: + items: + - description: Loongson I2S controller Registers. + - description: APB DMA config register for Loongson I2S controller. + + interrupts: + maxItems: 1 + + clocks: + maxItems: 1 + + dmas: + maxItems: 2 + + dma-names: + items: + - const: tx + - const: rx + + '#sound-dai-cells': + const: 0 + +required: + - compatible + - reg + - interrupts + - clocks + - dmas + - dma-names + - '#sound-dai-cells' + +unevaluatedProperties: false + +examples: + - | + #include <dt-bindings/clock/loongson,ls2k-clk.h> + #include <dt-bindings/interrupt-controller/irq.h> + + i2s@1fe2d000 { + compatible = "loongson,ls2k1000-i2s"; + reg = <0x1fe2d000 0x14>, + <0x1fe00438 0x8>; + interrupt-parent = <&liointc0>; + interrupts = <5 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&clk LOONGSON2_APB_CLK>; + dmas = <&apbdma2 0>, <&apbdma3 0>; + dma-names = "tx", "rx"; + #sound-dai-cells = <0>; + }; +... -- 2.43.5 ^ permalink raw reply related [flat|nested] 26+ messages in thread
* Re: [PATCH v2 6/9] ASoC: dt-bindings: Add Loongson I2S controller 2024-09-24 7:00 ` [PATCH v2 6/9] ASoC: dt-bindings: Add Loongson I2S controller Binbin Zhou @ 2024-09-24 23:27 ` Rob Herring (Arm) 0 siblings, 0 replies; 26+ messages in thread From: Rob Herring (Arm) @ 2024-09-24 23:27 UTC (permalink / raw) To: Binbin Zhou Cc: Richard Fitzgerald, Conor Dooley, devicetree, Luca Ceresoli, Liam Girdwood, Huacai Chen, Herve Codina, Xuerui Wang, Takashi Iwai, loongarch, Weidong Wang, Masahiro Yamada, Jaroslav Kysela, Neil Armstrong, Rob Herring, Pierre-Louis Bossart, Binbin Zhou, Huacai Chen, Prasad Kumpatla, Shuming Fan, Krzysztof Kozlowski, linux-sound, Mark Brown On Tue, 24 Sep 2024 15:00:47 +0800, Binbin Zhou wrote: > Add Loongson I2S controller binding with DT schema format using > json-schema. > > Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn> > --- > .../bindings/sound/loongson,ls2k1000-i2s.yaml | 68 +++++++++++++++++++ > 1 file changed, 68 insertions(+) > create mode 100644 Documentation/devicetree/bindings/sound/loongson,ls2k1000-i2s.yaml > Reviewed-by: Rob Herring (Arm) <robh@kernel.org> ^ permalink raw reply [flat|nested] 26+ messages in thread
* [PATCH v2 7/9] ASoC: loongson: Add I2S controller driver as platform device 2024-09-24 6:59 [PATCH v2 0/9] ASoC: Some issues about loongson i2s Binbin Zhou ` (5 preceding siblings ...) 2024-09-24 7:00 ` [PATCH v2 6/9] ASoC: dt-bindings: Add Loongson I2S controller Binbin Zhou @ 2024-09-24 7:00 ` Binbin Zhou 2024-09-24 9:14 ` Mark Brown ` (2 more replies) 2024-09-24 7:01 ` [PATCH v2 8/9] LoongArch: dts: Add I2S support to Loongson-2K1000 Binbin Zhou ` (2 subsequent siblings) 9 siblings, 3 replies; 26+ messages in thread From: Binbin Zhou @ 2024-09-24 7:00 UTC (permalink / raw) To: Binbin Zhou, Huacai Chen, Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley Cc: Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan, Binbin Zhou The Loongson I2S controller exists not only in PCI form (LS7A bridge chip), but also in platform device form (Loongson-2K1000 SoC). This patch adds support for platform device I2S controller. Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn> --- sound/soc/loongson/Kconfig | 31 +++-- sound/soc/loongson/Makefile | 3 + sound/soc/loongson/loongson_i2s_plat.c | 186 +++++++++++++++++++++++++ 3 files changed, 210 insertions(+), 10 deletions(-) create mode 100644 sound/soc/loongson/loongson_i2s_plat.c diff --git a/sound/soc/loongson/Kconfig b/sound/soc/loongson/Kconfig index b8d7e2bade24..715ddc91a834 100644 --- a/sound/soc/loongson/Kconfig +++ b/sound/soc/loongson/Kconfig @@ -1,11 +1,21 @@ # SPDX-License-Identifier: GPL-2.0 menu "SoC Audio for Loongson CPUs" + +config SND_SOC_LOONGSON_CARD + tristate "Loongson Sound Card Driver" depends on LOONGARCH || COMPILE_TEST + help + Say Y or M if you want to add support for SoC audio using + loongson I2S controller. + + The driver add support for ALSA SoC Audio support using + loongson I2S controller. config SND_SOC_LOONGSON_I2S_PCI tristate "Loongson I2S-PCI Device Driver" - select REGMAP_MMIO depends on PCI + select REGMAP_MMIO + select SND_SOC_LOONGSON_CARD help Say Y or M if you want to add support for I2S driver for Loongson I2S controller. @@ -13,15 +23,16 @@ config SND_SOC_LOONGSON_I2S_PCI The controller is found in loongson bridge chips or SoCs, and work as a PCI device. -config SND_SOC_LOONGSON_CARD - tristate "Loongson Sound Card Driver" - select SND_SOC_LOONGSON_I2S_PCI - depends on PCI +config SND_SOC_LOONGSON_I2S_PLATFORM + tristate "Loongson I2S controller as platform device" + depends on OF + select REGMAP_MMIO + select SND_SOC_LOONGSON_CARD + select SND_SOC_GENERIC_DMAENGINE_PCM help - Say Y or M if you want to add support for SoC audio using - loongson I2S controller. - - The driver add support for ALSA SoC Audio support using - loongson I2S controller. + Say Y or M if you want to add support for I2S driver for + Loongson I2S controller. + The controller work as a platform device, found in Loongson-2K1000 + SoCs. endmenu diff --git a/sound/soc/loongson/Makefile b/sound/soc/loongson/Makefile index 578030ad6563..f396259244a3 100644 --- a/sound/soc/loongson/Makefile +++ b/sound/soc/loongson/Makefile @@ -3,6 +3,9 @@ snd-soc-loongson-i2s-pci-y := loongson_i2s_pci.o loongson_i2s.o loongson_dma.o obj-$(CONFIG_SND_SOC_LOONGSON_I2S_PCI) += snd-soc-loongson-i2s-pci.o +snd-soc-loongson-i2s-plat-y := loongson_i2s_plat.o loongson_i2s.o +obj-$(CONFIG_SND_SOC_LOONGSON_I2S_PLATFORM) += snd-soc-loongson-i2s-plat.o + #Machine Support snd-soc-loongson-card-y := loongson_card.o obj-$(CONFIG_SND_SOC_LOONGSON_CARD) += snd-soc-loongson-card.o diff --git a/sound/soc/loongson/loongson_i2s_plat.c b/sound/soc/loongson/loongson_i2s_plat.c new file mode 100644 index 000000000000..668067753b1c --- /dev/null +++ b/sound/soc/loongson/loongson_i2s_plat.c @@ -0,0 +1,186 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Loongson I2S controller master mode dirver(platform device) + * + * Copyright (C) 2023-2024 Loongson Technology Corporation Limited + * + * Author: Yingkun Meng <mengyingkun@loongson.cn> + * Binbin Zhou <zhoubinbin@loongson.cn> + */ + +#include <linux/clk.h> +#include <linux/dma-mapping.h> +#include <linux/module.h> +#include <linux/of_dma.h> +#include <linux/platform_device.h> +#include <linux/pm_runtime.h> +#include <sound/dmaengine_pcm.h> +#include <sound/pcm.h> +#include <sound/pcm_params.h> +#include <sound/soc.h> + +#include "loongson_i2s.h" + +#define LOONGSON_I2S_RX_DMA_OFFSET 21 +#define LOONGSON_I2S_TX_DMA_OFFSET 18 + +#define LOONGSON_DMA0_CONF 0x0 +#define LOONGSON_DMA1_CONF 0x1 +#define LOONGSON_DMA2_CONF 0x2 +#define LOONGSON_DMA3_CONF 0x3 +#define LOONGSON_DMA4_CONF 0x4 + +/* periods_max = PAGE_SIZE / sizeof(struct ls_dma_chan_reg) */ +static const struct snd_pcm_hardware loongson_pcm_hardware = { + .info = SNDRV_PCM_INFO_MMAP | + SNDRV_PCM_INFO_INTERLEAVED | + SNDRV_PCM_INFO_MMAP_VALID | + SNDRV_PCM_INFO_RESUME | + SNDRV_PCM_INFO_PAUSE, + .formats = SNDRV_PCM_FMTBIT_S16_LE | + SNDRV_PCM_FMTBIT_S20_3LE | + SNDRV_PCM_FMTBIT_S24_LE, + .period_bytes_min = 128, + .period_bytes_max = 128 * 1024, + .periods_min = 1, + .periods_max = 64, + .buffer_bytes_max = 1024 * 1024, +}; + +static const struct snd_dmaengine_pcm_config loongson_dmaengine_pcm_config = { + .pcm_hardware = &loongson_pcm_hardware, + .prepare_slave_config = snd_dmaengine_pcm_prepare_slave_config, + .prealloc_buffer_size = 128 * 1024, +}; + +static int loongson_pcm_open(struct snd_soc_component *component, + struct snd_pcm_substream *substream) +{ + struct snd_pcm_runtime *runtime = substream->runtime; + + if (substream->pcm->device & 1) { + runtime->hw.info &= ~SNDRV_PCM_INFO_INTERLEAVED; + runtime->hw.info |= SNDRV_PCM_INFO_NONINTERLEAVED; + } + + if (substream->pcm->device & 2) + runtime->hw.info &= ~(SNDRV_PCM_INFO_MMAP | + SNDRV_PCM_INFO_MMAP_VALID); + /* + * For mysterious reasons (and despite what the manual says) + * playback samples are lost if the DMA count is not a multiple + * of the DMA burst size. Let's add a rule to enforce that. + */ + snd_pcm_hw_constraint_step(runtime, 0, + SNDRV_PCM_HW_PARAM_PERIOD_BYTES, 128); + snd_pcm_hw_constraint_step(runtime, 0, + SNDRV_PCM_HW_PARAM_BUFFER_BYTES, 128); + snd_pcm_hw_constraint_integer(substream->runtime, + SNDRV_PCM_HW_PARAM_PERIODS); + + return 0; +} + +static const struct snd_soc_component_driver loongson_i2s_component_driver = { + .name = LS_I2S_DRVNAME, + .open = loongson_pcm_open, +}; + +static const struct regmap_config loongson_i2s_regmap_config = { + .reg_bits = 32, + .reg_stride = 4, + .val_bits = 32, + .max_register = 0x14, + .cache_type = REGCACHE_FLAT, +}; + +static int loongson_i2s_apbdma_config(struct platform_device *pdev) +{ + int val; + void __iomem *regs; + + regs = devm_platform_ioremap_resource(pdev, 1); + if (IS_ERR(regs)) + return PTR_ERR(regs); + + val = readl(regs); + val |= LOONGSON_DMA2_CONF << LOONGSON_I2S_TX_DMA_OFFSET; + val |= LOONGSON_DMA3_CONF << LOONGSON_I2S_RX_DMA_OFFSET; + writel(val, regs); + + return 0; +} + +static int loongson_i2s_plat_probe(struct platform_device *pdev) +{ + struct device *dev = &pdev->dev; + struct loongson_i2s *i2s; + struct resource *res; + struct clk *i2s_clk; + int ret; + + i2s = devm_kzalloc(dev, sizeof(*i2s), GFP_KERNEL); + if (!i2s) + return -ENOMEM; + + ret = loongson_i2s_apbdma_config(pdev); + if (ret) + return ret; + + res = platform_get_resource(pdev, IORESOURCE_MEM, 0); + i2s->reg_base = devm_ioremap_resource(&pdev->dev, res); + if (IS_ERR(i2s->reg_base)) + return dev_err_probe(dev, PTR_ERR(i2s->reg_base), + "devm_ioremap_resource failed\n"); + + i2s->regmap = devm_regmap_init_mmio(dev, i2s->reg_base, + &loongson_i2s_regmap_config); + if (IS_ERR(i2s->regmap)) + return dev_err_probe(dev, PTR_ERR(i2s->regmap), + "devm_regmap_init_mmio failed\n"); + + i2s->playback_dma_data.addr = res->start + LS_I2S_TX_DATA; + i2s->playback_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; + i2s->playback_dma_data.maxburst = 4; + + i2s->capture_dma_data.addr = res->start + LS_I2S_RX_DATA; + i2s->capture_dma_data.addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES; + i2s->capture_dma_data.maxburst = 4; + + i2s_clk = devm_clk_get_enabled(dev, NULL); + if (IS_ERR(i2s_clk)) + return dev_err_probe(dev, PTR_ERR(i2s_clk), "clock property invalid\n"); + i2s->clk_rate = clk_get_rate(i2s_clk); + + dma_set_mask_and_coherent(dev, DMA_BIT_MASK(64)); + dev_set_name(dev, LS_I2S_DRVNAME); + dev_set_drvdata(dev, i2s); + + ret = devm_snd_soc_register_component(dev, &loongson_i2s_component_driver, + &loongson_i2s_dai, 1); + if (ret) + return dev_err_probe(dev, ret, "failed to register DAI\n"); + + return devm_snd_dmaengine_pcm_register(dev, &loongson_dmaengine_pcm_config, + SND_DMAENGINE_PCM_FLAG_COMPAT); +} + +static const struct of_device_id loongson_i2s_ids[] = { + { .compatible = "loongson,ls2k1000-i2s" }, + { /* sentinel */ }, +}; +MODULE_DEVICE_TABLE(of, loongson_i2s_ids); + +static struct platform_driver loongson_i2s_driver = { + .probe = loongson_i2s_plat_probe, + .driver = { + .name = "loongson-i2s-plat", + .pm = pm_sleep_ptr(&loongson_i2s_pm), + .of_match_table = loongson_i2s_ids, + }, +}; +module_platform_driver(loongson_i2s_driver); + +MODULE_DESCRIPTION("Loongson I2S Master Mode ASoC Driver"); +MODULE_AUTHOR("Loongson Technology Corporation Limited"); +MODULE_LICENSE("GPL"); -- 2.43.5 ^ permalink raw reply related [flat|nested] 26+ messages in thread
* Re: [PATCH v2 7/9] ASoC: loongson: Add I2S controller driver as platform device 2024-09-24 7:00 ` [PATCH v2 7/9] ASoC: loongson: Add I2S controller driver as platform device Binbin Zhou @ 2024-09-24 9:14 ` Mark Brown 2024-09-26 2:03 ` Binbin Zhou 2024-09-24 21:26 ` kernel test robot 2024-09-25 4:18 ` kernel test robot 2 siblings, 1 reply; 26+ messages in thread From: Mark Brown @ 2024-09-24 9:14 UTC (permalink / raw) To: Binbin Zhou Cc: Binbin Zhou, Huacai Chen, Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan [-- Attachment #1: Type: text/plain, Size: 837 bytes --] On Tue, Sep 24, 2024 at 03:00:48PM +0800, Binbin Zhou wrote: > config SND_SOC_LOONGSON_I2S_PCI > tristate "Loongson I2S-PCI Device Driver" > - select REGMAP_MMIO > depends on PCI > + select REGMAP_MMIO > + select SND_SOC_LOONGSON_CARD > help > Say Y or M if you want to add support for I2S driver for > Loongson I2S controller. You shouldn't select the card from the DAI drivers, some system might use the driver with a different card for some reason. If anything a select from the card to the DAI driver is more appropriate, cards are the main user thing. > +++ b/sound/soc/loongson/loongson_i2s_plat.c > @@ -0,0 +1,186 @@ > +// SPDX-License-Identifier: GPL-2.0 > +/* > + * Loongson I2S controller master mode dirver(platform device) Please use C++ style for the whole comment block so things look more intentional. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 488 bytes --] ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 7/9] ASoC: loongson: Add I2S controller driver as platform device 2024-09-24 9:14 ` Mark Brown @ 2024-09-26 2:03 ` Binbin Zhou 2024-09-26 7:45 ` Mark Brown 0 siblings, 1 reply; 26+ messages in thread From: Binbin Zhou @ 2024-09-26 2:03 UTC (permalink / raw) To: Mark Brown Cc: Binbin Zhou, Huacai Chen, Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan Hi Mark: Thanks for your reply. On Tue, Sep 24, 2024 at 3:14 PM Mark Brown <broonie@kernel.org> wrote: > > On Tue, Sep 24, 2024 at 03:00:48PM +0800, Binbin Zhou wrote: > > > config SND_SOC_LOONGSON_I2S_PCI > > tristate "Loongson I2S-PCI Device Driver" > > - select REGMAP_MMIO > > depends on PCI > > + select REGMAP_MMIO > > + select SND_SOC_LOONGSON_CARD > > help > > Say Y or M if you want to add support for I2S driver for > > Loongson I2S controller. > > You shouldn't select the card from the DAI drivers, some system might > use the driver with a different card for some reason. If anything a > select from the card to the DAI driver is more appropriate, cards are > the main user thing. I will rewrite the dependency between the card and the DAI driver, as follows: config SND_SOC_LOONGSON_CARD tristate "Loongson Sound Card Driver" depends on LOONGARCH || COMPILE_TEST select SND_SOC_LOONGSON_I2S_PCI if PCI select SND_SOC_LOONGSON_I2S_PLATFORM if OF config SND_SOC_LOONGSON_I2S_PCI tristate "Loongson I2S-PCI Device Driver" select REGMAP_MMIO config SND_SOC_LOONGSON_I2S_PLATFORM tristate "Loongson I2S controller as platform device" select REGMAP_MMIO select SND_SOC_GENERIC_DMAENGINE_PCM Thanks. Binbin > > > +++ b/sound/soc/loongson/loongson_i2s_plat.c > > @@ -0,0 +1,186 @@ > > +// SPDX-License-Identifier: GPL-2.0 > > +/* > > + * Loongson I2S controller master mode dirver(platform device) > > Please use C++ style for the whole comment block so things look more > intentional. ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 7/9] ASoC: loongson: Add I2S controller driver as platform device 2024-09-26 2:03 ` Binbin Zhou @ 2024-09-26 7:45 ` Mark Brown 2024-09-27 1:27 ` Binbin Zhou 0 siblings, 1 reply; 26+ messages in thread From: Mark Brown @ 2024-09-26 7:45 UTC (permalink / raw) To: Binbin Zhou Cc: Binbin Zhou, Huacai Chen, Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan [-- Attachment #1: Type: text/plain, Size: 878 bytes --] On Thu, Sep 26, 2024 at 08:03:55AM +0600, Binbin Zhou wrote: > I will rewrite the dependency between the card and the DAI driver, as follows: > config SND_SOC_LOONGSON_CARD > tristate "Loongson Sound Card Driver" > depends on LOONGARCH || COMPILE_TEST > select SND_SOC_LOONGSON_I2S_PCI if PCI > select SND_SOC_LOONGSON_I2S_PLATFORM if OF > config SND_SOC_LOONGSON_I2S_PCI > tristate "Loongson I2S-PCI Device Driver" > select REGMAP_MMIO > config SND_SOC_LOONGSON_I2S_PLATFORM > tristate "Loongson I2S controller as platform device" > select REGMAP_MMIO > select SND_SOC_GENERIC_DMAENGINE_PCM That looks good apart from the PCI and platform drivers should probably also have a depends on LOONGARCH || COMPILE_TEST so they're not shown on architectures where they can't be used unless doing testing. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 488 bytes --] ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 7/9] ASoC: loongson: Add I2S controller driver as platform device 2024-09-26 7:45 ` Mark Brown @ 2024-09-27 1:27 ` Binbin Zhou 0 siblings, 0 replies; 26+ messages in thread From: Binbin Zhou @ 2024-09-27 1:27 UTC (permalink / raw) To: Mark Brown Cc: Binbin Zhou, Huacai Chen, Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan Hi Mark: On Thu, Sep 26, 2024 at 1:45 PM Mark Brown <broonie@kernel.org> wrote: > > On Thu, Sep 26, 2024 at 08:03:55AM +0600, Binbin Zhou wrote: > > > I will rewrite the dependency between the card and the DAI driver, as follows: > > > config SND_SOC_LOONGSON_CARD > > tristate "Loongson Sound Card Driver" > > depends on LOONGARCH || COMPILE_TEST > > select SND_SOC_LOONGSON_I2S_PCI if PCI > > select SND_SOC_LOONGSON_I2S_PLATFORM if OF > > > config SND_SOC_LOONGSON_I2S_PCI > > tristate "Loongson I2S-PCI Device Driver" > > select REGMAP_MMIO > > > config SND_SOC_LOONGSON_I2S_PLATFORM > > tristate "Loongson I2S controller as platform device" > > select REGMAP_MMIO > > select SND_SOC_GENERIC_DMAENGINE_PCM > > That looks good apart from the PCI and platform drivers should probably > also have a > > depends on LOONGARCH || COMPILE_TEST > > so they're not shown on architectures where they can't be used unless > doing testing. OK, I will add it in the V3 patchset. Thanks. Binbin ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 7/9] ASoC: loongson: Add I2S controller driver as platform device 2024-09-24 7:00 ` [PATCH v2 7/9] ASoC: loongson: Add I2S controller driver as platform device Binbin Zhou 2024-09-24 9:14 ` Mark Brown @ 2024-09-24 21:26 ` kernel test robot 2024-09-25 4:18 ` kernel test robot 2 siblings, 0 replies; 26+ messages in thread From: kernel test robot @ 2024-09-24 21:26 UTC (permalink / raw) To: Binbin Zhou, Binbin Zhou, Huacai Chen, Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley Cc: Paul Gazzillo, Necip Fazil Yildiran, oe-kbuild-all, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan Hi Binbin, kernel test robot noticed the following build warnings: [auto build test WARNING on broonie-sound/for-next] [also build test WARNING on linus/master next-20240924] [cannot apply to robh/for-next v6.11] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch#_base_tree_information] url: https://github.com/intel-lab-lkp/linux/commits/Binbin-Zhou/ASoC-dt-bindings-Add-Everest-ES8323-Codec/20240924-150942 base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next patch link: https://lore.kernel.org/r/fd3989d15546502b47f580e6a2c3a59cb628ce93.1727056789.git.zhoubinbin%40loongson.cn patch subject: [PATCH v2 7/9] ASoC: loongson: Add I2S controller driver as platform device config: alpha-kismet-CONFIG_SND_SOC_LOONGSON_CARD-CONFIG_SND_SOC_LOONGSON_I2S_PCI-0-0 (https://download.01.org/0day-ci/archive/20240925/202409250533.AEodmhZc-lkp@intel.com/config) reproduce: (https://download.01.org/0day-ci/archive/20240925/202409250533.AEodmhZc-lkp@intel.com/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp@intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202409250533.AEodmhZc-lkp@intel.com/ kismet warnings: (new ones prefixed by >>) >> kismet: WARNING: unmet direct dependencies detected for SND_SOC_LOONGSON_CARD when selected by SND_SOC_LOONGSON_I2S_PCI WARNING: unmet direct dependencies detected for SND_SOC_LOONGSON_CARD Depends on [n]: SOUND [=y] && SND [=y] && SND_SOC [=y] && (LOONGARCH || COMPILE_TEST [=n]) Selected by [y]: - SND_SOC_LOONGSON_I2S_PCI [=y] && SOUND [=y] && SND [=y] && SND_SOC [=y] && PCI [=y] -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki ^ permalink raw reply [flat|nested] 26+ messages in thread
* Re: [PATCH v2 7/9] ASoC: loongson: Add I2S controller driver as platform device 2024-09-24 7:00 ` [PATCH v2 7/9] ASoC: loongson: Add I2S controller driver as platform device Binbin Zhou 2024-09-24 9:14 ` Mark Brown 2024-09-24 21:26 ` kernel test robot @ 2024-09-25 4:18 ` kernel test robot 2 siblings, 0 replies; 26+ messages in thread From: kernel test robot @ 2024-09-25 4:18 UTC (permalink / raw) To: Binbin Zhou, Binbin Zhou, Huacai Chen, Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley Cc: Paul Gazzillo, Necip Fazil Yildiran, oe-kbuild-all, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan Hi Binbin, kernel test robot noticed the following build warnings: [auto build test WARNING on broonie-sound/for-next] [also build test WARNING on linus/master next-20240924] [cannot apply to robh/for-next v6.11] [If your patch is applied to the wrong git tree, kindly drop us a note. And when submitting patch, we suggest to use '--base' as documented in https://git-scm.com/docs/git-format-patch#_base_tree_information] url: https://github.com/intel-lab-lkp/linux/commits/Binbin-Zhou/ASoC-dt-bindings-Add-Everest-ES8323-Codec/20240924-150942 base: https://git.kernel.org/pub/scm/linux/kernel/git/broonie/sound.git for-next patch link: https://lore.kernel.org/r/fd3989d15546502b47f580e6a2c3a59cb628ce93.1727056789.git.zhoubinbin%40loongson.cn patch subject: [PATCH v2 7/9] ASoC: loongson: Add I2S controller driver as platform device config: alpha-kismet-CONFIG_SND_SOC_LOONGSON_CARD-CONFIG_SND_SOC_LOONGSON_I2S_PLATFORM-0-0 (https://download.01.org/0day-ci/archive/20240925/202409251242.gyf8pdxt-lkp@intel.com/config) reproduce: (https://download.01.org/0day-ci/archive/20240925/202409251242.gyf8pdxt-lkp@intel.com/reproduce) If you fix the issue in a separate patch/commit (i.e. not just a new version of the same patch/commit), kindly add following tags | Reported-by: kernel test robot <lkp@intel.com> | Closes: https://lore.kernel.org/oe-kbuild-all/202409251242.gyf8pdxt-lkp@intel.com/ kismet warnings: (new ones prefixed by >>) >> kismet: WARNING: unmet direct dependencies detected for SND_SOC_LOONGSON_CARD when selected by SND_SOC_LOONGSON_I2S_PLATFORM WARNING: unmet direct dependencies detected for SND_SOC_LOONGSON_CARD Depends on [n]: SOUND [=y] && SND [=y] && SND_SOC [=y] && (LOONGARCH || COMPILE_TEST [=n]) Selected by [y]: - SND_SOC_LOONGSON_I2S_PLATFORM [=y] && SOUND [=y] && SND [=y] && SND_SOC [=y] && OF [=y] -- 0-DAY CI Kernel Test Service https://github.com/intel/lkp-tests/wiki ^ permalink raw reply [flat|nested] 26+ messages in thread
* [PATCH v2 8/9] LoongArch: dts: Add I2S support to Loongson-2K1000 2024-09-24 6:59 [PATCH v2 0/9] ASoC: Some issues about loongson i2s Binbin Zhou ` (6 preceding siblings ...) 2024-09-24 7:00 ` [PATCH v2 7/9] ASoC: loongson: Add I2S controller driver as platform device Binbin Zhou @ 2024-09-24 7:01 ` Binbin Zhou 2024-09-24 7:01 ` [PATCH v2 9/9] LoongArch: dts: Add I2S support to Loongson-2K2000 Binbin Zhou 2024-09-24 11:36 ` [PATCH v2 0/9] ASoC: Some issues about loongson i2s Mark Brown 9 siblings, 0 replies; 26+ messages in thread From: Binbin Zhou @ 2024-09-24 7:01 UTC (permalink / raw) To: Binbin Zhou, Huacai Chen, Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley Cc: Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan, Binbin Zhou The module is supported, adding it. Not all Loongson-2K1000 boards have an i2s interface, here is an example of enabling it: sound { compatible = "loongson,ls-audio-card"; model = "Loongson-ASoC"; mclk-fs = <512>; cpu { sound-dai = <&i2s>; }; codec { sound-dai = <&uda1342>; }; }; &apbdma2 { status = "okay"; }; &apbdma3 { status = "okay"; }; &i2c3 { status = "okay"; pinctrl-0 = <&i2c1_pins_default>; pinctrl-names = "default"; #address-cells = <1>; #size-cells = <0>; uda1342: codec@1a { compatible = "nxp,uda1342"; reg = <0x1a>; #sound-dai-cells = <0>; }; }; &i2s { status = "okay"; pinctrl-0 = <&hda_pins_default>; pinctrl-names = "default"; }; Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn> --- arch/loongarch/boot/dts/loongson-2k1000.dtsi | 17 +++++++++++++++-- 1 file changed, 15 insertions(+), 2 deletions(-) diff --git a/arch/loongarch/boot/dts/loongson-2k1000.dtsi b/arch/loongarch/boot/dts/loongson-2k1000.dtsi index 92180140eb56..8dff2aa52417 100644 --- a/arch/loongarch/boot/dts/loongson-2k1000.dtsi +++ b/arch/loongarch/boot/dts/loongson-2k1000.dtsi @@ -266,7 +266,7 @@ dma-controller@1fe00c10 { status = "disabled"; }; - dma-controller@1fe00c20 { + apbdma2: dma-controller@1fe00c20 { compatible = "loongson,ls2k1000-apbdma"; reg = <0x0 0x1fe00c20 0x0 0x8>; interrupt-parent = <&liointc1>; @@ -276,7 +276,7 @@ dma-controller@1fe00c20 { status = "disabled"; }; - dma-controller@1fe00c30 { + apbdma3: dma-controller@1fe00c30 { compatible = "loongson,ls2k1000-apbdma"; reg = <0x0 0x1fe00c30 0x0 0x8>; interrupt-parent = <&liointc1>; @@ -352,6 +352,19 @@ rtc0: rtc@1fe27800 { status = "disabled"; }; + i2s: i2s@1fe2d000 { + compatible = "loongson,ls2k1000-i2s"; + reg = <0 0x1fe2d000 0 0x14>, + <0 0x1fe00438 0 0x8>; + interrupt-parent = <&liointc0>; + interrupts = <5 IRQ_TYPE_LEVEL_HIGH>; + clocks = <&clk LOONGSON2_APB_CLK>; + dmas = <&apbdma2 0>, <&apbdma3 0>; + dma-names = "tx", "rx"; + #sound-dai-cells = <0>; + status = "disabled"; + }; + spi0: spi@1fff0220 { compatible = "loongson,ls2k1000-spi"; reg = <0x0 0x1fff0220 0x0 0x10>; -- 2.43.5 ^ permalink raw reply related [flat|nested] 26+ messages in thread
* [PATCH v2 9/9] LoongArch: dts: Add I2S support to Loongson-2K2000 2024-09-24 6:59 [PATCH v2 0/9] ASoC: Some issues about loongson i2s Binbin Zhou ` (7 preceding siblings ...) 2024-09-24 7:01 ` [PATCH v2 8/9] LoongArch: dts: Add I2S support to Loongson-2K1000 Binbin Zhou @ 2024-09-24 7:01 ` Binbin Zhou 2024-09-24 11:36 ` [PATCH v2 0/9] ASoC: Some issues about loongson i2s Mark Brown 9 siblings, 0 replies; 26+ messages in thread From: Binbin Zhou @ 2024-09-24 7:01 UTC (permalink / raw) To: Binbin Zhou, Huacai Chen, Liam Girdwood, Mark Brown, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley Cc: Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan, Binbin Zhou The module is supported, adding it. Not all Loongson-2K1000 boards have an i2s interface, here is an example of enabling it: sound { compatible = "loongson,ls-audio-card"; model = "Loongson-ASoC"; mclk-fs = <512>; cpu { sound-dai = <&i2s>; }; codec { sound-dai = <&es8323>; }; }; &i2c1 { status = "okay"; #address-cells = <1>; #size-cells = <0>; es8323:es8323@10 { compatible = "everest,es8323"; reg = <0x10>; #sound-dai-cells = <0>; }; }; &i2s { status = "okay"; clock-frequency = <175000000>; #sound-dai-cells = <0>; }; Signed-off-by: Binbin Zhou <zhoubinbin@loongson.cn> --- arch/loongarch/boot/dts/loongson-2k2000.dtsi | 22 ++++++++++++++++++-- 1 file changed, 20 insertions(+), 2 deletions(-) diff --git a/arch/loongarch/boot/dts/loongson-2k2000.dtsi b/arch/loongarch/boot/dts/loongson-2k2000.dtsi index 0953c5707825..b4ff55a33e90 100644 --- a/arch/loongarch/boot/dts/loongson-2k2000.dtsi +++ b/arch/loongarch/boot/dts/loongson-2k2000.dtsi @@ -173,6 +173,22 @@ rtc0: rtc@100d0100 { status = "disabled"; }; + i2c@1fe00120 { + compatible = "loongson,ls2k-i2c"; + reg = <0x0 0x1fe00120 0x0 0x8>; + interrupt-parent = <&liointc>; + interrupts = <8 IRQ_TYPE_LEVEL_HIGH>; + status = "disabled"; + }; + + i2c@1fe00130 { + compatible = "loongson,ls2k-i2c"; + reg = <0x0 0x1fe00130 0x0 0x8>; + interrupt-parent = <&liointc>; + interrupts = <9 IRQ_TYPE_LEVEL_HIGH>; + status = "disabled"; + }; + uart0: serial@1fe001e0 { compatible = "ns16550a"; reg = <0x0 0x1fe001e0 0x0 0x10>; @@ -243,9 +259,11 @@ display@6,1 { status = "disabled"; }; - hda@7,0 { + i2s@7,0 { reg = <0x3800 0x0 0x0 0x0 0x0>; - interrupts = <58 IRQ_TYPE_LEVEL_HIGH>; + interrupts = <78 IRQ_TYPE_LEVEL_HIGH>, + <79 IRQ_TYPE_LEVEL_HIGH>; + interrupt-names = "tx", "rx"; interrupt-parent = <&pic>; status = "disabled"; }; -- 2.43.5 ^ permalink raw reply related [flat|nested] 26+ messages in thread
* Re: [PATCH v2 0/9] ASoC: Some issues about loongson i2s 2024-09-24 6:59 [PATCH v2 0/9] ASoC: Some issues about loongson i2s Binbin Zhou ` (8 preceding siblings ...) 2024-09-24 7:01 ` [PATCH v2 9/9] LoongArch: dts: Add I2S support to Loongson-2K2000 Binbin Zhou @ 2024-09-24 11:36 ` Mark Brown 9 siblings, 0 replies; 26+ messages in thread From: Mark Brown @ 2024-09-24 11:36 UTC (permalink / raw) To: Binbin Zhou Cc: Binbin Zhou, Huacai Chen, Liam Girdwood, Jaroslav Kysela, Takashi Iwai, Rob Herring, Krzysztof Kozlowski, Conor Dooley, Huacai Chen, linux-sound, devicetree, Xuerui Wang, loongarch, Neil Armstrong, Pierre-Louis Bossart, Richard Fitzgerald, Luca Ceresoli, Weidong Wang, Prasad Kumpatla, Herve Codina, Masahiro Yamada, Shuming Fan [-- Attachment #1: Type: text/plain, Size: 301 bytes --] On Tue, Sep 24, 2024 at 02:59:49PM +0800, Binbin Zhou wrote: > Hi all: > > This patch set is mainly about Loongson i2s related issues. I did find some issues with this series but apart from the query with not using snd_soc_of_get_dlc() they're all fairly small, the bulk of this looks good. [-- Attachment #2: signature.asc --] [-- Type: application/pgp-signature, Size: 488 bytes --] ^ permalink raw reply [flat|nested] 26+ messages in thread
end of thread, other threads:[~2024-09-27 1:27 UTC | newest] Thread overview: 26+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2024-09-24 6:59 [PATCH v2 0/9] ASoC: Some issues about loongson i2s Binbin Zhou 2024-09-24 6:59 ` [PATCH v2 1/9] ASoC: dt-bindings: Add Everest ES8323 Codec Binbin Zhou 2024-09-24 23:26 ` Rob Herring (Arm) 2024-09-24 7:00 ` [PATCH v2 2/9] ASoC: codecs: Add support for ES8323 Binbin Zhou 2024-09-24 9:03 ` Mark Brown 2024-09-25 8:44 ` Binbin Zhou 2024-09-24 7:00 ` [PATCH v2 3/9] ASoC: dt-bindings: Add NXP uda1342 Codec Binbin Zhou 2024-09-24 7:00 ` [PATCH v2 4/9] ASoC: codecs: Add uda1342 codec driver Binbin Zhou 2024-09-24 9:09 ` Mark Brown 2024-09-24 15:58 ` kernel test robot 2024-09-24 17:31 ` kernel test robot 2024-09-24 7:00 ` [PATCH v2 5/9] ASoC: loongson: Fix codec detection failure on FDT systems Binbin Zhou 2024-09-24 9:19 ` Mark Brown 2024-09-25 9:05 ` Binbin Zhou 2024-09-24 7:00 ` [PATCH v2 6/9] ASoC: dt-bindings: Add Loongson I2S controller Binbin Zhou 2024-09-24 23:27 ` Rob Herring (Arm) 2024-09-24 7:00 ` [PATCH v2 7/9] ASoC: loongson: Add I2S controller driver as platform device Binbin Zhou 2024-09-24 9:14 ` Mark Brown 2024-09-26 2:03 ` Binbin Zhou 2024-09-26 7:45 ` Mark Brown 2024-09-27 1:27 ` Binbin Zhou 2024-09-24 21:26 ` kernel test robot 2024-09-25 4:18 ` kernel test robot 2024-09-24 7:01 ` [PATCH v2 8/9] LoongArch: dts: Add I2S support to Loongson-2K1000 Binbin Zhou 2024-09-24 7:01 ` [PATCH v2 9/9] LoongArch: dts: Add I2S support to Loongson-2K2000 Binbin Zhou 2024-09-24 11:36 ` [PATCH v2 0/9] ASoC: Some issues about loongson i2s Mark Brown
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).