msm_audio_ion.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926
  1. /*
  2. * Copyright (c) 2013-2017, The Linux Foundation. All rights reserved.
  3. *
  4. * This program is free software; you can redistribute it and/or modify
  5. * it under the terms of the GNU General Public License version 2 and
  6. * only version 2 as published by the Free Software Foundation.
  7. *
  8. * This program is distributed in the hope that it will be useful,
  9. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  10. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  11. * GNU General Public License for more details.
  12. */
  13. #include <linux/init.h>
  14. #include <linux/kernel.h>
  15. #include <linux/module.h>
  16. #include <linux/err.h>
  17. #include <linux/delay.h>
  18. #include <linux/slab.h>
  19. #include <linux/mutex.h>
  20. #include <linux/list.h>
  21. #include <linux/dma-mapping.h>
  22. #include <linux/dma-buf.h>
  23. #include <linux/iommu.h>
  24. #include <linux/platform_device.h>
  25. #include <ipc/apr.h>
  26. #include <linux/of_device.h>
  27. #include <linux/export.h>
  28. #include <asm/dma-iommu.h>
  29. #include <dsp/msm_audio_ion.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_ION_VA_START 0x10000000
  34. #define MSM_AUDIO_ION_VA_LEN 0x0FFFFFFF
  35. #define MSM_AUDIO_SMMU_SID_OFFSET 32
  36. struct msm_audio_ion_private {
  37. bool smmu_enabled;
  38. bool audioheap_enabled;
  39. struct device *cb_dev;
  40. struct dma_iommu_mapping *mapping;
  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. };
  47. struct msm_audio_alloc_data {
  48. struct ion_client *client;
  49. struct ion_handle *handle;
  50. size_t len;
  51. struct dma_buf *dma_buf;
  52. struct dma_buf_attachment *attach;
  53. struct sg_table *table;
  54. struct list_head list;
  55. };
  56. static struct msm_audio_ion_private msm_audio_ion_data = {0,};
  57. static int msm_audio_ion_get_phys(struct ion_client *client,
  58. struct ion_handle *handle,
  59. ion_phys_addr_t *addr, size_t *len);
  60. static int msm_audio_dma_buf_map(struct ion_client *client,
  61. struct ion_handle *handle,
  62. ion_phys_addr_t *addr, size_t *len);
  63. static int msm_audio_dma_buf_unmap(struct ion_client *client,
  64. struct ion_handle *handle);
  65. static void msm_audio_ion_add_allocation(
  66. struct msm_audio_ion_private *msm_audio_ion_data,
  67. struct msm_audio_alloc_data *alloc_data)
  68. {
  69. /*
  70. * Since these APIs can be invoked by multiple
  71. * clients, there is need to make sure the list
  72. * of allocations is always protected
  73. */
  74. mutex_lock(&(msm_audio_ion_data->list_mutex));
  75. list_add_tail(&(alloc_data->list),
  76. &(msm_audio_ion_data->alloc_list));
  77. mutex_unlock(&(msm_audio_ion_data->list_mutex));
  78. }
  79. /**
  80. * msm_audio_ion_alloc -
  81. * Allocs ION memory for given client name
  82. *
  83. * @name: Name of audio ION client
  84. * @client: ION client to be assigned
  85. * @handle: ION handle to be assigned
  86. * @bufsz: buffer size
  87. * @paddr: Physical address to be assigned with allocated region
  88. * @pa_len: length of allocated region to be assigned
  89. * vaddr: virtual address to be assigned
  90. *
  91. * Returns 0 on success or error on failure
  92. */
  93. int msm_audio_ion_alloc(const char *name, struct ion_client **client,
  94. struct ion_handle **handle, size_t bufsz,
  95. ion_phys_addr_t *paddr, size_t *pa_len, void **vaddr)
  96. {
  97. int rc = -EINVAL;
  98. unsigned long err_ion_ptr = 0;
  99. if ((msm_audio_ion_data.smmu_enabled == true) &&
  100. !(msm_audio_ion_data.device_status & MSM_AUDIO_ION_PROBED)) {
  101. pr_debug("%s:probe is not done, deferred\n", __func__);
  102. return -EPROBE_DEFER;
  103. }
  104. if (!name || !client || !handle || !paddr || !vaddr
  105. || !bufsz || !pa_len) {
  106. pr_err("%s: Invalid params\n", __func__);
  107. return -EINVAL;
  108. }
  109. *client = msm_audio_ion_client_create(name);
  110. if (IS_ERR_OR_NULL((void *)(*client))) {
  111. pr_err("%s: ION create client for AUDIO failed\n", __func__);
  112. goto err;
  113. }
  114. *handle = ion_alloc(*client, bufsz, SZ_4K,
  115. ION_HEAP(ION_AUDIO_HEAP_ID), 0);
  116. if (IS_ERR_OR_NULL((void *) (*handle))) {
  117. if (msm_audio_ion_data.smmu_enabled == true) {
  118. pr_debug("system heap is used");
  119. msm_audio_ion_data.audioheap_enabled = 0;
  120. *handle = ion_alloc(*client, bufsz, SZ_4K,
  121. ION_HEAP(ION_SYSTEM_HEAP_ID), 0);
  122. }
  123. if (IS_ERR_OR_NULL((void *) (*handle))) {
  124. if (IS_ERR((void *)(*handle)))
  125. err_ion_ptr = PTR_ERR((int *)(*handle));
  126. pr_err("%s:ION alloc fail err ptr=%ld, smmu_enabled=%d\n",
  127. __func__, err_ion_ptr, msm_audio_ion_data.smmu_enabled);
  128. rc = -ENOMEM;
  129. goto err_ion_client;
  130. }
  131. } else {
  132. pr_debug("audio heap is used");
  133. msm_audio_ion_data.audioheap_enabled = 1;
  134. }
  135. rc = msm_audio_ion_get_phys(*client, *handle, paddr, pa_len);
  136. if (rc) {
  137. pr_err("%s: ION Get Physical for AUDIO failed, rc = %d\n",
  138. __func__, rc);
  139. goto err_ion_handle;
  140. }
  141. *vaddr = ion_map_kernel(*client, *handle);
  142. if (IS_ERR_OR_NULL((void *)*vaddr)) {
  143. pr_err("%s: ION memory mapping for AUDIO failed\n", __func__);
  144. goto err_ion_handle;
  145. }
  146. pr_debug("%s: mapped address = %pK, size=%zd\n", __func__,
  147. *vaddr, bufsz);
  148. if (bufsz != 0) {
  149. pr_debug("%s: memset to 0 %pK %zd\n", __func__, *vaddr, bufsz);
  150. memset((void *)*vaddr, 0, bufsz);
  151. }
  152. return rc;
  153. err_ion_handle:
  154. ion_free(*client, *handle);
  155. err_ion_client:
  156. msm_audio_ion_client_destroy(*client);
  157. *handle = NULL;
  158. *client = NULL;
  159. err:
  160. return rc;
  161. }
  162. EXPORT_SYMBOL(msm_audio_ion_alloc);
  163. int msm_audio_ion_import(const char *name, struct ion_client **client,
  164. struct ion_handle **handle, int fd,
  165. unsigned long *ionflag, size_t bufsz,
  166. ion_phys_addr_t *paddr, size_t *pa_len, void **vaddr)
  167. {
  168. int rc = 0;
  169. if ((msm_audio_ion_data.smmu_enabled == true) &&
  170. !(msm_audio_ion_data.device_status & MSM_AUDIO_ION_PROBED)) {
  171. pr_debug("%s:probe is not done, deferred\n", __func__);
  172. return -EPROBE_DEFER;
  173. }
  174. if (!name || !client || !handle || !paddr || !vaddr || !pa_len) {
  175. pr_err("%s: Invalid params\n", __func__);
  176. rc = -EINVAL;
  177. goto err;
  178. }
  179. *client = msm_audio_ion_client_create(name);
  180. if (IS_ERR_OR_NULL((void *)(*client))) {
  181. pr_err("%s: ION create client for AUDIO failed\n", __func__);
  182. rc = -EINVAL;
  183. goto err;
  184. }
  185. /* name should be audio_acdb_client or Audio_Dec_Client,
  186. * bufsz should be 0 and fd shouldn't be 0 as of now
  187. */
  188. *handle = ion_import_dma_buf_fd(*client, fd);
  189. pr_debug("%s: DMA Buf name=%s, fd=%d handle=%pK\n", __func__,
  190. name, fd, *handle);
  191. if (IS_ERR_OR_NULL((void *) (*handle))) {
  192. pr_err("%s: ion import dma buffer failed\n",
  193. __func__);
  194. rc = -EINVAL;
  195. goto err_destroy_client;
  196. }
  197. if (ionflag != NULL) {
  198. rc = ion_handle_get_flags(*client, *handle, ionflag);
  199. if (rc) {
  200. pr_err("%s: could not get flags for the handle\n",
  201. __func__);
  202. goto err_ion_handle;
  203. }
  204. }
  205. rc = msm_audio_ion_get_phys(*client, *handle, paddr, pa_len);
  206. if (rc) {
  207. pr_err("%s: ION Get Physical for AUDIO failed, rc = %d\n",
  208. __func__, rc);
  209. goto err_ion_handle;
  210. }
  211. *vaddr = ion_map_kernel(*client, *handle);
  212. if (IS_ERR_OR_NULL((void *)*vaddr)) {
  213. pr_err("%s: ION memory mapping for AUDIO failed\n", __func__);
  214. rc = -ENOMEM;
  215. goto err_ion_handle;
  216. }
  217. pr_debug("%s: mapped address = %pK, size=%zd\n", __func__,
  218. *vaddr, bufsz);
  219. return 0;
  220. err_ion_handle:
  221. ion_free(*client, *handle);
  222. err_destroy_client:
  223. msm_audio_ion_client_destroy(*client);
  224. *client = NULL;
  225. *handle = NULL;
  226. err:
  227. return rc;
  228. }
  229. /**
  230. * msm_audio_ion_free -
  231. * fress ION memory for given client and handle
  232. *
  233. * @client: ION client
  234. * @handle: ION handle
  235. *
  236. * Returns 0 on success or error on failure
  237. */
  238. int msm_audio_ion_free(struct ion_client *client, struct ion_handle *handle)
  239. {
  240. if (!client || !handle) {
  241. pr_err("%s Invalid params\n", __func__);
  242. return -EINVAL;
  243. }
  244. if (msm_audio_ion_data.smmu_enabled)
  245. msm_audio_dma_buf_unmap(client, handle);
  246. ion_unmap_kernel(client, handle);
  247. ion_free(client, handle);
  248. msm_audio_ion_client_destroy(client);
  249. return 0;
  250. }
  251. EXPORT_SYMBOL(msm_audio_ion_free);
  252. /**
  253. * msm_audio_ion_mmap -
  254. * Audio ION memory map
  255. *
  256. * @ab: audio buf pointer
  257. * @vma: virtual mem area
  258. *
  259. * Returns 0 on success or error on failure
  260. */
  261. int msm_audio_ion_mmap(struct audio_buffer *ab,
  262. struct vm_area_struct *vma)
  263. {
  264. struct sg_table *table;
  265. unsigned long addr = vma->vm_start;
  266. unsigned long offset = vma->vm_pgoff * PAGE_SIZE;
  267. struct scatterlist *sg;
  268. unsigned int i;
  269. struct page *page;
  270. int ret;
  271. pr_debug("%s\n", __func__);
  272. table = ion_sg_table(ab->client, ab->handle);
  273. if (IS_ERR(table)) {
  274. pr_err("%s: Unable to get sg_table from ion: %ld\n",
  275. __func__, PTR_ERR(table));
  276. return PTR_ERR(table);
  277. } else if (!table) {
  278. pr_err("%s: sg_list is NULL\n", __func__);
  279. return -EINVAL;
  280. }
  281. /* uncached */
  282. vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
  283. /* We need to check if a page is associated with this sg list because:
  284. * If the allocation came from a carveout we currently don't have
  285. * pages associated with carved out memory. This might change in the
  286. * future and we can remove this check and the else statement.
  287. */
  288. page = sg_page(table->sgl);
  289. if (page) {
  290. pr_debug("%s: page is NOT null\n", __func__);
  291. for_each_sg(table->sgl, sg, table->nents, i) {
  292. unsigned long remainder = vma->vm_end - addr;
  293. unsigned long len = sg->length;
  294. page = sg_page(sg);
  295. if (offset >= len) {
  296. offset -= len;
  297. continue;
  298. } else if (offset) {
  299. page += offset / PAGE_SIZE;
  300. len -= offset;
  301. offset = 0;
  302. }
  303. len = min(len, remainder);
  304. pr_debug("vma=%pK, addr=%x len=%ld vm_start=%x vm_end=%x vm_page_prot=%lu\n",
  305. vma, (unsigned int)addr, len,
  306. (unsigned int)vma->vm_start,
  307. (unsigned int)vma->vm_end,
  308. (unsigned long)pgprot_val(vma->vm_page_prot));
  309. remap_pfn_range(vma, addr, page_to_pfn(page), len,
  310. vma->vm_page_prot);
  311. addr += len;
  312. if (addr >= vma->vm_end)
  313. return 0;
  314. }
  315. } else {
  316. ion_phys_addr_t phys_addr;
  317. size_t phys_len;
  318. size_t va_len = 0;
  319. pr_debug("%s: page is NULL\n", __func__);
  320. ret = ion_phys(ab->client, ab->handle, &phys_addr, &phys_len);
  321. if (ret) {
  322. pr_err("%s: Unable to get phys address from ION buffer: %d\n"
  323. , __func__, ret);
  324. return ret;
  325. }
  326. pr_debug("phys=%pKK len=%zd\n", &phys_addr, phys_len);
  327. pr_debug("vma=%pK, vm_start=%x vm_end=%x vm_pgoff=%ld vm_page_prot=%lu\n",
  328. vma, (unsigned int)vma->vm_start,
  329. (unsigned int)vma->vm_end, vma->vm_pgoff,
  330. (unsigned long)pgprot_val(vma->vm_page_prot));
  331. va_len = vma->vm_end - vma->vm_start;
  332. if ((offset > phys_len) || (va_len > phys_len-offset)) {
  333. pr_err("wrong offset size %ld, lens= %zd, va_len=%zd\n",
  334. offset, phys_len, va_len);
  335. return -EINVAL;
  336. }
  337. ret = remap_pfn_range(vma, vma->vm_start,
  338. __phys_to_pfn(phys_addr) + vma->vm_pgoff,
  339. vma->vm_end - vma->vm_start,
  340. vma->vm_page_prot);
  341. }
  342. return 0;
  343. }
  344. EXPORT_SYMBOL(msm_audio_ion_mmap);
  345. bool msm_audio_ion_is_smmu_available(void)
  346. {
  347. return msm_audio_ion_data.smmu_enabled;
  348. }
  349. /* move to static section again */
  350. struct ion_client *msm_audio_ion_client_create(const char *name)
  351. {
  352. struct ion_client *pclient = NULL;
  353. pclient = msm_ion_client_create(name);
  354. return pclient;
  355. }
  356. EXPORT_SYMBOL(msm_audio_ion_client_create);
  357. /**
  358. * msm_audio_ion_client_destroy -
  359. * Removes ION client handle
  360. *
  361. * @client: ION client
  362. *
  363. */
  364. void msm_audio_ion_client_destroy(struct ion_client *client)
  365. {
  366. pr_debug("%s: client = %pK smmu_enabled = %d\n", __func__,
  367. client, msm_audio_ion_data.smmu_enabled);
  368. ion_client_destroy(client);
  369. }
  370. EXPORT_SYMBOL(msm_audio_ion_client_destroy);
  371. /**
  372. * msm_audio_ion_import_legacy -
  373. * Alloc ION memory for given size
  374. *
  375. * @name: ION client name
  376. * @client: ION client
  377. * @handle: ION handle to be updated
  378. * @fd: ION fd
  379. * @ionflag: Flags for ION handle
  380. * @bufsz: buffer size
  381. * @paddr: pointer to be updated with physical address of allocated ION memory
  382. * @pa_len: pointer to be updated with size of physical memory
  383. * @vaddr: pointer to be updated with virtual address
  384. *
  385. * Returns 0 on success or error on failure
  386. */
  387. int msm_audio_ion_import_legacy(const char *name, struct ion_client *client,
  388. struct ion_handle **handle, int fd,
  389. unsigned long *ionflag, size_t bufsz,
  390. ion_phys_addr_t *paddr, size_t *pa_len, void **vaddr)
  391. {
  392. int rc = 0;
  393. if (!name || !client || !handle || !paddr || !vaddr || !pa_len) {
  394. pr_err("%s: Invalid params\n", __func__);
  395. rc = -EINVAL;
  396. goto err;
  397. }
  398. /* client is already created for legacy and given
  399. * name should be audio_acdb_client or Audio_Dec_Client,
  400. * bufsz should be 0 and fd shouldn't be 0 as of now
  401. */
  402. *handle = ion_import_dma_buf_fd(client, fd);
  403. pr_debug("%s: DMA Buf name=%s, fd=%d handle=%pK\n", __func__,
  404. name, fd, *handle);
  405. if (IS_ERR_OR_NULL((void *)(*handle))) {
  406. pr_err("%s: ion import dma buffer failed\n",
  407. __func__);
  408. rc = -EINVAL;
  409. goto err;
  410. }
  411. if (ionflag != NULL) {
  412. rc = ion_handle_get_flags(client, *handle, ionflag);
  413. if (rc) {
  414. pr_err("%s: could not get flags for the handle\n",
  415. __func__);
  416. rc = -EINVAL;
  417. goto err_ion_handle;
  418. }
  419. }
  420. rc = msm_audio_ion_get_phys(client, *handle, paddr, pa_len);
  421. if (rc) {
  422. pr_err("%s: ION Get Physical for AUDIO failed, rc = %d\n",
  423. __func__, rc);
  424. rc = -EINVAL;
  425. goto err_ion_handle;
  426. }
  427. /*Need to add condition SMMU enable or not */
  428. *vaddr = ion_map_kernel(client, *handle);
  429. if (IS_ERR_OR_NULL((void *)*vaddr)) {
  430. pr_err("%s: ION memory mapping for AUDIO failed\n", __func__);
  431. rc = -EINVAL;
  432. goto err_ion_handle;
  433. }
  434. if (bufsz != 0)
  435. memset((void *)*vaddr, 0, bufsz);
  436. return 0;
  437. err_ion_handle:
  438. ion_free(client, *handle);
  439. err:
  440. return rc;
  441. }
  442. EXPORT_SYMBOL(msm_audio_ion_import_legacy);
  443. /**
  444. * msm_audio_ion_free_legacy -
  445. * Frees ION memory for given handle
  446. *
  447. * @client: ION client
  448. * @handle: ION handle
  449. *
  450. */
  451. int msm_audio_ion_free_legacy(struct ion_client *client,
  452. struct ion_handle *handle)
  453. {
  454. if (msm_audio_ion_data.smmu_enabled)
  455. msm_audio_dma_buf_unmap(client, handle);
  456. ion_unmap_kernel(client, handle);
  457. ion_free(client, handle);
  458. /* no client_destrody in legacy*/
  459. return 0;
  460. }
  461. EXPORT_SYMBOL(msm_audio_ion_free_legacy);
  462. int msm_audio_ion_cache_operations(struct audio_buffer *abuff, int cache_op)
  463. {
  464. unsigned long ionflag = 0;
  465. int rc = 0;
  466. int msm_cache_ops = 0;
  467. if (!abuff) {
  468. pr_err("%s: Invalid params: %pK\n", __func__, abuff);
  469. return -EINVAL;
  470. }
  471. rc = ion_handle_get_flags(abuff->client, abuff->handle,
  472. &ionflag);
  473. if (rc) {
  474. pr_err("ion_handle_get_flags failed: %d\n", rc);
  475. goto cache_op_failed;
  476. }
  477. /* has to be CACHED */
  478. if (ION_IS_CACHED(ionflag)) {
  479. /* ION_IOC_INV_CACHES or ION_IOC_CLEAN_CACHES */
  480. msm_cache_ops = cache_op;
  481. rc = msm_ion_do_cache_op(abuff->client,
  482. abuff->handle,
  483. (unsigned long *) abuff->data,
  484. (unsigned long)abuff->size,
  485. msm_cache_ops);
  486. if (rc) {
  487. pr_err("cache operation failed %d\n", rc);
  488. goto cache_op_failed;
  489. }
  490. }
  491. cache_op_failed:
  492. return rc;
  493. }
  494. static int msm_audio_dma_buf_map(struct ion_client *client,
  495. struct ion_handle *handle,
  496. ion_phys_addr_t *addr, size_t *len)
  497. {
  498. struct msm_audio_alloc_data *alloc_data;
  499. struct device *cb_dev;
  500. int rc = 0;
  501. cb_dev = msm_audio_ion_data.cb_dev;
  502. /* Data required per buffer mapping */
  503. alloc_data = kzalloc(sizeof(*alloc_data), GFP_KERNEL);
  504. if (!alloc_data)
  505. return -ENOMEM;
  506. /* Get the ION handle size */
  507. ion_handle_get_size(client, handle, len);
  508. alloc_data->client = client;
  509. alloc_data->handle = handle;
  510. alloc_data->len = *len;
  511. /* Get the dma_buf handle from ion_handle */
  512. alloc_data->dma_buf = ion_share_dma_buf(client, handle);
  513. if (IS_ERR(alloc_data->dma_buf)) {
  514. rc = PTR_ERR(alloc_data->dma_buf);
  515. dev_err(cb_dev,
  516. "%s: Fail to get dma_buf handle, rc = %d\n",
  517. __func__, rc);
  518. goto err_dma_buf;
  519. }
  520. /* Attach the dma_buf to context bank device */
  521. alloc_data->attach = dma_buf_attach(alloc_data->dma_buf,
  522. cb_dev);
  523. if (IS_ERR(alloc_data->attach)) {
  524. rc = PTR_ERR(alloc_data->attach);
  525. dev_err(cb_dev,
  526. "%s: Fail to attach dma_buf to CB, rc = %d\n",
  527. __func__, rc);
  528. goto err_attach;
  529. }
  530. /*
  531. * Get the scatter-gather list.
  532. * There is no info as this is a write buffer or
  533. * read buffer, hence the request is bi-directional
  534. * to accommodate both read and write mappings.
  535. */
  536. alloc_data->table = dma_buf_map_attachment(alloc_data->attach,
  537. DMA_BIDIRECTIONAL);
  538. if (IS_ERR(alloc_data->table)) {
  539. rc = PTR_ERR(alloc_data->table);
  540. dev_err(cb_dev,
  541. "%s: Fail to map attachment, rc = %d\n",
  542. __func__, rc);
  543. goto err_map_attach;
  544. }
  545. rc = dma_map_sg(cb_dev, alloc_data->table->sgl,
  546. alloc_data->table->nents,
  547. DMA_BIDIRECTIONAL);
  548. if (rc != alloc_data->table->nents) {
  549. dev_err(cb_dev,
  550. "%s: Fail to map SG, rc = %d, nents = %d\n",
  551. __func__, rc, alloc_data->table->nents);
  552. goto err_map_sg;
  553. }
  554. /* Make sure not to return rc from dma_map_sg, as it can be nonzero */
  555. rc = 0;
  556. /* physical address from mapping */
  557. *addr = MSM_AUDIO_ION_PHYS_ADDR(alloc_data);
  558. msm_audio_ion_add_allocation(&msm_audio_ion_data,
  559. alloc_data);
  560. return rc;
  561. err_map_sg:
  562. dma_buf_unmap_attachment(alloc_data->attach,
  563. alloc_data->table,
  564. DMA_BIDIRECTIONAL);
  565. err_map_attach:
  566. dma_buf_detach(alloc_data->dma_buf,
  567. alloc_data->attach);
  568. err_attach:
  569. dma_buf_put(alloc_data->dma_buf);
  570. err_dma_buf:
  571. kfree(alloc_data);
  572. return rc;
  573. }
  574. static int msm_audio_dma_buf_unmap(struct ion_client *client,
  575. struct ion_handle *handle)
  576. {
  577. int rc = 0;
  578. struct msm_audio_alloc_data *alloc_data = NULL;
  579. struct list_head *ptr, *next;
  580. struct device *cb_dev = msm_audio_ion_data.cb_dev;
  581. bool found = false;
  582. /*
  583. * Though list_for_each_safe is delete safe, lock
  584. * should be explicitly acquired to avoid race condition
  585. * on adding elements to the list.
  586. */
  587. mutex_lock(&(msm_audio_ion_data.list_mutex));
  588. list_for_each_safe(ptr, next,
  589. &(msm_audio_ion_data.alloc_list)) {
  590. alloc_data = list_entry(ptr, struct msm_audio_alloc_data,
  591. list);
  592. if (alloc_data->handle == handle &&
  593. alloc_data->client == client) {
  594. found = true;
  595. dma_unmap_sg(cb_dev,
  596. alloc_data->table->sgl,
  597. alloc_data->table->nents,
  598. DMA_BIDIRECTIONAL);
  599. dma_buf_unmap_attachment(alloc_data->attach,
  600. alloc_data->table,
  601. DMA_BIDIRECTIONAL);
  602. dma_buf_detach(alloc_data->dma_buf,
  603. alloc_data->attach);
  604. dma_buf_put(alloc_data->dma_buf);
  605. list_del(&(alloc_data->list));
  606. kfree(alloc_data);
  607. break;
  608. }
  609. }
  610. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  611. if (!found) {
  612. dev_err(cb_dev,
  613. "%s: cannot find allocation, ion_handle %pK, ion_client %pK",
  614. __func__, handle, client);
  615. rc = -EINVAL;
  616. }
  617. return rc;
  618. }
  619. static int msm_audio_ion_get_phys(struct ion_client *client,
  620. struct ion_handle *handle,
  621. ion_phys_addr_t *addr, size_t *len)
  622. {
  623. int rc = 0;
  624. pr_debug("%s: smmu_enabled = %d\n", __func__,
  625. msm_audio_ion_data.smmu_enabled);
  626. if (msm_audio_ion_data.smmu_enabled) {
  627. rc = msm_audio_dma_buf_map(client, handle, addr, len);
  628. if (rc) {
  629. pr_err("%s: failed to map DMA buf, err = %d\n",
  630. __func__, rc);
  631. goto err;
  632. }
  633. /* Append the SMMU SID information to the IOVA address */
  634. *addr |= msm_audio_ion_data.smmu_sid_bits;
  635. } else {
  636. rc = ion_phys(client, handle, addr, len);
  637. }
  638. pr_debug("phys=%pK, len=%zd, rc=%d\n", &(*addr), *len, rc);
  639. err:
  640. return rc;
  641. }
  642. static int msm_audio_smmu_init(struct device *dev)
  643. {
  644. struct dma_iommu_mapping *mapping;
  645. int ret;
  646. mapping = arm_iommu_create_mapping(&platform_bus_type,
  647. MSM_AUDIO_ION_VA_START,
  648. MSM_AUDIO_ION_VA_LEN);
  649. if (IS_ERR(mapping))
  650. return PTR_ERR(mapping);
  651. ret = arm_iommu_attach_device(dev, mapping);
  652. if (ret) {
  653. dev_err(dev, "%s: Attach failed, err = %d\n",
  654. __func__, ret);
  655. goto fail_attach;
  656. }
  657. msm_audio_ion_data.cb_dev = dev;
  658. msm_audio_ion_data.mapping = mapping;
  659. INIT_LIST_HEAD(&msm_audio_ion_data.alloc_list);
  660. mutex_init(&(msm_audio_ion_data.list_mutex));
  661. return 0;
  662. fail_attach:
  663. arm_iommu_release_mapping(mapping);
  664. return ret;
  665. }
  666. static const struct of_device_id msm_audio_ion_dt_match[] = {
  667. { .compatible = "qcom,msm-audio-ion" },
  668. { }
  669. };
  670. MODULE_DEVICE_TABLE(of, msm_audio_ion_dt_match);
  671. u32 msm_audio_ion_get_smmu_sid_mode32(void)
  672. {
  673. if (msm_audio_ion_data.smmu_enabled)
  674. return upper_32_bits(msm_audio_ion_data.smmu_sid_bits);
  675. else
  676. return 0;
  677. }
  678. /**
  679. * msm_audio_populate_upper_32_bits -
  680. * retrieve upper 32bits of 64bit address
  681. *
  682. * @pa: 64bit physical address
  683. *
  684. */
  685. u32 msm_audio_populate_upper_32_bits(ion_phys_addr_t pa)
  686. {
  687. if (sizeof(ion_phys_addr_t) == sizeof(u32))
  688. return msm_audio_ion_get_smmu_sid_mode32();
  689. else
  690. return upper_32_bits(pa);
  691. }
  692. EXPORT_SYMBOL(msm_audio_populate_upper_32_bits);
  693. static int msm_audio_ion_probe(struct platform_device *pdev)
  694. {
  695. int rc = 0;
  696. const char *msm_audio_ion_dt = "qcom,smmu-enabled";
  697. const char *msm_audio_ion_smmu = "qcom,smmu-version";
  698. const char *msm_audio_ion_smmu_sid_mask = "qcom,smmu-sid-mask";
  699. bool smmu_enabled;
  700. enum apr_subsys_state q6_state;
  701. struct device *dev = &pdev->dev;
  702. if (dev->of_node == NULL) {
  703. dev_err(dev,
  704. "%s: device tree is not found\n",
  705. __func__);
  706. msm_audio_ion_data.smmu_enabled = 0;
  707. return 0;
  708. }
  709. smmu_enabled = of_property_read_bool(dev->of_node,
  710. msm_audio_ion_dt);
  711. msm_audio_ion_data.smmu_enabled = smmu_enabled;
  712. if (smmu_enabled) {
  713. rc = of_property_read_u32(dev->of_node,
  714. msm_audio_ion_smmu,
  715. &msm_audio_ion_data.smmu_version);
  716. if (rc) {
  717. dev_err(dev,
  718. "%s: qcom,smmu_version missing in DT node\n",
  719. __func__);
  720. return rc;
  721. }
  722. dev_dbg(dev, "%s: SMMU version is (%d)", __func__,
  723. msm_audio_ion_data.smmu_version);
  724. q6_state = apr_get_q6_state();
  725. if (q6_state == APR_SUBSYS_DOWN) {
  726. dev_dbg(dev,
  727. "defering %s, adsp_state %d\n",
  728. __func__, q6_state);
  729. return -EPROBE_DEFER;
  730. }
  731. dev_dbg(dev, "%s: adsp is ready\n", __func__);
  732. }
  733. dev_dbg(dev, "%s: SMMU is %s\n", __func__,
  734. (smmu_enabled) ? "Enabled" : "Disabled");
  735. if (smmu_enabled) {
  736. u64 smmu_sid = 0;
  737. u64 smmu_sid_mask = 0;
  738. struct of_phandle_args iommuspec;
  739. /* Get SMMU SID information from Devicetree */
  740. rc = of_property_read_u64(dev->of_node,
  741. msm_audio_ion_smmu_sid_mask,
  742. &smmu_sid_mask);
  743. if (rc) {
  744. dev_err(dev,
  745. "%s: qcom,smmu-sid-mask missing in DT node, using default\n",
  746. __func__);
  747. smmu_sid_mask = 0xFFFFFFFFFFFFFFFF;
  748. }
  749. rc = of_parse_phandle_with_args(dev->of_node, "iommus",
  750. "#iommu-cells", 0, &iommuspec);
  751. if (rc)
  752. dev_err(dev, "%s: could not get smmu SID, ret = %d\n",
  753. __func__, rc);
  754. else
  755. smmu_sid = (iommuspec.args[0] & smmu_sid_mask);
  756. msm_audio_ion_data.smmu_sid_bits =
  757. smmu_sid << MSM_AUDIO_SMMU_SID_OFFSET;
  758. if (msm_audio_ion_data.smmu_version == 0x2) {
  759. rc = msm_audio_smmu_init(dev);
  760. } else {
  761. dev_err(dev, "%s: smmu version invalid %d\n",
  762. __func__, msm_audio_ion_data.smmu_version);
  763. rc = -EINVAL;
  764. }
  765. if (rc)
  766. dev_err(dev, "%s: smmu init failed, err = %d\n",
  767. __func__, rc);
  768. }
  769. if (!rc)
  770. msm_audio_ion_data.device_status |= MSM_AUDIO_ION_PROBED;
  771. return rc;
  772. }
  773. static int msm_audio_ion_remove(struct platform_device *pdev)
  774. {
  775. struct dma_iommu_mapping *mapping;
  776. struct device *audio_cb_dev;
  777. mapping = msm_audio_ion_data.mapping;
  778. audio_cb_dev = msm_audio_ion_data.cb_dev;
  779. if (audio_cb_dev && mapping) {
  780. arm_iommu_detach_device(audio_cb_dev);
  781. arm_iommu_release_mapping(mapping);
  782. }
  783. msm_audio_ion_data.smmu_enabled = 0;
  784. msm_audio_ion_data.device_status = 0;
  785. return 0;
  786. }
  787. static struct platform_driver msm_audio_ion_driver = {
  788. .driver = {
  789. .name = "msm-audio-ion",
  790. .owner = THIS_MODULE,
  791. .of_match_table = msm_audio_ion_dt_match,
  792. },
  793. .probe = msm_audio_ion_probe,
  794. .remove = msm_audio_ion_remove,
  795. };
  796. int __init msm_audio_ion_init(void)
  797. {
  798. return platform_driver_register(&msm_audio_ion_driver);
  799. }
  800. void msm_audio_ion_exit(void)
  801. {
  802. platform_driver_unregister(&msm_audio_ion_driver);
  803. }
  804. MODULE_DESCRIPTION("MSM Audio ION module");
  805. MODULE_LICENSE("GPL v2");