msm_audio_ion.c 26 KB

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