1 // SPDX-License-Identifier: (GPL-2.0 OR MIT) 2 // 3 // Copyright (c) 2018 BayLibre, SAS. 4 // Author: Jerome Brunet <jbrunet@baylibre.com> 5 6 /* This driver implements the frontend capture DAI of AXG based SoCs */ 7 8 #include <linux/clk.h> 9 #include <linux/regmap.h> 10 #include <linux/module.h> 11 #include <linux/of_platform.h> 12 #include <sound/pcm_params.h> 13 #include <sound/soc.h> 14 #include <sound/soc-dai.h> 15 16 #include "axg-fifo.h" 17 18 #define CTRL0_TODDR_SEL_RESAMPLE BIT(30) 19 #define CTRL0_TODDR_EXT_SIGNED BIT(29) 20 #define CTRL0_TODDR_PP_MODE BIT(28) 21 #define CTRL0_TODDR_TYPE_MASK GENMASK(15, 13) 22 #define CTRL0_TODDR_TYPE(x) ((x) << 13) 23 #define CTRL0_TODDR_MSB_POS_MASK GENMASK(12, 8) 24 #define CTRL0_TODDR_MSB_POS(x) ((x) << 8) 25 #define CTRL0_TODDR_LSB_POS_MASK GENMASK(7, 3) 26 #define CTRL0_TODDR_LSB_POS(x) ((x) << 3) 27 #define CTRL1_TODDR_FORCE_FINISH BIT(25) 28 #define CTRL1_SEL_SHIFT 28 29 30 #define TODDR_MSB_POS 31 31 32 static int axg_toddr_pcm_new(struct snd_soc_pcm_runtime *rtd, 33 struct snd_soc_dai *dai) 34 { 35 return axg_fifo_pcm_new(rtd, SNDRV_PCM_STREAM_CAPTURE); 36 } 37 38 static int g12a_toddr_dai_prepare(struct snd_pcm_substream *substream, 39 struct snd_soc_dai *dai) 40 { 41 struct axg_fifo *fifo = snd_soc_dai_get_drvdata(dai); 42 43 /* Reset the write pointer to the FIFO_INIT_ADDR */ 44 regmap_update_bits(fifo->map, FIFO_CTRL1, 45 CTRL1_TODDR_FORCE_FINISH, 0); 46 regmap_update_bits(fifo->map, FIFO_CTRL1, 47 CTRL1_TODDR_FORCE_FINISH, CTRL1_TODDR_FORCE_FINISH); 48 regmap_update_bits(fifo->map, FIFO_CTRL1, 49 CTRL1_TODDR_FORCE_FINISH, 0); 50 51 return 0; 52 } 53 54 static int axg_toddr_dai_hw_params(struct snd_pcm_substream *substream, 55 struct snd_pcm_hw_params *params, 56 struct snd_soc_dai *dai) 57 { 58 struct axg_fifo *fifo = snd_soc_dai_get_drvdata(dai); 59 unsigned int type, width; 60 61 switch (params_physical_width(params)) { 62 case 8: 63 type = 0; /* 8 samples of 8 bits */ 64 break; 65 case 16: 66 type = 2; /* 4 samples of 16 bits - right justified */ 67 break; 68 case 32: 69 type = 4; /* 2 samples of 32 bits - right justified */ 70 break; 71 default: 72 return -EINVAL; 73 } 74 75 width = params_width(params); 76 77 regmap_update_bits(fifo->map, FIFO_CTRL0, 78 CTRL0_TODDR_TYPE_MASK | 79 CTRL0_TODDR_MSB_POS_MASK | 80 CTRL0_TODDR_LSB_POS_MASK, 81 CTRL0_TODDR_TYPE(type) | 82 CTRL0_TODDR_MSB_POS(TODDR_MSB_POS) | 83 CTRL0_TODDR_LSB_POS(TODDR_MSB_POS - (width - 1))); 84 85 return 0; 86 } 87 88 static int axg_toddr_dai_startup(struct snd_pcm_substream *substream, 89 struct snd_soc_dai *dai) 90 { 91 struct axg_fifo *fifo = snd_soc_dai_get_drvdata(dai); 92 unsigned int fifo_threshold; 93 int ret; 94 95 /* Enable pclk to access registers and clock the fifo ip */ 96 ret = clk_prepare_enable(fifo->pclk); 97 if (ret) 98 return ret; 99 100 /* Select orginal data - resampling not supported ATM */ 101 regmap_update_bits(fifo->map, FIFO_CTRL0, CTRL0_TODDR_SEL_RESAMPLE, 0); 102 103 /* Only signed format are supported ATM */ 104 regmap_update_bits(fifo->map, FIFO_CTRL0, CTRL0_TODDR_EXT_SIGNED, 105 CTRL0_TODDR_EXT_SIGNED); 106 107 /* Apply single buffer mode to the interface */ 108 regmap_update_bits(fifo->map, FIFO_CTRL0, CTRL0_TODDR_PP_MODE, 0); 109 110 /* TODDR does not have a configurable fifo depth */ 111 fifo_threshold = AXG_FIFO_MIN_CNT - 1; 112 regmap_update_bits(fifo->map, FIFO_CTRL1, CTRL1_THRESHOLD_MASK, 113 CTRL1_THRESHOLD(fifo_threshold)); 114 115 return 0; 116 } 117 118 static void axg_toddr_dai_shutdown(struct snd_pcm_substream *substream, 119 struct snd_soc_dai *dai) 120 { 121 struct axg_fifo *fifo = snd_soc_dai_get_drvdata(dai); 122 123 clk_disable_unprepare(fifo->pclk); 124 } 125 126 static const struct snd_soc_dai_ops axg_toddr_ops = { 127 .hw_params = axg_toddr_dai_hw_params, 128 .startup = axg_toddr_dai_startup, 129 .shutdown = axg_toddr_dai_shutdown, 130 }; 131 132 static struct snd_soc_dai_driver axg_toddr_dai_drv = { 133 .name = "TODDR", 134 .capture = { 135 .stream_name = "Capture", 136 .channels_min = 1, 137 .channels_max = AXG_FIFO_CH_MAX, 138 .rates = AXG_FIFO_RATES, 139 .formats = AXG_FIFO_FORMATS, 140 }, 141 .ops = &axg_toddr_ops, 142 .pcm_new = axg_toddr_pcm_new, 143 }; 144 145 static const char * const axg_toddr_sel_texts[] = { 146 "IN 0", "IN 1", "IN 2", "IN 3", "IN 4", "IN 5", "IN 6", "IN 7" 147 }; 148 149 static SOC_ENUM_SINGLE_DECL(axg_toddr_sel_enum, FIFO_CTRL0, CTRL0_SEL_SHIFT, 150 axg_toddr_sel_texts); 151 152 static const struct snd_kcontrol_new axg_toddr_in_mux = 153 SOC_DAPM_ENUM("Input Source", axg_toddr_sel_enum); 154 155 static const struct snd_soc_dapm_widget axg_toddr_dapm_widgets[] = { 156 SND_SOC_DAPM_MUX("SRC SEL", SND_SOC_NOPM, 0, 0, &axg_toddr_in_mux), 157 SND_SOC_DAPM_AIF_IN("IN 0", NULL, 0, SND_SOC_NOPM, 0, 0), 158 SND_SOC_DAPM_AIF_IN("IN 1", NULL, 0, SND_SOC_NOPM, 0, 0), 159 SND_SOC_DAPM_AIF_IN("IN 2", NULL, 0, SND_SOC_NOPM, 0, 0), 160 SND_SOC_DAPM_AIF_IN("IN 3", NULL, 0, SND_SOC_NOPM, 0, 0), 161 SND_SOC_DAPM_AIF_IN("IN 4", NULL, 0, SND_SOC_NOPM, 0, 0), 162 SND_SOC_DAPM_AIF_IN("IN 5", NULL, 0, SND_SOC_NOPM, 0, 0), 163 SND_SOC_DAPM_AIF_IN("IN 6", NULL, 0, SND_SOC_NOPM, 0, 0), 164 SND_SOC_DAPM_AIF_IN("IN 7", NULL, 0, SND_SOC_NOPM, 0, 0), 165 }; 166 167 static const struct snd_soc_dapm_route axg_toddr_dapm_routes[] = { 168 { "Capture", NULL, "SRC SEL" }, 169 { "SRC SEL", "IN 0", "IN 0" }, 170 { "SRC SEL", "IN 1", "IN 1" }, 171 { "SRC SEL", "IN 2", "IN 2" }, 172 { "SRC SEL", "IN 3", "IN 3" }, 173 { "SRC SEL", "IN 4", "IN 4" }, 174 { "SRC SEL", "IN 5", "IN 5" }, 175 { "SRC SEL", "IN 6", "IN 6" }, 176 { "SRC SEL", "IN 7", "IN 7" }, 177 }; 178 179 static const struct snd_soc_component_driver axg_toddr_component_drv = { 180 .dapm_widgets = axg_toddr_dapm_widgets, 181 .num_dapm_widgets = ARRAY_SIZE(axg_toddr_dapm_widgets), 182 .dapm_routes = axg_toddr_dapm_routes, 183 .num_dapm_routes = ARRAY_SIZE(axg_toddr_dapm_routes), 184 .ops = &axg_fifo_pcm_ops 185 }; 186 187 static const struct axg_fifo_match_data axg_toddr_match_data = { 188 .component_drv = &axg_toddr_component_drv, 189 .dai_drv = &axg_toddr_dai_drv 190 }; 191 192 static const struct snd_soc_dai_ops g12a_toddr_ops = { 193 .prepare = g12a_toddr_dai_prepare, 194 .hw_params = axg_toddr_dai_hw_params, 195 .startup = axg_toddr_dai_startup, 196 .shutdown = axg_toddr_dai_shutdown, 197 }; 198 199 static struct snd_soc_dai_driver g12a_toddr_dai_drv = { 200 .name = "TODDR", 201 .capture = { 202 .stream_name = "Capture", 203 .channels_min = 1, 204 .channels_max = AXG_FIFO_CH_MAX, 205 .rates = AXG_FIFO_RATES, 206 .formats = AXG_FIFO_FORMATS, 207 }, 208 .ops = &g12a_toddr_ops, 209 .pcm_new = axg_toddr_pcm_new, 210 }; 211 212 static const struct snd_soc_component_driver g12a_toddr_component_drv = { 213 .dapm_widgets = axg_toddr_dapm_widgets, 214 .num_dapm_widgets = ARRAY_SIZE(axg_toddr_dapm_widgets), 215 .dapm_routes = axg_toddr_dapm_routes, 216 .num_dapm_routes = ARRAY_SIZE(axg_toddr_dapm_routes), 217 .ops = &g12a_fifo_pcm_ops 218 }; 219 220 static const struct axg_fifo_match_data g12a_toddr_match_data = { 221 .component_drv = &g12a_toddr_component_drv, 222 .dai_drv = &g12a_toddr_dai_drv 223 }; 224 225 static const char * const sm1_toddr_sel_texts[] = { 226 "IN 0", "IN 1", "IN 2", "IN 3", "IN 4", "IN 5", "IN 6", "IN 7", 227 "IN 8", "IN 9", "IN 10", "IN 11", "IN 12", "IN 13", "IN 14", "IN 15" 228 }; 229 230 static SOC_ENUM_SINGLE_DECL(sm1_toddr_sel_enum, FIFO_CTRL1, CTRL1_SEL_SHIFT, 231 sm1_toddr_sel_texts); 232 233 static const struct snd_kcontrol_new sm1_toddr_in_mux = 234 SOC_DAPM_ENUM("Input Source", sm1_toddr_sel_enum); 235 236 static const struct snd_soc_dapm_widget sm1_toddr_dapm_widgets[] = { 237 SND_SOC_DAPM_MUX("SRC SEL", SND_SOC_NOPM, 0, 0, &sm1_toddr_in_mux), 238 SND_SOC_DAPM_AIF_IN("IN 0", NULL, 0, SND_SOC_NOPM, 0, 0), 239 SND_SOC_DAPM_AIF_IN("IN 1", NULL, 0, SND_SOC_NOPM, 0, 0), 240 SND_SOC_DAPM_AIF_IN("IN 2", NULL, 0, SND_SOC_NOPM, 0, 0), 241 SND_SOC_DAPM_AIF_IN("IN 3", NULL, 0, SND_SOC_NOPM, 0, 0), 242 SND_SOC_DAPM_AIF_IN("IN 4", NULL, 0, SND_SOC_NOPM, 0, 0), 243 SND_SOC_DAPM_AIF_IN("IN 5", NULL, 0, SND_SOC_NOPM, 0, 0), 244 SND_SOC_DAPM_AIF_IN("IN 6", NULL, 0, SND_SOC_NOPM, 0, 0), 245 SND_SOC_DAPM_AIF_IN("IN 7", NULL, 0, SND_SOC_NOPM, 0, 0), 246 SND_SOC_DAPM_AIF_IN("IN 8", NULL, 0, SND_SOC_NOPM, 0, 0), 247 SND_SOC_DAPM_AIF_IN("IN 9", NULL, 0, SND_SOC_NOPM, 0, 0), 248 SND_SOC_DAPM_AIF_IN("IN 10", NULL, 0, SND_SOC_NOPM, 0, 0), 249 SND_SOC_DAPM_AIF_IN("IN 11", NULL, 0, SND_SOC_NOPM, 0, 0), 250 SND_SOC_DAPM_AIF_IN("IN 12", NULL, 0, SND_SOC_NOPM, 0, 0), 251 SND_SOC_DAPM_AIF_IN("IN 13", NULL, 0, SND_SOC_NOPM, 0, 0), 252 SND_SOC_DAPM_AIF_IN("IN 14", NULL, 0, SND_SOC_NOPM, 0, 0), 253 SND_SOC_DAPM_AIF_IN("IN 15", NULL, 0, SND_SOC_NOPM, 0, 0), 254 }; 255 256 static const struct snd_soc_dapm_route sm1_toddr_dapm_routes[] = { 257 { "Capture", NULL, "SRC SEL" }, 258 { "SRC SEL", "IN 0", "IN 0" }, 259 { "SRC SEL", "IN 1", "IN 1" }, 260 { "SRC SEL", "IN 2", "IN 2" }, 261 { "SRC SEL", "IN 3", "IN 3" }, 262 { "SRC SEL", "IN 4", "IN 4" }, 263 { "SRC SEL", "IN 5", "IN 5" }, 264 { "SRC SEL", "IN 6", "IN 6" }, 265 { "SRC SEL", "IN 7", "IN 7" }, 266 { "SRC SEL", "IN 8", "IN 8" }, 267 { "SRC SEL", "IN 9", "IN 9" }, 268 { "SRC SEL", "IN 10", "IN 10" }, 269 { "SRC SEL", "IN 11", "IN 11" }, 270 { "SRC SEL", "IN 12", "IN 12" }, 271 { "SRC SEL", "IN 13", "IN 13" }, 272 { "SRC SEL", "IN 14", "IN 14" }, 273 { "SRC SEL", "IN 15", "IN 15" }, 274 }; 275 276 static const struct snd_soc_component_driver sm1_toddr_component_drv = { 277 .dapm_widgets = sm1_toddr_dapm_widgets, 278 .num_dapm_widgets = ARRAY_SIZE(sm1_toddr_dapm_widgets), 279 .dapm_routes = sm1_toddr_dapm_routes, 280 .num_dapm_routes = ARRAY_SIZE(sm1_toddr_dapm_routes), 281 .ops = &g12a_fifo_pcm_ops 282 }; 283 284 static const struct axg_fifo_match_data sm1_toddr_match_data = { 285 .component_drv = &sm1_toddr_component_drv, 286 .dai_drv = &g12a_toddr_dai_drv 287 }; 288 289 static const struct of_device_id axg_toddr_of_match[] = { 290 { 291 .compatible = "amlogic,axg-toddr", 292 .data = &axg_toddr_match_data, 293 }, { 294 .compatible = "amlogic,g12a-toddr", 295 .data = &g12a_toddr_match_data, 296 }, { 297 .compatible = "amlogic,sm1-toddr", 298 .data = &sm1_toddr_match_data, 299 }, {} 300 }; 301 MODULE_DEVICE_TABLE(of, axg_toddr_of_match); 302 303 static struct platform_driver axg_toddr_pdrv = { 304 .probe = axg_fifo_probe, 305 .driver = { 306 .name = "axg-toddr", 307 .of_match_table = axg_toddr_of_match, 308 }, 309 }; 310 module_platform_driver(axg_toddr_pdrv); 311 312 MODULE_DESCRIPTION("Amlogic AXG capture fifo driver"); 313 MODULE_AUTHOR("Jerome Brunet <jbrunet@baylibre.com>"); 314 MODULE_LICENSE("GPL v2"); 315