msm_audio_ion.c 23 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /*
  3. * Copyright (c) 2013-2021, 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 <linux/ioctl.h>
  20. #include <linux/cdev.h>
  21. #include <linux/fs.h>
  22. #include <linux/device.h>
  23. #ifndef CONFIG_SPF_CORE
  24. #include <ipc/apr.h>
  25. #endif
  26. #include <dsp/msm_audio_ion.h>
  27. #include <linux/msm_audio.h>
  28. #define MSM_AUDIO_ION_PROBED (1 << 0)
  29. #define MSM_AUDIO_ION_PHYS_ADDR(alloc_data) \
  30. alloc_data->table->sgl->dma_address
  31. #define MSM_AUDIO_SMMU_SID_OFFSET 32
  32. #define TZ_PIL_PROTECT_MEM_SUBSYS_ID 0x0C
  33. #define TZ_PIL_CLEAR_PROTECT_MEM_SUBSYS_ID 0x0D
  34. #define MSM_AUDIO_ION_DRIVER_NAME "msm_audio_ion"
  35. #define MINOR_NUMBER_COUNT 1
  36. struct msm_audio_ion_private {
  37. bool smmu_enabled;
  38. struct device *cb_dev;
  39. struct device *cb_cma_dev;
  40. u8 device_status;
  41. struct list_head alloc_list;
  42. struct mutex list_mutex;
  43. u64 smmu_sid_bits;
  44. u32 smmu_version;
  45. bool is_non_hypervisor;
  46. /*list to store fd, phy. addr and handle data */
  47. struct list_head fd_list;
  48. /*char dev related data */
  49. dev_t ion_major;
  50. struct class *ion_class;
  51. struct device *chardev;
  52. struct cdev cdev;
  53. };
  54. struct msm_audio_alloc_data {
  55. size_t len;
  56. void *vaddr;
  57. struct dma_buf *dma_buf;
  58. struct dma_buf_attachment *attach;
  59. struct sg_table *table;
  60. struct list_head list;
  61. };
  62. static struct msm_audio_ion_private msm_audio_ion_data = {0,};
  63. struct msm_audio_fd_data {
  64. int fd;
  65. void *handle;
  66. dma_addr_t paddr;
  67. struct list_head list;
  68. };
  69. static void msm_audio_ion_add_allocation(
  70. struct msm_audio_ion_private *msm_audio_ion_data,
  71. struct msm_audio_alloc_data *alloc_data)
  72. {
  73. /*
  74. * Since these APIs can be invoked by multiple
  75. * clients, there is need to make sure the list
  76. * of allocations is always protected
  77. */
  78. mutex_lock(&(msm_audio_ion_data->list_mutex));
  79. list_add_tail(&(alloc_data->list),
  80. &(msm_audio_ion_data->alloc_list));
  81. mutex_unlock(&(msm_audio_ion_data->list_mutex));
  82. }
  83. static void *msm_audio_ion_map_kernel(struct dma_buf *dma_buf)
  84. {
  85. int rc = 0;
  86. void *addr = NULL;
  87. struct msm_audio_alloc_data *alloc_data = NULL;
  88. rc = dma_buf_begin_cpu_access(dma_buf, DMA_BIDIRECTIONAL);
  89. if (rc) {
  90. pr_err("%s: kmap dma_buf_begin_cpu_access fail\n", __func__);
  91. goto exit;
  92. }
  93. addr = dma_buf_vmap(dma_buf);
  94. if (!addr) {
  95. pr_err("%s: kernel mapping of dma_buf failed\n",
  96. __func__);
  97. goto exit;
  98. }
  99. /*
  100. * TBD: remove the below section once new API
  101. * for mapping kernel virtual address is available.
  102. */
  103. mutex_lock(&(msm_audio_ion_data.list_mutex));
  104. list_for_each_entry(alloc_data, &(msm_audio_ion_data.alloc_list),
  105. list) {
  106. if (alloc_data->dma_buf == dma_buf) {
  107. alloc_data->vaddr = addr;
  108. break;
  109. }
  110. }
  111. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  112. exit:
  113. return addr;
  114. }
  115. static int msm_audio_dma_buf_map(struct dma_buf *dma_buf,
  116. dma_addr_t *addr, size_t *len, bool is_iova,
  117. bool cma_mem)
  118. {
  119. struct msm_audio_alloc_data *alloc_data = NULL;
  120. struct device *cb_dev;
  121. unsigned long ionflag = 0;
  122. int rc = 0;
  123. void *vaddr = NULL;
  124. if (cma_mem)
  125. cb_dev = msm_audio_ion_data.cb_cma_dev;
  126. else
  127. cb_dev = msm_audio_ion_data.cb_dev;
  128. /* Data required per buffer mapping */
  129. alloc_data = kzalloc(sizeof(*alloc_data), GFP_KERNEL);
  130. if (!alloc_data)
  131. return -ENOMEM;
  132. alloc_data->dma_buf = dma_buf;
  133. alloc_data->len = dma_buf->size;
  134. *len = dma_buf->size;
  135. /* Attach the dma_buf to context bank device */
  136. alloc_data->attach = dma_buf_attach(alloc_data->dma_buf,
  137. cb_dev);
  138. if (IS_ERR(alloc_data->attach)) {
  139. rc = PTR_ERR(alloc_data->attach);
  140. dev_err(cb_dev,
  141. "%s: Fail to attach dma_buf to CB, rc = %d\n",
  142. __func__, rc);
  143. goto free_alloc_data;
  144. }
  145. /* For uncached buffers, avoid cache maintanance */
  146. rc = dma_buf_get_flags(alloc_data->dma_buf, &ionflag);
  147. if (rc) {
  148. dev_err(cb_dev, "%s: dma_buf_get_flags failed: %d\n",
  149. __func__, rc);
  150. goto detach_dma_buf;
  151. }
  152. if (!(ionflag & ION_FLAG_CACHED))
  153. alloc_data->attach->dma_map_attrs |= DMA_ATTR_SKIP_CPU_SYNC;
  154. /*
  155. * Get the scatter-gather list.
  156. * There is no info as this is a write buffer or
  157. * read buffer, hence the request is bi-directional
  158. * to accommodate both read and write mappings.
  159. */
  160. alloc_data->table = dma_buf_map_attachment(alloc_data->attach,
  161. DMA_BIDIRECTIONAL);
  162. if (IS_ERR(alloc_data->table)) {
  163. rc = PTR_ERR(alloc_data->table);
  164. dev_err(cb_dev,
  165. "%s: Fail to map attachment, rc = %d\n",
  166. __func__, rc);
  167. goto detach_dma_buf;
  168. }
  169. /* physical address from mapping */
  170. if (!is_iova) {
  171. *addr = sg_phys(alloc_data->table->sgl);
  172. vaddr = msm_audio_ion_map_kernel((void *)dma_buf);
  173. if (IS_ERR_OR_NULL(vaddr)) {
  174. pr_err("%s: ION memory mapping for AUDIO failed\n",
  175. __func__);
  176. rc = -ENOMEM;
  177. goto detach_dma_buf;
  178. }
  179. alloc_data->vaddr = vaddr;
  180. } else {
  181. *addr = MSM_AUDIO_ION_PHYS_ADDR(alloc_data);
  182. }
  183. msm_audio_ion_add_allocation(&msm_audio_ion_data,
  184. alloc_data);
  185. return rc;
  186. detach_dma_buf:
  187. dma_buf_detach(alloc_data->dma_buf,
  188. alloc_data->attach);
  189. free_alloc_data:
  190. kfree(alloc_data);
  191. alloc_data = NULL;
  192. return rc;
  193. }
  194. static int msm_audio_dma_buf_unmap(struct dma_buf *dma_buf, bool cma_mem)
  195. {
  196. int rc = 0;
  197. struct msm_audio_alloc_data *alloc_data = NULL;
  198. struct list_head *ptr, *next;
  199. struct device *cb_dev;
  200. bool found = false;
  201. if (cma_mem)
  202. cb_dev = msm_audio_ion_data.cb_cma_dev;
  203. else
  204. cb_dev = msm_audio_ion_data.cb_dev;
  205. /*
  206. * Though list_for_each_safe is delete safe, lock
  207. * should be explicitly acquired to avoid race condition
  208. * on adding elements to the list.
  209. */
  210. mutex_lock(&(msm_audio_ion_data.list_mutex));
  211. list_for_each_safe(ptr, next,
  212. &(msm_audio_ion_data.alloc_list)) {
  213. alloc_data = list_entry(ptr, struct msm_audio_alloc_data,
  214. list);
  215. if (alloc_data->dma_buf == dma_buf) {
  216. found = true;
  217. dma_buf_unmap_attachment(alloc_data->attach,
  218. alloc_data->table,
  219. DMA_BIDIRECTIONAL);
  220. dma_buf_detach(alloc_data->dma_buf,
  221. alloc_data->attach);
  222. dma_buf_put(alloc_data->dma_buf);
  223. list_del(&(alloc_data->list));
  224. kfree(alloc_data);
  225. alloc_data = NULL;
  226. break;
  227. }
  228. }
  229. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  230. if (!found) {
  231. dev_err(cb_dev,
  232. "%s: cannot find allocation, dma_buf %pK",
  233. __func__, dma_buf);
  234. rc = -EINVAL;
  235. }
  236. return rc;
  237. }
  238. static int msm_audio_ion_get_phys(struct dma_buf *dma_buf,
  239. dma_addr_t *addr, size_t *len, bool is_iova)
  240. {
  241. int rc = 0;
  242. rc = msm_audio_dma_buf_map(dma_buf, addr, len, is_iova, false);
  243. if (rc) {
  244. pr_err("%s: failed to map DMA buf, err = %d\n",
  245. __func__, rc);
  246. goto err;
  247. }
  248. if (msm_audio_ion_data.smmu_enabled && is_iova) {
  249. /* Append the SMMU SID information to the IOVA address */
  250. *addr |= msm_audio_ion_data.smmu_sid_bits;
  251. }
  252. pr_debug("phys=%pK, len=%zd, rc=%d\n", &(*addr), *len, rc);
  253. err:
  254. return rc;
  255. }
  256. static int msm_audio_ion_unmap_kernel(struct dma_buf *dma_buf)
  257. {
  258. int rc = 0;
  259. void *vaddr = NULL;
  260. struct msm_audio_alloc_data *alloc_data = NULL;
  261. struct device *cb_dev = msm_audio_ion_data.cb_dev;
  262. /*
  263. * TBD: remove the below section once new API
  264. * for unmapping kernel virtual address is available.
  265. */
  266. mutex_lock(&(msm_audio_ion_data.list_mutex));
  267. list_for_each_entry(alloc_data, &(msm_audio_ion_data.alloc_list),
  268. list) {
  269. if (alloc_data->dma_buf == dma_buf) {
  270. vaddr = alloc_data->vaddr;
  271. break;
  272. }
  273. }
  274. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  275. if (!vaddr) {
  276. dev_err(cb_dev,
  277. "%s: cannot find allocation for dma_buf %pK",
  278. __func__, dma_buf);
  279. rc = -EINVAL;
  280. goto err;
  281. }
  282. dma_buf_vunmap(dma_buf, vaddr);
  283. rc = dma_buf_end_cpu_access(dma_buf, DMA_BIDIRECTIONAL);
  284. if (rc) {
  285. dev_err(cb_dev, "%s: kmap dma_buf_end_cpu_access fail\n",
  286. __func__);
  287. goto err;
  288. }
  289. err:
  290. return rc;
  291. }
  292. static int msm_audio_ion_map_buf(struct dma_buf *dma_buf, dma_addr_t *paddr,
  293. size_t *plen, void **vaddr)
  294. {
  295. int rc = 0;
  296. bool is_iova = true;
  297. if (!dma_buf || !paddr || !vaddr || !plen) {
  298. pr_err("%s: Invalid params\n", __func__);
  299. return -EINVAL;
  300. }
  301. rc = msm_audio_ion_get_phys(dma_buf, paddr, plen, is_iova);
  302. if (rc) {
  303. pr_err("%s: ION Get Physical for AUDIO failed, rc = %d\n",
  304. __func__, rc);
  305. dma_buf_put(dma_buf);
  306. goto err;
  307. }
  308. *vaddr = msm_audio_ion_map_kernel(dma_buf);
  309. if (IS_ERR_OR_NULL(*vaddr)) {
  310. pr_err("%s: ION memory mapping for AUDIO failed\n", __func__);
  311. rc = -ENOMEM;
  312. msm_audio_dma_buf_unmap(dma_buf, false);
  313. goto err;
  314. }
  315. err:
  316. return rc;
  317. }
  318. /**
  319. * msm_audio_ion_dma_map -
  320. * Memory maps for a given DMA buffer
  321. *
  322. * @phys_addr: Physical address of DMA buffer to be mapped
  323. * @iova_base: IOVA address of memory mapped DMA buffer
  324. * @size: buffer size
  325. * @dir: DMA direction
  326. * Returns 0 on success or error on failure
  327. */
  328. int msm_audio_ion_dma_map(dma_addr_t *phys_addr, dma_addr_t *iova_base,
  329. u32 size, enum dma_data_direction dir)
  330. {
  331. dma_addr_t iova;
  332. struct device *cb_dev = msm_audio_ion_data.cb_dev;
  333. if (!phys_addr || !iova_base || !size)
  334. return -EINVAL;
  335. iova = dma_map_resource(cb_dev, *phys_addr, size,
  336. dir, 0);
  337. if (dma_mapping_error(cb_dev, iova)) {
  338. pr_err("%s: dma_mapping_error\n", __func__);
  339. return -EIO;
  340. }
  341. pr_debug("%s: dma_mapping_success iova:0x%lx\n", __func__,
  342. (unsigned long)iova);
  343. if (msm_audio_ion_data.smmu_enabled)
  344. /* Append the SMMU SID information to the IOVA address */
  345. iova |= msm_audio_ion_data.smmu_sid_bits;
  346. *iova_base = iova;
  347. return 0;
  348. }
  349. EXPORT_SYMBOL(msm_audio_ion_dma_map);
  350. void msm_audio_fd_list_debug(void)
  351. {
  352. struct msm_audio_fd_data *msm_audio_fd_data = NULL;
  353. list_for_each_entry(msm_audio_fd_data,
  354. &msm_audio_ion_data.fd_list, list) {
  355. pr_debug("%s fd %d handle %pK phy. addr %pK\n", __func__,
  356. msm_audio_fd_data->fd, msm_audio_fd_data->handle,
  357. (void *)msm_audio_fd_data->paddr);
  358. }
  359. }
  360. void msm_audio_update_fd_list(struct msm_audio_fd_data *msm_audio_fd_data)
  361. {
  362. struct msm_audio_fd_data *msm_audio_fd_data1 = NULL;
  363. mutex_lock(&(msm_audio_ion_data.list_mutex));
  364. list_for_each_entry(msm_audio_fd_data1,
  365. &msm_audio_ion_data.fd_list, list) {
  366. if (msm_audio_fd_data1->fd == msm_audio_fd_data->fd) {
  367. pr_err("%s fd already present, not updating the list",
  368. __func__);
  369. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  370. return;
  371. }
  372. }
  373. list_add_tail(&msm_audio_fd_data->list, &msm_audio_ion_data.fd_list);
  374. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  375. }
  376. void msm_audio_delete_fd_entry(void *handle)
  377. {
  378. struct msm_audio_fd_data *msm_audio_fd_data = NULL;
  379. struct list_head *ptr, *next;
  380. mutex_lock(&(msm_audio_ion_data.list_mutex));
  381. list_for_each_safe(ptr, next,
  382. &msm_audio_ion_data.fd_list) {
  383. msm_audio_fd_data = list_entry(ptr, struct msm_audio_fd_data,
  384. list);
  385. if (msm_audio_fd_data->handle == handle) {
  386. pr_debug("%s deleting handle %pK entry from list\n",
  387. __func__, handle);
  388. list_del(&(msm_audio_fd_data->list));
  389. kfree(msm_audio_fd_data);
  390. break;
  391. }
  392. }
  393. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  394. }
  395. int msm_audio_get_phy_addr(int fd, dma_addr_t *paddr)
  396. {
  397. struct msm_audio_fd_data *msm_audio_fd_data = NULL;
  398. int status = -EINVAL;
  399. if (!paddr) {
  400. pr_err("%s Invalid paddr param status %d\n", __func__, status);
  401. return status;
  402. }
  403. pr_debug("%s, fd %d\n", __func__, fd);
  404. mutex_lock(&(msm_audio_ion_data.list_mutex));
  405. list_for_each_entry(msm_audio_fd_data,
  406. &msm_audio_ion_data.fd_list, list) {
  407. if (msm_audio_fd_data->fd == fd) {
  408. *paddr = msm_audio_fd_data->paddr;
  409. status = 0;
  410. pr_debug("%s Found fd %d paddr %pK\n",
  411. __func__, fd, paddr);
  412. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  413. return status;
  414. }
  415. }
  416. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  417. return status;
  418. }
  419. EXPORT_SYMBOL(msm_audio_get_phy_addr);
  420. void msm_audio_get_handle(int fd, void **handle)
  421. {
  422. struct msm_audio_fd_data *msm_audio_fd_data = NULL;
  423. pr_debug("%s fd %d\n", __func__, fd);
  424. mutex_lock(&(msm_audio_ion_data.list_mutex));
  425. list_for_each_entry(msm_audio_fd_data,
  426. &msm_audio_ion_data.fd_list, list) {
  427. if (msm_audio_fd_data->fd == fd) {
  428. *handle = (struct dma_buf *)msm_audio_fd_data->handle;
  429. pr_debug("%s handle %pK\n", __func__, *handle);
  430. break;
  431. }
  432. }
  433. mutex_unlock(&(msm_audio_ion_data.list_mutex));
  434. }
  435. /**
  436. * msm_audio_ion_import-
  437. * Import ION buffer with given file descriptor
  438. *
  439. * @dma_buf: dma_buf for the ION memory
  440. * @fd: file descriptor for the ION memory
  441. * @ionflag: flags associated with ION buffer
  442. * @bufsz: buffer size
  443. * @paddr: Physical address to be assigned with allocated region
  444. * @plen: length of allocated region to be assigned
  445. * @vaddr: virtual address to be assigned
  446. *
  447. * Returns 0 on success or error on failure
  448. */
  449. int msm_audio_ion_import(struct dma_buf **dma_buf, int fd,
  450. unsigned long *ionflag, size_t bufsz,
  451. dma_addr_t *paddr, size_t *plen, void **vaddr)
  452. {
  453. int rc = 0;
  454. if (!(msm_audio_ion_data.device_status & MSM_AUDIO_ION_PROBED)) {
  455. pr_debug("%s: probe is not done, deferred\n", __func__);
  456. return -EPROBE_DEFER;
  457. }
  458. if (!dma_buf || !paddr || !vaddr || !plen) {
  459. pr_err("%s: Invalid params\n", __func__);
  460. return -EINVAL;
  461. }
  462. /* bufsz should be 0 and fd shouldn't be 0 as of now */
  463. *dma_buf = dma_buf_get(fd);
  464. pr_debug("%s: dma_buf =%pK, fd=%d\n", __func__, *dma_buf, fd);
  465. if (IS_ERR_OR_NULL((void *)(*dma_buf))) {
  466. pr_err("%s: dma_buf_get failed\n", __func__);
  467. rc = -EINVAL;
  468. goto err;
  469. }
  470. if (ionflag != NULL) {
  471. rc = dma_buf_get_flags(*dma_buf, ionflag);
  472. if (rc) {
  473. pr_err("%s: could not get flags for the dma_buf\n",
  474. __func__);
  475. goto err_ion_flag;
  476. }
  477. }
  478. rc = msm_audio_ion_map_buf(*dma_buf, paddr, plen, vaddr);
  479. if (rc) {
  480. pr_err("%s: failed to map ION buf, rc = %d\n", __func__, rc);
  481. goto err;
  482. }
  483. pr_debug("%s: mapped address = %pK, size=%zd\n", __func__,
  484. *vaddr, bufsz);
  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);
  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_crash_handler -
  517. * handles cleanup after userspace crashes.
  518. *
  519. * To be called from machine driver.
  520. */
  521. void msm_audio_ion_crash_handler(void)
  522. {
  523. struct msm_audio_fd_data *msm_audio_fd_data = NULL;
  524. struct list_head *ptr, *next;
  525. void *handle = NULL;
  526. pr_debug("Inside %s\n", __func__);
  527. list_for_each_entry(msm_audio_fd_data,
  528. &msm_audio_ion_data.fd_list, list) {
  529. handle = msm_audio_fd_data->handle;
  530. msm_audio_ion_free(handle);
  531. }
  532. list_for_each_safe(ptr, next,
  533. &msm_audio_ion_data.fd_list) {
  534. msm_audio_fd_data = list_entry(ptr, struct msm_audio_fd_data,
  535. list);
  536. list_del(&(msm_audio_fd_data->list));
  537. kfree(msm_audio_fd_data);
  538. }
  539. }
  540. EXPORT_SYMBOL(msm_audio_ion_crash_handler);
  541. static int msm_audio_ion_open(struct inode *inode, struct file *file)
  542. {
  543. int ret = 0;
  544. struct msm_audio_ion_private *ion_data = container_of(inode->i_cdev,
  545. struct msm_audio_ion_private,
  546. cdev);
  547. struct device *dev = ion_data->chardev;
  548. pr_debug("Inside %s\n", __func__);
  549. get_device(dev);
  550. return ret;
  551. }
  552. static int msm_audio_ion_release(struct inode *inode, struct file *file)
  553. {
  554. struct msm_audio_ion_private *ion_data = container_of(inode->i_cdev,
  555. struct msm_audio_ion_private,
  556. cdev);
  557. struct device *dev = ion_data->chardev;
  558. pr_debug("Inside %s\n", __func__);
  559. put_device(dev);
  560. return 0;
  561. }
  562. static long msm_audio_ion_ioctl(struct file *file, unsigned int ioctl_num,
  563. unsigned long __user ioctl_param)
  564. {
  565. void *mem_handle;
  566. dma_addr_t paddr;
  567. size_t pa_len = 0;
  568. void *vaddr;
  569. int ret = 0;
  570. struct msm_audio_fd_data *msm_audio_fd_data = NULL;
  571. pr_debug("%s ioctl num %u\n", __func__, ioctl_num);
  572. switch (ioctl_num) {
  573. case IOCTL_MAP_PHYS_ADDR:
  574. msm_audio_fd_data = kzalloc((sizeof(struct msm_audio_fd_data)),
  575. GFP_KERNEL);
  576. if (!msm_audio_fd_data) {
  577. ret = -ENOMEM;
  578. pr_err("%s : Out of memory ret %d\n", __func__, ret);
  579. return ret;
  580. }
  581. ret = msm_audio_ion_import((struct dma_buf **)&mem_handle, (int)ioctl_param,
  582. NULL, 0, &paddr, &pa_len, &vaddr);
  583. if (ret < 0) {
  584. pr_err("%s Memory map Failed %d\n", __func__, ret);
  585. kfree(msm_audio_fd_data);
  586. return ret;
  587. }
  588. msm_audio_fd_data->fd = (int)ioctl_param;
  589. msm_audio_fd_data->handle = mem_handle;
  590. msm_audio_fd_data->paddr = paddr;
  591. msm_audio_update_fd_list(msm_audio_fd_data);
  592. break;
  593. case IOCTL_UNMAP_PHYS_ADDR:
  594. msm_audio_get_handle((int)ioctl_param, &mem_handle);
  595. ret = msm_audio_ion_free(mem_handle);
  596. if (ret < 0) {
  597. pr_err("%s Ion free failed %d\n", __func__, ret);
  598. return ret;
  599. }
  600. msm_audio_delete_fd_entry(mem_handle);
  601. break;
  602. default:
  603. pr_err("%s Entered default. Invalid ioctl num %u",
  604. __func__, ioctl_num);
  605. ret = -EINVAL;
  606. break;
  607. }
  608. return ret;
  609. }
  610. static int msm_audio_smmu_init(struct device *dev)
  611. {
  612. INIT_LIST_HEAD(&msm_audio_ion_data.alloc_list);
  613. mutex_init(&(msm_audio_ion_data.list_mutex));
  614. return 0;
  615. }
  616. static const struct of_device_id msm_audio_ion_dt_match[] = {
  617. { .compatible = "qcom,msm-audio-ion" },
  618. { .compatible = "qcom,msm-audio-ion-cma"},
  619. { }
  620. };
  621. MODULE_DEVICE_TABLE(of, msm_audio_ion_dt_match);
  622. static const struct file_operations msm_audio_ion_fops = {
  623. .owner = THIS_MODULE,
  624. .open = msm_audio_ion_open,
  625. .release = msm_audio_ion_release,
  626. .unlocked_ioctl = msm_audio_ion_ioctl,
  627. };
  628. static int msm_audio_ion_reg_chrdev(struct msm_audio_ion_private *ion_data)
  629. {
  630. int ret = 0;
  631. ret = alloc_chrdev_region(&ion_data->ion_major, 0,
  632. MINOR_NUMBER_COUNT, MSM_AUDIO_ION_DRIVER_NAME);
  633. if (ret < 0) {
  634. pr_err("%s alloc_chr_dev_region failed ret : %d\n",
  635. __func__, ret);
  636. return ret;
  637. }
  638. pr_debug("%s major number %d", __func__, MAJOR(ion_data->ion_major));
  639. ion_data->ion_class = class_create(THIS_MODULE,
  640. MSM_AUDIO_ION_DRIVER_NAME);
  641. if (IS_ERR(ion_data->ion_class)) {
  642. ret = PTR_ERR(ion_data->ion_class);
  643. pr_err("%s class create failed. ret : %d", __func__, ret);
  644. goto err_class;
  645. }
  646. ion_data->chardev = device_create(ion_data->ion_class, NULL,
  647. ion_data->ion_major, NULL,
  648. MSM_AUDIO_ION_DRIVER_NAME);
  649. if (IS_ERR(ion_data->chardev)) {
  650. ret = PTR_ERR(ion_data->chardev);
  651. pr_err("%s device create failed ret : %d\n", __func__, ret);
  652. goto err_device;
  653. }
  654. cdev_init(&ion_data->cdev, &msm_audio_ion_fops);
  655. ret = cdev_add(&ion_data->cdev, ion_data->ion_major, 1);
  656. if (ret) {
  657. pr_err("%s cdev add failed, ret : %d\n", __func__, ret);
  658. goto err_cdev;
  659. }
  660. return ret;
  661. err_cdev:
  662. device_destroy(ion_data->ion_class, ion_data->ion_major);
  663. err_device:
  664. class_destroy(ion_data->ion_class);
  665. err_class:
  666. unregister_chrdev_region(0, MINOR_NUMBER_COUNT);
  667. return ret;
  668. }
  669. static int msm_audio_ion_unreg_chrdev(struct msm_audio_ion_private *ion_data)
  670. {
  671. cdev_del(&ion_data->cdev);
  672. device_destroy(ion_data->ion_class, ion_data->ion_major);
  673. class_destroy(ion_data->ion_class);
  674. unregister_chrdev_region(0, MINOR_NUMBER_COUNT);
  675. return 0;
  676. }
  677. static int msm_audio_ion_probe(struct platform_device *pdev)
  678. {
  679. int rc = 0;
  680. u64 smmu_sid = 0;
  681. u64 smmu_sid_mask = 0;
  682. const char *msm_audio_ion_dt = "qcom,smmu-enabled";
  683. const char *msm_audio_ion_non_hyp = "qcom,non-hyp-assign";
  684. const char *msm_audio_ion_smmu = "qcom,smmu-version";
  685. const char *msm_audio_ion_smmu_sid_mask = "qcom,smmu-sid-mask";
  686. bool smmu_enabled;
  687. bool is_non_hypervisor_en;
  688. struct device *dev = &pdev->dev;
  689. struct of_phandle_args iommuspec;
  690. #ifndef CONFIG_SPF_CORE
  691. enum apr_subsys_state q6_state;
  692. #endif
  693. dev_err(dev, "%s: msm_audio_ion_probe\n", __func__);
  694. if (dev->of_node == NULL) {
  695. dev_err(dev,
  696. "%s: device tree is not found\n",
  697. __func__);
  698. msm_audio_ion_data.smmu_enabled = 0;
  699. return 0;
  700. }
  701. is_non_hypervisor_en = of_property_read_bool(dev->of_node,
  702. msm_audio_ion_non_hyp);
  703. msm_audio_ion_data.is_non_hypervisor = is_non_hypervisor_en;
  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. #ifndef CONFIG_SPF_CORE
  716. q6_state = apr_get_q6_state();
  717. if (q6_state == APR_SUBSYS_DOWN) {
  718. dev_info(dev,
  719. "defering %s, adsp_state %d\n",
  720. __func__, q6_state);
  721. return -EPROBE_DEFER;
  722. }
  723. #endif
  724. dev_dbg(dev, "%s: adsp is ready\n", __func__);
  725. rc = of_property_read_u32(dev->of_node,
  726. msm_audio_ion_smmu,
  727. &msm_audio_ion_data.smmu_version);
  728. if (rc) {
  729. dev_err(dev,
  730. "%s: qcom,smmu_version missing in DT node\n",
  731. __func__);
  732. return rc;
  733. }
  734. dev_dbg(dev, "%s: SMMU is Enabled. SMMU version is (%d)",
  735. __func__, msm_audio_ion_data.smmu_version);
  736. /* Get SMMU SID information from Devicetree */
  737. rc = of_property_read_u64(dev->of_node,
  738. msm_audio_ion_smmu_sid_mask,
  739. &smmu_sid_mask);
  740. if (rc) {
  741. dev_err(dev,
  742. "%s: qcom,smmu-sid-mask missing in DT node, using default\n",
  743. __func__);
  744. smmu_sid_mask = 0xFFFFFFFFFFFFFFFF;
  745. }
  746. rc = of_parse_phandle_with_args(dev->of_node, "iommus",
  747. "#iommu-cells", 0, &iommuspec);
  748. if (rc)
  749. dev_err(dev, "%s: could not get smmu SID, ret = %d\n",
  750. __func__, rc);
  751. else
  752. smmu_sid = (iommuspec.args[0] & smmu_sid_mask);
  753. msm_audio_ion_data.smmu_sid_bits =
  754. smmu_sid << MSM_AUDIO_SMMU_SID_OFFSET;
  755. if (msm_audio_ion_data.smmu_version == 0x2) {
  756. rc = msm_audio_smmu_init(dev);
  757. } else {
  758. dev_err(dev, "%s: smmu version invalid %d\n",
  759. __func__, msm_audio_ion_data.smmu_version);
  760. rc = -EINVAL;
  761. }
  762. if (rc)
  763. dev_err(dev, "%s: smmu init failed, err = %d\n",
  764. __func__, rc);
  765. exit:
  766. if (!rc)
  767. msm_audio_ion_data.device_status |= MSM_AUDIO_ION_PROBED;
  768. msm_audio_ion_data.cb_dev = dev;
  769. INIT_LIST_HEAD(&msm_audio_ion_data.fd_list);
  770. rc = msm_audio_ion_reg_chrdev(&msm_audio_ion_data);
  771. if (rc) {
  772. pr_err("%s register char dev failed, rc : %d", __func__, rc);
  773. return rc;
  774. }
  775. return rc;
  776. }
  777. static int msm_audio_ion_remove(struct platform_device *pdev)
  778. {
  779. struct device *audio_cb_dev;
  780. audio_cb_dev = msm_audio_ion_data.cb_dev;
  781. msm_audio_ion_data.smmu_enabled = 0;
  782. msm_audio_ion_data.device_status = 0;
  783. msm_audio_ion_unreg_chrdev(&msm_audio_ion_data);
  784. return 0;
  785. }
  786. static struct platform_driver msm_audio_ion_driver = {
  787. .driver = {
  788. .name = "msm-audio-ion",
  789. .owner = THIS_MODULE,
  790. .of_match_table = msm_audio_ion_dt_match,
  791. .suppress_bind_attrs = true,
  792. },
  793. .probe = msm_audio_ion_probe,
  794. .remove = msm_audio_ion_remove,
  795. };
  796. int __init msm_audio_ion_init(void)
  797. {
  798. pr_debug("%s: msm_audio_ion_init called \n",__func__);
  799. return platform_driver_register(&msm_audio_ion_driver);
  800. }
  801. void msm_audio_ion_exit(void)
  802. {
  803. platform_driver_unregister(&msm_audio_ion_driver);
  804. }
  805. module_init(msm_audio_ion_init);
  806. module_exit(msm_audio_ion_exit);
  807. MODULE_DESCRIPTION("MSM Audio ION module");
  808. MODULE_LICENSE("GPL v2");