msm-dai-q6-hdmi-v2.c 16 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2012-2019, The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/init.h>
  5. #include <linux/module.h>
  6. #include <linux/device.h>
  7. #include <linux/platform_device.h>
  8. #include <linux/bitops.h>
  9. #include <linux/slab.h>
  10. #include <linux/of_device.h>
  11. #include <sound/core.h>
  12. #include <sound/pcm.h>
  13. #include <sound/soc.h>
  14. #include <sound/pcm_params.h>
  15. #include <dsp/apr_audio-v2.h>
  16. #include <dsp/q6afe-v2.h>
  17. #include "msm-dai-q6-v2.h"
  18. #define HDMI_RX_CA_MAX 0x32
  19. enum {
  20. STATUS_PORT_STARTED, /* track if AFE port has started */
  21. STATUS_MAX
  22. };
  23. struct msm_ext_disp_ca {
  24. bool set_ca;
  25. u32 ca;
  26. };
  27. struct msm_dai_q6_hdmi_dai_data {
  28. DECLARE_BITMAP(status_mask, STATUS_MAX);
  29. u32 rate;
  30. u32 channels;
  31. u32 stream_idx;
  32. u32 ctl_idx;
  33. struct msm_ext_disp_ca ca;
  34. union afe_port_config port_config;
  35. };
  36. static int msm_dai_q6_ext_disp_format_put(struct snd_kcontrol *kcontrol,
  37. struct snd_ctl_elem_value *ucontrol)
  38. {
  39. struct msm_dai_q6_hdmi_dai_data *dai_data = kcontrol->private_data;
  40. int value = ucontrol->value.integer.value[0];
  41. if (!dai_data) {
  42. pr_err("%s: dai_data is NULL\n", __func__);
  43. return -EINVAL;
  44. }
  45. dai_data->port_config.hdmi_multi_ch.datatype = value;
  46. pr_debug("%s: value = %d\n", __func__, value);
  47. return 0;
  48. }
  49. static int msm_dai_q6_ext_disp_format_get(struct snd_kcontrol *kcontrol,
  50. struct snd_ctl_elem_value *ucontrol)
  51. {
  52. struct msm_dai_q6_hdmi_dai_data *dai_data = kcontrol->private_data;
  53. if (!dai_data) {
  54. pr_err("%s: dai_data is NULL\n", __func__);
  55. return -EINVAL;
  56. }
  57. ucontrol->value.integer.value[0] =
  58. dai_data->port_config.hdmi_multi_ch.datatype;
  59. pr_debug("%s: value = %ld\n",
  60. __func__, ucontrol->value.integer.value[0]);
  61. return 0;
  62. }
  63. static int msm_dai_q6_ext_disp_device_idx_put(struct snd_kcontrol *kcontrol,
  64. struct snd_ctl_elem_value *ucontrol)
  65. {
  66. struct msm_dai_q6_hdmi_dai_data *dai_data = kcontrol->private_data;
  67. if (!dai_data) {
  68. pr_err("%s: dai_data is NULL\n", __func__);
  69. return -EINVAL;
  70. }
  71. dai_data->ctl_idx = ucontrol->value.integer.value[0];
  72. dai_data->stream_idx = ucontrol->value.integer.value[1];
  73. pr_debug("%s: DP ctl id %d stream id %d\n", __func__,
  74. dai_data->ctl_idx, dai_data->stream_idx);
  75. return 0;
  76. }
  77. static int msm_dai_q6_ext_disp_device_idx_get(struct snd_kcontrol *kcontrol,
  78. struct snd_ctl_elem_value *ucontrol)
  79. {
  80. struct msm_dai_q6_hdmi_dai_data *dai_data = kcontrol->private_data;
  81. if (!dai_data) {
  82. pr_err("%s: dai_data is NULL\n", __func__);
  83. return -EINVAL;
  84. }
  85. ucontrol->value.integer.value[0] = dai_data->ctl_idx;
  86. ucontrol->value.integer.value[1] = dai_data->stream_idx;
  87. pr_debug("%s: DP ctl id %d stream id %d\n", __func__,
  88. dai_data->ctl_idx, dai_data->stream_idx);
  89. return 0;
  90. }
  91. static int msm_dai_q6_ext_disp_ca_put(struct snd_kcontrol *kcontrol,
  92. struct snd_ctl_elem_value *ucontrol)
  93. {
  94. struct msm_dai_q6_hdmi_dai_data *dai_data = kcontrol->private_data;
  95. if (!dai_data) {
  96. pr_err("%s: dai_data is NULL\n", __func__);
  97. return -EINVAL;
  98. }
  99. dai_data->ca.ca = ucontrol->value.integer.value[0];
  100. dai_data->ca.set_ca = true;
  101. pr_debug("%s: ca = %d\n", __func__, dai_data->ca.ca);
  102. return 0;
  103. }
  104. static int msm_dai_q6_ext_disp_ca_get(struct snd_kcontrol *kcontrol,
  105. struct snd_ctl_elem_value *ucontrol)
  106. {
  107. struct msm_dai_q6_hdmi_dai_data *dai_data = kcontrol->private_data;
  108. if (!dai_data) {
  109. pr_err("%s: dai_data is NULL\n", __func__);
  110. return -EINVAL;
  111. }
  112. ucontrol->value.integer.value[0] = dai_data->ca.ca;
  113. pr_debug("%s: ca = %d\n", __func__, dai_data->ca.ca);
  114. return 0;
  115. }
  116. /* HDMI format field for AFE_PORT_MULTI_CHAN_HDMI_AUDIO_IF_CONFIG command
  117. * 0: linear PCM
  118. * 1: non-linear PCM
  119. */
  120. static const char * const hdmi_format[] = {
  121. "LPCM",
  122. "Compr"
  123. };
  124. static const struct soc_enum hdmi_config_enum[] = {
  125. SOC_ENUM_SINGLE_EXT(2, hdmi_format),
  126. };
  127. static int msm_dai_q6_ext_disp_drift_info(struct snd_kcontrol *kcontrol,
  128. struct snd_ctl_elem_info *uinfo)
  129. {
  130. uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
  131. uinfo->count = sizeof(struct afe_param_id_dev_timing_stats);
  132. return 0;
  133. }
  134. static int msm_dai_q6_ext_disp_drift_get(struct snd_kcontrol *kcontrol,
  135. struct snd_ctl_elem_value *ucontrol)
  136. {
  137. int ret = -EINVAL;
  138. struct afe_param_id_dev_timing_stats timing_stats;
  139. struct snd_soc_dai *dai = kcontrol->private_data;
  140. struct msm_dai_q6_hdmi_dai_data *dai_data = dev_get_drvdata(dai->dev);
  141. if (!test_bit(STATUS_PORT_STARTED, dai_data->status_mask)) {
  142. pr_debug("%s: afe port not started. status_mask = %ld\n",
  143. __func__, *dai_data->status_mask);
  144. goto done;
  145. }
  146. memset(&timing_stats, 0, sizeof(struct afe_param_id_dev_timing_stats));
  147. ret = afe_get_av_dev_drift(&timing_stats, dai->id);
  148. if (ret) {
  149. pr_err("%s: Error getting AFE Drift for port %d, err=%d\n",
  150. __func__, dai->id, ret);
  151. ret = -EINVAL;
  152. goto done;
  153. }
  154. memcpy(ucontrol->value.bytes.data, (void *)&timing_stats,
  155. sizeof(struct afe_param_id_dev_timing_stats));
  156. done:
  157. return ret;
  158. }
  159. static const struct snd_kcontrol_new hdmi_config_controls[] = {
  160. SOC_ENUM_EXT("HDMI RX Format", hdmi_config_enum[0],
  161. msm_dai_q6_ext_disp_format_get,
  162. msm_dai_q6_ext_disp_format_put),
  163. SOC_SINGLE_MULTI_EXT("HDMI RX CA", SND_SOC_NOPM, 0,
  164. HDMI_RX_CA_MAX, 0, 1,
  165. msm_dai_q6_ext_disp_ca_get,
  166. msm_dai_q6_ext_disp_ca_put),
  167. {
  168. .access = SNDRV_CTL_ELEM_ACCESS_READ,
  169. .iface = SNDRV_CTL_ELEM_IFACE_PCM,
  170. .name = "HDMI DRIFT",
  171. .info = msm_dai_q6_ext_disp_drift_info,
  172. .get = msm_dai_q6_ext_disp_drift_get,
  173. },
  174. };
  175. static const struct snd_kcontrol_new display_port_config_controls[] = {
  176. SOC_ENUM_EXT("Display Port RX Format", hdmi_config_enum[0],
  177. msm_dai_q6_ext_disp_format_get,
  178. msm_dai_q6_ext_disp_format_put),
  179. SOC_SINGLE_MULTI_EXT("Display Port RX CA", SND_SOC_NOPM, 0,
  180. HDMI_RX_CA_MAX, 0, 1,
  181. msm_dai_q6_ext_disp_ca_get,
  182. msm_dai_q6_ext_disp_ca_put),
  183. SOC_SINGLE_MULTI_EXT("Display Port RX DEVICE IDX", SND_SOC_NOPM, 0,
  184. 1, 0, 1,
  185. msm_dai_q6_ext_disp_device_idx_get,
  186. msm_dai_q6_ext_disp_device_idx_put),
  187. {
  188. .access = SNDRV_CTL_ELEM_ACCESS_READ,
  189. .iface = SNDRV_CTL_ELEM_IFACE_PCM,
  190. .name = "DISPLAY_PORT DRIFT",
  191. .info = msm_dai_q6_ext_disp_drift_info,
  192. .get = msm_dai_q6_ext_disp_drift_get,
  193. },
  194. };
  195. /* Current implementation assumes hw_param is called once
  196. * This may not be the case but what to do when ADM and AFE
  197. * port are already opened and parameter changes
  198. */
  199. static int msm_dai_q6_hdmi_hw_params(struct snd_pcm_substream *substream,
  200. struct snd_pcm_hw_params *params,
  201. struct snd_soc_dai *dai)
  202. {
  203. struct msm_dai_q6_hdmi_dai_data *dai_data = dev_get_drvdata(dai->dev);
  204. dai_data->channels = params_channels(params);
  205. dai_data->rate = params_rate(params);
  206. dai_data->port_config.hdmi_multi_ch.reserved = 0;
  207. dai_data->port_config.hdmi_multi_ch.hdmi_cfg_minor_version = 1;
  208. dai_data->port_config.hdmi_multi_ch.sample_rate = dai_data->rate;
  209. switch (params_format(params)) {
  210. case SNDRV_PCM_FORMAT_S16_LE:
  211. dai_data->port_config.hdmi_multi_ch.bit_width = 16;
  212. break;
  213. case SNDRV_PCM_FORMAT_S24_LE:
  214. case SNDRV_PCM_FORMAT_S24_3LE:
  215. dai_data->port_config.hdmi_multi_ch.bit_width = 24;
  216. break;
  217. }
  218. /*refer to HDMI spec CEA-861-E: Table 28 Audio InfoFrame Data Byte 4*/
  219. switch (dai_data->channels) {
  220. case 2:
  221. dai_data->port_config.hdmi_multi_ch.channel_allocation = 0;
  222. break;
  223. case 3:
  224. dai_data->port_config.hdmi_multi_ch.channel_allocation = 0x02;
  225. break;
  226. case 4:
  227. dai_data->port_config.hdmi_multi_ch.channel_allocation = 0x06;
  228. break;
  229. case 5:
  230. dai_data->port_config.hdmi_multi_ch.channel_allocation = 0x0A;
  231. break;
  232. case 6:
  233. dai_data->port_config.hdmi_multi_ch.channel_allocation = 0x0B;
  234. break;
  235. case 7:
  236. dai_data->port_config.hdmi_multi_ch.channel_allocation = 0x12;
  237. break;
  238. case 8:
  239. dai_data->port_config.hdmi_multi_ch.channel_allocation = 0x13;
  240. break;
  241. default:
  242. dev_err(dai->dev, "invalid Channels = %u\n",
  243. dai_data->channels);
  244. return -EINVAL;
  245. }
  246. dev_dbg(dai->dev, "%s() minor version: %u samplerate: %u bitwidth: %u\n"
  247. "num_ch = %u channel_allocation = %u datatype = %d\n", __func__,
  248. dai_data->port_config.hdmi_multi_ch.hdmi_cfg_minor_version,
  249. dai_data->port_config.hdmi_multi_ch.sample_rate,
  250. dai_data->port_config.hdmi_multi_ch.bit_width,
  251. dai_data->channels,
  252. dai_data->port_config.hdmi_multi_ch.channel_allocation,
  253. dai_data->port_config.hdmi_multi_ch.datatype);
  254. return 0;
  255. }
  256. static void msm_dai_q6_hdmi_shutdown(struct snd_pcm_substream *substream,
  257. struct snd_soc_dai *dai)
  258. {
  259. struct msm_dai_q6_hdmi_dai_data *dai_data = dev_get_drvdata(dai->dev);
  260. int rc = 0;
  261. if (!test_bit(STATUS_PORT_STARTED, dai_data->status_mask)) {
  262. pr_info("%s: afe port not started. dai_data->status_mask = %ld\n",
  263. __func__, *dai_data->status_mask);
  264. return;
  265. }
  266. rc = afe_close(dai->id); /* can block */
  267. if (rc < 0)
  268. dev_err(dai->dev, "fail to close AFE port\n");
  269. pr_debug("%s: dai_data->status_mask = %ld\n", __func__,
  270. *dai_data->status_mask);
  271. clear_bit(STATUS_PORT_STARTED, dai_data->status_mask);
  272. }
  273. static int msm_dai_q6_hdmi_prepare(struct snd_pcm_substream *substream,
  274. struct snd_soc_dai *dai)
  275. {
  276. struct msm_dai_q6_hdmi_dai_data *dai_data = dev_get_drvdata(dai->dev);
  277. int rc = 0;
  278. if (dai_data->ca.set_ca)
  279. dai_data->port_config.hdmi_multi_ch.channel_allocation =
  280. dai_data->ca.ca;
  281. if (!test_bit(STATUS_PORT_STARTED, dai_data->status_mask)) {
  282. rc = afe_set_display_stream(dai->id, dai_data->stream_idx,
  283. dai_data->ctl_idx);
  284. if (rc < 0) {
  285. dev_err(dai->dev, "fail to set AFE ctl, stream ID params %x\n",
  286. dai->id);
  287. if (rc != -EOPNOTSUPP) {
  288. dev_err(dai->dev, "not starting AFE port\n");
  289. goto err;
  290. }
  291. }
  292. rc = afe_port_start(dai->id, &dai_data->port_config,
  293. dai_data->rate);
  294. if (rc < 0)
  295. dev_err(dai->dev, "fail to open AFE port %x\n",
  296. dai->id);
  297. else
  298. set_bit(STATUS_PORT_STARTED,
  299. dai_data->status_mask);
  300. }
  301. err:
  302. return rc;
  303. }
  304. static inline void msm_dai_q6_hdmi_set_dai_id(struct snd_soc_dai *dai)
  305. {
  306. if (!dai->driver->id) {
  307. dev_warn(dai->dev, "DAI driver id is not set\n");
  308. return;
  309. }
  310. dai->id = dai->driver->id;
  311. }
  312. static int msm_dai_q6_hdmi_dai_probe(struct snd_soc_dai *dai)
  313. {
  314. struct msm_dai_q6_hdmi_dai_data *dai_data;
  315. const struct snd_kcontrol_new *kcontrol;
  316. int rc = 0;
  317. struct snd_soc_dapm_route intercon;
  318. struct snd_soc_dapm_context *dapm;
  319. if (!dai || !dai->driver) {
  320. pr_err("%s: dai or dai->driver is NULL\n", __func__);
  321. return -EINVAL;
  322. }
  323. dai_data = kzalloc(sizeof(struct msm_dai_q6_hdmi_dai_data),
  324. GFP_KERNEL);
  325. if (!dai_data) {
  326. dev_err(dai->dev, "DAI-%d: fail to allocate dai data\n",
  327. dai->id);
  328. rc = -ENOMEM;
  329. } else
  330. dev_set_drvdata(dai->dev, dai_data);
  331. msm_dai_q6_hdmi_set_dai_id(dai);
  332. if (dai->driver->id == HDMI_RX) {
  333. kcontrol = &hdmi_config_controls[0];
  334. rc = snd_ctl_add(dai->component->card->snd_card,
  335. snd_ctl_new1(kcontrol, dai_data));
  336. kcontrol = &hdmi_config_controls[1];
  337. rc = snd_ctl_add(dai->component->card->snd_card,
  338. snd_ctl_new1(kcontrol, dai_data));
  339. kcontrol = &hdmi_config_controls[2];
  340. rc = snd_ctl_add(dai->component->card->snd_card,
  341. snd_ctl_new1(kcontrol, dai));
  342. } else if (dai->driver->id == DISPLAY_PORT_RX) {
  343. kcontrol = &display_port_config_controls[0];
  344. rc = snd_ctl_add(dai->component->card->snd_card,
  345. snd_ctl_new1(kcontrol, dai_data));
  346. kcontrol = &display_port_config_controls[1];
  347. rc = snd_ctl_add(dai->component->card->snd_card,
  348. snd_ctl_new1(kcontrol, dai_data));
  349. kcontrol = &display_port_config_controls[2];
  350. rc = snd_ctl_add(dai->component->card->snd_card,
  351. snd_ctl_new1(kcontrol, dai_data));
  352. kcontrol = &display_port_config_controls[3];
  353. rc = snd_ctl_add(dai->component->card->snd_card,
  354. snd_ctl_new1(kcontrol, dai));
  355. } else {
  356. dev_err(dai->dev, "%s: Invalid id:%d\n",
  357. __func__, dai->driver->id);
  358. kfree(dai_data);
  359. dev_set_drvdata(dai->dev, NULL);
  360. return -EINVAL;
  361. }
  362. dapm = snd_soc_component_get_dapm(dai->component);
  363. memset(&intercon, 0, sizeof(intercon));
  364. if (!rc) {
  365. if (dai->driver->playback.stream_name &&
  366. dai->driver->playback.aif_name) {
  367. dev_dbg(dai->dev, "%s add route for widget %s",
  368. __func__, dai->driver->playback.stream_name);
  369. intercon.source = dai->driver->playback.aif_name;
  370. intercon.sink = dai->driver->playback.stream_name;
  371. dev_dbg(dai->dev, "%s src %s sink %s\n",
  372. __func__, intercon.source, intercon.sink);
  373. snd_soc_dapm_add_routes(dapm, &intercon, 1);
  374. }
  375. if (dai->driver->capture.stream_name &&
  376. dai->driver->capture.aif_name) {
  377. dev_dbg(dai->dev, "%s add route for widget %s",
  378. __func__, dai->driver->capture.stream_name);
  379. intercon.sink = dai->driver->capture.aif_name;
  380. intercon.source = dai->driver->capture.stream_name;
  381. dev_dbg(dai->dev, "%s src %s sink %s\n",
  382. __func__, intercon.source, intercon.sink);
  383. snd_soc_dapm_add_routes(dapm, &intercon, 1);
  384. }
  385. }
  386. return rc;
  387. }
  388. static int msm_dai_q6_hdmi_dai_remove(struct snd_soc_dai *dai)
  389. {
  390. struct msm_dai_q6_hdmi_dai_data *dai_data;
  391. int rc;
  392. dai_data = dev_get_drvdata(dai->dev);
  393. /* If AFE port is still up, close it */
  394. if (test_bit(STATUS_PORT_STARTED, dai_data->status_mask)) {
  395. rc = afe_close(dai->id); /* can block */
  396. if (rc < 0)
  397. dev_err(dai->dev, "fail to close AFE port\n");
  398. clear_bit(STATUS_PORT_STARTED, dai_data->status_mask);
  399. }
  400. kfree(dai_data);
  401. return 0;
  402. }
  403. static struct snd_soc_dai_ops msm_dai_q6_hdmi_ops = {
  404. .prepare = msm_dai_q6_hdmi_prepare,
  405. .hw_params = msm_dai_q6_hdmi_hw_params,
  406. .shutdown = msm_dai_q6_hdmi_shutdown,
  407. };
  408. static struct snd_soc_dai_driver msm_dai_q6_hdmi_hdmi_rx_dai = {
  409. .playback = {
  410. .stream_name = "HDMI Playback",
  411. .aif_name = "HDMI",
  412. .rates = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 |
  413. SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 |
  414. SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |
  415. SNDRV_PCM_RATE_192000,
  416. .formats = SNDRV_PCM_FMTBIT_S16_LE |
  417. SNDRV_PCM_FMTBIT_S24_LE |
  418. SNDRV_PCM_FMTBIT_S24_3LE,
  419. .channels_min = 2,
  420. .channels_max = 8,
  421. .rate_max = 192000,
  422. .rate_min = 48000,
  423. },
  424. .ops = &msm_dai_q6_hdmi_ops,
  425. .id = HDMI_RX,
  426. .probe = msm_dai_q6_hdmi_dai_probe,
  427. .remove = msm_dai_q6_hdmi_dai_remove,
  428. };
  429. static struct snd_soc_dai_driver msm_dai_q6_display_port_rx_dai[] = {
  430. {
  431. .playback = {
  432. .stream_name = "Display Port Playback",
  433. .aif_name = "DISPLAY_PORT",
  434. .rates = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 |
  435. SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 |
  436. SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |
  437. SNDRV_PCM_RATE_192000,
  438. .formats = SNDRV_PCM_FMTBIT_S16_LE |
  439. SNDRV_PCM_FMTBIT_S24_LE |
  440. SNDRV_PCM_FMTBIT_S24_3LE,
  441. .channels_min = 2,
  442. .channels_max = 8,
  443. .rate_max = 192000,
  444. .rate_min = 48000,
  445. },
  446. .ops = &msm_dai_q6_hdmi_ops,
  447. .id = DISPLAY_PORT_RX,
  448. .probe = msm_dai_q6_hdmi_dai_probe,
  449. .remove = msm_dai_q6_hdmi_dai_remove,
  450. },
  451. };
  452. static const struct snd_soc_component_driver msm_dai_hdmi_q6_component = {
  453. .name = "msm-dai-q6-hdmi",
  454. };
  455. /* To do: change to register DAIs as batch */
  456. static int msm_dai_q6_hdmi_dev_probe(struct platform_device *pdev)
  457. {
  458. int rc, id;
  459. const char *q6_dev_id = "qcom,msm-dai-q6-dev-id";
  460. rc = of_property_read_u32(pdev->dev.of_node, q6_dev_id, &id);
  461. if (rc) {
  462. dev_err(&pdev->dev,
  463. "%s: missing %s in dt node\n", __func__, q6_dev_id);
  464. return rc;
  465. }
  466. pdev->id = id;
  467. pr_debug("%s: dev name %s, id:%d\n", __func__,
  468. dev_name(&pdev->dev), pdev->id);
  469. switch (pdev->id) {
  470. case HDMI_RX:
  471. rc = snd_soc_register_component(&pdev->dev,
  472. &msm_dai_hdmi_q6_component,
  473. &msm_dai_q6_hdmi_hdmi_rx_dai, 1);
  474. break;
  475. case DISPLAY_PORT_RX:
  476. rc = snd_soc_register_component(&pdev->dev,
  477. &msm_dai_hdmi_q6_component,
  478. &msm_dai_q6_display_port_rx_dai[0],
  479. ARRAY_SIZE(msm_dai_q6_display_port_rx_dai));
  480. break;
  481. default:
  482. dev_err(&pdev->dev, "invalid device ID %d\n", pdev->id);
  483. rc = -ENODEV;
  484. break;
  485. }
  486. return rc;
  487. }
  488. static int msm_dai_q6_hdmi_dev_remove(struct platform_device *pdev)
  489. {
  490. snd_soc_unregister_component(&pdev->dev);
  491. return 0;
  492. }
  493. static const struct of_device_id msm_dai_q6_hdmi_dt_match[] = {
  494. {.compatible = "qcom,msm-dai-q6-hdmi"},
  495. {}
  496. };
  497. MODULE_DEVICE_TABLE(of, msm_dai_q6_hdmi_dt_match);
  498. static struct platform_driver msm_dai_q6_hdmi_driver = {
  499. .probe = msm_dai_q6_hdmi_dev_probe,
  500. .remove = msm_dai_q6_hdmi_dev_remove,
  501. .driver = {
  502. .name = "msm-dai-q6-hdmi",
  503. .owner = THIS_MODULE,
  504. .of_match_table = msm_dai_q6_hdmi_dt_match,
  505. .suppress_bind_attrs = true,
  506. },
  507. };
  508. int __init msm_dai_q6_hdmi_init(void)
  509. {
  510. return platform_driver_register(&msm_dai_q6_hdmi_driver);
  511. }
  512. void msm_dai_q6_hdmi_exit(void)
  513. {
  514. platform_driver_unregister(&msm_dai_q6_hdmi_driver);
  515. }
  516. /* Module information */
  517. MODULE_DESCRIPTION("MSM DSP HDMI DAI driver");
  518. MODULE_LICENSE("GPL v2");