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

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