1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright(c) 2015-18 Intel Corporation.
5 * hdac_hda.c - ASoC extensions to reuse the legacy HDA codec drivers
6 * with ASoC platform drivers. These APIs are called by the legacy HDA
7 * codec drivers using hdac_ext_bus_ops ops.
10 #include <linux/init.h>
11 #include <linux/delay.h>
12 #include <linux/module.h>
13 #include <linux/pm_runtime.h>
14 #include <sound/pcm_params.h>
15 #include <sound/soc.h>
16 #include <sound/hdaudio_ext.h>
17 #include <sound/hda_i915.h>
18 #include <sound/hda_codec.h>
19 #include <sound/hda_register.h>
23 #define STUB_FORMATS (SNDRV_PCM_FMTBIT_S8 | \
24 SNDRV_PCM_FMTBIT_U8 | \
25 SNDRV_PCM_FMTBIT_S16_LE | \
26 SNDRV_PCM_FMTBIT_U16_LE | \
27 SNDRV_PCM_FMTBIT_S24_LE | \
28 SNDRV_PCM_FMTBIT_U24_LE | \
29 SNDRV_PCM_FMTBIT_S32_LE | \
30 SNDRV_PCM_FMTBIT_U32_LE | \
31 SNDRV_PCM_FMTBIT_IEC958_SUBFRAME_LE)
33 #define STUB_HDMI_RATES (SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 |\
34 SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 |\
35 SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |\
36 SNDRV_PCM_RATE_192000)
38 static int hdac_hda_dai_open(struct snd_pcm_substream
*substream
,
39 struct snd_soc_dai
*dai
);
40 static void hdac_hda_dai_close(struct snd_pcm_substream
*substream
,
41 struct snd_soc_dai
*dai
);
42 static int hdac_hda_dai_prepare(struct snd_pcm_substream
*substream
,
43 struct snd_soc_dai
*dai
);
44 static int hdac_hda_dai_hw_params(struct snd_pcm_substream
*substream
,
45 struct snd_pcm_hw_params
*params
,
46 struct snd_soc_dai
*dai
);
47 static int hdac_hda_dai_hw_free(struct snd_pcm_substream
*substream
,
48 struct snd_soc_dai
*dai
);
49 static int hdac_hda_dai_set_tdm_slot(struct snd_soc_dai
*dai
,
50 unsigned int tx_mask
, unsigned int rx_mask
,
51 int slots
, int slot_width
);
52 static struct hda_pcm
*snd_soc_find_pcm_from_dai(struct hdac_hda_priv
*hda_pvt
,
53 struct snd_soc_dai
*dai
);
55 static const struct snd_soc_dai_ops hdac_hda_dai_ops
= {
56 .startup
= hdac_hda_dai_open
,
57 .shutdown
= hdac_hda_dai_close
,
58 .prepare
= hdac_hda_dai_prepare
,
59 .hw_params
= hdac_hda_dai_hw_params
,
60 .hw_free
= hdac_hda_dai_hw_free
,
61 .set_tdm_slot
= hdac_hda_dai_set_tdm_slot
,
64 static struct snd_soc_dai_driver hdac_hda_dais
[] = {
66 .id
= HDAC_ANALOG_DAI_ID
,
67 .name
= "Analog Codec DAI",
68 .ops
= &hdac_hda_dai_ops
,
70 .stream_name
= "Analog Codec Playback",
73 .rates
= SNDRV_PCM_RATE_8000_192000
,
74 .formats
= STUB_FORMATS
,
78 .stream_name
= "Analog Codec Capture",
81 .rates
= SNDRV_PCM_RATE_8000_192000
,
82 .formats
= STUB_FORMATS
,
87 .id
= HDAC_DIGITAL_DAI_ID
,
88 .name
= "Digital Codec DAI",
89 .ops
= &hdac_hda_dai_ops
,
91 .stream_name
= "Digital Codec Playback",
94 .rates
= SNDRV_PCM_RATE_8000_192000
,
95 .formats
= STUB_FORMATS
,
99 .stream_name
= "Digital Codec Capture",
102 .rates
= SNDRV_PCM_RATE_8000_192000
,
103 .formats
= STUB_FORMATS
,
108 .id
= HDAC_ALT_ANALOG_DAI_ID
,
109 .name
= "Alt Analog Codec DAI",
110 .ops
= &hdac_hda_dai_ops
,
112 .stream_name
= "Alt Analog Codec Playback",
115 .rates
= SNDRV_PCM_RATE_8000_192000
,
116 .formats
= STUB_FORMATS
,
120 .stream_name
= "Alt Analog Codec Capture",
123 .rates
= SNDRV_PCM_RATE_8000_192000
,
124 .formats
= STUB_FORMATS
,
129 .id
= HDAC_HDMI_0_DAI_ID
,
130 .name
= "intel-hdmi-hifi1",
131 .ops
= &hdac_hda_dai_ops
,
133 .stream_name
= "hifi1",
136 .rates
= STUB_HDMI_RATES
,
137 .formats
= STUB_FORMATS
,
142 .id
= HDAC_HDMI_1_DAI_ID
,
143 .name
= "intel-hdmi-hifi2",
144 .ops
= &hdac_hda_dai_ops
,
146 .stream_name
= "hifi2",
149 .rates
= STUB_HDMI_RATES
,
150 .formats
= STUB_FORMATS
,
155 .id
= HDAC_HDMI_2_DAI_ID
,
156 .name
= "intel-hdmi-hifi3",
157 .ops
= &hdac_hda_dai_ops
,
159 .stream_name
= "hifi3",
162 .rates
= STUB_HDMI_RATES
,
163 .formats
= STUB_FORMATS
,
168 .id
= HDAC_HDMI_3_DAI_ID
,
169 .name
= "intel-hdmi-hifi4",
170 .ops
= &hdac_hda_dai_ops
,
172 .stream_name
= "hifi4",
175 .rates
= STUB_HDMI_RATES
,
176 .formats
= STUB_FORMATS
,
183 static int hdac_hda_dai_set_tdm_slot(struct snd_soc_dai
*dai
,
184 unsigned int tx_mask
, unsigned int rx_mask
,
185 int slots
, int slot_width
)
187 struct snd_soc_component
*component
= dai
->component
;
188 struct hdac_hda_priv
*hda_pvt
;
189 struct hdac_hda_pcm
*pcm
;
191 hda_pvt
= snd_soc_component_get_drvdata(component
);
192 pcm
= &hda_pvt
->pcm
[dai
->id
];
195 pcm
->stream_tag
[SNDRV_PCM_STREAM_PLAYBACK
] = tx_mask
;
197 pcm
->stream_tag
[SNDRV_PCM_STREAM_CAPTURE
] = rx_mask
;
202 static int hdac_hda_dai_hw_params(struct snd_pcm_substream
*substream
,
203 struct snd_pcm_hw_params
*params
,
204 struct snd_soc_dai
*dai
)
206 struct snd_soc_component
*component
= dai
->component
;
207 struct hdac_hda_priv
*hda_pvt
;
208 unsigned int format_val
;
211 if (substream
->stream
== SNDRV_PCM_STREAM_PLAYBACK
)
212 maxbps
= dai
->driver
->playback
.sig_bits
;
214 maxbps
= dai
->driver
->capture
.sig_bits
;
216 hda_pvt
= snd_soc_component_get_drvdata(component
);
217 format_val
= snd_hdac_calc_stream_format(params_rate(params
),
218 params_channels(params
),
219 params_format(params
),
224 "invalid format_val, rate=%d, ch=%d, format=%d, maxbps=%d\n",
225 params_rate(params
), params_channels(params
),
226 params_format(params
), maxbps
);
231 hda_pvt
->pcm
[dai
->id
].format_val
[substream
->stream
] = format_val
;
235 static int hdac_hda_dai_hw_free(struct snd_pcm_substream
*substream
,
236 struct snd_soc_dai
*dai
)
238 struct snd_soc_component
*component
= dai
->component
;
239 struct hdac_hda_priv
*hda_pvt
;
240 struct hda_pcm_stream
*hda_stream
;
243 hda_pvt
= snd_soc_component_get_drvdata(component
);
244 pcm
= snd_soc_find_pcm_from_dai(hda_pvt
, dai
);
248 hda_stream
= &pcm
->stream
[substream
->stream
];
249 snd_hda_codec_cleanup(&hda_pvt
->codec
, hda_stream
, substream
);
254 static int hdac_hda_dai_prepare(struct snd_pcm_substream
*substream
,
255 struct snd_soc_dai
*dai
)
257 struct snd_soc_component
*component
= dai
->component
;
258 struct hda_pcm_stream
*hda_stream
;
259 struct hdac_hda_priv
*hda_pvt
;
260 struct hdac_device
*hdev
;
261 unsigned int format_val
;
266 hda_pvt
= snd_soc_component_get_drvdata(component
);
267 hdev
= &hda_pvt
->codec
.core
;
268 pcm
= snd_soc_find_pcm_from_dai(hda_pvt
, dai
);
272 hda_stream
= &pcm
->stream
[substream
->stream
];
274 stream
= hda_pvt
->pcm
[dai
->id
].stream_tag
[substream
->stream
];
275 format_val
= hda_pvt
->pcm
[dai
->id
].format_val
[substream
->stream
];
277 ret
= snd_hda_codec_prepare(&hda_pvt
->codec
, hda_stream
,
278 stream
, format_val
, substream
);
280 dev_err(&hdev
->dev
, "codec prepare failed %d\n", ret
);
285 static int hdac_hda_dai_open(struct snd_pcm_substream
*substream
,
286 struct snd_soc_dai
*dai
)
288 struct snd_soc_component
*component
= dai
->component
;
289 struct hdac_hda_priv
*hda_pvt
;
290 struct hda_pcm_stream
*hda_stream
;
293 hda_pvt
= snd_soc_component_get_drvdata(component
);
294 pcm
= snd_soc_find_pcm_from_dai(hda_pvt
, dai
);
298 snd_hda_codec_pcm_get(pcm
);
300 hda_stream
= &pcm
->stream
[substream
->stream
];
302 return hda_stream
->ops
.open(hda_stream
, &hda_pvt
->codec
, substream
);
305 static void hdac_hda_dai_close(struct snd_pcm_substream
*substream
,
306 struct snd_soc_dai
*dai
)
308 struct snd_soc_component
*component
= dai
->component
;
309 struct hdac_hda_priv
*hda_pvt
;
310 struct hda_pcm_stream
*hda_stream
;
313 hda_pvt
= snd_soc_component_get_drvdata(component
);
314 pcm
= snd_soc_find_pcm_from_dai(hda_pvt
, dai
);
318 hda_stream
= &pcm
->stream
[substream
->stream
];
320 hda_stream
->ops
.close(hda_stream
, &hda_pvt
->codec
, substream
);
322 snd_hda_codec_pcm_put(pcm
);
325 static struct hda_pcm
*snd_soc_find_pcm_from_dai(struct hdac_hda_priv
*hda_pvt
,
326 struct snd_soc_dai
*dai
)
328 struct hda_codec
*hcodec
= &hda_pvt
->codec
;
329 struct hda_pcm
*cpcm
;
330 const char *pcm_name
;
333 * map DAI ID to the closest matching PCM name, using the naming
334 * scheme used by hda-codec snd_hda_gen_build_pcms() and for
335 * HDMI in hda_codec patch_hdmi.c)
339 case HDAC_ANALOG_DAI_ID
:
342 case HDAC_DIGITAL_DAI_ID
:
343 pcm_name
= "Digital";
345 case HDAC_ALT_ANALOG_DAI_ID
:
346 pcm_name
= "Alt Analog";
348 case HDAC_HDMI_0_DAI_ID
:
351 case HDAC_HDMI_1_DAI_ID
:
354 case HDAC_HDMI_2_DAI_ID
:
357 case HDAC_HDMI_3_DAI_ID
:
361 dev_err(&hcodec
->core
.dev
, "invalid dai id %d\n", dai
->id
);
365 list_for_each_entry(cpcm
, &hcodec
->pcm_list_head
, list
) {
366 if (strstr(cpcm
->name
, pcm_name
))
370 dev_err(&hcodec
->core
.dev
, "didn't find PCM for DAI %s\n", dai
->name
);
374 static bool is_hdmi_codec(struct hda_codec
*hcodec
)
376 struct hda_pcm
*cpcm
;
378 list_for_each_entry(cpcm
, &hcodec
->pcm_list_head
, list
) {
379 if (cpcm
->pcm_type
== HDA_PCM_TYPE_HDMI
)
386 static int hdac_hda_codec_probe(struct snd_soc_component
*component
)
388 struct hdac_hda_priv
*hda_pvt
=
389 snd_soc_component_get_drvdata(component
);
390 struct snd_soc_dapm_context
*dapm
=
391 snd_soc_component_get_dapm(component
);
392 struct hdac_device
*hdev
= &hda_pvt
->codec
.core
;
393 struct hda_codec
*hcodec
= &hda_pvt
->codec
;
394 struct hdac_ext_link
*hlink
;
395 hda_codec_patch_t patch
;
398 hlink
= snd_hdac_ext_bus_get_link(hdev
->bus
, dev_name(&hdev
->dev
));
400 dev_err(&hdev
->dev
, "hdac link not found\n");
404 snd_hdac_ext_bus_link_get(hdev
->bus
, hlink
);
407 * Ensure any HDA display is powered at codec probe.
408 * After snd_hda_codec_device_new(), display power is
409 * managed by runtime PM.
411 if (hda_pvt
->need_display_power
)
412 snd_hdac_display_power(hdev
->bus
,
413 HDA_CODEC_IDX_CONTROLLER
, true);
415 ret
= snd_hda_codec_device_new(hcodec
->bus
, component
->card
->snd_card
,
418 dev_err(&hdev
->dev
, "failed to create hda codec %d\n", ret
);
422 * Overwrite type to HDA_DEV_ASOC since it is a ASoC driver
423 * hda_codec.c will check this flag to determine if unregister
426 hdev
->type
= HDA_DEV_ASOC
;
429 * snd_hda_codec_device_new decrements the usage count so call get pm
430 * else the device will be powered off
432 pm_runtime_get_noresume(&hdev
->dev
);
434 hcodec
->bus
->card
= dapm
->card
->snd_card
;
436 ret
= snd_hda_codec_set_name(hcodec
, hcodec
->preset
->name
);
438 dev_err(&hdev
->dev
, "name failed %s\n", hcodec
->preset
->name
);
442 ret
= snd_hdac_regmap_init(&hcodec
->core
);
444 dev_err(&hdev
->dev
, "regmap init failed\n");
448 patch
= (hda_codec_patch_t
)hcodec
->preset
->driver_data
;
452 dev_err(&hdev
->dev
, "patch failed %d\n", ret
);
456 dev_dbg(&hdev
->dev
, "no patch file found\n");
459 /* configure codec for 1:1 PCM:DAI mapping */
460 hcodec
->mst_no_extra_pcms
= 1;
462 ret
= snd_hda_codec_parse_pcms(hcodec
);
464 dev_err(&hdev
->dev
, "unable to map pcms to dai %d\n", ret
);
468 /* HDMI controls need to be created in machine drivers */
469 if (!is_hdmi_codec(hcodec
)) {
470 ret
= snd_hda_codec_build_controls(hcodec
);
472 dev_err(&hdev
->dev
, "unable to create controls %d\n",
478 hcodec
->core
.lazy_cache
= true;
480 if (hda_pvt
->need_display_power
)
481 snd_hdac_display_power(hdev
->bus
,
482 HDA_CODEC_IDX_CONTROLLER
, false);
484 /* match for forbid call in snd_hda_codec_device_new() */
485 pm_runtime_allow(&hdev
->dev
);
488 * hdac_device core already sets the state to active and calls
489 * get_noresume. So enable runtime and set the device to suspend.
490 * pm_runtime_enable is also called during codec registeration
492 pm_runtime_put(&hdev
->dev
);
493 pm_runtime_suspend(&hdev
->dev
);
498 if (hcodec
->patch_ops
.free
)
499 hcodec
->patch_ops
.free(hcodec
);
501 snd_hdac_regmap_exit(hdev
);
503 pm_runtime_put(&hdev
->dev
);
505 snd_hdac_ext_bus_link_put(hdev
->bus
, hlink
);
509 static void hdac_hda_codec_remove(struct snd_soc_component
*component
)
511 struct hdac_hda_priv
*hda_pvt
=
512 snd_soc_component_get_drvdata(component
);
513 struct hdac_device
*hdev
= &hda_pvt
->codec
.core
;
514 struct hda_codec
*codec
= &hda_pvt
->codec
;
515 struct hdac_ext_link
*hlink
= NULL
;
517 hlink
= snd_hdac_ext_bus_get_link(hdev
->bus
, dev_name(&hdev
->dev
));
519 dev_err(&hdev
->dev
, "hdac link not found\n");
523 pm_runtime_disable(&hdev
->dev
);
524 snd_hdac_ext_bus_link_put(hdev
->bus
, hlink
);
526 if (codec
->patch_ops
.free
)
527 codec
->patch_ops
.free(codec
);
529 snd_hda_codec_cleanup_for_unbind(codec
);
532 static const struct snd_soc_dapm_route hdac_hda_dapm_routes
[] = {
533 {"AIF1TX", NULL
, "Codec Input Pin1"},
534 {"AIF2TX", NULL
, "Codec Input Pin2"},
535 {"AIF3TX", NULL
, "Codec Input Pin3"},
537 {"Codec Output Pin1", NULL
, "AIF1RX"},
538 {"Codec Output Pin2", NULL
, "AIF2RX"},
539 {"Codec Output Pin3", NULL
, "AIF3RX"},
542 static const struct snd_soc_dapm_widget hdac_hda_dapm_widgets
[] = {
543 /* Audio Interface */
544 SND_SOC_DAPM_AIF_IN("AIF1RX", "Analog Codec Playback", 0,
546 SND_SOC_DAPM_AIF_IN("AIF2RX", "Digital Codec Playback", 0,
548 SND_SOC_DAPM_AIF_IN("AIF3RX", "Alt Analog Codec Playback", 0,
550 SND_SOC_DAPM_AIF_OUT("AIF1TX", "Analog Codec Capture", 0,
552 SND_SOC_DAPM_AIF_OUT("AIF2TX", "Digital Codec Capture", 0,
554 SND_SOC_DAPM_AIF_OUT("AIF3TX", "Alt Analog Codec Capture", 0,
558 SND_SOC_DAPM_INPUT("Codec Input Pin1"),
559 SND_SOC_DAPM_INPUT("Codec Input Pin2"),
560 SND_SOC_DAPM_INPUT("Codec Input Pin3"),
563 SND_SOC_DAPM_OUTPUT("Codec Output Pin1"),
564 SND_SOC_DAPM_OUTPUT("Codec Output Pin2"),
565 SND_SOC_DAPM_OUTPUT("Codec Output Pin3"),
568 static const struct snd_soc_component_driver hdac_hda_codec
= {
569 .probe
= hdac_hda_codec_probe
,
570 .remove
= hdac_hda_codec_remove
,
571 .idle_bias_on
= false,
572 .dapm_widgets
= hdac_hda_dapm_widgets
,
573 .num_dapm_widgets
= ARRAY_SIZE(hdac_hda_dapm_widgets
),
574 .dapm_routes
= hdac_hda_dapm_routes
,
575 .num_dapm_routes
= ARRAY_SIZE(hdac_hda_dapm_routes
),
578 static int hdac_hda_dev_probe(struct hdac_device
*hdev
)
580 struct hdac_ext_link
*hlink
;
581 struct hdac_hda_priv
*hda_pvt
;
584 /* hold the ref while we probe */
585 hlink
= snd_hdac_ext_bus_get_link(hdev
->bus
, dev_name(&hdev
->dev
));
587 dev_err(&hdev
->dev
, "hdac link not found\n");
590 snd_hdac_ext_bus_link_get(hdev
->bus
, hlink
);
592 hda_pvt
= hdac_to_hda_priv(hdev
);
596 /* ASoC specific initialization */
597 ret
= devm_snd_soc_register_component(&hdev
->dev
,
598 &hdac_hda_codec
, hdac_hda_dais
,
599 ARRAY_SIZE(hdac_hda_dais
));
601 dev_err(&hdev
->dev
, "failed to register HDA codec %d\n", ret
);
605 dev_set_drvdata(&hdev
->dev
, hda_pvt
);
606 snd_hdac_ext_bus_link_put(hdev
->bus
, hlink
);
611 static int hdac_hda_dev_remove(struct hdac_device
*hdev
)
614 * Resources are freed in hdac_hda_codec_remove(). This
615 * function is kept to keep hda_codec_driver_remove() happy.
620 static struct hdac_ext_bus_ops hdac_ops
= {
621 .hdev_attach
= hdac_hda_dev_probe
,
622 .hdev_detach
= hdac_hda_dev_remove
,
625 struct hdac_ext_bus_ops
*snd_soc_hdac_hda_get_ops(void)
629 EXPORT_SYMBOL_GPL(snd_soc_hdac_hda_get_ops
);
631 MODULE_LICENSE("GPL v2");
632 MODULE_DESCRIPTION("ASoC Extensions for legacy HDA Drivers");
633 MODULE_AUTHOR("Rakesh Ughreja<rakesh.a.ughreja@intel.com>");