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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551
  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. dai_data->port_config.hdmi_multi_ch.bit_width = 24;
  189. break;
  190. }
  191. /*refer to HDMI spec CEA-861-E: Table 28 Audio InfoFrame Data Byte 4*/
  192. switch (dai_data->channels) {
  193. case 2:
  194. dai_data->port_config.hdmi_multi_ch.channel_allocation = 0;
  195. break;
  196. case 3:
  197. dai_data->port_config.hdmi_multi_ch.channel_allocation = 0x02;
  198. break;
  199. case 4:
  200. dai_data->port_config.hdmi_multi_ch.channel_allocation = 0x06;
  201. break;
  202. case 5:
  203. dai_data->port_config.hdmi_multi_ch.channel_allocation = 0x0A;
  204. break;
  205. case 6:
  206. dai_data->port_config.hdmi_multi_ch.channel_allocation = 0x0B;
  207. break;
  208. case 7:
  209. dai_data->port_config.hdmi_multi_ch.channel_allocation = 0x12;
  210. break;
  211. case 8:
  212. dai_data->port_config.hdmi_multi_ch.channel_allocation = 0x13;
  213. break;
  214. default:
  215. dev_err(dai->dev, "invalid Channels = %u\n",
  216. dai_data->channels);
  217. return -EINVAL;
  218. }
  219. dev_dbg(dai->dev, "%s() minor version: %u samplerate: %u bitwidth: %u\n"
  220. "num_ch = %u channel_allocation = %u datatype = %d\n", __func__,
  221. dai_data->port_config.hdmi_multi_ch.hdmi_cfg_minor_version,
  222. dai_data->port_config.hdmi_multi_ch.sample_rate,
  223. dai_data->port_config.hdmi_multi_ch.bit_width,
  224. dai_data->channels,
  225. dai_data->port_config.hdmi_multi_ch.channel_allocation,
  226. dai_data->port_config.hdmi_multi_ch.datatype);
  227. return 0;
  228. }
  229. static void msm_dai_q6_hdmi_shutdown(struct snd_pcm_substream *substream,
  230. struct snd_soc_dai *dai)
  231. {
  232. struct msm_dai_q6_hdmi_dai_data *dai_data = dev_get_drvdata(dai->dev);
  233. int rc = 0;
  234. if (!test_bit(STATUS_PORT_STARTED, dai_data->status_mask)) {
  235. pr_info("%s: afe port not started. dai_data->status_mask = %ld\n",
  236. __func__, *dai_data->status_mask);
  237. return;
  238. }
  239. rc = afe_close(dai->id); /* can block */
  240. if (rc < 0)
  241. dev_err(dai->dev, "fail to close AFE port\n");
  242. pr_debug("%s: dai_data->status_mask = %ld\n", __func__,
  243. *dai_data->status_mask);
  244. clear_bit(STATUS_PORT_STARTED, dai_data->status_mask);
  245. }
  246. static int msm_dai_q6_hdmi_prepare(struct snd_pcm_substream *substream,
  247. struct snd_soc_dai *dai)
  248. {
  249. struct msm_dai_q6_hdmi_dai_data *dai_data = dev_get_drvdata(dai->dev);
  250. int rc = 0;
  251. if (dai_data->ca.set_ca)
  252. dai_data->port_config.hdmi_multi_ch.channel_allocation =
  253. dai_data->ca.ca;
  254. if (!test_bit(STATUS_PORT_STARTED, dai_data->status_mask)) {
  255. rc = afe_port_start(dai->id, &dai_data->port_config,
  256. dai_data->rate);
  257. if (rc < 0)
  258. dev_err(dai->dev, "fail to open AFE port %x\n",
  259. dai->id);
  260. else
  261. set_bit(STATUS_PORT_STARTED,
  262. dai_data->status_mask);
  263. }
  264. return rc;
  265. }
  266. static inline void msm_dai_q6_hdmi_set_dai_id(struct snd_soc_dai *dai)
  267. {
  268. if (!dai->driver->id) {
  269. dev_warn(dai->dev, "DAI driver id is not set\n");
  270. return;
  271. }
  272. dai->id = dai->driver->id;
  273. }
  274. static int msm_dai_q6_hdmi_dai_probe(struct snd_soc_dai *dai)
  275. {
  276. struct msm_dai_q6_hdmi_dai_data *dai_data;
  277. const struct snd_kcontrol_new *kcontrol;
  278. int rc = 0;
  279. struct snd_soc_dapm_route intercon;
  280. struct snd_soc_dapm_context *dapm;
  281. if (!dai || !dai->driver) {
  282. pr_err("%s: dai or dai->driver is NULL\n", __func__);
  283. return -EINVAL;
  284. }
  285. dai_data = kzalloc(sizeof(struct msm_dai_q6_hdmi_dai_data),
  286. GFP_KERNEL);
  287. if (!dai_data) {
  288. dev_err(dai->dev, "DAI-%d: fail to allocate dai data\n",
  289. dai->id);
  290. rc = -ENOMEM;
  291. } else
  292. dev_set_drvdata(dai->dev, dai_data);
  293. msm_dai_q6_hdmi_set_dai_id(dai);
  294. if (dai->driver->id == HDMI_RX) {
  295. kcontrol = &hdmi_config_controls[0];
  296. rc = snd_ctl_add(dai->component->card->snd_card,
  297. snd_ctl_new1(kcontrol, dai_data));
  298. kcontrol = &hdmi_config_controls[1];
  299. rc = snd_ctl_add(dai->component->card->snd_card,
  300. snd_ctl_new1(kcontrol, dai_data));
  301. kcontrol = &hdmi_config_controls[2];
  302. rc = snd_ctl_add(dai->component->card->snd_card,
  303. snd_ctl_new1(kcontrol, dai));
  304. } else if (dai->driver->id == DISPLAY_PORT_RX) {
  305. kcontrol = &display_port_config_controls[0];
  306. rc = snd_ctl_add(dai->component->card->snd_card,
  307. snd_ctl_new1(kcontrol, dai_data));
  308. kcontrol = &display_port_config_controls[1];
  309. rc = snd_ctl_add(dai->component->card->snd_card,
  310. snd_ctl_new1(kcontrol, dai_data));
  311. kcontrol = &display_port_config_controls[2];
  312. rc = snd_ctl_add(dai->component->card->snd_card,
  313. snd_ctl_new1(kcontrol, dai));
  314. } else {
  315. dev_err(dai->dev, "%s: Invalid id:%d\n",
  316. __func__, dai->driver->id);
  317. kfree(dai_data);
  318. dev_set_drvdata(dai->dev, NULL);
  319. return -EINVAL;
  320. }
  321. dapm = snd_soc_component_get_dapm(dai->component);
  322. memset(&intercon, 0, sizeof(intercon));
  323. if (!rc) {
  324. if (dai->driver->playback.stream_name &&
  325. dai->driver->playback.aif_name) {
  326. dev_dbg(dai->dev, "%s add route for widget %s",
  327. __func__, dai->driver->playback.stream_name);
  328. intercon.source = dai->driver->playback.aif_name;
  329. intercon.sink = dai->driver->playback.stream_name;
  330. dev_dbg(dai->dev, "%s src %s sink %s\n",
  331. __func__, intercon.source, intercon.sink);
  332. snd_soc_dapm_add_routes(dapm, &intercon, 1);
  333. }
  334. if (dai->driver->capture.stream_name &&
  335. dai->driver->capture.aif_name) {
  336. dev_dbg(dai->dev, "%s add route for widget %s",
  337. __func__, dai->driver->capture.stream_name);
  338. intercon.sink = dai->driver->capture.aif_name;
  339. intercon.source = dai->driver->capture.stream_name;
  340. dev_dbg(dai->dev, "%s src %s sink %s\n",
  341. __func__, intercon.source, intercon.sink);
  342. snd_soc_dapm_add_routes(dapm, &intercon, 1);
  343. }
  344. }
  345. return rc;
  346. }
  347. static int msm_dai_q6_hdmi_dai_remove(struct snd_soc_dai *dai)
  348. {
  349. struct msm_dai_q6_hdmi_dai_data *dai_data;
  350. int rc;
  351. dai_data = dev_get_drvdata(dai->dev);
  352. /* If AFE port is still up, close it */
  353. if (test_bit(STATUS_PORT_STARTED, dai_data->status_mask)) {
  354. rc = afe_close(dai->id); /* can block */
  355. if (rc < 0)
  356. dev_err(dai->dev, "fail to close AFE port\n");
  357. clear_bit(STATUS_PORT_STARTED, dai_data->status_mask);
  358. }
  359. kfree(dai_data);
  360. return 0;
  361. }
  362. static struct snd_soc_dai_ops msm_dai_q6_hdmi_ops = {
  363. .prepare = msm_dai_q6_hdmi_prepare,
  364. .hw_params = msm_dai_q6_hdmi_hw_params,
  365. .shutdown = msm_dai_q6_hdmi_shutdown,
  366. };
  367. static struct snd_soc_dai_driver msm_dai_q6_hdmi_hdmi_rx_dai = {
  368. .playback = {
  369. .stream_name = "HDMI Playback",
  370. .aif_name = "HDMI",
  371. .rates = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 |
  372. SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 |
  373. SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |
  374. SNDRV_PCM_RATE_192000,
  375. .formats = SNDRV_PCM_FMTBIT_S16_LE | SNDRV_PCM_FMTBIT_S24_LE,
  376. .channels_min = 2,
  377. .channels_max = 8,
  378. .rate_max = 192000,
  379. .rate_min = 48000,
  380. },
  381. .ops = &msm_dai_q6_hdmi_ops,
  382. .id = HDMI_RX,
  383. .probe = msm_dai_q6_hdmi_dai_probe,
  384. .remove = msm_dai_q6_hdmi_dai_remove,
  385. };
  386. static struct snd_soc_dai_driver msm_dai_q6_display_port_rx_dai[] = {
  387. {
  388. .playback = {
  389. .stream_name = "Display Port Playback",
  390. .aif_name = "DISPLAY_PORT",
  391. .rates = SNDRV_PCM_RATE_32000 | SNDRV_PCM_RATE_44100 |
  392. SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_88200 |
  393. SNDRV_PCM_RATE_96000 | SNDRV_PCM_RATE_176400 |
  394. SNDRV_PCM_RATE_192000,
  395. .formats = SNDRV_PCM_FMTBIT_S16_LE |
  396. SNDRV_PCM_FMTBIT_S24_LE,
  397. .channels_min = 2,
  398. .channels_max = 8,
  399. .rate_max = 192000,
  400. .rate_min = 48000,
  401. },
  402. .ops = &msm_dai_q6_hdmi_ops,
  403. .id = DISPLAY_PORT_RX,
  404. .probe = msm_dai_q6_hdmi_dai_probe,
  405. .remove = msm_dai_q6_hdmi_dai_remove,
  406. },
  407. };
  408. static const struct snd_soc_component_driver msm_dai_hdmi_q6_component = {
  409. .name = "msm-dai-q6-hdmi",
  410. };
  411. /* To do: change to register DAIs as batch */
  412. static int msm_dai_q6_hdmi_dev_probe(struct platform_device *pdev)
  413. {
  414. int rc, id;
  415. const char *q6_dev_id = "qcom,msm-dai-q6-dev-id";
  416. rc = of_property_read_u32(pdev->dev.of_node, q6_dev_id, &id);
  417. if (rc) {
  418. dev_err(&pdev->dev,
  419. "%s: missing %s in dt node\n", __func__, q6_dev_id);
  420. return rc;
  421. }
  422. pdev->id = id;
  423. pr_debug("%s: dev name %s, id:%d\n", __func__,
  424. dev_name(&pdev->dev), pdev->id);
  425. switch (pdev->id) {
  426. case HDMI_RX:
  427. rc = snd_soc_register_component(&pdev->dev,
  428. &msm_dai_hdmi_q6_component,
  429. &msm_dai_q6_hdmi_hdmi_rx_dai, 1);
  430. break;
  431. case DISPLAY_PORT_RX:
  432. rc = snd_soc_register_component(&pdev->dev,
  433. &msm_dai_hdmi_q6_component,
  434. &msm_dai_q6_display_port_rx_dai[0],
  435. ARRAY_SIZE(msm_dai_q6_display_port_rx_dai));
  436. break;
  437. default:
  438. dev_err(&pdev->dev, "invalid device ID %d\n", pdev->id);
  439. rc = -ENODEV;
  440. break;
  441. }
  442. return rc;
  443. }
  444. static int msm_dai_q6_hdmi_dev_remove(struct platform_device *pdev)
  445. {
  446. snd_soc_unregister_component(&pdev->dev);
  447. return 0;
  448. }
  449. static const struct of_device_id msm_dai_q6_hdmi_dt_match[] = {
  450. {.compatible = "qcom,msm-dai-q6-hdmi"},
  451. {}
  452. };
  453. MODULE_DEVICE_TABLE(of, msm_dai_q6_hdmi_dt_match);
  454. static struct platform_driver msm_dai_q6_hdmi_driver = {
  455. .probe = msm_dai_q6_hdmi_dev_probe,
  456. .remove = msm_dai_q6_hdmi_dev_remove,
  457. .driver = {
  458. .name = "msm-dai-q6-hdmi",
  459. .owner = THIS_MODULE,
  460. .of_match_table = msm_dai_q6_hdmi_dt_match,
  461. },
  462. };
  463. static int __init msm_dai_q6_hdmi_init(void)
  464. {
  465. return platform_driver_register(&msm_dai_q6_hdmi_driver);
  466. }
  467. module_init(msm_dai_q6_hdmi_init);
  468. static void __exit msm_dai_q6_hdmi_exit(void)
  469. {
  470. platform_driver_unregister(&msm_dai_q6_hdmi_driver);
  471. }
  472. module_exit(msm_dai_q6_hdmi_exit);
  473. /* Module information */
  474. MODULE_DESCRIPTION("MSM DSP HDMI DAI driver");
  475. MODULE_LICENSE("GPL v2");