msm_audio_ion.c 19 KB

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