msm_audio_ion.c 25 KB

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