msm_hdmi_codec_rx.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2012-2019, The Linux Foundation. All rights reserved.
  3. */
  4. #include <linux/platform_device.h>
  5. #include <linux/slab.h>
  6. #include <linux/module.h>
  7. #include <linux/of_device.h>
  8. #include <linux/err.h>
  9. #include <sound/core.h>
  10. #include <sound/pcm.h>
  11. #include <sound/soc.h>
  12. #include <linux/msm_ext_display.h>
  13. #define DRV_NAME "HDMI_codec"
  14. #define MSM_EXT_DISP_PCM_RATES SNDRV_PCM_RATE_48000
  15. #define AUD_EXT_DISP_ACK_DISCONNECT (AUDIO_ACK_CONNECT ^ AUDIO_ACK_CONNECT)
  16. #define AUD_EXT_DISP_ACK_CONNECT (AUDIO_ACK_CONNECT)
  17. #define AUD_EXT_DISP_ACK_ENABLE (AUDIO_ACK_SET_ENABLE | AUDIO_ACK_ENABLE)
  18. #define SOC_EXT_DISP_AUDIO_TYPE(index) \
  19. static SOC_ENUM_SINGLE_DECL(ext_disp_audio_type##index, SND_SOC_NOPM, \
  20. index, ext_disp_audio_type_text)
  21. #define SOC_EXT_DISP_AUDIO_ACK_STATE(index) \
  22. static SOC_ENUM_SINGLE_DECL(ext_disp_audio_ack_state##index, \
  23. SND_SOC_NOPM, index, ext_disp_audio_ack_text)
  24. #define SWITCH_DP_CODEC(codec_info, codec_data, dai_id) \
  25. codec_info.type = EXT_DISPLAY_TYPE_DP; \
  26. codec_info.ctrl_id = codec_data->ctl[dai_id]; \
  27. codec_info.stream_id = codec_data->stream[dai_id]; \
  28. msm_ext_disp_select_audio_codec(codec_data->ext_disp_core_pdev, \
  29. &codec_info)
  30. enum {
  31. DP_CONTROLLER0 = 0,
  32. DP_CONTROLLER_MAX,
  33. };
  34. enum {
  35. DP_STREAM0 = 0,
  36. DP_STREAM1,
  37. DP_STREAM_MAX,
  38. };
  39. /*
  40. * Dai id cannot be zero, if component has more than one dai and dai id
  41. * is used to differentiate between them
  42. */
  43. enum {
  44. DP_DAI1 = 1,
  45. DP_DAI2,
  46. HDMI_DAI,
  47. DP_DAI_MAX,
  48. };
  49. static const char *const ext_disp_audio_type_text[] = {"None", "HDMI", "DP"};
  50. static const char *const ext_disp_audio_ack_text[] = {"Disconnect", "Connect",
  51. "Ack_Enable"};
  52. SOC_EXT_DISP_AUDIO_TYPE(1);
  53. SOC_EXT_DISP_AUDIO_ACK_STATE(1);
  54. SOC_EXT_DISP_AUDIO_TYPE(2);
  55. SOC_EXT_DISP_AUDIO_ACK_STATE(2);
  56. struct msm_ext_disp_audio_codec_rx_data {
  57. struct platform_device *ext_disp_core_pdev;
  58. struct msm_ext_disp_audio_codec_ops ext_disp_ops;
  59. struct mutex dp_ops_lock;
  60. int cable_status[DP_DAI_MAX];
  61. int stream[DP_DAI_MAX];
  62. int ctl[DP_DAI_MAX];
  63. };
  64. static int msm_ext_disp_edid_ctl_info(struct snd_kcontrol *kcontrol,
  65. struct snd_ctl_elem_info *uinfo)
  66. {
  67. struct snd_soc_component *component =
  68. snd_soc_kcontrol_component(kcontrol);
  69. struct msm_ext_disp_audio_codec_rx_data *codec_data;
  70. struct msm_ext_disp_audio_edid_blk edid_blk;
  71. int rc = 0;
  72. struct msm_ext_disp_codec_id codec_info;
  73. int dai_id = kcontrol->private_value;
  74. codec_data = snd_soc_component_get_drvdata(component);
  75. if (!codec_data) {
  76. dev_err(component->dev, "%s: codec_data is NULL\n", __func__);
  77. return -EINVAL;
  78. }
  79. dev_dbg(component->dev, "%s: DP ctl id %d Stream id %d\n", __func__,
  80. codec_data->ctl[dai_id], codec_data->stream[dai_id]);
  81. mutex_lock(&codec_data->dp_ops_lock);
  82. SWITCH_DP_CODEC(codec_info, codec_data, dai_id);
  83. if (!codec_data->ext_disp_ops.get_audio_edid_blk) {
  84. dev_dbg(component->dev, "%s: get_audio_edid_blk() is NULL\n",
  85. __func__);
  86. uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
  87. uinfo->count = 0;
  88. mutex_unlock(&codec_data->dp_ops_lock);
  89. return 0;
  90. }
  91. rc = codec_data->ext_disp_ops.get_audio_edid_blk(
  92. codec_data->ext_disp_core_pdev, &edid_blk);
  93. mutex_unlock(&codec_data->dp_ops_lock);
  94. if (rc >= 0) {
  95. uinfo->type = SNDRV_CTL_ELEM_TYPE_BYTES;
  96. uinfo->count = edid_blk.audio_data_blk_size +
  97. edid_blk.spk_alloc_data_blk_size;
  98. }
  99. dev_dbg(component->dev, "%s: count: %d\n", __func__, uinfo->count);
  100. return rc;
  101. }
  102. static int msm_ext_disp_edid_get(struct snd_kcontrol *kcontrol,
  103. struct snd_ctl_elem_value *ucontrol) {
  104. struct snd_soc_component *component =
  105. snd_soc_kcontrol_component(kcontrol);
  106. struct msm_ext_disp_audio_codec_rx_data *codec_data;
  107. struct msm_ext_disp_audio_edid_blk edid_blk;
  108. struct msm_ext_disp_codec_id codec_info;
  109. int rc = 0;
  110. int dai_id = kcontrol->private_value;
  111. codec_data = snd_soc_component_get_drvdata(component);
  112. if (!codec_data) {
  113. dev_err(component->dev, "%s: codec_data is NULL\n",
  114. __func__);
  115. return -EINVAL;
  116. }
  117. dev_dbg(component->dev, "%s: DP ctl id %d Stream id %d\n", __func__,
  118. codec_data->ctl[dai_id], codec_data->stream[dai_id]);
  119. mutex_lock(&codec_data->dp_ops_lock);
  120. SWITCH_DP_CODEC(codec_info, codec_data, dai_id);
  121. if (!codec_data->ext_disp_ops.get_audio_edid_blk) {
  122. dev_err(component->dev, "%s: codec_data or get_audio_edid_blk() is NULL\n",
  123. __func__);
  124. mutex_unlock(&codec_data->dp_ops_lock);
  125. return -EINVAL;
  126. }
  127. rc = codec_data->ext_disp_ops.get_audio_edid_blk(
  128. codec_data->ext_disp_core_pdev, &edid_blk);
  129. mutex_unlock(&codec_data->dp_ops_lock);
  130. if (rc >= 0) {
  131. if (sizeof(ucontrol->value.bytes.data) <
  132. (edid_blk.audio_data_blk_size +
  133. edid_blk.spk_alloc_data_blk_size)) {
  134. dev_err(component->dev,
  135. "%s: Not enough memory to copy EDID data\n",
  136. __func__);
  137. return -ENOMEM;
  138. }
  139. memcpy(ucontrol->value.bytes.data,
  140. edid_blk.audio_data_blk,
  141. edid_blk.audio_data_blk_size);
  142. memcpy((ucontrol->value.bytes.data +
  143. edid_blk.audio_data_blk_size),
  144. edid_blk.spk_alloc_data_blk,
  145. edid_blk.spk_alloc_data_blk_size);
  146. dev_dbg(component->dev, "%s: data_blk_size:%d, spk_alloc_data_blk_size:%d\n",
  147. __func__, edid_blk.audio_data_blk_size,
  148. edid_blk.spk_alloc_data_blk_size);
  149. }
  150. return rc;
  151. }
  152. static int msm_ext_disp_audio_type_get(struct snd_kcontrol *kcontrol,
  153. struct snd_ctl_elem_value *ucontrol)
  154. {
  155. struct snd_soc_component *component =
  156. snd_soc_kcontrol_component(kcontrol);
  157. struct msm_ext_disp_audio_codec_rx_data *codec_data;
  158. enum msm_ext_disp_cable_state cable_state;
  159. enum msm_ext_disp_type disp_type;
  160. struct msm_ext_disp_codec_id codec_info;
  161. int rc = 0;
  162. int dai_id = ((struct soc_enum *) kcontrol->private_value)->shift_l;
  163. codec_data = snd_soc_component_get_drvdata(component);
  164. if (!codec_data) {
  165. dev_err(component->dev, "%s: codec_data is NULL\n",
  166. __func__);
  167. return -EINVAL;
  168. }
  169. dev_dbg(component->dev, "%s: DP ctl id %d Stream id %d\n", __func__,
  170. codec_data->ctl[dai_id], codec_data->stream[dai_id]);
  171. mutex_lock(&codec_data->dp_ops_lock);
  172. SWITCH_DP_CODEC(codec_info, codec_data, dai_id);
  173. if (!codec_data->ext_disp_ops.get_audio_edid_blk ||
  174. !codec_data->ext_disp_ops.get_intf_id) {
  175. dev_err(component->dev, "%s: get_audio_edid_blk() or get_intf_id is NULL\n",
  176. __func__);
  177. rc = -EINVAL;
  178. goto cable_err;
  179. }
  180. cable_state = codec_data->ext_disp_ops.cable_status(
  181. codec_data->ext_disp_core_pdev, 1);
  182. if (cable_state < 0) {
  183. dev_err(component->dev, "%s: Error retrieving cable state from ext_disp, err:%d\n",
  184. __func__, cable_state);
  185. rc = cable_state;
  186. goto cable_err;
  187. }
  188. codec_data->cable_status[dai_id] = cable_state;
  189. if (cable_state == EXT_DISPLAY_CABLE_DISCONNECT) {
  190. dev_err(component->dev, "%s: Display cable disconnected\n",
  191. __func__);
  192. ucontrol->value.integer.value[0] = 0;
  193. rc = 0;
  194. goto cable_err;
  195. }
  196. disp_type = codec_data->ext_disp_ops.get_intf_id(
  197. codec_data->ext_disp_core_pdev);
  198. mutex_unlock(&codec_data->dp_ops_lock);
  199. if (disp_type >= 0) {
  200. switch (disp_type) {
  201. case EXT_DISPLAY_TYPE_DP:
  202. ucontrol->value.integer.value[0] = 2;
  203. rc = 0;
  204. break;
  205. case EXT_DISPLAY_TYPE_HDMI:
  206. ucontrol->value.integer.value[0] = 1;
  207. rc = 0;
  208. break;
  209. default:
  210. rc = -EINVAL;
  211. dev_err(component->dev, "%s: Invalid disp_type:%d\n",
  212. __func__, disp_type);
  213. goto done;
  214. }
  215. dev_dbg(component->dev, "%s: Display type: %d\n",
  216. __func__, disp_type);
  217. } else {
  218. dev_err(component->dev, "%s: Error retrieving disp_type from ext_disp, err:%d\n",
  219. __func__, disp_type);
  220. rc = disp_type;
  221. }
  222. return rc;
  223. cable_err:
  224. mutex_unlock(&codec_data->dp_ops_lock);
  225. done:
  226. return rc;
  227. }
  228. static int msm_ext_disp_audio_ack_set(struct snd_kcontrol *kcontrol,
  229. struct snd_ctl_elem_value *ucontrol)
  230. {
  231. struct snd_soc_component *component =
  232. snd_soc_kcontrol_component(kcontrol);
  233. struct msm_ext_disp_audio_codec_rx_data *codec_data;
  234. u32 ack_state = 0;
  235. struct msm_ext_disp_codec_id codec_info;
  236. int rc = 0;
  237. int dai_id = ((struct soc_enum *) kcontrol->private_value)->shift_l;
  238. codec_data = snd_soc_component_get_drvdata(component);
  239. if (!codec_data) {
  240. dev_err(component->dev,
  241. "%s: codec_data is NULL\n",
  242. __func__);
  243. return -EINVAL;
  244. }
  245. dev_dbg(component->dev, "%s: DP ctl id %d Stream id %d\n", __func__,
  246. codec_data->ctl[dai_id], codec_data->stream[dai_id]);
  247. mutex_lock(&codec_data->dp_ops_lock);
  248. SWITCH_DP_CODEC(codec_info, codec_data, dai_id);
  249. if (!codec_data->ext_disp_ops.acknowledge) {
  250. dev_err(component->dev,
  251. "%s: codec_data ops acknowledge() is NULL\n",
  252. __func__);
  253. rc = -EINVAL;
  254. goto err;
  255. }
  256. switch (ucontrol->value.enumerated.item[0]) {
  257. case 0:
  258. ack_state = AUD_EXT_DISP_ACK_DISCONNECT;
  259. break;
  260. case 1:
  261. ack_state = AUD_EXT_DISP_ACK_CONNECT;
  262. break;
  263. case 2:
  264. ack_state = AUD_EXT_DISP_ACK_ENABLE;
  265. break;
  266. default:
  267. rc = -EINVAL;
  268. dev_err(component->dev,
  269. "%s: invalid value %d for mixer ctl\n",
  270. __func__, ucontrol->value.enumerated.item[0]);
  271. goto err;
  272. }
  273. dev_dbg(component->dev, "%s: control %d, ack set value 0x%x\n",
  274. __func__, ucontrol->value.enumerated.item[0], ack_state);
  275. rc = codec_data->ext_disp_ops.acknowledge(
  276. codec_data->ext_disp_core_pdev, ack_state);
  277. mutex_unlock(&codec_data->dp_ops_lock);
  278. if (rc < 0) {
  279. dev_err(component->dev, "%s: error from acknowledge(), err:%d\n",
  280. __func__, rc);
  281. }
  282. return rc;
  283. err:
  284. mutex_unlock(&codec_data->dp_ops_lock);
  285. return rc;
  286. }
  287. static int msm_ext_disp_audio_device_get(struct snd_kcontrol *kcontrol,
  288. struct snd_ctl_elem_value *ucontrol)
  289. {
  290. struct snd_soc_component *component =
  291. snd_soc_kcontrol_component(kcontrol);
  292. struct msm_ext_disp_audio_codec_rx_data *codec_data;
  293. int rc = 0;
  294. int dai_id = ((struct soc_multi_mixer_control *)
  295. kcontrol->private_value)->shift;
  296. if (dai_id < 0 || dai_id > DP_DAI2) {
  297. dev_err(component->dev,
  298. "%s: invalid dai id: %d\n", __func__, dai_id);
  299. rc = -EINVAL;
  300. goto done;
  301. }
  302. codec_data = snd_soc_component_get_drvdata(component);
  303. if (!codec_data) {
  304. dev_err(component->dev,
  305. "%s: codec_data or ops acknowledge() is NULL\n",
  306. __func__);
  307. rc = -EINVAL;
  308. goto done;
  309. }
  310. ucontrol->value.integer.value[0] = codec_data->ctl[dai_id];
  311. ucontrol->value.integer.value[1] = codec_data->stream[dai_id];
  312. done:
  313. return rc;
  314. }
  315. static int msm_ext_disp_audio_device_set(struct snd_kcontrol *kcontrol,
  316. struct snd_ctl_elem_value *ucontrol)
  317. {
  318. struct snd_soc_component *component =
  319. snd_soc_kcontrol_component(kcontrol);
  320. struct msm_ext_disp_audio_codec_rx_data *codec_data;
  321. int rc = 0;
  322. int dai_id = ((struct soc_multi_mixer_control *)
  323. kcontrol->private_value)->shift;
  324. if (dai_id < 0 || dai_id > DP_DAI2) {
  325. dev_err(component->dev,
  326. "%s: invalid dai id: %d\n", __func__, dai_id);
  327. rc = -EINVAL;
  328. goto done;
  329. }
  330. codec_data = snd_soc_component_get_drvdata(component);
  331. if (!codec_data) {
  332. dev_err(component->dev,
  333. "%s: codec_data or ops acknowledge() is NULL\n",
  334. __func__);
  335. rc = -EINVAL;
  336. goto done;
  337. }
  338. if ((ucontrol->value.integer.value[0] > (DP_CONTROLLER_MAX - 1)) ||
  339. (ucontrol->value.integer.value[1] > (DP_STREAM_MAX - 1)) ||
  340. (ucontrol->value.integer.value[0] < 0) ||
  341. (ucontrol->value.integer.value[1] < 0)) {
  342. dev_err(component->dev,
  343. "%s: DP audio control index invalid\n",
  344. __func__);
  345. rc = -EINVAL;
  346. goto done;
  347. }
  348. mutex_lock(&codec_data->dp_ops_lock);
  349. codec_data->ctl[dai_id] = ucontrol->value.integer.value[0];
  350. codec_data->stream[dai_id] = ucontrol->value.integer.value[1];
  351. mutex_unlock(&codec_data->dp_ops_lock);
  352. done:
  353. return rc;
  354. }
  355. static const struct snd_kcontrol_new msm_ext_disp_codec_rx_controls[] = {
  356. {
  357. .access = SNDRV_CTL_ELEM_ACCESS_READ |
  358. SNDRV_CTL_ELEM_ACCESS_VOLATILE,
  359. .iface = SNDRV_CTL_ELEM_IFACE_PCM,
  360. .name = "HDMI EDID",
  361. .info = msm_ext_disp_edid_ctl_info,
  362. .get = msm_ext_disp_edid_get,
  363. .private_value = HDMI_DAI,
  364. },
  365. {
  366. .access = SNDRV_CTL_ELEM_ACCESS_READ |
  367. SNDRV_CTL_ELEM_ACCESS_VOLATILE,
  368. .iface = SNDRV_CTL_ELEM_IFACE_PCM,
  369. .name = "Display Port EDID",
  370. .info = msm_ext_disp_edid_ctl_info,
  371. .get = msm_ext_disp_edid_get,
  372. .private_value = DP_DAI1,
  373. },
  374. {
  375. .access = SNDRV_CTL_ELEM_ACCESS_READ |
  376. SNDRV_CTL_ELEM_ACCESS_VOLATILE,
  377. .iface = SNDRV_CTL_ELEM_IFACE_PCM,
  378. .name = "Display Port1 EDID",
  379. .info = msm_ext_disp_edid_ctl_info,
  380. .get = msm_ext_disp_edid_get,
  381. .private_value = DP_DAI2,
  382. },
  383. SOC_ENUM_EXT("External Display Type",
  384. ext_disp_audio_type1,
  385. msm_ext_disp_audio_type_get, NULL),
  386. SOC_ENUM_EXT("External Display1 Type",
  387. ext_disp_audio_type2,
  388. msm_ext_disp_audio_type_get, NULL),
  389. SOC_ENUM_EXT("External Display Audio Ack",
  390. ext_disp_audio_ack_state1,
  391. NULL, msm_ext_disp_audio_ack_set),
  392. SOC_ENUM_EXT("External Display1 Audio Ack",
  393. ext_disp_audio_ack_state2,
  394. NULL, msm_ext_disp_audio_ack_set),
  395. SOC_SINGLE_MULTI_EXT("External Display Audio Device",
  396. SND_SOC_NOPM, DP_DAI1, DP_STREAM_MAX - 1, 0, 2,
  397. msm_ext_disp_audio_device_get,
  398. msm_ext_disp_audio_device_set),
  399. SOC_SINGLE_MULTI_EXT("External Display1 Audio Device",
  400. SND_SOC_NOPM, DP_DAI2, DP_STREAM_MAX - 1, 0, 2,
  401. msm_ext_disp_audio_device_get,
  402. msm_ext_disp_audio_device_set),
  403. };
  404. static int msm_ext_disp_audio_codec_rx_dai_startup(
  405. struct snd_pcm_substream *substream,
  406. struct snd_soc_dai *dai)
  407. {
  408. int ret = 0;
  409. struct msm_ext_disp_codec_id codec_info;
  410. struct msm_ext_disp_audio_codec_rx_data *codec_data =
  411. dev_get_drvdata(dai->component->dev);
  412. if (!codec_data) {
  413. dev_err(dai->dev, "%s() codec_data is null\n",
  414. __func__);
  415. return -EINVAL;
  416. }
  417. dev_dbg(dai->component->dev, "%s: DP ctl id %d Stream id %d\n",
  418. __func__,
  419. codec_data->ctl[dai->id], codec_data->stream[dai->id]);
  420. mutex_lock(&codec_data->dp_ops_lock);
  421. SWITCH_DP_CODEC(codec_info, codec_data, dai->id);
  422. if (!codec_data->ext_disp_ops.cable_status) {
  423. dev_err(dai->dev, "%s() cable_status is null\n",
  424. __func__);
  425. mutex_unlock(&codec_data->dp_ops_lock);
  426. return -EINVAL;
  427. }
  428. codec_data->cable_status[dai->id] =
  429. codec_data->ext_disp_ops.cable_status(
  430. codec_data->ext_disp_core_pdev, 1);
  431. mutex_unlock(&codec_data->dp_ops_lock);
  432. if (codec_data->cable_status[dai->id] < 0) {
  433. dev_err(dai->dev,
  434. "%s() ext disp core is not ready (ret val = %d)\n",
  435. __func__, codec_data->cable_status[dai->id]);
  436. ret = codec_data->cable_status[dai->id];
  437. } else if (!codec_data->cable_status[dai->id]) {
  438. dev_err(dai->dev,
  439. "%s() ext disp cable is not connected (ret val = %d)\n",
  440. __func__, codec_data->cable_status[dai->id]);
  441. ret = -ENODEV;
  442. }
  443. return ret;
  444. }
  445. static int msm_ext_disp_audio_codec_rx_dai_hw_params(
  446. struct snd_pcm_substream *substream,
  447. struct snd_pcm_hw_params *params,
  448. struct snd_soc_dai *dai)
  449. {
  450. u32 channel_allocation = 0;
  451. u32 level_shift = 0; /* 0dB */
  452. bool down_mix = 0;
  453. u32 num_channels = params_channels(params);
  454. struct msm_ext_disp_codec_id codec_info;
  455. int rc = 0;
  456. struct msm_ext_disp_audio_setup_params audio_setup_params = {0};
  457. struct msm_ext_disp_audio_codec_rx_data *codec_data =
  458. dev_get_drvdata(dai->component->dev);
  459. if (!codec_data) {
  460. dev_err(dai->dev, "%s() codec_data is null\n",
  461. __func__);
  462. return -EINVAL;
  463. }
  464. dev_dbg(dai->component->dev, "%s: DP ctl id %d Stream id %d\n",
  465. __func__,
  466. codec_data->ctl[dai->id], codec_data->stream[dai->id]);
  467. mutex_lock(&codec_data->dp_ops_lock);
  468. SWITCH_DP_CODEC(codec_info, codec_data, dai->id);
  469. if (!codec_data->ext_disp_ops.audio_info_setup) {
  470. dev_err(dai->dev, "%s: audio_info_setup is null\n",
  471. __func__);
  472. mutex_unlock(&codec_data->dp_ops_lock);
  473. return -EINVAL;
  474. }
  475. mutex_unlock(&codec_data->dp_ops_lock);
  476. if (codec_data->cable_status[dai->id] < 0) {
  477. dev_err_ratelimited(dai->dev,
  478. "%s() ext disp core is not ready (ret val = %d)\n",
  479. __func__, codec_data->cable_status[dai->id]);
  480. return codec_data->cable_status[dai->id];
  481. } else if (!codec_data->cable_status[dai->id]) {
  482. dev_err_ratelimited(dai->dev,
  483. "%s() ext disp cable is not connected (ret val = %d)\n",
  484. __func__, codec_data->cable_status[dai->id]);
  485. return -ENODEV;
  486. }
  487. /*refer to HDMI spec CEA-861-E: Table 28 Audio InfoFrame Data Byte 4*/
  488. switch (num_channels) {
  489. case 2:
  490. channel_allocation = 0;
  491. break;
  492. case 3:
  493. channel_allocation = 0x02;/*default to FL/FR/FC*/
  494. audio_setup_params.sample_present = 0x3;
  495. break;
  496. case 4:
  497. channel_allocation = 0x06;/*default to FL/FR/FC/RC*/
  498. audio_setup_params.sample_present = 0x7;
  499. break;
  500. case 5:
  501. channel_allocation = 0x0A;/*default to FL/FR/FC/RR/RL*/
  502. audio_setup_params.sample_present = 0x7;
  503. break;
  504. case 6:
  505. channel_allocation = 0x0B;
  506. audio_setup_params.sample_present = 0x7;
  507. break;
  508. case 7:
  509. channel_allocation = 0x12;/*default to FL/FR/FC/RL/RR/RRC/RLC*/
  510. audio_setup_params.sample_present = 0xf;
  511. break;
  512. case 8:
  513. channel_allocation = 0x13;
  514. audio_setup_params.sample_present = 0xf;
  515. break;
  516. default:
  517. dev_err(dai->dev, "invalid Channels = %u\n", num_channels);
  518. return -EINVAL;
  519. }
  520. dev_dbg(dai->dev,
  521. "%s() num_ch %u samplerate %u channel_allocation = %u\n",
  522. __func__, num_channels, params_rate(params),
  523. channel_allocation);
  524. audio_setup_params.sample_rate_hz = params_rate(params);
  525. audio_setup_params.num_of_channels = num_channels;
  526. audio_setup_params.channel_allocation = channel_allocation;
  527. audio_setup_params.level_shift = level_shift;
  528. audio_setup_params.down_mix = down_mix;
  529. mutex_lock(&codec_data->dp_ops_lock);
  530. SWITCH_DP_CODEC(codec_info, codec_data, dai->id);
  531. rc = codec_data->ext_disp_ops.audio_info_setup(
  532. codec_data->ext_disp_core_pdev, &audio_setup_params);
  533. mutex_unlock(&codec_data->dp_ops_lock);
  534. if (rc < 0) {
  535. dev_err_ratelimited(dai->dev,
  536. "%s() ext disp core is not ready, rc: %d\n",
  537. __func__, rc);
  538. }
  539. return rc;
  540. }
  541. static void msm_ext_disp_audio_codec_rx_dai_shutdown(
  542. struct snd_pcm_substream *substream,
  543. struct snd_soc_dai *dai)
  544. {
  545. int rc = 0;
  546. struct msm_ext_disp_codec_id codec_info;
  547. struct msm_ext_disp_audio_codec_rx_data *codec_data =
  548. dev_get_drvdata(dai->component->dev);
  549. if (!codec_data) {
  550. dev_err(dai->dev, "%s() codec_data is null\n",
  551. __func__);
  552. return;
  553. }
  554. dev_dbg(dai->component->dev, "%s: DP ctl id %d Stream id %d\n",
  555. __func__,
  556. codec_data->ctl[dai->id], codec_data->stream[dai->id]);
  557. mutex_lock(&codec_data->dp_ops_lock);
  558. SWITCH_DP_CODEC(codec_info, codec_data, dai->id);
  559. if (!codec_data->ext_disp_ops.teardown_done ||
  560. !codec_data->ext_disp_ops.cable_status) {
  561. dev_err(dai->dev, "%s: teardown_done or cable_status is null\n",
  562. __func__);
  563. mutex_unlock(&codec_data->dp_ops_lock);
  564. return;
  565. }
  566. rc = codec_data->ext_disp_ops.cable_status(
  567. codec_data->ext_disp_core_pdev, 0);
  568. if (rc < 0) {
  569. dev_err(dai->dev,
  570. "%s: ext disp core had problems releasing audio flag\n",
  571. __func__);
  572. }
  573. codec_data->ext_disp_ops.teardown_done(
  574. codec_data->ext_disp_core_pdev);
  575. mutex_unlock(&codec_data->dp_ops_lock);
  576. }
  577. static int msm_ext_disp_audio_codec_rx_probe(
  578. struct snd_soc_component *component)
  579. {
  580. struct msm_ext_disp_audio_codec_rx_data *codec_data;
  581. struct device_node *of_node_parent = NULL;
  582. codec_data = kzalloc(sizeof(struct msm_ext_disp_audio_codec_rx_data),
  583. GFP_KERNEL);
  584. if (!codec_data) {
  585. dev_err(component->dev, "%s(): fail to allocate dai data\n",
  586. __func__);
  587. return -ENOMEM;
  588. }
  589. of_node_parent = of_get_parent(component->dev->of_node);
  590. if (!of_node_parent) {
  591. dev_err(component->dev, "%s(): Parent device tree node not found\n",
  592. __func__);
  593. kfree(codec_data);
  594. return -ENODEV;
  595. }
  596. codec_data->ext_disp_core_pdev = of_find_device_by_node(of_node_parent);
  597. if (!codec_data->ext_disp_core_pdev) {
  598. dev_err(component->dev, "%s(): can't get parent pdev\n",
  599. __func__);
  600. kfree(codec_data);
  601. return -ENODEV;
  602. }
  603. if (msm_ext_disp_register_audio_codec(codec_data->ext_disp_core_pdev,
  604. &codec_data->ext_disp_ops)) {
  605. dev_err(component->dev, "%s(): can't register with ext disp core",
  606. __func__);
  607. kfree(codec_data);
  608. return -ENODEV;
  609. }
  610. mutex_init(&codec_data->dp_ops_lock);
  611. dev_set_drvdata(component->dev, codec_data);
  612. dev_dbg(component->dev, "%s(): registered %s with ext disp core\n",
  613. __func__, component->name);
  614. return 0;
  615. }
  616. static void msm_ext_disp_audio_codec_rx_remove(
  617. struct snd_soc_component *component)
  618. {
  619. struct msm_ext_disp_audio_codec_rx_data *codec_data;
  620. codec_data = dev_get_drvdata(component->dev);
  621. mutex_destroy(&codec_data->dp_ops_lock);
  622. kfree(codec_data);
  623. return;
  624. }
  625. static struct snd_soc_dai_ops msm_ext_disp_audio_codec_rx_dai_ops = {
  626. .startup = msm_ext_disp_audio_codec_rx_dai_startup,
  627. .hw_params = msm_ext_disp_audio_codec_rx_dai_hw_params,
  628. .shutdown = msm_ext_disp_audio_codec_rx_dai_shutdown
  629. };
  630. static struct snd_soc_dai_driver msm_ext_disp_audio_codec_rx_dais[] = {
  631. {
  632. .name = "msm_hdmi_audio_codec_rx_dai",
  633. .id = HDMI_DAI,
  634. .playback = {
  635. .stream_name = "HDMI Playback",
  636. .channels_min = 1,
  637. .channels_max = 8,
  638. .rate_min = 48000,
  639. .rate_max = 48000,
  640. .rates = MSM_EXT_DISP_PCM_RATES,
  641. .formats = SNDRV_PCM_FMTBIT_S16_LE,
  642. },
  643. .ops = &msm_ext_disp_audio_codec_rx_dai_ops,
  644. },
  645. {
  646. .name = "msm_dp_audio_codec_rx_dai",
  647. .id = DP_DAI1,
  648. .playback = {
  649. .stream_name = "Display Port Playback",
  650. .channels_min = 1,
  651. .channels_max = 8,
  652. .rate_min = 48000,
  653. .rate_max = 192000,
  654. .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_96000 |
  655. SNDRV_PCM_RATE_192000,
  656. .formats = SNDRV_PCM_FMTBIT_S16_LE |
  657. SNDRV_PCM_FMTBIT_S24_LE |
  658. SNDRV_PCM_FMTBIT_S24_3LE,
  659. },
  660. .ops = &msm_ext_disp_audio_codec_rx_dai_ops,
  661. },
  662. {
  663. .name = "msm_dp_audio_codec_rx1_dai",
  664. .id = DP_DAI2,
  665. .playback = {
  666. .stream_name = "Display Port1 Playback",
  667. .channels_min = 1,
  668. .channels_max = 8,
  669. .rate_min = 48000,
  670. .rate_max = 192000,
  671. .rates = SNDRV_PCM_RATE_48000 | SNDRV_PCM_RATE_96000 |
  672. SNDRV_PCM_RATE_192000,
  673. .formats = SNDRV_PCM_FMTBIT_S16_LE |
  674. SNDRV_PCM_FMTBIT_S24_LE |
  675. SNDRV_PCM_FMTBIT_S24_3LE,
  676. },
  677. .ops = &msm_ext_disp_audio_codec_rx_dai_ops,
  678. },
  679. };
  680. static const struct snd_soc_component_driver msm_ext_disp_codec_rx_driver = {
  681. .name = DRV_NAME,
  682. .probe = msm_ext_disp_audio_codec_rx_probe,
  683. .remove = msm_ext_disp_audio_codec_rx_remove,
  684. .controls = msm_ext_disp_codec_rx_controls,
  685. .num_controls = ARRAY_SIZE(msm_ext_disp_codec_rx_controls),
  686. };
  687. static int msm_ext_disp_audio_codec_rx_plat_probe(
  688. struct platform_device *pdev)
  689. {
  690. dev_dbg(&pdev->dev, "%s(): dev name %s\n", __func__,
  691. dev_name(&pdev->dev));
  692. return snd_soc_register_component(&pdev->dev,
  693. &msm_ext_disp_codec_rx_driver,
  694. msm_ext_disp_audio_codec_rx_dais,
  695. ARRAY_SIZE(msm_ext_disp_audio_codec_rx_dais));
  696. }
  697. static int msm_ext_disp_audio_codec_rx_plat_remove(
  698. struct platform_device *pdev)
  699. {
  700. snd_soc_unregister_component(&pdev->dev);
  701. return 0;
  702. }
  703. static const struct of_device_id msm_ext_disp_audio_codec_rx_dt_match[] = {
  704. { .compatible = "qcom,msm-ext-disp-audio-codec-rx", },
  705. {}
  706. };
  707. MODULE_DEVICE_TABLE(of, msm_ext_disp_audio_codec_rx_dt_match);
  708. static struct platform_driver msm_ext_disp_audio_codec_rx_driver = {
  709. .driver = {
  710. .name = "msm-ext-disp-audio-codec-rx",
  711. .owner = THIS_MODULE,
  712. .of_match_table = msm_ext_disp_audio_codec_rx_dt_match,
  713. .suppress_bind_attrs = true,
  714. },
  715. .probe = msm_ext_disp_audio_codec_rx_plat_probe,
  716. .remove = msm_ext_disp_audio_codec_rx_plat_remove,
  717. };
  718. static int __init msm_ext_disp_audio_codec_rx_init(void)
  719. {
  720. int rc = 0;
  721. rc = platform_driver_register(&msm_ext_disp_audio_codec_rx_driver);
  722. if (rc) {
  723. pr_err("%s: failed to register ext disp codec driver err:%d\n",
  724. __func__, rc);
  725. }
  726. return rc;
  727. }
  728. module_init(msm_ext_disp_audio_codec_rx_init);
  729. static void __exit msm_ext_disp_audio_codec_rx_exit(void)
  730. {
  731. platform_driver_unregister(&msm_ext_disp_audio_codec_rx_driver);
  732. }
  733. module_exit(msm_ext_disp_audio_codec_rx_exit);
  734. MODULE_DESCRIPTION("MSM External Display Audio CODEC Driver");
  735. MODULE_LICENSE("GPL v2");