msm_audio_ion.c 22 KB

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