1 // SPDX-License-Identifier: GPL-2.0 2 // Copyright (c) 2023, Linaro Limited 3 4 #include <dt-bindings/sound/qcom,q6afe.h> 5 #include <linux/module.h> 6 #include <linux/platform_device.h> 7 #include <linux/soundwire/sdw.h> 8 #include <sound/pcm.h> 9 #include <sound/jack.h> 10 #include <sound/soc.h> 11 #include <sound/soc-dapm.h> 12 13 #include "common.h" 14 #include "qdsp6/q6afe.h" 15 #include "qdsp6/q6dsp-common.h" 16 #include "sdw.h" 17 18 struct x1e80100_snd_data { 19 bool stream_prepared[AFE_PORT_MAX]; 20 struct snd_soc_card *card; 21 struct sdw_stream_runtime *sruntime[AFE_PORT_MAX]; 22 struct snd_soc_jack jack; 23 bool jack_setup; 24 }; 25 26 static int x1e80100_snd_init(struct snd_soc_pcm_runtime *rtd) 27 { 28 struct x1e80100_snd_data *data = snd_soc_card_get_drvdata(rtd->card); 29 30 return qcom_snd_wcd_jack_setup(rtd, &data->jack, &data->jack_setup); 31 } 32 33 static void x1e80100_snd_shutdown(struct snd_pcm_substream *substream) 34 { 35 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 36 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(rtd, 0); 37 struct x1e80100_snd_data *data = snd_soc_card_get_drvdata(rtd->card); 38 struct sdw_stream_runtime *sruntime = data->sruntime[cpu_dai->id]; 39 40 data->sruntime[cpu_dai->id] = NULL; 41 sdw_release_stream(sruntime); 42 } 43 44 static int x1e80100_be_hw_params_fixup(struct snd_soc_pcm_runtime *rtd, 45 struct snd_pcm_hw_params *params) 46 { 47 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(rtd, 0); 48 struct snd_interval *rate = hw_param_interval(params, 49 SNDRV_PCM_HW_PARAM_RATE); 50 struct snd_interval *channels = hw_param_interval(params, 51 SNDRV_PCM_HW_PARAM_CHANNELS); 52 53 rate->min = rate->max = 48000; 54 switch (cpu_dai->id) { 55 case TX_CODEC_DMA_TX_0: 56 case TX_CODEC_DMA_TX_1: 57 case TX_CODEC_DMA_TX_2: 58 case TX_CODEC_DMA_TX_3: 59 channels->min = 1; 60 break; 61 default: 62 break; 63 } 64 65 return 0; 66 } 67 68 static int x1e80100_snd_hw_params(struct snd_pcm_substream *substream, 69 struct snd_pcm_hw_params *params) 70 { 71 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 72 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(rtd, 0); 73 struct x1e80100_snd_data *data = snd_soc_card_get_drvdata(rtd->card); 74 75 return qcom_snd_sdw_hw_params(substream, params, &data->sruntime[cpu_dai->id]); 76 } 77 78 static int x1e80100_snd_prepare(struct snd_pcm_substream *substream) 79 { 80 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 81 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(rtd, 0); 82 struct x1e80100_snd_data *data = snd_soc_card_get_drvdata(rtd->card); 83 struct sdw_stream_runtime *sruntime = data->sruntime[cpu_dai->id]; 84 const unsigned int rx_slot[4] = { PCM_CHANNEL_FL, 85 PCM_CHANNEL_LB, 86 PCM_CHANNEL_FR, 87 PCM_CHANNEL_RB }; 88 int ret; 89 90 switch (cpu_dai->id) { 91 case WSA_CODEC_DMA_RX_0: 92 case WSA_CODEC_DMA_RX_1: 93 ret = snd_soc_dai_set_channel_map(cpu_dai, 0, NULL, 94 ARRAY_SIZE(rx_slot), rx_slot); 95 if (ret) 96 return ret; 97 break; 98 default: 99 break; 100 } 101 102 return qcom_snd_sdw_prepare(substream, sruntime, 103 &data->stream_prepared[cpu_dai->id]); 104 } 105 106 static int x1e80100_snd_hw_free(struct snd_pcm_substream *substream) 107 { 108 struct snd_soc_pcm_runtime *rtd = snd_soc_substream_to_rtd(substream); 109 struct x1e80100_snd_data *data = snd_soc_card_get_drvdata(rtd->card); 110 struct snd_soc_dai *cpu_dai = snd_soc_rtd_to_cpu(rtd, 0); 111 struct sdw_stream_runtime *sruntime = data->sruntime[cpu_dai->id]; 112 113 return qcom_snd_sdw_hw_free(substream, sruntime, 114 &data->stream_prepared[cpu_dai->id]); 115 } 116 117 static const struct snd_soc_ops x1e80100_be_ops = { 118 .startup = qcom_snd_sdw_startup, 119 .shutdown = x1e80100_snd_shutdown, 120 .hw_params = x1e80100_snd_hw_params, 121 .hw_free = x1e80100_snd_hw_free, 122 .prepare = x1e80100_snd_prepare, 123 }; 124 125 static void x1e80100_add_be_ops(struct snd_soc_card *card) 126 { 127 struct snd_soc_dai_link *link; 128 int i; 129 130 for_each_card_prelinks(card, i, link) { 131 if (link->no_pcm == 1) { 132 link->init = x1e80100_snd_init; 133 link->be_hw_params_fixup = x1e80100_be_hw_params_fixup; 134 link->ops = &x1e80100_be_ops; 135 } 136 } 137 } 138 139 static int x1e80100_platform_probe(struct platform_device *pdev) 140 { 141 struct snd_soc_card *card; 142 struct x1e80100_snd_data *data; 143 struct device *dev = &pdev->dev; 144 int ret; 145 146 card = devm_kzalloc(dev, sizeof(*card), GFP_KERNEL); 147 if (!card) 148 return -ENOMEM; 149 /* Allocate the private data */ 150 data = devm_kzalloc(dev, sizeof(*data), GFP_KERNEL); 151 if (!data) 152 return -ENOMEM; 153 154 card->owner = THIS_MODULE; 155 card->dev = dev; 156 dev_set_drvdata(dev, card); 157 snd_soc_card_set_drvdata(card, data); 158 159 ret = qcom_snd_parse_of(card); 160 if (ret) 161 return ret; 162 163 card->driver_name = "x1e80100"; 164 x1e80100_add_be_ops(card); 165 166 return devm_snd_soc_register_card(dev, card); 167 } 168 169 static const struct of_device_id snd_x1e80100_dt_match[] = { 170 { .compatible = "qcom,x1e80100-sndcard", }, 171 {} 172 }; 173 MODULE_DEVICE_TABLE(of, snd_x1e80100_dt_match); 174 175 static struct platform_driver snd_x1e80100_driver = { 176 .probe = x1e80100_platform_probe, 177 .driver = { 178 .name = "snd-x1e80100", 179 .of_match_table = snd_x1e80100_dt_match, 180 }, 181 }; 182 module_platform_driver(snd_x1e80100_driver); 183 MODULE_AUTHOR("Srinivas Kandagatla <srinivas.kandagatla@linaro.org"); 184 MODULE_AUTHOR("Krzysztof Kozlowski <krzysztof.kozlowski@linaro.org>"); 185 MODULE_DESCRIPTION("Qualcomm X1E80100 ASoC Machine Driver"); 186 MODULE_LICENSE("GPL"); 187