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