msm_audio_ion.c 27 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2013-2021, The Linux Foundation. All rights reserved.
  4. * Copyright (c) 2022-2023, Qualcomm Innovation Center, Inc. All rights reserved.
  5. */
  6. #include <linux/init.h>
  7. #include <linux/kernel.h>
  8. #include <linux/module.h>
  9. #include <linux/err.h>
  10. #include <linux/delay.h>
  11. #include <linux/slab.h>
  12. #include <linux/mutex.h>
  13. #include <linux/list.h>
  14. #include <linux/dma-mapping.h>
  15. #include <linux/dma-buf.h>
  16. #include <linux/iosys-map.h>
  17. #include <linux/platform_device.h>
  18. #include <linux/of_device.h>
  19. #include <linux/export.h>
  20. #include <linux/ioctl.h>
  21. #include <linux/cdev.h>
  22. #include <linux/fs.h>
  23. #include <linux/device.h>
  24. #ifndef CONFIG_SPF_CORE
  25. #include <ipc/apr.h>
  26. #endif
  27. #include <dsp/msm_audio_ion.h>
  28. #include <linux/msm_audio.h>
  29. #include <linux/qcom_scm.h>
  30. #include <soc/qcom/secure_buffer.h>
  31. MODULE_IMPORT_NS(DMA_BUF);
  32. #define MSM_AUDIO_ION_PROBED (1 << 0)
  33. #define MSM_AUDIO_ION_PHYS_ADDR(alloc_data) \
  34. alloc_data->table->sgl->dma_address
  35. #define MSM_AUDIO_SMMU_SID_OFFSET 32
  36. #define TZ_PIL_PROTECT_MEM_SUBSYS_ID 0x0C
  37. #define TZ_PIL_CLEAR_PROTECT_MEM_SUBSYS_ID 0x0D
  38. #define MSM_AUDIO_ION_DRIVER_NAME "msm_audio_ion"
  39. #define MINOR_NUMBER_COUNT 1
  40. struct msm_audio_ion_private {
  41. bool smmu_enabled;
  42. struct device *cb_dev;
  43. u8 device_status;
  44. struct list_head alloc_list;
  45. struct mutex list_mutex;
  46. u64 smmu_sid_bits;
  47. u32 smmu_version;
  48. bool is_non_hypervisor;
  49. char *driver_name;
  50. /*char dev related data */
  51. dev_t ion_major;
  52. struct class *ion_class;
  53. struct device *chardev;
  54. struct cdev cdev;
  55. };
  56. struct msm_audio_alloc_data {
  57. size_t len;
  58. struct iosys_map *vmap;
  59. struct dma_buf *dma_buf;
  60. struct dma_buf_attachment *attach;
  61. struct sg_table *table;
  62. struct list_head list;
  63. };
  64. struct msm_audio_ion_fd_list_private {
  65. struct mutex list_mutex;
  66. /*list to store fd, phy. addr and handle data */
  67. struct list_head fd_list;
  68. };
  69. static struct msm_audio_ion_fd_list_private msm_audio_ion_fd_list = {0,};
  70. static bool msm_audio_ion_fd_list_init = false;
  71. struct msm_audio_fd_data {
  72. int fd;
  73. size_t plen;
  74. void *handle;
  75. dma_addr_t paddr;
  76. struct device *dev;
  77. struct list_head list;
  78. bool hyp_assign;
  79. };
  80. static void msm_audio_ion_add_allocation(
  81. struct msm_audio_ion_private *msm_audio_ion_data,
  82. struct msm_audio_alloc_data *alloc_data)
  83. {
  84. /*
  85. * Since these APIs can be invoked by multiple
  86. * clients, there is need to make sure the list
  87. * of allocations is always protected
  88. */
  89. mutex_lock(&(msm_audio_ion_data->list_mutex));
  90. list_add_tail(&(alloc_data->list),
  91. &(msm_audio_ion_data->alloc_list));
  92. mutex_unlock(&(msm_audio_ion_data->list_mutex));
  93. }
  94. /* This function is called with ion_data list mutex lock */
  95. static int msm_audio_ion_map_kernel(struct dma_buf *dma_buf,
  96. struct msm_audio_ion_private *ion_data, struct iosys_map *iosys_vmap)
  97. {
  98. int rc = 0;
  99. struct msm_audio_alloc_data *alloc_data = NULL;
  100. rc = dma_buf_begin_cpu_access(dma_buf, DMA_BIDIRECTIONAL);
  101. if (rc) {
  102. pr_err("%s: kmap dma_buf_begin_cpu_access fail\n", __func__);
  103. goto exit;
  104. }
  105. rc = dma_buf_vmap(dma_buf, iosys_vmap);
  106. if (rc) {
  107. pr_err("%s: kernel mapping of dma_buf failed\n",
  108. __func__);
  109. dma_buf_end_cpu_access(dma_buf, DMA_BIDIRECTIONAL);
  110. goto exit;
  111. }
  112. /*
  113. * TBD: remove the below section once new API
  114. * for mapping kernel virtual address is available.
  115. */
  116. mutex_lock(&(ion_data->list_mutex));
  117. list_for_each_entry(alloc_data, &(ion_data->alloc_list),
  118. list) {
  119. if (alloc_data->dma_buf == dma_buf) {
  120. alloc_data->vmap = iosys_vmap;
  121. break;
  122. }
  123. }
  124. mutex_unlock(&(ion_data->list_mutex));
  125. exit:
  126. return rc;
  127. }
  128. /* This function is called with ion_data list mutex lock */
  129. static int msm_audio_dma_buf_map(struct dma_buf *dma_buf,
  130. dma_addr_t *addr, size_t *len, bool is_iova,
  131. struct msm_audio_ion_private *ion_data)
  132. {
  133. struct msm_audio_alloc_data *alloc_data = NULL;
  134. int rc = 0;
  135. struct iosys_map *iosys_vmap = NULL;
  136. struct device *cb_dev = ion_data->cb_dev;
  137. iosys_vmap = kzalloc(sizeof(*iosys_vmap), GFP_KERNEL);
  138. if (!iosys_vmap)
  139. return -ENOMEM;
  140. /* Data required per buffer mapping */
  141. alloc_data = kzalloc(sizeof(*alloc_data), GFP_KERNEL);
  142. if (!alloc_data) {
  143. kfree(iosys_vmap);
  144. return -ENOMEM;
  145. }
  146. alloc_data->dma_buf = dma_buf;
  147. alloc_data->len = dma_buf->size;
  148. *len = dma_buf->size;
  149. /* Attach the dma_buf to context bank device */
  150. alloc_data->attach = dma_buf_attach(alloc_data->dma_buf,
  151. cb_dev);
  152. if (IS_ERR(alloc_data->attach)) {
  153. rc = PTR_ERR(alloc_data->attach);
  154. dev_err(cb_dev,
  155. "%s: Fail to attach dma_buf to CB, rc = %d\n",
  156. __func__, rc);
  157. goto free_alloc_data;
  158. }
  159. /*
  160. * Get the scatter-gather list.
  161. * There is no info as this is a write buffer or
  162. * read buffer, hence the request is bi-directional
  163. * to accommodate both read and write mappings.
  164. */
  165. alloc_data->table = dma_buf_map_attachment(alloc_data->attach,
  166. DMA_BIDIRECTIONAL);
  167. if (IS_ERR(alloc_data->table)) {
  168. rc = PTR_ERR(alloc_data->table);
  169. dev_err(cb_dev,
  170. "%s: Fail to map attachment, rc = %d\n",
  171. __func__, rc);
  172. goto detach_dma_buf;
  173. }
  174. /* physical address from mapping */
  175. if (!is_iova) {
  176. *addr = sg_phys(alloc_data->table->sgl);
  177. rc = msm_audio_ion_map_kernel((void *)dma_buf, ion_data, iosys_vmap);
  178. if (rc) {
  179. pr_err("%s: ION memory mapping for AUDIO failed, err:%d\n",
  180. __func__, rc);
  181. rc = -ENOMEM;
  182. goto detach_dma_buf;
  183. }
  184. alloc_data->vmap = iosys_vmap;
  185. } else {
  186. *addr = MSM_AUDIO_ION_PHYS_ADDR(alloc_data);
  187. kfree(iosys_vmap);
  188. }
  189. msm_audio_ion_add_allocation(ion_data, alloc_data);
  190. return rc;
  191. detach_dma_buf:
  192. dma_buf_detach(alloc_data->dma_buf,
  193. alloc_data->attach);
  194. free_alloc_data:
  195. kfree(iosys_vmap);
  196. kfree(alloc_data);
  197. alloc_data = NULL;
  198. return rc;
  199. }
  200. static int msm_audio_dma_buf_unmap(struct dma_buf *dma_buf, struct msm_audio_ion_private *ion_data)
  201. {
  202. int rc = 0;
  203. struct msm_audio_alloc_data *alloc_data = NULL;
  204. struct list_head *ptr, *next;
  205. bool found = false;
  206. struct device *cb_dev = ion_data->cb_dev;
  207. /*
  208. * Though list_for_each_safe is delete safe, lock
  209. * should be explicitly acquired to avoid race condition
  210. * on adding elements to the list.
  211. */
  212. list_for_each_safe(ptr, next,
  213. &(ion_data->alloc_list)) {
  214. alloc_data = list_entry(ptr, struct msm_audio_alloc_data,
  215. list);
  216. if (alloc_data->dma_buf == dma_buf) {
  217. found = true;
  218. dma_buf_unmap_attachment(alloc_data->attach,
  219. alloc_data->table,
  220. DMA_BIDIRECTIONAL);
  221. dma_buf_detach(alloc_data->dma_buf,
  222. alloc_data->attach);
  223. dma_buf_put(alloc_data->dma_buf);
  224. list_del(&(alloc_data->list));
  225. kfree(alloc_data->vmap);
  226. kfree(alloc_data);
  227. alloc_data = NULL;
  228. break;
  229. }
  230. }
  231. if (!found) {
  232. dev_err(cb_dev,
  233. "%s: cannot find allocation, dma_buf %pK",
  234. __func__, dma_buf);
  235. rc = -EINVAL;
  236. }
  237. return rc;
  238. }
  239. static int msm_audio_ion_get_phys(struct dma_buf *dma_buf,
  240. dma_addr_t *addr, size_t *len, bool is_iova,
  241. struct msm_audio_ion_private *ion_data)
  242. {
  243. int rc = 0;
  244. rc = msm_audio_dma_buf_map(dma_buf, addr, len, is_iova, ion_data);
  245. if (rc) {
  246. pr_err("%s: failed to map DMA buf, err = %d\n",
  247. __func__, rc);
  248. goto err;
  249. }
  250. if (ion_data->smmu_enabled && is_iova) {
  251. /* Append the SMMU SID information to the IOVA address */
  252. *addr |= ion_data->smmu_sid_bits;
  253. }
  254. pr_debug("phys=%pK, len=%zd, rc=%d\n", &(*addr), *len, rc);
  255. err:
  256. return rc;
  257. }
  258. static int msm_audio_ion_unmap_kernel(struct dma_buf *dma_buf, struct msm_audio_ion_private *ion_data)
  259. {
  260. int rc = 0;
  261. struct iosys_map *iosys_vmap = NULL;
  262. struct msm_audio_alloc_data *alloc_data = NULL;
  263. struct device *cb_dev = ion_data->cb_dev;
  264. /*
  265. * TBD: remove the below section once new API
  266. * for unmapping kernel virtual address is available.
  267. */
  268. list_for_each_entry(alloc_data, &(ion_data->alloc_list),
  269. list) {
  270. if (alloc_data->dma_buf == dma_buf) {
  271. iosys_vmap = alloc_data->vmap;
  272. break;
  273. }
  274. }
  275. if (!iosys_vmap) {
  276. dev_err(cb_dev,
  277. "%s: cannot find allocation for dma_buf %pK",
  278. __func__, dma_buf);
  279. rc = -EINVAL;
  280. goto err;
  281. }
  282. dma_buf_vunmap(dma_buf, iosys_vmap);
  283. rc = dma_buf_end_cpu_access(dma_buf, DMA_BIDIRECTIONAL);
  284. if (rc) {
  285. dev_err(cb_dev, "%s: kmap dma_buf_end_cpu_access fail\n",
  286. __func__);
  287. goto err;
  288. }
  289. err:
  290. return rc;
  291. }
  292. /* This function is called with ion_data list mutex lock */
  293. static int msm_audio_ion_buf_map(struct dma_buf *dma_buf, dma_addr_t *paddr,
  294. size_t *plen, struct iosys_map *iosys_vmap,
  295. struct msm_audio_ion_private *ion_data)
  296. {
  297. int rc = 0;
  298. bool is_iova = true;
  299. if (!dma_buf || !paddr || !plen) {
  300. pr_err("%s: Invalid params\n", __func__);
  301. return -EINVAL;
  302. }
  303. rc = msm_audio_ion_get_phys(dma_buf, paddr, plen, is_iova, ion_data);
  304. if (rc) {
  305. pr_err("%s: ION Get Physical for AUDIO failed, rc = %d\n",
  306. __func__, rc);
  307. dma_buf_put(dma_buf);
  308. goto err;
  309. }
  310. rc = msm_audio_ion_map_kernel(dma_buf, ion_data, iosys_vmap);
  311. if (rc) {
  312. pr_err("%s: ION memory mapping for AUDIO failed, err:%d\n",
  313. __func__, rc);
  314. rc = -ENOMEM;
  315. mutex_lock(&(ion_data->list_mutex));
  316. msm_audio_dma_buf_unmap(dma_buf, ion_data);
  317. mutex_unlock(&(ion_data->list_mutex));
  318. goto err;
  319. }
  320. err:
  321. return rc;
  322. }
  323. void msm_audio_fd_list_debug(void)
  324. {
  325. struct msm_audio_fd_data *msm_audio_fd_data = NULL;
  326. list_for_each_entry(msm_audio_fd_data,
  327. &msm_audio_ion_fd_list.fd_list, list) {
  328. pr_debug("%s fd %d handle %pK phy. addr %pK\n", __func__,
  329. msm_audio_fd_data->fd, msm_audio_fd_data->handle,
  330. (void *)msm_audio_fd_data->paddr);
  331. }
  332. }
  333. void msm_audio_update_fd_list(struct msm_audio_fd_data *msm_audio_fd_data)
  334. {
  335. struct msm_audio_fd_data *msm_audio_fd_data1 = NULL;
  336. mutex_lock(&(msm_audio_ion_fd_list.list_mutex));
  337. list_for_each_entry(msm_audio_fd_data1,
  338. &msm_audio_ion_fd_list.fd_list, list) {
  339. if (msm_audio_fd_data1->fd == msm_audio_fd_data->fd) {
  340. pr_err("%s fd already present, not updating the list",
  341. __func__);
  342. mutex_unlock(&(msm_audio_ion_fd_list.list_mutex));
  343. return;
  344. }
  345. }
  346. list_add_tail(&msm_audio_fd_data->list, &msm_audio_ion_fd_list.fd_list);
  347. mutex_unlock(&(msm_audio_ion_fd_list.list_mutex));
  348. }
  349. void msm_audio_delete_fd_entry(void *handle)
  350. {
  351. struct msm_audio_fd_data *msm_audio_fd_data = NULL;
  352. struct list_head *ptr, *next;
  353. if (!handle) {
  354. pr_err("%s Invalid handle\n", __func__);
  355. return;
  356. }
  357. mutex_lock(&(msm_audio_ion_fd_list.list_mutex));
  358. list_for_each_safe(ptr, next,
  359. &msm_audio_ion_fd_list.fd_list) {
  360. msm_audio_fd_data = list_entry(ptr, struct msm_audio_fd_data,
  361. list);
  362. if (msm_audio_fd_data->handle == handle) {
  363. pr_debug("%s deleting handle %pK entry from list\n",
  364. __func__, handle);
  365. list_del(&(msm_audio_fd_data->list));
  366. kfree(msm_audio_fd_data);
  367. break;
  368. }
  369. }
  370. mutex_unlock(&(msm_audio_ion_fd_list.list_mutex));
  371. }
  372. int msm_audio_get_phy_addr(int fd, dma_addr_t *paddr, size_t *pa_len)
  373. {
  374. struct msm_audio_fd_data *msm_audio_fd_data = NULL;
  375. int status = -EINVAL;
  376. if (!paddr) {
  377. pr_err("%s Invalid paddr param status %d\n", __func__, status);
  378. return status;
  379. }
  380. pr_debug("%s, fd %d\n", __func__, fd);
  381. mutex_lock(&(msm_audio_ion_fd_list.list_mutex));
  382. list_for_each_entry(msm_audio_fd_data,
  383. &msm_audio_ion_fd_list.fd_list, list) {
  384. if (msm_audio_fd_data->fd == fd) {
  385. *paddr = msm_audio_fd_data->paddr;
  386. *pa_len = msm_audio_fd_data->plen;
  387. status = 0;
  388. pr_debug("%s Found fd %d paddr %pK\n",
  389. __func__, fd, paddr);
  390. mutex_unlock(&(msm_audio_ion_fd_list.list_mutex));
  391. return status;
  392. }
  393. }
  394. mutex_unlock(&(msm_audio_ion_fd_list.list_mutex));
  395. return status;
  396. }
  397. EXPORT_SYMBOL(msm_audio_get_phy_addr);
  398. static int msm_audio_set_hyp_assign(int fd, bool assign)
  399. {
  400. struct msm_audio_fd_data *msm_audio_fd_data = NULL;
  401. int status = -EINVAL;
  402. pr_debug("%s, fd %d\n", __func__, fd);
  403. mutex_lock(&(msm_audio_ion_fd_list.list_mutex));
  404. list_for_each_entry(msm_audio_fd_data,
  405. &msm_audio_ion_fd_list.fd_list, list) {
  406. if (msm_audio_fd_data->fd == fd) {
  407. status = 0;
  408. pr_debug("%s Found fd %d\n", __func__, fd);
  409. msm_audio_fd_data->hyp_assign = assign;
  410. mutex_unlock(&(msm_audio_ion_fd_list.list_mutex));
  411. return status;
  412. }
  413. }
  414. mutex_unlock(&(msm_audio_ion_fd_list.list_mutex));
  415. return status;
  416. }
  417. void msm_audio_get_handle(int fd, void **handle)
  418. {
  419. struct msm_audio_fd_data *msm_audio_fd_data = NULL;
  420. pr_debug("%s fd %d\n", __func__, fd);
  421. mutex_lock(&(msm_audio_ion_fd_list.list_mutex));
  422. *handle = NULL;
  423. list_for_each_entry(msm_audio_fd_data,
  424. &msm_audio_ion_fd_list.fd_list, list) {
  425. if (msm_audio_fd_data->fd == fd) {
  426. *handle = (struct dma_buf *)msm_audio_fd_data->handle;
  427. pr_debug("%s handle %pK\n", __func__, *handle);
  428. break;
  429. }
  430. }
  431. mutex_unlock(&(msm_audio_ion_fd_list.list_mutex));
  432. }
  433. /**
  434. * msm_audio_ion_import-
  435. * Import ION buffer with given file descriptor
  436. *
  437. * @dma_buf: dma_buf for the ION memory
  438. * @fd: file descriptor for the ION memory
  439. * @ionflag: flags associated with ION buffer
  440. * @bufsz: buffer size
  441. * @paddr: Physical address to be assigned with allocated region
  442. * @plen: length of allocated region to be assigned
  443. * @iosys_vmap: Virtual mapping vmap pointer to be assigned
  444. *
  445. * Returns 0 on success or error on failure
  446. */
  447. static int msm_audio_ion_import(struct dma_buf **dma_buf, int fd,
  448. unsigned long *ionflag, size_t bufsz,
  449. dma_addr_t *paddr, size_t *plen, struct iosys_map *iosys_vmap,
  450. struct msm_audio_ion_private *ion_data)
  451. {
  452. int rc = 0;
  453. if (!(ion_data->device_status & MSM_AUDIO_ION_PROBED)) {
  454. pr_debug("%s: probe is not done, deferred\n", __func__);
  455. return -EPROBE_DEFER;
  456. }
  457. if (!dma_buf || !paddr || !plen) {
  458. pr_err("%s: Invalid params\n", __func__);
  459. return -EINVAL;
  460. }
  461. /* bufsz should be 0 and fd shouldn't be 0 as of now */
  462. *dma_buf = dma_buf_get(fd);
  463. pr_debug("%s: dma_buf =%pK, fd=%d\n", __func__, *dma_buf, fd);
  464. if (IS_ERR_OR_NULL((void *)(*dma_buf))) {
  465. pr_err("%s: dma_buf_get failed\n", __func__);
  466. rc = -EINVAL;
  467. goto err;
  468. }
  469. if (ionflag != NULL) {
  470. rc = dma_buf_get_flags(*dma_buf, ionflag);
  471. if (rc) {
  472. pr_err("%s: could not get flags for the dma_buf\n",
  473. __func__);
  474. goto err_ion_flag;
  475. }
  476. }
  477. if (ion_data->smmu_enabled) {
  478. rc = msm_audio_ion_buf_map(*dma_buf, paddr, plen, iosys_vmap, ion_data);
  479. if (rc) {
  480. pr_err("%s: failed to map ION buf, rc = %d\n", __func__, rc);
  481. goto err;
  482. }
  483. pr_debug("%s: mapped address = %pK, size=%zd\n", __func__,
  484. iosys_vmap->vaddr, bufsz);
  485. } else {
  486. msm_audio_dma_buf_map(*dma_buf, paddr, plen, true, ion_data);
  487. }
  488. return 0;
  489. err_ion_flag:
  490. dma_buf_put(*dma_buf);
  491. err:
  492. *dma_buf = NULL;
  493. return rc;
  494. }
  495. /**
  496. * msm_audio_ion_free -
  497. * fress ION memory for given client and handle
  498. *
  499. * @dma_buf: dma_buf for the ION memory
  500. *
  501. * Returns 0 on success or error on failure
  502. */
  503. /* This funtion is called with ion_data list mutex lock */
  504. static int msm_audio_ion_free(struct dma_buf *dma_buf, struct msm_audio_ion_private *ion_data)
  505. {
  506. int ret = 0;
  507. if (!dma_buf) {
  508. pr_err("%s: dma_buf invalid\n", __func__);
  509. return -EINVAL;
  510. }
  511. mutex_lock(&(ion_data->list_mutex));
  512. if (ion_data->smmu_enabled) {
  513. ret = msm_audio_ion_unmap_kernel(dma_buf, ion_data);
  514. if (ret) {
  515. mutex_unlock(&(ion_data->list_mutex));
  516. return ret;
  517. }
  518. }
  519. msm_audio_dma_buf_unmap(dma_buf, ion_data);
  520. mutex_unlock(&(ion_data->list_mutex));
  521. return 0;
  522. }
  523. static int msm_audio_hyp_unassign(struct msm_audio_fd_data *msm_audio_fd_data)
  524. {
  525. int ret = 0;
  526. u64 src_vmid_unmap_list = BIT(VMID_LPASS) | BIT(VMID_ADSP_HEAP);
  527. struct qcom_scm_vmperm dst_vmids_unmap[] = {{QCOM_SCM_VMID_HLOS,
  528. PERM_READ | PERM_WRITE | PERM_EXEC}};
  529. if (msm_audio_fd_data->hyp_assign) {
  530. ret = qcom_scm_assign_mem(msm_audio_fd_data->paddr, msm_audio_fd_data->plen,
  531. &src_vmid_unmap_list, dst_vmids_unmap, ARRAY_SIZE(dst_vmids_unmap));
  532. if (ret < 0) {
  533. pr_err("%s: qcom assign unmap failed result = %d addr = 0x%pK size = %d\n",
  534. __func__, ret, msm_audio_fd_data->paddr, msm_audio_fd_data->plen);
  535. }
  536. msm_audio_fd_data->hyp_assign = false;
  537. pr_debug("%s: qcom scm unmap success\n", __func__);
  538. }
  539. return ret;
  540. }
  541. /**
  542. * msm_audio_ion_crash_handler -
  543. * handles cleanup after userspace crashes.
  544. *
  545. * To be called from machine driver.
  546. */
  547. void msm_audio_ion_crash_handler(void)
  548. {
  549. struct msm_audio_fd_data *msm_audio_fd_data = NULL;
  550. struct list_head *ptr, *next;
  551. void *handle = NULL;
  552. struct msm_audio_ion_private *ion_data = NULL;
  553. pr_debug("Inside %s\n", __func__);
  554. if(!msm_audio_ion_fd_list_init) {
  555. pr_err("%s: list not initialized yet, hence returning .... ", __func__);
  556. return;
  557. }
  558. mutex_lock(&(msm_audio_ion_fd_list.list_mutex));
  559. list_for_each_entry(msm_audio_fd_data,
  560. &msm_audio_ion_fd_list.fd_list, list) {
  561. if(msm_audio_fd_data) {
  562. handle = msm_audio_fd_data->handle;
  563. ion_data = dev_get_drvdata(msm_audio_fd_data->dev);
  564. /* clean if CMA was used*/
  565. if (msm_audio_fd_data->hyp_assign)
  566. msm_audio_hyp_unassign(msm_audio_fd_data);
  567. if(handle)
  568. msm_audio_ion_free(handle, ion_data);
  569. }
  570. }
  571. list_for_each_safe(ptr, next,
  572. &msm_audio_ion_fd_list.fd_list) {
  573. if(ptr) {
  574. msm_audio_fd_data = list_entry(ptr, struct msm_audio_fd_data,
  575. list);
  576. if(msm_audio_fd_data) {
  577. list_del(&(msm_audio_fd_data->list));
  578. kfree(msm_audio_fd_data);
  579. }
  580. }
  581. }
  582. mutex_unlock(&(msm_audio_ion_fd_list.list_mutex));
  583. }
  584. EXPORT_SYMBOL(msm_audio_ion_crash_handler);
  585. static int msm_audio_ion_open(struct inode *inode, struct file *file)
  586. {
  587. int ret = 0;
  588. struct msm_audio_ion_private *ion_data = container_of(inode->i_cdev,
  589. struct msm_audio_ion_private,
  590. cdev);
  591. struct device *dev = ion_data->chardev;
  592. pr_debug("Inside %s\n", __func__);
  593. get_device(dev);
  594. return ret;
  595. }
  596. static int msm_audio_ion_release(struct inode *inode, struct file *file)
  597. {
  598. struct msm_audio_ion_private *ion_data = container_of(inode->i_cdev,
  599. struct msm_audio_ion_private,
  600. cdev);
  601. struct device *dev = ion_data->chardev;
  602. pr_debug("Inside %s\n", __func__);
  603. put_device(dev);
  604. return 0;
  605. }
  606. static long msm_audio_ion_ioctl(struct file *file, unsigned int ioctl_num,
  607. unsigned long __user ioctl_param)
  608. {
  609. void *mem_handle;
  610. dma_addr_t paddr;
  611. size_t pa_len = 0;
  612. struct iosys_map *iosys_vmap = NULL;
  613. int ret = 0;
  614. u64 src_vmid_map_list = BIT(QCOM_SCM_VMID_HLOS);
  615. struct qcom_scm_vmperm dst_vmids_map[] = {{VMID_LPASS, PERM_READ | PERM_WRITE},
  616. {VMID_ADSP_HEAP, PERM_READ | PERM_WRITE}};
  617. u64 src_vmid_unmap_list = BIT(VMID_LPASS) | BIT(VMID_ADSP_HEAP);
  618. struct qcom_scm_vmperm dst_vmids_unmap[] = {{QCOM_SCM_VMID_HLOS,
  619. PERM_READ | PERM_WRITE | PERM_EXEC}};
  620. struct msm_audio_fd_data *msm_audio_fd_data = NULL;
  621. struct msm_audio_ion_private *ion_data =
  622. container_of(file->f_inode->i_cdev, struct msm_audio_ion_private, cdev);
  623. pr_debug("%s ioctl num %u\n", __func__, ioctl_num);
  624. switch (ioctl_num) {
  625. case IOCTL_MAP_PHYS_ADDR:
  626. iosys_vmap = kzalloc(sizeof(struct msm_audio_fd_data), GFP_KERNEL);
  627. if (!iosys_vmap)
  628. return -ENOMEM;
  629. msm_audio_fd_data = kzalloc((sizeof(struct msm_audio_fd_data)),
  630. GFP_KERNEL);
  631. if (!msm_audio_fd_data) {
  632. kfree(iosys_vmap);
  633. return -ENOMEM;
  634. }
  635. ret = msm_audio_ion_import((struct dma_buf **)&mem_handle, (int)ioctl_param,
  636. NULL, 0, &paddr, &pa_len, iosys_vmap, ion_data);
  637. if (ret < 0) {
  638. pr_err("%s Memory map Failed %d\n", __func__, ret);
  639. kfree(iosys_vmap);
  640. kfree(msm_audio_fd_data);
  641. return ret;
  642. }
  643. msm_audio_fd_data->fd = (int)ioctl_param;
  644. msm_audio_fd_data->handle = mem_handle;
  645. msm_audio_fd_data->paddr = paddr;
  646. msm_audio_fd_data->plen = pa_len;
  647. msm_audio_fd_data->dev = ion_data->cb_dev;
  648. msm_audio_update_fd_list(msm_audio_fd_data);
  649. break;
  650. case IOCTL_UNMAP_PHYS_ADDR:
  651. msm_audio_get_handle((int)ioctl_param, &mem_handle);
  652. ret = msm_audio_ion_free(mem_handle, ion_data);
  653. if (ret < 0) {
  654. pr_err("%s Ion free failed %d\n", __func__, ret);
  655. return ret;
  656. }
  657. msm_audio_delete_fd_entry(mem_handle);
  658. break;
  659. case IOCTL_MAP_HYP_ASSIGN:
  660. ret = msm_audio_get_phy_addr((int)ioctl_param, &paddr, &pa_len);
  661. if (ret < 0) {
  662. pr_err("%s get phys addr failed %d\n", __func__, ret);
  663. return ret;
  664. }
  665. ret = qcom_scm_assign_mem(paddr, pa_len, &src_vmid_map_list,
  666. dst_vmids_map, ARRAY_SIZE(dst_vmids_map));
  667. if (ret < 0) {
  668. pr_err("%s: qcom_assign failed result = %d addr = 0x%pK size = %d\n",
  669. __func__, ret, paddr, pa_len);
  670. return ret;
  671. }
  672. pr_debug("%s: qcom scm assign success\n", __func__);
  673. msm_audio_set_hyp_assign((int)ioctl_param, true);
  674. break;
  675. case IOCTL_UNMAP_HYP_ASSIGN:
  676. ret = msm_audio_get_phy_addr((int)ioctl_param, &paddr, &pa_len);
  677. if (ret < 0) {
  678. pr_err("%s get phys addr failed %d\n", __func__, ret);
  679. return ret;
  680. }
  681. ret = qcom_scm_assign_mem(paddr, pa_len, &src_vmid_unmap_list,
  682. dst_vmids_unmap, ARRAY_SIZE(dst_vmids_unmap));
  683. if (ret < 0) {
  684. pr_err("%s: qcom scm unassign failed result = %d addr = 0x%pK size = %d\n",
  685. __func__, ret, paddr, pa_len);
  686. return ret;
  687. }
  688. pr_debug("%s: qcom scm unassign success\n", __func__);
  689. msm_audio_set_hyp_assign((int)ioctl_param, false);
  690. break;
  691. default:
  692. pr_err("%s Entered default. Invalid ioctl num %u",
  693. __func__, ioctl_num);
  694. ret = -EINVAL;
  695. break;
  696. }
  697. return ret;
  698. }
  699. static const struct of_device_id msm_audio_ion_dt_match[] = {
  700. { .compatible = "qcom,msm-audio-ion" },
  701. { .compatible = "qcom,msm-audio-ion-cma"},
  702. { }
  703. };
  704. MODULE_DEVICE_TABLE(of, msm_audio_ion_dt_match);
  705. static const struct file_operations msm_audio_ion_fops = {
  706. .owner = THIS_MODULE,
  707. .open = msm_audio_ion_open,
  708. .release = msm_audio_ion_release,
  709. .unlocked_ioctl = msm_audio_ion_ioctl,
  710. };
  711. static int msm_audio_ion_reg_chrdev(struct msm_audio_ion_private *ion_data)
  712. {
  713. int ret = 0;
  714. ret = alloc_chrdev_region(&ion_data->ion_major, 0,
  715. MINOR_NUMBER_COUNT, ion_data->driver_name);
  716. if (ret < 0) {
  717. pr_err("%s alloc_chr_dev_region failed ret : %d\n",
  718. __func__, ret);
  719. return ret;
  720. }
  721. pr_debug("%s major number %d", __func__, MAJOR(ion_data->ion_major));
  722. ion_data->ion_class = class_create(THIS_MODULE,
  723. ion_data->driver_name);
  724. if (IS_ERR(ion_data->ion_class)) {
  725. ret = PTR_ERR(ion_data->ion_class);
  726. pr_err("%s class create failed. ret : %d", __func__, ret);
  727. goto err_class;
  728. }
  729. ion_data->chardev = device_create(ion_data->ion_class, NULL,
  730. ion_data->ion_major, NULL,
  731. ion_data->driver_name);
  732. if (IS_ERR(ion_data->chardev)) {
  733. ret = PTR_ERR(ion_data->chardev);
  734. pr_err("%s device create failed ret : %d\n", __func__, ret);
  735. goto err_device;
  736. }
  737. cdev_init(&ion_data->cdev, &msm_audio_ion_fops);
  738. ret = cdev_add(&ion_data->cdev, ion_data->ion_major, 1);
  739. if (ret) {
  740. pr_err("%s cdev add failed, ret : %d\n", __func__, ret);
  741. goto err_cdev;
  742. }
  743. return ret;
  744. err_cdev:
  745. device_destroy(ion_data->ion_class, ion_data->ion_major);
  746. err_device:
  747. class_destroy(ion_data->ion_class);
  748. err_class:
  749. unregister_chrdev_region(0, MINOR_NUMBER_COUNT);
  750. return ret;
  751. }
  752. static int msm_audio_ion_unreg_chrdev(struct msm_audio_ion_private *ion_data)
  753. {
  754. cdev_del(&ion_data->cdev);
  755. device_destroy(ion_data->ion_class, ion_data->ion_major);
  756. class_destroy(ion_data->ion_class);
  757. unregister_chrdev_region(0, MINOR_NUMBER_COUNT);
  758. return 0;
  759. }
  760. static int msm_audio_ion_probe(struct platform_device *pdev)
  761. {
  762. int rc = 0;
  763. u64 smmu_sid = 0;
  764. u64 smmu_sid_mask = 0;
  765. const char *msm_audio_ion_dt = "qcom,smmu-enabled";
  766. const char *msm_audio_ion_non_hyp = "qcom,non-hyp-assign";
  767. const char *msm_audio_ion_smmu = "qcom,smmu-version";
  768. const char *msm_audio_ion_smmu_sid_mask = "qcom,smmu-sid-mask";
  769. bool smmu_enabled;
  770. bool is_non_hypervisor_en;
  771. struct device *dev = &pdev->dev;
  772. struct of_phandle_args iommuspec;
  773. struct msm_audio_ion_private *msm_audio_ion_data = NULL;
  774. #ifndef CONFIG_SPF_CORE
  775. enum apr_subsys_state q6_state;
  776. #endif
  777. dev_err(dev, "%s: msm_audio_ion_probe\n", __func__);
  778. if (dev->of_node == NULL) {
  779. dev_err(dev,
  780. "%s: device tree is not found\n",
  781. __func__);
  782. return 0;
  783. }
  784. msm_audio_ion_data = devm_kzalloc(&pdev->dev, (sizeof(struct msm_audio_ion_private)),
  785. GFP_KERNEL);
  786. if (!msm_audio_ion_data)
  787. return -ENOMEM;
  788. is_non_hypervisor_en = of_property_read_bool(dev->of_node,
  789. msm_audio_ion_non_hyp);
  790. msm_audio_ion_data->is_non_hypervisor = is_non_hypervisor_en;
  791. smmu_enabled = of_property_read_bool(dev->of_node,
  792. msm_audio_ion_dt);
  793. msm_audio_ion_data->smmu_enabled = smmu_enabled;
  794. if (!smmu_enabled)
  795. dev_dbg(dev, "%s: SMMU is Disabled\n", __func__);
  796. #ifndef CONFIG_SPF_CORE
  797. q6_state = apr_get_q6_state();
  798. if (q6_state == APR_SUBSYS_DOWN) {
  799. dev_info(dev,
  800. "defering %s, adsp_state %d\n",
  801. __func__, q6_state);
  802. return -EPROBE_DEFER;
  803. }
  804. #endif
  805. dev_dbg(dev, "%s: adsp is ready\n", __func__);
  806. if (smmu_enabled) {
  807. msm_audio_ion_data->driver_name = "msm_audio_ion";
  808. rc = of_property_read_u32(dev->of_node,
  809. msm_audio_ion_smmu,
  810. &(msm_audio_ion_data->smmu_version));
  811. if (rc) {
  812. dev_err(dev,
  813. "%s: qcom,smmu_version missing in DT node\n",
  814. __func__);
  815. return rc;
  816. }
  817. dev_dbg(dev, "%s: SMMU is Enabled. SMMU version is (%d)",
  818. __func__, msm_audio_ion_data->smmu_version);
  819. /* Get SMMU SID information from Devicetree */
  820. rc = of_property_read_u64(dev->of_node,
  821. msm_audio_ion_smmu_sid_mask,
  822. &smmu_sid_mask);
  823. if (rc) {
  824. dev_err(dev,
  825. "%s: qcom,smmu-sid-mask missing in DT node, using default\n",
  826. __func__);
  827. smmu_sid_mask = 0xFFFFFFFFFFFFFFFF;
  828. }
  829. rc = of_parse_phandle_with_args(dev->of_node, "iommus",
  830. "#iommu-cells", 0, &iommuspec);
  831. if (rc)
  832. dev_err(dev, "%s: could not get smmu SID, ret = %d\n",
  833. __func__, rc);
  834. else
  835. smmu_sid = (iommuspec.args[0] & smmu_sid_mask);
  836. msm_audio_ion_data->smmu_sid_bits =
  837. smmu_sid << MSM_AUDIO_SMMU_SID_OFFSET;
  838. } else {
  839. msm_audio_ion_data->driver_name = "msm_audio_ion_cma";
  840. }
  841. if (!rc)
  842. msm_audio_ion_data->device_status |= MSM_AUDIO_ION_PROBED;
  843. msm_audio_ion_data->cb_dev = dev;
  844. dev_set_drvdata(dev, msm_audio_ion_data);
  845. if (!msm_audio_ion_fd_list_init) {
  846. INIT_LIST_HEAD(&msm_audio_ion_fd_list.fd_list);
  847. mutex_init(&(msm_audio_ion_fd_list.list_mutex));
  848. msm_audio_ion_fd_list_init = true;
  849. }
  850. INIT_LIST_HEAD(&msm_audio_ion_data->alloc_list);
  851. mutex_init(&(msm_audio_ion_data->list_mutex));
  852. rc = msm_audio_ion_reg_chrdev(msm_audio_ion_data);
  853. if (rc) {
  854. pr_err("%s register char dev failed, rc : %d", __func__, rc);
  855. return rc;
  856. }
  857. return rc;
  858. }
  859. static int msm_audio_ion_remove(struct platform_device *pdev)
  860. {
  861. struct msm_audio_ion_private *ion_data = dev_get_drvdata(&pdev->dev);
  862. ion_data->smmu_enabled = 0;
  863. ion_data->device_status = 0;
  864. msm_audio_ion_unreg_chrdev(ion_data);
  865. return 0;
  866. }
  867. static struct platform_driver msm_audio_ion_driver = {
  868. .driver = {
  869. .name = "msm-audio-ion",
  870. .owner = THIS_MODULE,
  871. .of_match_table = msm_audio_ion_dt_match,
  872. .suppress_bind_attrs = true,
  873. },
  874. .probe = msm_audio_ion_probe,
  875. .remove = msm_audio_ion_remove,
  876. };
  877. int __init msm_audio_ion_init(void)
  878. {
  879. pr_debug("%s: msm_audio_ion_init called \n",__func__);
  880. return platform_driver_register(&msm_audio_ion_driver);
  881. }
  882. void msm_audio_ion_exit(void)
  883. {
  884. platform_driver_unregister(&msm_audio_ion_driver);
  885. }
  886. module_init(msm_audio_ion_init);
  887. module_exit(msm_audio_ion_exit);
  888. MODULE_DESCRIPTION("MSM Audio ION module");
  889. MODULE_LICENSE("GPL v2");