1 // SPDX-License-Identifier: (GPL-2.0 OR MIT)
3 // Copyright (c) 2018 BayLibre, SAS.
4 // Author: Jerome Brunet <jbrunet@baylibre.com>
6 /* This driver implements the frontend playback DAI of AXG based SoCs */
9 #include <linux/regmap.h>
10 #include <linux/module.h>
11 #include <linux/of_platform.h>
12 #include <sound/soc.h>
13 #include <sound/soc-dai.h>
17 #define CTRL0_FRDDR_PP_MODE BIT(30)
19 static int axg_frddr_dai_startup(struct snd_pcm_substream
*substream
,
20 struct snd_soc_dai
*dai
)
22 struct axg_fifo
*fifo
= snd_soc_dai_get_drvdata(dai
);
23 unsigned int fifo_depth
, fifo_threshold
;
26 /* Enable pclk to access registers and clock the fifo ip */
27 ret
= clk_prepare_enable(fifo
->pclk
);
31 /* Apply single buffer mode to the interface */
32 regmap_update_bits(fifo
->map
, FIFO_CTRL0
, CTRL0_FRDDR_PP_MODE
, 0);
35 * TODO: We could adapt the fifo depth and the fifo threshold
36 * depending on the expected memory throughput and lantencies
37 * For now, we'll just use the same values as the vendor kernel
38 * Depth and threshold are zero based.
40 fifo_depth
= AXG_FIFO_MIN_CNT
- 1;
41 fifo_threshold
= (AXG_FIFO_MIN_CNT
/ 2) - 1;
42 regmap_update_bits(fifo
->map
, FIFO_CTRL1
,
43 CTRL1_FRDDR_DEPTH_MASK
| CTRL1_THRESHOLD_MASK
,
44 CTRL1_FRDDR_DEPTH(fifo_depth
) |
45 CTRL1_THRESHOLD(fifo_threshold
));
50 static void axg_frddr_dai_shutdown(struct snd_pcm_substream
*substream
,
51 struct snd_soc_dai
*dai
)
53 struct axg_fifo
*fifo
= snd_soc_dai_get_drvdata(dai
);
55 clk_disable_unprepare(fifo
->pclk
);
58 static int axg_frddr_pcm_new(struct snd_soc_pcm_runtime
*rtd
,
59 struct snd_soc_dai
*dai
)
61 return axg_fifo_pcm_new(rtd
, SNDRV_PCM_STREAM_PLAYBACK
);
64 static const struct snd_soc_dai_ops axg_frddr_ops
= {
65 .startup
= axg_frddr_dai_startup
,
66 .shutdown
= axg_frddr_dai_shutdown
,
69 static struct snd_soc_dai_driver axg_frddr_dai_drv
= {
72 .stream_name
= "Playback",
74 .channels_max
= AXG_FIFO_CH_MAX
,
75 .rates
= AXG_FIFO_RATES
,
76 .formats
= AXG_FIFO_FORMATS
,
78 .ops
= &axg_frddr_ops
,
79 .pcm_new
= axg_frddr_pcm_new
,
82 static const char * const axg_frddr_sel_texts
[] = {
83 "OUT 0", "OUT 1", "OUT 2", "OUT 3"
86 static SOC_ENUM_SINGLE_DECL(axg_frddr_sel_enum
, FIFO_CTRL0
, CTRL0_SEL_SHIFT
,
89 static const struct snd_kcontrol_new axg_frddr_out_demux
=
90 SOC_DAPM_ENUM("Output Sink", axg_frddr_sel_enum
);
92 static const struct snd_soc_dapm_widget axg_frddr_dapm_widgets
[] = {
93 SND_SOC_DAPM_DEMUX("SINK SEL", SND_SOC_NOPM
, 0, 0,
94 &axg_frddr_out_demux
),
95 SND_SOC_DAPM_AIF_OUT("OUT 0", NULL
, 0, SND_SOC_NOPM
, 0, 0),
96 SND_SOC_DAPM_AIF_OUT("OUT 1", NULL
, 0, SND_SOC_NOPM
, 0, 0),
97 SND_SOC_DAPM_AIF_OUT("OUT 2", NULL
, 0, SND_SOC_NOPM
, 0, 0),
98 SND_SOC_DAPM_AIF_OUT("OUT 3", NULL
, 0, SND_SOC_NOPM
, 0, 0),
101 static const struct snd_soc_dapm_route axg_frddr_dapm_routes
[] = {
102 { "SINK SEL", NULL
, "Playback" },
103 { "OUT 0", "OUT 0", "SINK SEL" },
104 { "OUT 1", "OUT 1", "SINK SEL" },
105 { "OUT 2", "OUT 2", "SINK SEL" },
106 { "OUT 3", "OUT 3", "SINK SEL" },
109 static const struct snd_soc_component_driver axg_frddr_component_drv
= {
110 .dapm_widgets
= axg_frddr_dapm_widgets
,
111 .num_dapm_widgets
= ARRAY_SIZE(axg_frddr_dapm_widgets
),
112 .dapm_routes
= axg_frddr_dapm_routes
,
113 .num_dapm_routes
= ARRAY_SIZE(axg_frddr_dapm_routes
),
114 .ops
= &axg_fifo_pcm_ops
117 static const struct axg_fifo_match_data axg_frddr_match_data
= {
118 .component_drv
= &axg_frddr_component_drv
,
119 .dai_drv
= &axg_frddr_dai_drv
122 static const struct of_device_id axg_frddr_of_match
[] = {
124 .compatible
= "amlogic,axg-frddr",
125 .data
= &axg_frddr_match_data
,
128 MODULE_DEVICE_TABLE(of
, axg_frddr_of_match
);
130 static struct platform_driver axg_frddr_pdrv
= {
131 .probe
= axg_fifo_probe
,
134 .of_match_table
= axg_frddr_of_match
,
137 module_platform_driver(axg_frddr_pdrv
);
139 MODULE_DESCRIPTION("Amlogic AXG playback fifo driver");
140 MODULE_AUTHOR("Jerome Brunet <jbrunet@baylibre.com>");
141 MODULE_LICENSE("GPL v2");