msm_audio_ion.c 26 KB

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