1 // SPDX-License-Identifier: GPL-2.0
4 // Copyright (C) 2013 Renesas Solutions Corp.
5 // Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
7 #include <linux/module.h>
11 * ak4554 is very simple DA/AD converter which has no setting register.
15 * ak4554 playback format is SND_SOC_DAIFMT_RIGHT_J,
16 * and, capture format is SND_SOC_DAIFMT_LEFT_J
17 * on same bit clock, LR clock.
18 * But, this driver doesn't have snd_soc_dai_ops :: set_fmt
22 * CPU-DAI1 (plaback only fmt = RIGHT_J) --+-- ak4554
24 * CPU-DAI2 (capture only fmt = LEFT_J) ---+
27 static const struct snd_soc_dapm_widget ak4554_dapm_widgets
[] = {
28 SND_SOC_DAPM_INPUT("AINL"),
29 SND_SOC_DAPM_INPUT("AINR"),
31 SND_SOC_DAPM_OUTPUT("AOUTL"),
32 SND_SOC_DAPM_OUTPUT("AOUTR"),
35 static const struct snd_soc_dapm_route ak4554_dapm_routes
[] = {
36 { "Capture", NULL
, "AINL" },
37 { "Capture", NULL
, "AINR" },
39 { "AOUTL", NULL
, "Playback" },
40 { "AOUTR", NULL
, "Playback" },
43 static struct snd_soc_dai_driver ak4554_dai
= {
44 .name
= "ak4554-hifi",
46 .stream_name
= "Playback",
49 .rates
= SNDRV_PCM_RATE_8000_48000
,
50 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
53 .stream_name
= "Capture",
56 .rates
= SNDRV_PCM_RATE_8000_48000
,
57 .formats
= SNDRV_PCM_FMTBIT_S16_LE
,
62 static const struct snd_soc_component_driver soc_component_dev_ak4554
= {
63 .dapm_widgets
= ak4554_dapm_widgets
,
64 .num_dapm_widgets
= ARRAY_SIZE(ak4554_dapm_widgets
),
65 .dapm_routes
= ak4554_dapm_routes
,
66 .num_dapm_routes
= ARRAY_SIZE(ak4554_dapm_routes
),
70 .non_legacy_dai_naming
= 1,
73 static int ak4554_soc_probe(struct platform_device
*pdev
)
75 return devm_snd_soc_register_component(&pdev
->dev
,
76 &soc_component_dev_ak4554
,
80 static const struct of_device_id ak4554_of_match
[] = {
81 { .compatible
= "asahi-kasei,ak4554" },
84 MODULE_DEVICE_TABLE(of
, ak4554_of_match
);
86 static struct platform_driver ak4554_driver
= {
88 .name
= "ak4554-adc-dac",
89 .of_match_table
= ak4554_of_match
,
91 .probe
= ak4554_soc_probe
,
93 module_platform_driver(ak4554_driver
);
95 MODULE_LICENSE("GPL v2");
96 MODULE_DESCRIPTION("SoC AK4554 driver");
97 MODULE_AUTHOR("Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>");