msm_audio_ion.c 22 KB

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