msm_audio_ion.c 24 KB

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