1 // SPDX-License-Identifier: GPL-2.0
3 // Copyright (c) 2020 BayLibre, SAS.
4 // Author: Jerome Brunet <jbrunet@baylibre.com>
6 #include <linux/bitfield.h>
8 #include <linux/module.h>
9 #include <sound/pcm_params.h>
10 #include <linux/regmap.h>
11 #include <linux/regulator/consumer.h>
12 #include <linux/reset.h>
13 #include <sound/soc.h>
14 #include <sound/soc-dai.h>
16 #include <dt-bindings/sound/meson-g12a-toacodec.h>
18 #include "meson-codec-glue.h"
20 #define G12A_TOACODEC_DRV_NAME "g12a-toacodec"
22 #define TOACODEC_CTRL0 0x0
23 #define CTRL0_ENABLE_SHIFT 31
24 #define CTRL0_DAT_SEL_SHIFT 14
25 #define CTRL0_DAT_SEL (0x3 << CTRL0_DAT_SEL_SHIFT)
26 #define CTRL0_LANE_SEL 12
27 #define CTRL0_LRCLK_SEL GENMASK(9, 8)
28 #define CTRL0_BLK_CAP_INV BIT(7)
29 #define CTRL0_BCLK_O_INV BIT(6)
30 #define CTRL0_BCLK_SEL GENMASK(5, 4)
31 #define CTRL0_MCLK_SEL GENMASK(2, 0)
33 #define TOACODEC_OUT_CHMAX 2
35 static const char * const g12a_toacodec_mux_texts[] = {
36 "I2S A", "I2S B", "I2S C",
39 static int g12a_toacodec_mux_put_enum(struct snd_kcontrol *kcontrol,
40 struct snd_ctl_elem_value *ucontrol)
42 struct snd_soc_component *component =
43 snd_soc_dapm_kcontrol_component(kcontrol);
44 struct snd_soc_dapm_context *dapm =
45 snd_soc_dapm_kcontrol_dapm(kcontrol);
46 struct soc_enum *e = (struct soc_enum *)kcontrol->private_value;
47 unsigned int mux, changed;
49 mux = snd_soc_enum_item_to_val(e, ucontrol->value.enumerated.item[0]);
50 changed = snd_soc_component_test_bits(component, e->reg,
52 FIELD_PREP(CTRL0_DAT_SEL, mux));
57 /* Force disconnect of the mux while updating */
58 snd_soc_dapm_mux_update_power(dapm, kcontrol, 0, NULL, NULL);
60 snd_soc_component_update_bits(component, e->reg,
64 FIELD_PREP(CTRL0_DAT_SEL, mux) |
65 FIELD_PREP(CTRL0_LRCLK_SEL, mux) |
66 FIELD_PREP(CTRL0_BCLK_SEL, mux));
70 * On this soc, the glue gets the MCLK directly from the clock
71 * controller instead of going the through the TDM interface.
73 * Here we assume interface A uses clock A, etc ... While it is
74 * true for now, it could be different. Instead the glue should
75 * find out the clock used by the interface and select the same
76 * source. For that, we will need regmap backed clock mux which
77 * is a work in progress
79 snd_soc_component_update_bits(component, e->reg,
81 FIELD_PREP(CTRL0_MCLK_SEL, mux));
83 snd_soc_dapm_mux_update_power(dapm, kcontrol, mux, e, NULL);
88 static SOC_ENUM_SINGLE_DECL(g12a_toacodec_mux_enum, TOACODEC_CTRL0,
90 g12a_toacodec_mux_texts);
92 static const struct snd_kcontrol_new g12a_toacodec_mux =
93 SOC_DAPM_ENUM_EXT("Source", g12a_toacodec_mux_enum,
94 snd_soc_dapm_get_enum_double,
95 g12a_toacodec_mux_put_enum);
97 static const struct snd_kcontrol_new g12a_toacodec_out_enable =
98 SOC_DAPM_SINGLE_AUTODISABLE("Switch", TOACODEC_CTRL0,
99 CTRL0_ENABLE_SHIFT, 1, 0);
101 static const struct snd_soc_dapm_widget g12a_toacodec_widgets[] = {
102 SND_SOC_DAPM_MUX("SRC", SND_SOC_NOPM, 0, 0,
104 SND_SOC_DAPM_SWITCH("OUT EN", SND_SOC_NOPM, 0, 0,
105 &g12a_toacodec_out_enable),
108 static int g12a_toacodec_input_hw_params(struct snd_pcm_substream *substream,
109 struct snd_pcm_hw_params *params,
110 struct snd_soc_dai *dai)
112 struct meson_codec_glue_input *data;
115 ret = meson_codec_glue_input_hw_params(substream, params, dai);
119 /* The glue will provide 1 lane out of the 4 to the output */
120 data = meson_codec_glue_input_get_data(dai);
121 data->params.channels_min = min_t(unsigned int, TOACODEC_OUT_CHMAX,
122 data->params.channels_min);
123 data->params.channels_max = min_t(unsigned int, TOACODEC_OUT_CHMAX,
124 data->params.channels_max);
129 static const struct snd_soc_dai_ops g12a_toacodec_input_ops = {
130 .hw_params = g12a_toacodec_input_hw_params,
131 .set_fmt = meson_codec_glue_input_set_fmt,
134 static const struct snd_soc_dai_ops g12a_toacodec_output_ops = {
135 .startup = meson_codec_glue_output_startup,
138 #define TOACODEC_STREAM(xname, xsuffix, xchmax) \
140 .stream_name = xname " " xsuffix, \
142 .channels_max = (xchmax), \
144 .rate_max = 192000, \
145 .formats = AXG_TDM_FORMATS, \
148 #define TOACODEC_INPUT(xname, xid) { \
151 .playback = TOACODEC_STREAM(xname, "Playback", 8), \
152 .ops = &g12a_toacodec_input_ops, \
153 .probe = meson_codec_glue_input_dai_probe, \
154 .remove = meson_codec_glue_input_dai_remove, \
157 #define TOACODEC_OUTPUT(xname, xid) { \
160 .capture = TOACODEC_STREAM(xname, "Capture", TOACODEC_OUT_CHMAX), \
161 .ops = &g12a_toacodec_output_ops, \
164 static struct snd_soc_dai_driver g12a_toacodec_dai_drv[] = {
165 TOACODEC_INPUT("IN A", TOACODEC_IN_A),
166 TOACODEC_INPUT("IN B", TOACODEC_IN_B),
167 TOACODEC_INPUT("IN C", TOACODEC_IN_C),
168 TOACODEC_OUTPUT("OUT", TOACODEC_OUT),
171 static int g12a_toacodec_component_probe(struct snd_soc_component *c)
173 /* Initialize the static clock parameters */
174 return snd_soc_component_write(c, TOACODEC_CTRL0,
178 static const struct snd_soc_dapm_route g12a_toacodec_routes[] = {
179 { "SRC", "I2S A", "IN A Playback" },
180 { "SRC", "I2S B", "IN B Playback" },
181 { "SRC", "I2S C", "IN C Playback" },
182 { "OUT EN", "Switch", "SRC" },
183 { "OUT Capture", NULL, "OUT EN" },
186 static const struct snd_kcontrol_new g12a_toacodec_controls[] = {
187 SOC_SINGLE("Lane Select", TOACODEC_CTRL0, CTRL0_LANE_SEL, 3, 0),
190 static const struct snd_soc_component_driver g12a_toacodec_component_drv = {
191 .probe = g12a_toacodec_component_probe,
192 .controls = g12a_toacodec_controls,
193 .num_controls = ARRAY_SIZE(g12a_toacodec_controls),
194 .dapm_widgets = g12a_toacodec_widgets,
195 .num_dapm_widgets = ARRAY_SIZE(g12a_toacodec_widgets),
196 .dapm_routes = g12a_toacodec_routes,
197 .num_dapm_routes = ARRAY_SIZE(g12a_toacodec_routes),
199 .non_legacy_dai_naming = 1,
202 static const struct regmap_config g12a_toacodec_regmap_cfg = {
208 static const struct of_device_id g12a_toacodec_of_match[] = {
209 { .compatible = "amlogic,g12a-toacodec", },
212 MODULE_DEVICE_TABLE(of, g12a_toacodec_of_match);
214 static int g12a_toacodec_probe(struct platform_device *pdev)
216 struct device *dev = &pdev->dev;
221 ret = device_reset(dev);
225 regs = devm_platform_ioremap_resource(pdev, 0);
227 return PTR_ERR(regs);
229 map = devm_regmap_init_mmio(dev, regs, &g12a_toacodec_regmap_cfg);
231 dev_err(dev, "failed to init regmap: %ld\n",
236 return devm_snd_soc_register_component(dev,
237 &g12a_toacodec_component_drv, g12a_toacodec_dai_drv,
238 ARRAY_SIZE(g12a_toacodec_dai_drv));
241 static struct platform_driver g12a_toacodec_pdrv = {
243 .name = G12A_TOACODEC_DRV_NAME,
244 .of_match_table = g12a_toacodec_of_match,
246 .probe = g12a_toacodec_probe,
248 module_platform_driver(g12a_toacodec_pdrv);
250 MODULE_AUTHOR("Jerome Brunet <jbrunet@baylibre.com>");
251 MODULE_DESCRIPTION("Amlogic G12a To Internal DAC Codec Driver");
252 MODULE_LICENSE("GPL v2");