msm_audio_ion.c 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825
  1. /*
  2. * Copyright (c) 2013-2018, 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 <linux/of_device.h>
  26. #include <linux/export.h>
  27. #include <linux/ion_kernel.h>
  28. #include <ipc/apr.h>
  29. #include <asm/dma-iommu.h>
  30. #include <dsp/msm_audio_ion.h>
  31. #define MSM_AUDIO_ION_PROBED (1 << 0)
  32. #define MSM_AUDIO_ION_PHYS_ADDR(alloc_data) \
  33. alloc_data->table->sgl->dma_address
  34. #define MSM_AUDIO_ION_VA_START 0x10000000
  35. #define MSM_AUDIO_ION_VA_LEN 0x0FFFFFFF
  36. #define MSM_AUDIO_SMMU_SID_OFFSET 32
  37. struct msm_audio_ion_private {
  38. bool smmu_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. size_t len;
  49. void *vaddr;
  50. struct dma_buf *dma_buf;
  51. struct dma_buf_attachment *attach;
  52. struct sg_table *table;
  53. struct list_head list;
  54. };
  55. static struct msm_audio_ion_private msm_audio_ion_data = {0,};
  56. static void msm_audio_ion_add_allocation(
  57. struct msm_audio_ion_private *msm_audio_ion_data,
  58. struct msm_audio_alloc_data *alloc_data)
  59. {
  60. /*
  61. * Since these APIs can be invoked by multiple
  62. * clients, there is need to make sure the list
  63. * of allocations is always protected
  64. */
  65. mutex_lock(&(msm_audio_ion_data->list_mutex));
  66. list_add_tail(&(alloc_data->list),
  67. &(msm_audio_ion_data->alloc_list));
  68. mutex_unlock(&(msm_audio_ion_data->list_mutex));
  69. }
  70. static int msm_audio_dma_buf_map(struct dma_buf *dma_buf,
  71. dma_addr_t *addr, size_t *len)
  72. {
  73. struct msm_audio_alloc_data *alloc_data;
  74. struct device *cb_dev;
  75. unsigned long ionflag = 0;
  76. int rc = 0;
  77. cb_dev = msm_audio_ion_data.cb_dev;
  78. /* Data required per buffer mapping */
  79. alloc_data = kzalloc(sizeof(*alloc_data), GFP_KERNEL);
  80. if (!alloc_data)
  81. return -ENOMEM;
  82. alloc_data->dma_buf = dma_buf;
  83. alloc_data->len = dma_buf->size;
  84. *len = dma_buf->size;
  85. /* Attach the dma_buf to context bank device */
  86. alloc_data->attach = dma_buf_attach(alloc_data->dma_buf,
  87. cb_dev);
  88. if (IS_ERR(alloc_data->attach)) {
  89. rc = PTR_ERR(alloc_data->attach);
  90. dev_err(cb_dev,
  91. "%s: Fail to attach dma_buf to CB, rc = %d\n",
  92. __func__, rc);
  93. goto free_alloc_data;
  94. }
  95. /* For uncached buffers, avoid cache maintanance */
  96. rc = dma_buf_get_flags(alloc_data->dma_buf, &ionflag);
  97. if (rc) {
  98. dev_err(cb_dev, "%s: dma_buf_get_flags failed: %d\n",
  99. __func__, rc);
  100. goto detach_dma_buf;
  101. }
  102. if (!(ionflag & ION_FLAG_CACHED))
  103. alloc_data->attach->dma_map_attrs |= DMA_ATTR_SKIP_CPU_SYNC;
  104. /*
  105. * Get the scatter-gather list.
  106. * There is no info as this is a write buffer or
  107. * read buffer, hence the request is bi-directional
  108. * to accommodate both read and write mappings.
  109. */
  110. alloc_data->table = dma_buf_map_attachment(alloc_data->attach,
  111. DMA_BIDIRECTIONAL);
  112. if (IS_ERR(alloc_data->table)) {
  113. rc = PTR_ERR(alloc_data->table);
  114. dev_err(cb_dev,
  115. "%s: Fail to map attachment, rc = %d\n",
  116. __func__, rc);
  117. goto detach_dma_buf;
  118. }
  119. /* physical address from mapping */
  120. *addr = MSM_AUDIO_ION_PHYS_ADDR(alloc_data);
  121. msm_audio_ion_add_allocation(&msm_audio_ion_data,
  122. alloc_data);
  123. return rc;
  124. detach_dma_buf:
  125. dma_buf_detach(alloc_data->dma_buf,
  126. alloc_data->attach);
  127. free_alloc_data:
  128. kfree(alloc_data);
  129. return rc;
  130. }
  131. static int msm_audio_dma_buf_unmap(struct dma_buf *dma_buf)
  132. {
  133. int rc = 0;
  134. struct msm_audio_alloc_data *alloc_data = NULL;
  135. struct list_head *ptr, *next;
  136. struct device *cb_dev = msm_audio_ion_data.cb_dev;
  137. bool found = false;
  138. /*
  139. * Though list_for_each_safe is delete safe, lock
  140. * should be explicitly acquired to avoid race condition
  141. * on adding elements to the list.
  142. */
  143. mutex_lock(&(msm_audio_ion_data.list_mutex));
  144. list_for_each_safe(ptr, next,
  145. &(msm_audio_ion_data.alloc_list)) {
  146. alloc_data = list_entry(ptr, struct msm_audio_alloc_data,
  147. list);
  148. if (alloc_data->dma_buf == dma_buf) {
  149. found = true;
  150. dma_buf_unmap_attachment(alloc_data->attach,
  151. alloc_data->table,
  152. DMA_BIDIRECTIONAL);
  153. dma_buf_detach(alloc_data->dma_buf,
  154. alloc_data->attach);
  155. dma_buf_put(alloc_data->dma_buf);
  156. list_del(&(alloc_data->list));
  157. kfree(alloc_data);
  158. break;
  159. }
  160. }
  161. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  162. if (!found) {
  163. dev_err(cb_dev,
  164. "%s: cannot find allocation, dma_buf %pK",
  165. __func__, dma_buf);
  166. rc = -EINVAL;
  167. }
  168. return rc;
  169. }
  170. static int msm_audio_ion_get_phys(struct dma_buf *dma_buf,
  171. dma_addr_t *addr, size_t *len)
  172. {
  173. int rc = 0;
  174. rc = msm_audio_dma_buf_map(dma_buf, addr, len);
  175. if (rc) {
  176. pr_err("%s: failed to map DMA buf, err = %d\n",
  177. __func__, rc);
  178. goto err;
  179. }
  180. if (msm_audio_ion_data.smmu_enabled) {
  181. /* Append the SMMU SID information to the IOVA address */
  182. *addr |= msm_audio_ion_data.smmu_sid_bits;
  183. }
  184. pr_debug("phys=%pK, len=%zd, rc=%d\n", &(*addr), *len, rc);
  185. err:
  186. return rc;
  187. }
  188. int msm_audio_ion_get_smmu_info(struct device **cb_dev,
  189. u64 *smmu_sid)
  190. {
  191. if (!cb_dev || !smmu_sid) {
  192. pr_err("%s: Invalid params\n",
  193. __func__);
  194. return -EINVAL;
  195. }
  196. if (!msm_audio_ion_data.cb_dev ||
  197. !msm_audio_ion_data.smmu_sid_bits) {
  198. pr_err("%s: Params not initialized\n",
  199. __func__);
  200. return -EINVAL;
  201. }
  202. *cb_dev = msm_audio_ion_data.cb_dev;
  203. *smmu_sid = msm_audio_ion_data.smmu_sid_bits;
  204. return 0;
  205. }
  206. static void *msm_audio_ion_map_kernel(struct dma_buf *dma_buf)
  207. {
  208. int rc = 0;
  209. void *addr = NULL;
  210. struct msm_audio_alloc_data *alloc_data = NULL;
  211. rc = dma_buf_begin_cpu_access(dma_buf, DMA_BIDIRECTIONAL);
  212. if (rc) {
  213. pr_err("%s: kmap dma_buf_begin_cpu_access fail\n", __func__);
  214. goto exit;
  215. }
  216. addr = dma_buf_vmap(dma_buf);
  217. if (!addr) {
  218. pr_err("%s: kernel mapping of dma_buf failed\n",
  219. __func__);
  220. goto exit;
  221. }
  222. /*
  223. * TBD: remove the below section once new API
  224. * for mapping kernel virtual address is available.
  225. */
  226. mutex_lock(&(msm_audio_ion_data.list_mutex));
  227. list_for_each_entry(alloc_data, &(msm_audio_ion_data.alloc_list),
  228. list) {
  229. if (alloc_data->dma_buf == dma_buf) {
  230. alloc_data->vaddr = addr;
  231. break;
  232. }
  233. }
  234. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  235. exit:
  236. return addr;
  237. }
  238. static void msm_audio_ion_unmap_kernel(struct dma_buf *dma_buf)
  239. {
  240. int rc = 0;
  241. void *vaddr = NULL;
  242. struct msm_audio_alloc_data *alloc_data = NULL;
  243. struct device *cb_dev = msm_audio_ion_data.cb_dev;
  244. /*
  245. * TBD: remove the below section once new API
  246. * for unmapping kernel virtual address is available.
  247. */
  248. mutex_lock(&(msm_audio_ion_data.list_mutex));
  249. list_for_each_entry(alloc_data, &(msm_audio_ion_data.alloc_list),
  250. list) {
  251. if (alloc_data->dma_buf == dma_buf) {
  252. vaddr = alloc_data->vaddr;
  253. break;
  254. }
  255. }
  256. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  257. if (!vaddr) {
  258. dev_err(cb_dev,
  259. "%s: cannot find allocation for dma_buf %pK",
  260. __func__, dma_buf);
  261. goto err;
  262. }
  263. dma_buf_vunmap(dma_buf, vaddr);
  264. rc = dma_buf_end_cpu_access(dma_buf, DMA_BIDIRECTIONAL);
  265. if (rc) {
  266. dev_err(cb_dev, "%s: kmap dma_buf_end_cpu_access fail\n",
  267. __func__);
  268. goto err;
  269. }
  270. err:
  271. return;
  272. }
  273. static int msm_audio_ion_map_buf(struct dma_buf *dma_buf, dma_addr_t *paddr,
  274. size_t *plen, void **vaddr)
  275. {
  276. int rc = 0;
  277. rc = msm_audio_ion_get_phys(dma_buf, paddr, plen);
  278. if (rc) {
  279. pr_err("%s: ION Get Physical for AUDIO failed, rc = %d\n",
  280. __func__, rc);
  281. goto err;
  282. }
  283. *vaddr = msm_audio_ion_map_kernel(dma_buf);
  284. if (IS_ERR_OR_NULL(*vaddr)) {
  285. pr_err("%s: ION memory mapping for AUDIO failed\n", __func__);
  286. rc = -ENOMEM;
  287. goto err;
  288. }
  289. err:
  290. return rc;
  291. }
  292. static u32 msm_audio_ion_get_smmu_sid_mode32(void)
  293. {
  294. if (msm_audio_ion_data.smmu_enabled)
  295. return upper_32_bits(msm_audio_ion_data.smmu_sid_bits);
  296. else
  297. return 0;
  298. }
  299. /**
  300. * msm_audio_ion_alloc -
  301. * Allocs ION memory for given client name
  302. *
  303. * @dma_buf: dma_buf for the ION memory
  304. * @bufsz: buffer size
  305. * @paddr: Physical address to be assigned with allocated region
  306. * @plen: length of allocated region to be assigned
  307. * vaddr: virtual address to be assigned
  308. *
  309. * Returns 0 on success or error on failure
  310. */
  311. int msm_audio_ion_alloc(struct dma_buf **dma_buf, size_t bufsz,
  312. dma_addr_t *paddr, size_t *plen, void **vaddr)
  313. {
  314. int rc = -EINVAL;
  315. unsigned long err_ion_ptr = 0;
  316. if (!(msm_audio_ion_data.device_status & MSM_AUDIO_ION_PROBED)) {
  317. pr_debug("%s:probe is not done, deferred\n", __func__);
  318. return -EPROBE_DEFER;
  319. }
  320. if (!dma_buf || !paddr || !vaddr || !bufsz || !plen) {
  321. pr_err("%s: Invalid params\n", __func__);
  322. return -EINVAL;
  323. }
  324. if (msm_audio_ion_data.smmu_enabled == true) {
  325. pr_debug("%s: system heap is used\n", __func__);
  326. *dma_buf = ion_alloc(bufsz, ION_HEAP(ION_SYSTEM_HEAP_ID), 0);
  327. } else {
  328. pr_debug("%s: audio heap is used\n", __func__);
  329. *dma_buf = ion_alloc(bufsz, ION_HEAP(ION_AUDIO_HEAP_ID), 0);
  330. }
  331. if (IS_ERR_OR_NULL((void *)(*dma_buf))) {
  332. if (IS_ERR((void *)(*dma_buf)))
  333. err_ion_ptr = PTR_ERR((int *)(*dma_buf));
  334. pr_err("%s: ION alloc fail err ptr=%ld, smmu_enabled=%d\n",
  335. __func__, err_ion_ptr, msm_audio_ion_data.smmu_enabled);
  336. rc = -ENOMEM;
  337. goto err;
  338. }
  339. rc = msm_audio_ion_map_buf(*dma_buf, paddr, plen, vaddr);
  340. if (rc) {
  341. pr_err("%s: failed to map ION buf, rc = %d\n", __func__, rc);
  342. goto err_dma_buf;
  343. }
  344. pr_debug("%s: mapped address = %pK, size=%zd\n", __func__,
  345. *vaddr, bufsz);
  346. memset(*vaddr, 0, bufsz);
  347. return rc;
  348. err_dma_buf:
  349. dma_buf_put(*dma_buf);
  350. err:
  351. return rc;
  352. }
  353. EXPORT_SYMBOL(msm_audio_ion_alloc);
  354. /**
  355. * msm_audio_ion_import-
  356. * Import ION buffer with given file descriptor
  357. *
  358. * @dma_buf: dma_buf for the ION memory
  359. * @fd: file descriptor for the ION memory
  360. * @ionflag: flags associated with ION buffer
  361. * @bufsz: buffer size
  362. * @paddr: Physical address to be assigned with allocated region
  363. * @plen: length of allocated region to be assigned
  364. * vaddr: virtual address to be assigned
  365. *
  366. * Returns 0 on success or error on failure
  367. */
  368. int msm_audio_ion_import(struct dma_buf **dma_buf, int fd,
  369. unsigned long *ionflag, size_t bufsz,
  370. dma_addr_t *paddr, size_t *plen, void **vaddr)
  371. {
  372. int rc = 0;
  373. if (!(msm_audio_ion_data.device_status & MSM_AUDIO_ION_PROBED)) {
  374. pr_debug("%s: probe is not done, deferred\n", __func__);
  375. return -EPROBE_DEFER;
  376. }
  377. if (!dma_buf || !paddr || !vaddr || !plen) {
  378. pr_err("%s: Invalid params\n", __func__);
  379. return -EINVAL;
  380. }
  381. /* bufsz should be 0 and fd shouldn't be 0 as of now */
  382. *dma_buf = dma_buf_get(fd);
  383. pr_debug("%s: dma_buf =%pK, fd=%d\n", __func__, *dma_buf, fd);
  384. if (IS_ERR_OR_NULL((void *)(*dma_buf))) {
  385. pr_err("%s: dma_buf_get failed\n", __func__);
  386. rc = -EINVAL;
  387. goto err;
  388. }
  389. if (ionflag != NULL) {
  390. rc = dma_buf_get_flags(*dma_buf, ionflag);
  391. if (rc) {
  392. pr_err("%s: could not get flags for the dma_buf\n",
  393. __func__);
  394. goto err_ion_flag;
  395. }
  396. }
  397. rc = msm_audio_ion_map_buf(*dma_buf, paddr, plen, vaddr);
  398. if (rc) {
  399. pr_err("%s: failed to map ION buf, rc = %d\n", __func__, rc);
  400. goto err_ion_flag;
  401. }
  402. pr_debug("%s: mapped address = %pK, size=%zd\n", __func__,
  403. *vaddr, bufsz);
  404. return 0;
  405. err_ion_flag:
  406. dma_buf_put(*dma_buf);
  407. err:
  408. *dma_buf = NULL;
  409. return rc;
  410. }
  411. EXPORT_SYMBOL(msm_audio_ion_import);
  412. /**
  413. * msm_audio_ion_free -
  414. * fress ION memory for given client and handle
  415. *
  416. * @dma_buf: dma_buf for the ION memory
  417. *
  418. * Returns 0 on success or error on failure
  419. */
  420. int msm_audio_ion_free(struct dma_buf *dma_buf)
  421. {
  422. if (!dma_buf) {
  423. pr_err("%s: dma_buf invalid\n", __func__);
  424. return -EINVAL;
  425. }
  426. msm_audio_ion_unmap_kernel(dma_buf);
  427. msm_audio_dma_buf_unmap(dma_buf);
  428. return 0;
  429. }
  430. EXPORT_SYMBOL(msm_audio_ion_free);
  431. /**
  432. * msm_audio_ion_mmap -
  433. * Audio ION memory map
  434. *
  435. * @abuff: audio buf pointer
  436. * @vma: virtual mem area
  437. *
  438. * Returns 0 on success or error on failure
  439. */
  440. int msm_audio_ion_mmap(struct audio_buffer *abuff,
  441. struct vm_area_struct *vma)
  442. {
  443. struct msm_audio_alloc_data *alloc_data = NULL;
  444. struct sg_table *table;
  445. unsigned long addr = vma->vm_start;
  446. unsigned long offset = vma->vm_pgoff * PAGE_SIZE;
  447. struct scatterlist *sg;
  448. unsigned int i;
  449. struct page *page;
  450. int ret = 0;
  451. bool found = false;
  452. struct device *cb_dev = msm_audio_ion_data.cb_dev;
  453. mutex_lock(&(msm_audio_ion_data.list_mutex));
  454. list_for_each_entry(alloc_data, &(msm_audio_ion_data.alloc_list),
  455. list) {
  456. if (alloc_data->dma_buf == abuff->dma_buf) {
  457. found = true;
  458. table = alloc_data->table;
  459. break;
  460. }
  461. }
  462. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  463. if (!found) {
  464. dev_err(cb_dev,
  465. "%s: cannot find allocation, dma_buf %pK",
  466. __func__, abuff->dma_buf);
  467. return -EINVAL;
  468. }
  469. /* uncached */
  470. vma->vm_page_prot = pgprot_writecombine(vma->vm_page_prot);
  471. /* We need to check if a page is associated with this sg list because:
  472. * If the allocation came from a carveout we currently don't have
  473. * pages associated with carved out memory. This might change in the
  474. * future and we can remove this check and the else statement.
  475. */
  476. page = sg_page(table->sgl);
  477. if (page) {
  478. pr_debug("%s: page is NOT null\n", __func__);
  479. for_each_sg(table->sgl, sg, table->nents, i) {
  480. unsigned long remainder = vma->vm_end - addr;
  481. unsigned long len = sg->length;
  482. page = sg_page(sg);
  483. if (offset >= len) {
  484. offset -= len;
  485. continue;
  486. } else if (offset) {
  487. page += offset / PAGE_SIZE;
  488. len -= offset;
  489. offset = 0;
  490. }
  491. len = min(len, remainder);
  492. pr_debug("vma=%pK, addr=%x len=%ld vm_start=%x vm_end=%x vm_page_prot=%lu\n",
  493. vma, (unsigned int)addr, len,
  494. (unsigned int)vma->vm_start,
  495. (unsigned int)vma->vm_end,
  496. (unsigned long)pgprot_val(vma->vm_page_prot));
  497. remap_pfn_range(vma, addr, page_to_pfn(page), len,
  498. vma->vm_page_prot);
  499. addr += len;
  500. if (addr >= vma->vm_end)
  501. return 0;
  502. }
  503. } else {
  504. pr_debug("%s: page is NULL\n", __func__);
  505. ret = -EINVAL;
  506. }
  507. return ret;
  508. }
  509. EXPORT_SYMBOL(msm_audio_ion_mmap);
  510. /**
  511. * msm_audio_ion_cache_operations-
  512. * Cache operations on cached Audio ION buffers
  513. *
  514. * @abuff: audio buf pointer
  515. * @cache_op: cache operation to be performed
  516. *
  517. * Returns 0 on success or error on failure
  518. */
  519. int msm_audio_ion_cache_operations(struct audio_buffer *abuff, int cache_op)
  520. {
  521. unsigned long ionflag = 0;
  522. int rc = 0;
  523. if (!abuff) {
  524. pr_err("%s: Invalid params: %pK\n", __func__, abuff);
  525. return -EINVAL;
  526. }
  527. rc = dma_buf_get_flags(abuff->dma_buf, &ionflag);
  528. if (rc) {
  529. pr_err("%s: dma_buf_get_flags failed: %d\n", __func__, rc);
  530. goto cache_op_failed;
  531. }
  532. /* Has to be CACHED */
  533. if (ionflag & ION_FLAG_CACHED) {
  534. /* MSM_AUDIO_ION_INV_CACHES or MSM_AUDIO_ION_CLEAN_CACHES */
  535. switch (cache_op) {
  536. case MSM_AUDIO_ION_INV_CACHES:
  537. case MSM_AUDIO_ION_CLEAN_CACHES:
  538. dma_buf_begin_cpu_access(abuff->dma_buf,
  539. DMA_BIDIRECTIONAL);
  540. dma_buf_end_cpu_access(abuff->dma_buf,
  541. DMA_BIDIRECTIONAL);
  542. break;
  543. default:
  544. pr_err("%s: Invalid cache operation %d\n",
  545. __func__, cache_op);
  546. }
  547. } else {
  548. pr_err("%s: Cache ops called on uncached buffer: %pK\n",
  549. __func__, abuff->dma_buf);
  550. rc = -EINVAL;
  551. }
  552. cache_op_failed:
  553. return rc;
  554. }
  555. EXPORT_SYMBOL(msm_audio_ion_cache_operations);
  556. /**
  557. * msm_audio_populate_upper_32_bits -
  558. * retrieve upper 32bits of 64bit address
  559. *
  560. * @pa: 64bit physical address
  561. *
  562. */
  563. u32 msm_audio_populate_upper_32_bits(dma_addr_t pa)
  564. {
  565. if (sizeof(dma_addr_t) == sizeof(u32))
  566. return msm_audio_ion_get_smmu_sid_mode32();
  567. else
  568. return upper_32_bits(pa);
  569. }
  570. EXPORT_SYMBOL(msm_audio_populate_upper_32_bits);
  571. static int msm_audio_smmu_init(struct device *dev)
  572. {
  573. struct dma_iommu_mapping *mapping;
  574. int ret;
  575. mapping = arm_iommu_create_mapping(&platform_bus_type,
  576. MSM_AUDIO_ION_VA_START,
  577. MSM_AUDIO_ION_VA_LEN);
  578. if (IS_ERR(mapping))
  579. return PTR_ERR(mapping);
  580. ret = arm_iommu_attach_device(dev, mapping);
  581. if (ret) {
  582. dev_err(dev, "%s: Attach failed, err = %d\n",
  583. __func__, ret);
  584. goto fail_attach;
  585. }
  586. msm_audio_ion_data.mapping = mapping;
  587. INIT_LIST_HEAD(&msm_audio_ion_data.alloc_list);
  588. mutex_init(&(msm_audio_ion_data.list_mutex));
  589. return 0;
  590. fail_attach:
  591. arm_iommu_release_mapping(mapping);
  592. return ret;
  593. }
  594. static const struct of_device_id msm_audio_ion_dt_match[] = {
  595. { .compatible = "qcom,msm-audio-ion" },
  596. { }
  597. };
  598. MODULE_DEVICE_TABLE(of, msm_audio_ion_dt_match);
  599. static int msm_audio_ion_probe(struct platform_device *pdev)
  600. {
  601. int rc = 0;
  602. u64 smmu_sid = 0;
  603. u64 smmu_sid_mask = 0;
  604. const char *msm_audio_ion_dt = "qcom,smmu-enabled";
  605. const char *msm_audio_ion_smmu = "qcom,smmu-version";
  606. const char *msm_audio_ion_smmu_sid_mask = "qcom,smmu-sid-mask";
  607. bool smmu_enabled;
  608. enum apr_subsys_state q6_state;
  609. struct device *dev = &pdev->dev;
  610. struct of_phandle_args iommuspec;
  611. if (dev->of_node == NULL) {
  612. dev_err(dev,
  613. "%s: device tree is not found\n",
  614. __func__);
  615. msm_audio_ion_data.smmu_enabled = 0;
  616. return 0;
  617. }
  618. smmu_enabled = of_property_read_bool(dev->of_node,
  619. msm_audio_ion_dt);
  620. msm_audio_ion_data.smmu_enabled = smmu_enabled;
  621. if (!smmu_enabled) {
  622. dev_dbg(dev, "%s: SMMU is Disabled\n", __func__);
  623. goto exit;
  624. }
  625. q6_state = apr_get_q6_state();
  626. if (q6_state == APR_SUBSYS_DOWN) {
  627. dev_dbg(dev,
  628. "defering %s, adsp_state %d\n",
  629. __func__, q6_state);
  630. return -EPROBE_DEFER;
  631. }
  632. dev_dbg(dev, "%s: adsp is ready\n", __func__);
  633. rc = of_property_read_u32(dev->of_node,
  634. msm_audio_ion_smmu,
  635. &msm_audio_ion_data.smmu_version);
  636. if (rc) {
  637. dev_err(dev,
  638. "%s: qcom,smmu_version missing in DT node\n",
  639. __func__);
  640. return rc;
  641. }
  642. dev_dbg(dev, "%s: SMMU is Enabled. SMMU version is (%d)",
  643. __func__, msm_audio_ion_data.smmu_version);
  644. /* Get SMMU SID information from Devicetree */
  645. rc = of_property_read_u64(dev->of_node,
  646. msm_audio_ion_smmu_sid_mask,
  647. &smmu_sid_mask);
  648. if (rc) {
  649. dev_err(dev,
  650. "%s: qcom,smmu-sid-mask missing in DT node, using default\n",
  651. __func__);
  652. smmu_sid_mask = 0xFFFFFFFFFFFFFFFF;
  653. }
  654. rc = of_parse_phandle_with_args(dev->of_node, "iommus",
  655. "#iommu-cells", 0, &iommuspec);
  656. if (rc)
  657. dev_err(dev, "%s: could not get smmu SID, ret = %d\n",
  658. __func__, rc);
  659. else
  660. smmu_sid = (iommuspec.args[0] & smmu_sid_mask);
  661. msm_audio_ion_data.smmu_sid_bits =
  662. smmu_sid << MSM_AUDIO_SMMU_SID_OFFSET;
  663. if (msm_audio_ion_data.smmu_version == 0x2) {
  664. rc = msm_audio_smmu_init(dev);
  665. } else {
  666. dev_err(dev, "%s: smmu version invalid %d\n",
  667. __func__, msm_audio_ion_data.smmu_version);
  668. rc = -EINVAL;
  669. }
  670. if (rc)
  671. dev_err(dev, "%s: smmu init failed, err = %d\n",
  672. __func__, rc);
  673. exit:
  674. if (!rc)
  675. msm_audio_ion_data.device_status |= MSM_AUDIO_ION_PROBED;
  676. msm_audio_ion_data.cb_dev = dev;
  677. return rc;
  678. }
  679. static int msm_audio_ion_remove(struct platform_device *pdev)
  680. {
  681. struct dma_iommu_mapping *mapping;
  682. struct device *audio_cb_dev;
  683. mapping = msm_audio_ion_data.mapping;
  684. audio_cb_dev = msm_audio_ion_data.cb_dev;
  685. if (audio_cb_dev && mapping) {
  686. arm_iommu_detach_device(audio_cb_dev);
  687. arm_iommu_release_mapping(mapping);
  688. }
  689. msm_audio_ion_data.smmu_enabled = 0;
  690. msm_audio_ion_data.device_status = 0;
  691. return 0;
  692. }
  693. static struct platform_driver msm_audio_ion_driver = {
  694. .driver = {
  695. .name = "msm-audio-ion",
  696. .owner = THIS_MODULE,
  697. .of_match_table = msm_audio_ion_dt_match,
  698. },
  699. .probe = msm_audio_ion_probe,
  700. .remove = msm_audio_ion_remove,
  701. };
  702. int __init msm_audio_ion_init(void)
  703. {
  704. return platform_driver_register(&msm_audio_ion_driver);
  705. }
  706. void msm_audio_ion_exit(void)
  707. {
  708. platform_driver_unregister(&msm_audio_ion_driver);
  709. }
  710. MODULE_DESCRIPTION("MSM Audio ION module");
  711. MODULE_LICENSE("GPL v2");