msm_audio_ion_vm.c 24 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2013-2020, 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/iommu.h>
  16. #include <linux/platform_device.h>
  17. #include <linux/of_device.h>
  18. #include <linux/export.h>
  19. #include <linux/ion.h>
  20. #include <ipc/apr.h>
  21. #include <dsp/msm_audio_ion.h>
  22. #include <linux/habmm.h>
  23. #define MSM_AUDIO_ION_PROBED (1 << 0)
  24. #define MSM_AUDIO_ION_PHYS_ADDR(alloc_data) \
  25. alloc_data->table->sgl->dma_address
  26. #define MSM_AUDIO_SMMU_VM_CMD_MAP 0x00000001
  27. #define MSM_AUDIO_SMMU_VM_CMD_UNMAP 0x00000002
  28. #define MSM_AUDIO_SMMU_VM_HAB_MINOR_ID 1
  29. struct msm_audio_ion_private {
  30. bool smmu_enabled;
  31. struct device *cb_dev;
  32. struct device *cb_cma_dev;
  33. u8 device_status;
  34. struct list_head alloc_list;
  35. struct mutex list_mutex;
  36. };
  37. struct msm_audio_alloc_data {
  38. size_t len;
  39. void *vaddr;
  40. struct dma_buf *dma_buf;
  41. struct dma_buf_attachment *attach;
  42. struct sg_table *table;
  43. struct list_head list;
  44. u32 export_id;
  45. };
  46. struct msm_audio_smmu_vm_map_cmd {
  47. int cmd_id;
  48. u32 export_id;
  49. u32 buf_size;
  50. };
  51. struct msm_audio_smmu_vm_map_cmd_rsp {
  52. int status;
  53. u64 addr;
  54. };
  55. struct msm_audio_smmu_vm_unmap_cmd {
  56. int cmd_id;
  57. u32 export_id;
  58. };
  59. struct msm_audio_smmu_vm_unmap_cmd_rsp {
  60. int status;
  61. };
  62. static struct msm_audio_ion_private msm_audio_ion_data = {0,};
  63. static u32 msm_audio_ion_hab_handle;
  64. static void msm_audio_ion_add_allocation(
  65. struct msm_audio_ion_private *msm_audio_ion_data,
  66. struct msm_audio_alloc_data *alloc_data)
  67. {
  68. /*
  69. * Since these APIs can be invoked by multiple
  70. * clients, there is need to make sure the list
  71. * of allocations is always protected
  72. */
  73. mutex_lock(&(msm_audio_ion_data->list_mutex));
  74. list_add_tail(&(alloc_data->list),
  75. &(msm_audio_ion_data->alloc_list));
  76. mutex_unlock(&(msm_audio_ion_data->list_mutex));
  77. }
  78. static int msm_audio_dma_buf_map(struct dma_buf *dma_buf,
  79. dma_addr_t *addr, size_t *len,
  80. bool cma_mem)
  81. {
  82. struct msm_audio_alloc_data *alloc_data;
  83. struct device *cb_dev;
  84. unsigned long ionflag = 0;
  85. int rc = 0;
  86. if (cma_mem)
  87. cb_dev = msm_audio_ion_data.cb_cma_dev;
  88. else
  89. cb_dev = msm_audio_ion_data.cb_dev;
  90. /* Data required per buffer mapping */
  91. alloc_data = kzalloc(sizeof(*alloc_data), GFP_KERNEL);
  92. if (!alloc_data)
  93. return -ENOMEM;
  94. alloc_data->dma_buf = dma_buf;
  95. alloc_data->len = dma_buf->size;
  96. *len = dma_buf->size;
  97. /* Attach the dma_buf to context bank device */
  98. alloc_data->attach = dma_buf_attach(alloc_data->dma_buf,
  99. cb_dev);
  100. if (IS_ERR(alloc_data->attach)) {
  101. rc = PTR_ERR(alloc_data->attach);
  102. dev_err(cb_dev,
  103. "%s: Fail to attach dma_buf to CB, rc = %d\n",
  104. __func__, rc);
  105. goto free_alloc_data;
  106. }
  107. /* For uncached buffers, avoid cache maintanance */
  108. rc = dma_buf_get_flags(alloc_data->dma_buf, &ionflag);
  109. if (rc) {
  110. dev_err(cb_dev, "%s: dma_buf_get_flags failed: %d\n",
  111. __func__, rc);
  112. goto detach_dma_buf;
  113. }
  114. if (!(ionflag & ION_FLAG_CACHED))
  115. alloc_data->attach->dma_map_attrs |= DMA_ATTR_SKIP_CPU_SYNC;
  116. /*
  117. * Get the scatter-gather list.
  118. * There is no info as this is a write buffer or
  119. * read buffer, hence the request is bi-directional
  120. * to accommodate both read and write mappings.
  121. */
  122. alloc_data->table = dma_buf_map_attachment(alloc_data->attach,
  123. DMA_BIDIRECTIONAL);
  124. if (IS_ERR(alloc_data->table)) {
  125. rc = PTR_ERR(alloc_data->table);
  126. dev_err(cb_dev,
  127. "%s: Fail to map attachment, rc = %d\n",
  128. __func__, rc);
  129. goto detach_dma_buf;
  130. }
  131. /* physical address from mapping */
  132. *addr = MSM_AUDIO_ION_PHYS_ADDR(alloc_data);
  133. msm_audio_ion_add_allocation(&msm_audio_ion_data,
  134. alloc_data);
  135. return rc;
  136. detach_dma_buf:
  137. dma_buf_detach(alloc_data->dma_buf,
  138. alloc_data->attach);
  139. free_alloc_data:
  140. kfree(alloc_data);
  141. return rc;
  142. }
  143. static int msm_audio_dma_buf_unmap(struct dma_buf *dma_buf, bool cma_mem)
  144. {
  145. int rc = 0;
  146. struct msm_audio_alloc_data *alloc_data = NULL;
  147. struct list_head *ptr, *next;
  148. struct device *cb_dev;
  149. bool found = false;
  150. if (cma_mem)
  151. cb_dev = msm_audio_ion_data.cb_cma_dev;
  152. else
  153. cb_dev = msm_audio_ion_data.cb_dev;
  154. /*
  155. * Though list_for_each_safe is delete safe, lock
  156. * should be explicitly acquired to avoid race condition
  157. * on adding elements to the list.
  158. */
  159. mutex_lock(&(msm_audio_ion_data.list_mutex));
  160. list_for_each_safe(ptr, next,
  161. &(msm_audio_ion_data.alloc_list)) {
  162. alloc_data = list_entry(ptr, struct msm_audio_alloc_data,
  163. list);
  164. if (alloc_data->dma_buf == dma_buf) {
  165. found = true;
  166. dma_buf_unmap_attachment(alloc_data->attach,
  167. alloc_data->table,
  168. DMA_BIDIRECTIONAL);
  169. dma_buf_detach(alloc_data->dma_buf,
  170. alloc_data->attach);
  171. dma_buf_put(alloc_data->dma_buf);
  172. list_del(&(alloc_data->list));
  173. kfree(alloc_data);
  174. break;
  175. }
  176. }
  177. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  178. if (!found) {
  179. dev_err(cb_dev,
  180. "%s: cannot find allocation, dma_buf %pK",
  181. __func__, dma_buf);
  182. rc = -EINVAL;
  183. }
  184. return rc;
  185. }
  186. static int msm_audio_ion_smmu_map(struct dma_buf *dma_buf,
  187. dma_addr_t *paddr, size_t *len)
  188. {
  189. int rc;
  190. u32 export_id;
  191. u32 cmd_rsp_size;
  192. bool found = false;
  193. bool exported = false;
  194. struct msm_audio_smmu_vm_map_cmd smmu_map_cmd;
  195. struct msm_audio_smmu_vm_map_cmd_rsp cmd_rsp;
  196. struct msm_audio_alloc_data *alloc_data = NULL;
  197. unsigned long delay = jiffies + (HZ / 2);
  198. *len = dma_buf->size;
  199. mutex_lock(&(msm_audio_ion_data.list_mutex));
  200. list_for_each_entry(alloc_data, &(msm_audio_ion_data.alloc_list),
  201. list) {
  202. if (alloc_data->dma_buf == dma_buf) {
  203. found = true;
  204. /* Export the buffer to physical VM */
  205. rc = habmm_export(msm_audio_ion_hab_handle, dma_buf, *len,
  206. &export_id, HABMM_EXPIMP_FLAGS_DMABUF);
  207. if (rc) {
  208. pr_err("%s: habmm_export failed dma_buf = %pK, len = %zd, rc = %d\n",
  209. __func__, dma_buf, *len, rc);
  210. goto err;
  211. }
  212. exported = true;
  213. smmu_map_cmd.cmd_id = MSM_AUDIO_SMMU_VM_CMD_MAP;
  214. smmu_map_cmd.export_id = export_id;
  215. smmu_map_cmd.buf_size = *len;
  216. rc = habmm_socket_send(msm_audio_ion_hab_handle,
  217. (void *)&smmu_map_cmd, sizeof(smmu_map_cmd), 0);
  218. if (rc) {
  219. pr_err("%s: habmm_socket_send failed %d\n",
  220. __func__, rc);
  221. goto err;
  222. }
  223. do {
  224. cmd_rsp_size = sizeof(cmd_rsp);
  225. rc = habmm_socket_recv(msm_audio_ion_hab_handle,
  226. (void *)&cmd_rsp,
  227. &cmd_rsp_size,
  228. 0xFFFFFFFF,
  229. 0);
  230. } while (time_before(jiffies, delay) && (rc == -EINTR) &&
  231. (cmd_rsp_size == 0));
  232. if (rc) {
  233. pr_err("%s: habmm_socket_recv failed %d\n",
  234. __func__, rc);
  235. goto err;
  236. }
  237. if (cmd_rsp_size != sizeof(cmd_rsp)) {
  238. pr_err("%s: invalid size for cmd rsp %u, expected %zu\n",
  239. __func__, cmd_rsp_size, sizeof(cmd_rsp));
  240. rc = -EIO;
  241. goto err;
  242. }
  243. if (cmd_rsp.status) {
  244. pr_err("%s: SMMU map command failed %d\n",
  245. __func__, cmd_rsp.status);
  246. rc = cmd_rsp.status;
  247. goto err;
  248. }
  249. *paddr = (dma_addr_t)cmd_rsp.addr;
  250. alloc_data->export_id = export_id;
  251. break;
  252. }
  253. }
  254. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  255. if (!found) {
  256. pr_err("%s: cannot find allocation, dma_buf %pK", __func__, dma_buf);
  257. return -EINVAL;
  258. }
  259. return 0;
  260. err:
  261. if (exported)
  262. (void)habmm_unexport(msm_audio_ion_hab_handle, export_id, 0);
  263. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  264. return rc;
  265. }
  266. static int msm_audio_ion_smmu_unmap(struct dma_buf *dma_buf)
  267. {
  268. int rc;
  269. bool found = false;
  270. u32 cmd_rsp_size;
  271. struct msm_audio_smmu_vm_unmap_cmd smmu_unmap_cmd;
  272. struct msm_audio_smmu_vm_unmap_cmd_rsp cmd_rsp;
  273. struct msm_audio_alloc_data *alloc_data, *next;
  274. unsigned long delay = jiffies + (HZ / 2);
  275. /*
  276. * Though list_for_each_entry_safe is delete safe, lock
  277. * should be explicitly acquired to avoid race condition
  278. * on adding elements to the list.
  279. */
  280. mutex_lock(&(msm_audio_ion_data.list_mutex));
  281. list_for_each_entry_safe(alloc_data, next,
  282. &(msm_audio_ion_data.alloc_list), list) {
  283. if (alloc_data->dma_buf == dma_buf) {
  284. found = true;
  285. smmu_unmap_cmd.cmd_id = MSM_AUDIO_SMMU_VM_CMD_UNMAP;
  286. smmu_unmap_cmd.export_id = alloc_data->export_id;
  287. rc = habmm_socket_send(msm_audio_ion_hab_handle,
  288. (void *)&smmu_unmap_cmd,
  289. sizeof(smmu_unmap_cmd), 0);
  290. if (rc) {
  291. pr_err("%s: habmm_socket_send failed %d\n",
  292. __func__, rc);
  293. goto err;
  294. }
  295. do {
  296. cmd_rsp_size = sizeof(cmd_rsp);
  297. rc = habmm_socket_recv(msm_audio_ion_hab_handle,
  298. (void *)&cmd_rsp,
  299. &cmd_rsp_size,
  300. 0xFFFFFFFF,
  301. 0);
  302. } while (time_before(jiffies, delay) &&
  303. (rc == -EINTR) && (cmd_rsp_size == 0));
  304. if (rc) {
  305. pr_err("%s: habmm_socket_recv failed %d\n",
  306. __func__, rc);
  307. goto err;
  308. }
  309. if (cmd_rsp_size != sizeof(cmd_rsp)) {
  310. pr_err("%s: invalid size for cmd rsp %u\n",
  311. __func__, cmd_rsp_size);
  312. rc = -EIO;
  313. goto err;
  314. }
  315. if (cmd_rsp.status) {
  316. pr_err("%s: SMMU unmap command failed %d\n",
  317. __func__, cmd_rsp.status);
  318. rc = cmd_rsp.status;
  319. goto err;
  320. }
  321. rc = habmm_unexport(msm_audio_ion_hab_handle,
  322. alloc_data->export_id, 0xFFFFFFFF);
  323. if (rc) {
  324. pr_err("%s: habmm_unexport failed export_id = %d, rc = %d\n",
  325. __func__, alloc_data->export_id, rc);
  326. }
  327. break;
  328. }
  329. }
  330. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  331. if (!found) {
  332. pr_err("%s: cannot find allocation, dma_buf %pK\n", __func__, dma_buf);
  333. rc = -EINVAL;
  334. }
  335. return rc;
  336. err:
  337. if (found) {
  338. (void)habmm_unexport(msm_audio_ion_hab_handle,
  339. alloc_data->export_id, 0xFFFFFFFF);
  340. list_del(&(alloc_data->list));
  341. kfree(alloc_data);
  342. }
  343. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  344. return rc;
  345. }
  346. static int msm_audio_ion_get_phys(struct dma_buf *dma_buf,
  347. dma_addr_t *addr, size_t *len)
  348. {
  349. int rc = 0;
  350. rc = msm_audio_dma_buf_map(dma_buf, addr, len, false);
  351. if (rc) {
  352. pr_err("%s: failed to map DMA buf, err = %d\n",
  353. __func__, rc);
  354. goto err;
  355. }
  356. pr_debug("phys=%pK, len=%zd, rc=%d\n", &(*addr), *len, rc);
  357. err:
  358. return rc;
  359. }
  360. static void *msm_audio_ion_map_kernel(struct dma_buf *dma_buf)
  361. {
  362. int rc = 0;
  363. void *addr = NULL;
  364. struct msm_audio_alloc_data *alloc_data = NULL;
  365. rc = dma_buf_begin_cpu_access(dma_buf, DMA_BIDIRECTIONAL);
  366. if (rc) {
  367. pr_err("%s: kmap dma_buf_begin_cpu_access fail\n", __func__);
  368. goto exit;
  369. }
  370. addr = dma_buf_vmap(dma_buf);
  371. if (!addr) {
  372. pr_err("%s: kernel mapping of dma_buf failed\n",
  373. __func__);
  374. goto exit;
  375. }
  376. /*
  377. * TBD: remove the below section once new API
  378. * for mapping kernel virtual address is available.
  379. */
  380. mutex_lock(&(msm_audio_ion_data.list_mutex));
  381. list_for_each_entry(alloc_data, &(msm_audio_ion_data.alloc_list),
  382. list) {
  383. if (alloc_data->dma_buf == dma_buf) {
  384. alloc_data->vaddr = addr;
  385. break;
  386. }
  387. }
  388. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  389. exit:
  390. return addr;
  391. }
  392. static int msm_audio_ion_unmap_kernel(struct dma_buf *dma_buf)
  393. {
  394. int rc = 0;
  395. void *vaddr = NULL;
  396. struct msm_audio_alloc_data *alloc_data = NULL;
  397. struct device *cb_dev = msm_audio_ion_data.cb_dev;
  398. /*
  399. * TBD: remove the below section once new API
  400. * for unmapping kernel virtual address is available.
  401. */
  402. mutex_lock(&(msm_audio_ion_data.list_mutex));
  403. list_for_each_entry(alloc_data, &(msm_audio_ion_data.alloc_list),
  404. list) {
  405. if (alloc_data->dma_buf == dma_buf) {
  406. vaddr = alloc_data->vaddr;
  407. break;
  408. }
  409. }
  410. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  411. if (!vaddr) {
  412. dev_err(cb_dev,
  413. "%s: cannot find allocation for dma_buf %pK",
  414. __func__, dma_buf);
  415. rc = -EINVAL;
  416. goto err;
  417. }
  418. dma_buf_vunmap(dma_buf, vaddr);
  419. rc = dma_buf_end_cpu_access(dma_buf, DMA_BIDIRECTIONAL);
  420. if (rc) {
  421. dev_err(cb_dev, "%s: kmap dma_buf_end_cpu_access fail\n",
  422. __func__);
  423. goto err;
  424. }
  425. err:
  426. return rc;
  427. }
  428. static int msm_audio_ion_map_buf(struct dma_buf *dma_buf, dma_addr_t *paddr,
  429. size_t *plen, void **vaddr)
  430. {
  431. int rc = 0;
  432. rc = msm_audio_ion_get_phys(dma_buf, paddr, plen);
  433. if (rc) {
  434. pr_err("%s: ION Get Physical for AUDIO failed, rc = %d\n",
  435. __func__, rc);
  436. dma_buf_put(dma_buf);
  437. goto err;
  438. }
  439. *vaddr = msm_audio_ion_map_kernel(dma_buf);
  440. if (IS_ERR_OR_NULL(*vaddr)) {
  441. pr_err("%s: ION memory mapping for AUDIO failed\n", __func__);
  442. rc = -ENOMEM;
  443. msm_audio_dma_buf_unmap(dma_buf, false);
  444. goto err;
  445. }
  446. if (msm_audio_ion_data.smmu_enabled) {
  447. rc = msm_audio_ion_smmu_map(dma_buf, paddr, plen);
  448. if (rc) {
  449. pr_err("%s: failed to do smmu map, err = %d\n",
  450. __func__, rc);
  451. msm_audio_dma_buf_unmap(dma_buf, false);
  452. goto err;
  453. }
  454. }
  455. err:
  456. return rc;
  457. }
  458. /**
  459. * msm_audio_ion_alloc -
  460. * Allocs ION memory for given client name
  461. *
  462. * @dma_buf: dma_buf for the ION memory
  463. * @bufsz: buffer size
  464. * @paddr: Physical address to be assigned with allocated region
  465. * @plen: length of allocated region to be assigned
  466. * vaddr: virtual address to be assigned
  467. *
  468. * Returns 0 on success or error on failure
  469. */
  470. int msm_audio_ion_alloc(struct dma_buf **dma_buf, size_t bufsz,
  471. dma_addr_t *paddr, size_t *plen, void **vaddr)
  472. {
  473. int rc = -EINVAL;
  474. unsigned long err_ion_ptr = 0;
  475. if (!(msm_audio_ion_data.device_status & MSM_AUDIO_ION_PROBED)) {
  476. pr_debug("%s:probe is not done, deferred\n", __func__);
  477. return -EPROBE_DEFER;
  478. }
  479. if (!dma_buf || !paddr || !vaddr || !bufsz || !plen) {
  480. pr_err("%s: Invalid params\n", __func__);
  481. return -EINVAL;
  482. }
  483. if (msm_audio_ion_data.smmu_enabled == true) {
  484. pr_debug("%s: system heap is used\n", __func__);
  485. *dma_buf = ion_alloc(bufsz, ION_HEAP(ION_SYSTEM_HEAP_ID), 0);
  486. } else {
  487. pr_debug("%s: audio heap is used\n", __func__);
  488. *dma_buf = ion_alloc(bufsz, ION_HEAP(ION_AUDIO_HEAP_ID), 0);
  489. }
  490. if (IS_ERR_OR_NULL((void *)(*dma_buf))) {
  491. if (IS_ERR((void *)(*dma_buf)))
  492. err_ion_ptr = PTR_ERR((int *)(*dma_buf));
  493. pr_err("%s: ION alloc fail err ptr=%ld, smmu_enabled=%d\n",
  494. __func__, err_ion_ptr, msm_audio_ion_data.smmu_enabled);
  495. rc = -ENOMEM;
  496. goto err;
  497. }
  498. rc = msm_audio_ion_map_buf(*dma_buf, paddr, plen, vaddr);
  499. if (rc) {
  500. pr_err("%s: failed to map ION buf, rc = %d\n", __func__, rc);
  501. goto err_dma_buf;
  502. }
  503. pr_debug("%s: mapped address = %pK, size=%zd\n", __func__,
  504. *vaddr, bufsz);
  505. memset(*vaddr, 0, bufsz);
  506. return rc;
  507. err_dma_buf:
  508. dma_buf_put(*dma_buf);
  509. err:
  510. return rc;
  511. }
  512. EXPORT_SYMBOL(msm_audio_ion_alloc);
  513. int msm_audio_ion_phys_free(void *handle,
  514. dma_addr_t *paddr,
  515. size_t *pa_len,
  516. u8 assign_type,
  517. int id,
  518. int key)
  519. {
  520. handle = NULL;
  521. return 0;
  522. }
  523. EXPORT_SYMBOL(msm_audio_ion_phys_free);
  524. int msm_audio_ion_phys_assign(void **handle, int fd,
  525. dma_addr_t *paddr, size_t *pa_len, u8 assign_type, int id)
  526. {
  527. *handle = NULL;
  528. return 0;
  529. }
  530. EXPORT_SYMBOL(msm_audio_ion_phys_assign);
  531. bool msm_audio_is_hypervisor_supported(void)
  532. {
  533. return false;
  534. }
  535. EXPORT_SYMBOL(msm_audio_is_hypervisor_supported);
  536. /**
  537. * msm_audio_ion_import-
  538. * Import ION buffer with given file descriptor
  539. *
  540. * @dma_buf: dma_buf for the ION memory
  541. * @fd: file descriptor for the ION memory
  542. * @ionflag: flags associated with ION buffer
  543. * @bufsz: buffer size
  544. * @paddr: Physical address to be assigned with allocated region
  545. * @plen: length of allocated region to be assigned
  546. * @vaddr: virtual address to be assigned
  547. *
  548. * Returns 0 on success or error on failure
  549. */
  550. int msm_audio_ion_import(struct dma_buf **dma_buf, int fd,
  551. unsigned long *ionflag, size_t bufsz,
  552. dma_addr_t *paddr, size_t *plen, void **vaddr)
  553. {
  554. int rc = 0;
  555. if (!(msm_audio_ion_data.device_status & MSM_AUDIO_ION_PROBED)) {
  556. pr_debug("%s: probe is not done, deferred\n", __func__);
  557. return -EPROBE_DEFER;
  558. }
  559. if (!dma_buf || !paddr || !vaddr || !plen) {
  560. pr_err("%s: Invalid params\n", __func__);
  561. return -EINVAL;
  562. }
  563. /* bufsz should be 0 and fd shouldn't be 0 as of now */
  564. *dma_buf = dma_buf_get(fd);
  565. pr_debug("%s: dma_buf =%pK, fd=%d\n", __func__, *dma_buf, fd);
  566. if (IS_ERR_OR_NULL((void *)(*dma_buf))) {
  567. pr_err("%s: dma_buf_get failed\n", __func__);
  568. rc = -EINVAL;
  569. goto err;
  570. }
  571. if (ionflag != NULL) {
  572. rc = dma_buf_get_flags(*dma_buf, ionflag);
  573. if (rc) {
  574. pr_err("%s: could not get flags for the dma_buf\n",
  575. __func__);
  576. goto err_ion_flag;
  577. }
  578. }
  579. rc = msm_audio_ion_map_buf(*dma_buf, paddr, plen, vaddr);
  580. if (rc) {
  581. pr_err("%s: failed to map ION buf, rc = %d\n", __func__, rc);
  582. goto err;
  583. }
  584. pr_debug("%s: mapped address = %pK, size=%zd\n", __func__,
  585. *vaddr, bufsz);
  586. return 0;
  587. err_ion_flag:
  588. dma_buf_put(*dma_buf);
  589. err:
  590. *dma_buf = NULL;
  591. return rc;
  592. }
  593. EXPORT_SYMBOL(msm_audio_ion_import);
  594. /**
  595. * msm_audio_ion_import_cma-
  596. * Import ION buffer with given file descriptor
  597. *
  598. * @dma_buf: dma_buf for the ION memory
  599. * @fd: file descriptor for the ION memory
  600. * @ionflag: flags associated with ION buffer
  601. * @bufsz: buffer size
  602. * @paddr: Physical address to be assigned with allocated region
  603. * @plen: length of allocated region to be assigned
  604. * @vaddr: virtual address to be assigned
  605. *
  606. * Returns 0 on success or error on failure
  607. */
  608. int msm_audio_ion_import_cma(struct dma_buf **dma_buf, int fd,
  609. unsigned long *ionflag, size_t bufsz,
  610. dma_addr_t *paddr, size_t *plen, void **vaddr)
  611. {
  612. int rc = 0;
  613. if (!(msm_audio_ion_data.device_status & MSM_AUDIO_ION_PROBED)) {
  614. pr_debug("%s: probe is not done, deferred\n", __func__);
  615. return -EPROBE_DEFER;
  616. }
  617. if (!dma_buf || !paddr || !vaddr || !plen ||
  618. !msm_audio_ion_data.cb_cma_dev) {
  619. pr_err("%s: Invalid params\n", __func__);
  620. return -EINVAL;
  621. }
  622. /* bufsz should be 0 and fd shouldn't be 0 as of now */
  623. *dma_buf = dma_buf_get(fd);
  624. pr_debug("%s: dma_buf =%pK, fd=%d\n", __func__, *dma_buf, fd);
  625. if (IS_ERR_OR_NULL((void *)(*dma_buf))) {
  626. pr_err("%s: dma_buf_get failed\n", __func__);
  627. rc = -EINVAL;
  628. goto err;
  629. }
  630. if (ionflag != NULL) {
  631. rc = dma_buf_get_flags(*dma_buf, ionflag);
  632. if (rc) {
  633. pr_err("%s: could not get flags for the dma_buf\n",
  634. __func__);
  635. goto err_ion_flag;
  636. }
  637. }
  638. msm_audio_dma_buf_map(*dma_buf, paddr, plen, true);
  639. return 0;
  640. err_ion_flag:
  641. dma_buf_put(*dma_buf);
  642. err:
  643. *dma_buf = NULL;
  644. return rc;
  645. }
  646. EXPORT_SYMBOL(msm_audio_ion_import_cma);
  647. /**
  648. * msm_audio_ion_free -
  649. * fress ION memory for given client and handle
  650. *
  651. * @dma_buf: dma_buf for the ION memory
  652. *
  653. * Returns 0 on success or error on failure
  654. */
  655. int msm_audio_ion_free(struct dma_buf *dma_buf)
  656. {
  657. int ret = 0;
  658. if (!dma_buf) {
  659. pr_err("%s: dma_buf invalid\n", __func__);
  660. return -EINVAL;
  661. }
  662. ret = msm_audio_ion_unmap_kernel(dma_buf);
  663. if (ret)
  664. return ret;
  665. if (msm_audio_ion_data.smmu_enabled) {
  666. ret = msm_audio_ion_smmu_unmap(dma_buf);
  667. if (ret)
  668. pr_err("%s: smmu unmap failed with ret %d\n",
  669. __func__, ret);
  670. }
  671. msm_audio_dma_buf_unmap(dma_buf, false);
  672. return 0;
  673. }
  674. EXPORT_SYMBOL(msm_audio_ion_free);
  675. /**
  676. * msm_audio_ion_free_cma -
  677. * fress ION memory for given client and handle
  678. *
  679. * @dma_buf: dma_buf for the ION memory
  680. *
  681. * Returns 0 on success or error on failure
  682. */
  683. int msm_audio_ion_free_cma(struct dma_buf *dma_buf)
  684. {
  685. if (!dma_buf) {
  686. pr_err("%s: dma_buf invalid\n", __func__);
  687. return -EINVAL;
  688. }
  689. msm_audio_dma_buf_unmap(dma_buf, true);
  690. return 0;
  691. }
  692. EXPORT_SYMBOL(msm_audio_ion_free_cma);
  693. /**
  694. * msm_audio_ion_mmap -
  695. * Audio ION memory map
  696. *
  697. * @abuff: audio buf pointer
  698. * @vma: virtual mem area
  699. *
  700. * Returns 0 on success or error on failure
  701. */
  702. int msm_audio_ion_mmap(struct audio_buffer *abuff,
  703. struct vm_area_struct *vma)
  704. {
  705. struct msm_audio_alloc_data *alloc_data = NULL;
  706. struct sg_table *table;
  707. unsigned long addr = vma->vm_start;
  708. unsigned long offset = vma->vm_pgoff * PAGE_SIZE;
  709. struct scatterlist *sg;
  710. unsigned int i;
  711. struct page *page;
  712. int ret = 0;
  713. bool found = false;
  714. struct device *cb_dev = msm_audio_ion_data.cb_dev;
  715. mutex_lock(&(msm_audio_ion_data.list_mutex));
  716. list_for_each_entry(alloc_data, &(msm_audio_ion_data.alloc_list),
  717. list) {
  718. if (alloc_data->dma_buf == abuff->dma_buf) {
  719. found = true;
  720. table = alloc_data->table;
  721. break;
  722. }
  723. }
  724. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  725. if (!found) {
  726. dev_err(cb_dev,
  727. "%s: cannot find allocation, dma_buf %pK",
  728. __func__, abuff->dma_buf);
  729. return -EINVAL;
  730. }
  731. /* uncached */
  732. vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
  733. /* We need to check if a page is associated with this sg list because:
  734. * If the allocation came from a carveout we currently don't have
  735. * pages associated with carved out memory. This might change in the
  736. * future and we can remove this check and the else statement.
  737. */
  738. page = sg_page(table->sgl);
  739. if (page) {
  740. pr_debug("%s: page is NOT null\n", __func__);
  741. for_each_sg(table->sgl, sg, table->nents, i) {
  742. unsigned long remainder = vma->vm_end - addr;
  743. unsigned long len = sg->length;
  744. page = sg_page(sg);
  745. if (offset >= len) {
  746. offset -= len;
  747. continue;
  748. } else if (offset) {
  749. page += offset / PAGE_SIZE;
  750. len -= offset;
  751. offset = 0;
  752. }
  753. len = min(len, remainder);
  754. pr_debug("vma=%pK, addr=%x len=%ld vm_start=%x vm_end=%x vm_page_prot=%lu\n",
  755. vma, (unsigned int)addr, len,
  756. (unsigned int)vma->vm_start,
  757. (unsigned int)vma->vm_end,
  758. (unsigned long)pgprot_val(vma->vm_page_prot));
  759. remap_pfn_range(vma, addr, page_to_pfn(page), len,
  760. vma->vm_page_prot);
  761. addr += len;
  762. if (addr >= vma->vm_end)
  763. return 0;
  764. }
  765. } else {
  766. pr_debug("%s: page is NULL\n", __func__);
  767. ret = -EINVAL;
  768. }
  769. return ret;
  770. }
  771. EXPORT_SYMBOL(msm_audio_ion_mmap);
  772. /**
  773. * msm_audio_populate_upper_32_bits -
  774. * retrieve upper 32bits of 64bit address
  775. *
  776. * @pa: 64bit physical address
  777. *
  778. */
  779. u32 msm_audio_populate_upper_32_bits(dma_addr_t pa)
  780. {
  781. return upper_32_bits(pa);
  782. }
  783. EXPORT_SYMBOL(msm_audio_populate_upper_32_bits);
  784. static const struct of_device_id msm_audio_ion_dt_match[] = {
  785. { .compatible = "qcom,msm-audio-ion" },
  786. { .compatible = "qcom,msm-audio-ion-cma"},
  787. { }
  788. };
  789. MODULE_DEVICE_TABLE(of, msm_audio_ion_dt_match);
  790. static int msm_audio_ion_probe(struct platform_device *pdev)
  791. {
  792. int rc = 0;
  793. const char *msm_audio_ion_dt = "qcom,smmu-enabled";
  794. bool smmu_enabled;
  795. struct device *dev = &pdev->dev;
  796. if (dev->of_node == NULL) {
  797. dev_err(dev,
  798. "%s: device tree is not found\n",
  799. __func__);
  800. msm_audio_ion_data.smmu_enabled = 0;
  801. return 0;
  802. }
  803. if (of_device_is_compatible(dev->of_node, "qcom,msm-audio-ion-cma")) {
  804. msm_audio_ion_data.cb_cma_dev = dev;
  805. return 0;
  806. }
  807. smmu_enabled = of_property_read_bool(dev->of_node,
  808. msm_audio_ion_dt);
  809. msm_audio_ion_data.smmu_enabled = smmu_enabled;
  810. if (!smmu_enabled) {
  811. dev_dbg(dev, "%s: SMMU is Disabled\n", __func__);
  812. goto exit;
  813. }
  814. rc = habmm_socket_open(&msm_audio_ion_hab_handle,
  815. HAB_MMID_CREATE(MM_AUD_3,
  816. MSM_AUDIO_SMMU_VM_HAB_MINOR_ID),
  817. 0xFFFFFFFF,
  818. HABMM_SOCKET_OPEN_FLAGS_SINGLE_BE_SINGLE_FE);
  819. if (rc) {
  820. dev_err(dev, "%s: habmm_socket_open failed %d\n",
  821. __func__, rc);
  822. return rc;
  823. }
  824. dev_info(dev, "%s: msm_audio_ion_hab_handle %x\n",
  825. __func__, msm_audio_ion_hab_handle);
  826. INIT_LIST_HEAD(&msm_audio_ion_data.alloc_list);
  827. mutex_init(&(msm_audio_ion_data.list_mutex));
  828. exit:
  829. if (!rc)
  830. msm_audio_ion_data.device_status |= MSM_AUDIO_ION_PROBED;
  831. msm_audio_ion_data.cb_dev = dev;
  832. return rc;
  833. }
  834. static int msm_audio_ion_remove(struct platform_device *pdev)
  835. {
  836. if (msm_audio_ion_data.smmu_enabled) {
  837. if (msm_audio_ion_hab_handle)
  838. habmm_socket_close(msm_audio_ion_hab_handle);
  839. mutex_destroy(&(msm_audio_ion_data.list_mutex));
  840. }
  841. msm_audio_ion_data.smmu_enabled = 0;
  842. msm_audio_ion_data.device_status = 0;
  843. return 0;
  844. }
  845. static struct platform_driver msm_audio_ion_driver = {
  846. .driver = {
  847. .name = "msm-audio-ion",
  848. .owner = THIS_MODULE,
  849. .of_match_table = msm_audio_ion_dt_match,
  850. },
  851. .probe = msm_audio_ion_probe,
  852. .remove = msm_audio_ion_remove,
  853. };
  854. int __init msm_audio_ion_init(void)
  855. {
  856. return platform_driver_register(&msm_audio_ion_driver);
  857. }
  858. void msm_audio_ion_exit(void)
  859. {
  860. platform_driver_unregister(&msm_audio_ion_driver);
  861. }
  862. MODULE_DESCRIPTION("MSM Audio ION VM module");
  863. MODULE_LICENSE("GPL v2");