msm_audio_ion.c 20 KB

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