pci_qcom.c 17 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648
  1. // SPDX-License-Identifier: GPL-2.0-only
  2. /* Copyright (c) 2022 Qualcomm Innovation Center, Inc. All rights reserved. */
  3. #include "pci_platform.h"
  4. #include "debug.h"
  5. static struct cnss_msi_config msi_config = {
  6. .total_vectors = 32,
  7. .total_users = MSI_USERS,
  8. .users = (struct cnss_msi_user[]) {
  9. { .name = "MHI", .num_vectors = 3, .base_vector = 0 },
  10. { .name = "CE", .num_vectors = 10, .base_vector = 3 },
  11. { .name = "WAKE", .num_vectors = 1, .base_vector = 13 },
  12. { .name = "DP", .num_vectors = 18, .base_vector = 14 },
  13. },
  14. };
  15. #ifdef CONFIG_ONE_MSI_VECTOR
  16. /**
  17. * All the user share the same vector and msi data
  18. * For MHI user, we need pass IRQ array information to MHI component
  19. * MHI_IRQ_NUMBER is defined to specify this MHI IRQ array size
  20. */
  21. #define MHI_IRQ_NUMBER 3
  22. static struct cnss_msi_config msi_config_one_msi = {
  23. .total_vectors = 1,
  24. .total_users = 4,
  25. .users = (struct cnss_msi_user[]) {
  26. { .name = "MHI", .num_vectors = 1, .base_vector = 0 },
  27. { .name = "CE", .num_vectors = 1, .base_vector = 0 },
  28. { .name = "WAKE", .num_vectors = 1, .base_vector = 0 },
  29. { .name = "DP", .num_vectors = 1, .base_vector = 0 },
  30. },
  31. };
  32. #endif
  33. int _cnss_pci_enumerate(struct cnss_plat_data *plat_priv, u32 rc_num)
  34. {
  35. return msm_pcie_enumerate(rc_num);
  36. }
  37. int cnss_pci_assert_perst(struct cnss_pci_data *pci_priv)
  38. {
  39. struct pci_dev *pci_dev = pci_priv->pci_dev;
  40. return msm_pcie_pm_control(MSM_PCIE_HANDLE_LINKDOWN,
  41. pci_dev->bus->number, pci_dev, NULL,
  42. PM_OPTIONS_DEFAULT);
  43. }
  44. int cnss_pci_disable_pc(struct cnss_pci_data *pci_priv, bool vote)
  45. {
  46. struct pci_dev *pci_dev = pci_priv->pci_dev;
  47. return msm_pcie_pm_control(vote ? MSM_PCIE_DISABLE_PC :
  48. MSM_PCIE_ENABLE_PC,
  49. pci_dev->bus->number, pci_dev, NULL,
  50. PM_OPTIONS_DEFAULT);
  51. }
  52. int cnss_pci_set_link_bandwidth(struct cnss_pci_data *pci_priv,
  53. u16 link_speed, u16 link_width)
  54. {
  55. return msm_pcie_set_link_bandwidth(pci_priv->pci_dev,
  56. link_speed, link_width);
  57. }
  58. int cnss_pci_set_max_link_speed(struct cnss_pci_data *pci_priv,
  59. u32 rc_num, u16 link_speed)
  60. {
  61. return msm_pcie_set_target_link_speed(rc_num, link_speed, false);
  62. }
  63. /**
  64. * _cnss_pci_prevent_l1() - Prevent PCIe L1 and L1 sub-states
  65. * @pci_priv: driver PCI bus context pointer
  66. *
  67. * This function shall call corresponding PCIe root complex driver APIs
  68. * to prevent PCIe link enter L1 and L1 sub-states. The APIs should also
  69. * bring link out of L1 or L1 sub-states if any and avoid synchronization
  70. * issues if any.
  71. *
  72. * Return: 0 for success, negative value for error
  73. */
  74. static int _cnss_pci_prevent_l1(struct cnss_pci_data *pci_priv)
  75. {
  76. return msm_pcie_prevent_l1(pci_priv->pci_dev);
  77. }
  78. /**
  79. * _cnss_pci_allow_l1() - Allow PCIe L1 and L1 sub-states
  80. * @pci_priv: driver PCI bus context pointer
  81. *
  82. * This function shall call corresponding PCIe root complex driver APIs
  83. * to allow PCIe link enter L1 and L1 sub-states. The APIs should avoid
  84. * synchronization issues if any.
  85. *
  86. * Return: 0 for success, negative value for error
  87. */
  88. static void _cnss_pci_allow_l1(struct cnss_pci_data *pci_priv)
  89. {
  90. msm_pcie_allow_l1(pci_priv->pci_dev);
  91. }
  92. /**
  93. * cnss_pci_set_link_up() - Power on or resume PCIe link
  94. * @pci_priv: driver PCI bus context pointer
  95. *
  96. * This function shall call corresponding PCIe root complex driver APIs
  97. * to Power on or resume PCIe link.
  98. *
  99. * Return: 0 for success, negative value for error
  100. */
  101. static int cnss_pci_set_link_up(struct cnss_pci_data *pci_priv)
  102. {
  103. struct pci_dev *pci_dev = pci_priv->pci_dev;
  104. enum msm_pcie_pm_opt pm_ops = MSM_PCIE_RESUME;
  105. u32 pm_options = PM_OPTIONS_DEFAULT;
  106. int ret;
  107. ret = msm_pcie_pm_control(pm_ops, pci_dev->bus->number, pci_dev,
  108. NULL, pm_options);
  109. if (ret)
  110. cnss_pr_err("Failed to resume PCI link with default option, err = %d\n",
  111. ret);
  112. return ret;
  113. }
  114. /**
  115. * cnss_pci_set_link_down() - Power off or suspend PCIe link
  116. * @pci_priv: driver PCI bus context pointer
  117. *
  118. * This function shall call corresponding PCIe root complex driver APIs
  119. * to power off or suspend PCIe link.
  120. *
  121. * Return: 0 for success, negative value for error
  122. */
  123. static int cnss_pci_set_link_down(struct cnss_pci_data *pci_priv)
  124. {
  125. struct pci_dev *pci_dev = pci_priv->pci_dev;
  126. enum msm_pcie_pm_opt pm_ops;
  127. u32 pm_options = PM_OPTIONS_DEFAULT;
  128. int ret;
  129. if (pci_priv->drv_connected_last) {
  130. cnss_pr_vdbg("Use PCIe DRV suspend\n");
  131. pm_ops = MSM_PCIE_DRV_SUSPEND;
  132. } else {
  133. pm_ops = MSM_PCIE_SUSPEND;
  134. }
  135. ret = msm_pcie_pm_control(pm_ops, pci_dev->bus->number, pci_dev,
  136. NULL, pm_options);
  137. if (ret)
  138. cnss_pr_err("Failed to suspend PCI link with default option, err = %d\n",
  139. ret);
  140. return ret;
  141. }
  142. bool cnss_pci_is_drv_supported(struct cnss_pci_data *pci_priv)
  143. {
  144. struct pci_dev *root_port = pcie_find_root_port(pci_priv->pci_dev);
  145. struct cnss_plat_data *plat_priv = pci_priv->plat_priv;
  146. struct device_node *root_of_node;
  147. bool drv_supported = false;
  148. if (!root_port) {
  149. cnss_pr_err("PCIe DRV is not supported as root port is null\n");
  150. pci_priv->drv_supported = false;
  151. return drv_supported;
  152. }
  153. root_of_node = root_port->dev.of_node;
  154. if (root_of_node->parent) {
  155. drv_supported = of_property_read_bool(root_of_node->parent,
  156. "qcom,drv-supported") ||
  157. of_property_read_bool(root_of_node->parent,
  158. "qcom,drv-name");
  159. }
  160. cnss_pr_dbg("PCIe DRV is %s\n",
  161. drv_supported ? "supported" : "not supported");
  162. pci_priv->drv_supported = drv_supported;
  163. if (drv_supported) {
  164. plat_priv->cap.cap_flag |= CNSS_HAS_DRV_SUPPORT;
  165. cnss_set_feature_list(plat_priv, CNSS_DRV_SUPPORT_V01);
  166. }
  167. return drv_supported;
  168. }
  169. static void cnss_pci_event_cb(struct msm_pcie_notify *notify)
  170. {
  171. struct pci_dev *pci_dev;
  172. struct cnss_pci_data *pci_priv;
  173. struct device *dev;
  174. struct cnss_plat_data *plat_priv = NULL;
  175. int ret = 0;
  176. if (!notify)
  177. return;
  178. pci_dev = notify->user;
  179. if (!pci_dev)
  180. return;
  181. pci_priv = cnss_get_pci_priv(pci_dev);
  182. if (!pci_priv)
  183. return;
  184. dev = &pci_priv->pci_dev->dev;
  185. switch (notify->event) {
  186. case MSM_PCIE_EVENT_LINK_RECOVER:
  187. cnss_pr_dbg("PCI link recover callback\n");
  188. plat_priv = pci_priv->plat_priv;
  189. if (!plat_priv) {
  190. cnss_pr_err("plat_priv is NULL\n");
  191. return;
  192. }
  193. plat_priv->ctrl_params.quirks |= BIT(LINK_DOWN_SELF_RECOVERY);
  194. ret = msm_pcie_pm_control(MSM_PCIE_HANDLE_LINKDOWN,
  195. pci_dev->bus->number, pci_dev, NULL,
  196. PM_OPTIONS_DEFAULT);
  197. if (ret)
  198. cnss_pci_handle_linkdown(pci_priv);
  199. break;
  200. case MSM_PCIE_EVENT_LINKDOWN:
  201. cnss_pr_dbg("PCI link down event callback\n");
  202. cnss_pci_handle_linkdown(pci_priv);
  203. break;
  204. case MSM_PCIE_EVENT_WAKEUP:
  205. if ((cnss_pci_get_monitor_wake_intr(pci_priv) &&
  206. cnss_pci_get_auto_suspended(pci_priv)) ||
  207. dev->power.runtime_status == RPM_SUSPENDING) {
  208. cnss_pci_set_monitor_wake_intr(pci_priv, false);
  209. cnss_pci_pm_request_resume(pci_priv);
  210. }
  211. break;
  212. case MSM_PCIE_EVENT_DRV_CONNECT:
  213. cnss_pr_dbg("DRV subsystem is connected\n");
  214. cnss_pci_set_drv_connected(pci_priv, 1);
  215. break;
  216. case MSM_PCIE_EVENT_DRV_DISCONNECT:
  217. cnss_pr_dbg("DRV subsystem is disconnected\n");
  218. if (cnss_pci_get_auto_suspended(pci_priv))
  219. cnss_pci_pm_request_resume(pci_priv);
  220. cnss_pci_set_drv_connected(pci_priv, 0);
  221. break;
  222. default:
  223. cnss_pr_err("Received invalid PCI event: %d\n", notify->event);
  224. }
  225. }
  226. int cnss_reg_pci_event(struct cnss_pci_data *pci_priv)
  227. {
  228. int ret = 0;
  229. struct msm_pcie_register_event *pci_event;
  230. pci_event = &pci_priv->msm_pci_event;
  231. pci_event->events = MSM_PCIE_EVENT_LINK_RECOVER |
  232. MSM_PCIE_EVENT_LINKDOWN |
  233. MSM_PCIE_EVENT_WAKEUP;
  234. if (cnss_pci_is_drv_supported(pci_priv))
  235. pci_event->events = pci_event->events |
  236. MSM_PCIE_EVENT_DRV_CONNECT |
  237. MSM_PCIE_EVENT_DRV_DISCONNECT;
  238. pci_event->user = pci_priv->pci_dev;
  239. pci_event->mode = MSM_PCIE_TRIGGER_CALLBACK;
  240. pci_event->callback = cnss_pci_event_cb;
  241. pci_event->options = MSM_PCIE_CONFIG_NO_RECOVERY;
  242. ret = msm_pcie_register_event(pci_event);
  243. if (ret)
  244. cnss_pr_err("Failed to register MSM PCI event, err = %d\n",
  245. ret);
  246. return ret;
  247. }
  248. void cnss_dereg_pci_event(struct cnss_pci_data *pci_priv)
  249. {
  250. msm_pcie_deregister_event(&pci_priv->msm_pci_event);
  251. }
  252. int cnss_wlan_adsp_pc_enable(struct cnss_pci_data *pci_priv,
  253. bool control)
  254. {
  255. struct pci_dev *pci_dev = pci_priv->pci_dev;
  256. int ret = 0;
  257. u32 pm_options = PM_OPTIONS_DEFAULT;
  258. struct cnss_plat_data *plat_priv = pci_priv->plat_priv;
  259. if (plat_priv->adsp_pc_enabled == control) {
  260. cnss_pr_dbg("ADSP power collapse already %s\n",
  261. control ? "Enabled" : "Disabled");
  262. return 0;
  263. }
  264. if (control)
  265. pm_options &= ~MSM_PCIE_CONFIG_NO_DRV_PC;
  266. else
  267. pm_options |= MSM_PCIE_CONFIG_NO_DRV_PC;
  268. ret = msm_pcie_pm_control(MSM_PCIE_DRV_PC_CTRL, pci_dev->bus->number,
  269. pci_dev, NULL, pm_options);
  270. if (ret)
  271. return ret;
  272. cnss_pr_dbg("%s ADSP power collapse\n", control ? "Enable" : "Disable");
  273. plat_priv->adsp_pc_enabled = control;
  274. return 0;
  275. }
  276. static int cnss_set_pci_link_status(struct cnss_pci_data *pci_priv,
  277. enum pci_link_status status)
  278. {
  279. u16 link_speed, link_width = pci_priv->def_link_width;
  280. u16 one_lane = PCI_EXP_LNKSTA_NLW_X1 >> PCI_EXP_LNKSTA_NLW_SHIFT;
  281. int ret;
  282. cnss_pr_vdbg("Set PCI link status to: %u\n", status);
  283. switch (status) {
  284. case PCI_GEN1:
  285. link_speed = PCI_EXP_LNKSTA_CLS_2_5GB;
  286. if (!link_width)
  287. link_width = one_lane;
  288. break;
  289. case PCI_GEN2:
  290. link_speed = PCI_EXP_LNKSTA_CLS_5_0GB;
  291. if (!link_width)
  292. link_width = one_lane;
  293. break;
  294. case PCI_DEF:
  295. link_speed = pci_priv->def_link_speed;
  296. if (!link_speed || !link_width) {
  297. cnss_pr_err("PCI link speed or width is not valid\n");
  298. return -EINVAL;
  299. }
  300. break;
  301. default:
  302. cnss_pr_err("Unknown PCI link status config: %u\n", status);
  303. return -EINVAL;
  304. }
  305. ret = cnss_pci_set_link_bandwidth(pci_priv, link_speed, link_width);
  306. if (!ret)
  307. pci_priv->cur_link_speed = link_speed;
  308. return ret;
  309. }
  310. int cnss_set_pci_link(struct cnss_pci_data *pci_priv, bool link_up)
  311. {
  312. int ret = 0, retry = 0;
  313. cnss_pr_vdbg("%s PCI link\n", link_up ? "Resuming" : "Suspending");
  314. if (link_up) {
  315. retry:
  316. ret = cnss_pci_set_link_up(pci_priv);
  317. if (ret && retry++ < LINK_TRAINING_RETRY_MAX_TIMES) {
  318. cnss_pr_dbg("Retry PCI link training #%d\n", retry);
  319. if (pci_priv->pci_link_down_ind)
  320. msleep(LINK_TRAINING_RETRY_DELAY_MS * retry);
  321. goto retry;
  322. }
  323. } else {
  324. /* Since DRV suspend cannot be done in Gen 3, set it to
  325. * Gen 2 if current link speed is larger than Gen 2.
  326. */
  327. if (pci_priv->drv_connected_last &&
  328. pci_priv->cur_link_speed > PCI_EXP_LNKSTA_CLS_5_0GB)
  329. cnss_set_pci_link_status(pci_priv, PCI_GEN2);
  330. ret = cnss_pci_set_link_down(pci_priv);
  331. }
  332. if (pci_priv->drv_connected_last) {
  333. if ((link_up && !ret) || (!link_up && ret))
  334. cnss_set_pci_link_status(pci_priv, PCI_DEF);
  335. }
  336. return ret;
  337. }
  338. int cnss_pci_prevent_l1(struct device *dev)
  339. {
  340. struct pci_dev *pci_dev = to_pci_dev(dev);
  341. struct cnss_pci_data *pci_priv = cnss_get_pci_priv(pci_dev);
  342. int ret;
  343. if (!pci_priv) {
  344. cnss_pr_err("pci_priv is NULL\n");
  345. return -ENODEV;
  346. }
  347. if (pci_priv->pci_link_state == PCI_LINK_DOWN) {
  348. cnss_pr_dbg("PCIe link is in suspend state\n");
  349. return -EIO;
  350. }
  351. if (pci_priv->pci_link_down_ind) {
  352. cnss_pr_err("PCIe link is down\n");
  353. return -EIO;
  354. }
  355. ret = _cnss_pci_prevent_l1(pci_priv);
  356. if (ret == -EIO) {
  357. cnss_pr_err("Failed to prevent PCIe L1, considered as link down\n");
  358. cnss_pci_link_down(dev);
  359. }
  360. return ret;
  361. }
  362. EXPORT_SYMBOL(cnss_pci_prevent_l1);
  363. void cnss_pci_allow_l1(struct device *dev)
  364. {
  365. struct pci_dev *pci_dev = to_pci_dev(dev);
  366. struct cnss_pci_data *pci_priv = cnss_get_pci_priv(pci_dev);
  367. if (!pci_priv) {
  368. cnss_pr_err("pci_priv is NULL\n");
  369. return;
  370. }
  371. if (pci_priv->pci_link_state == PCI_LINK_DOWN) {
  372. cnss_pr_dbg("PCIe link is in suspend state\n");
  373. return;
  374. }
  375. if (pci_priv->pci_link_down_ind) {
  376. cnss_pr_err("PCIe link is down\n");
  377. return;
  378. }
  379. _cnss_pci_allow_l1(pci_priv);
  380. }
  381. EXPORT_SYMBOL(cnss_pci_allow_l1);
  382. int cnss_pci_get_msi_assignment(struct cnss_pci_data *pci_priv)
  383. {
  384. pci_priv->msi_config = &msi_config;
  385. return 0;
  386. }
  387. #ifdef CONFIG_ONE_MSI_VECTOR
  388. static int cnss_pci_get_one_msi_assignment(struct cnss_pci_data *pci_priv)
  389. {
  390. pci_priv->msi_config = &msi_config_one_msi;
  391. return 0;
  392. }
  393. bool cnss_pci_fallback_one_msi(struct cnss_pci_data *pci_priv,
  394. int *num_vectors)
  395. {
  396. struct pci_dev *pci_dev = pci_priv->pci_dev;
  397. struct cnss_msi_config *msi_config;
  398. cnss_pci_get_one_msi_assignment(pci_priv);
  399. msi_config = pci_priv->msi_config;
  400. if (!msi_config) {
  401. cnss_pr_err("one msi_config is NULL!\n");
  402. return false;
  403. }
  404. *num_vectors = pci_alloc_irq_vectors(pci_dev,
  405. msi_config->total_vectors,
  406. msi_config->total_vectors,
  407. PCI_IRQ_MSI);
  408. if (*num_vectors < 0) {
  409. cnss_pr_err("Failed to get one MSI vector!\n");
  410. return false;
  411. }
  412. cnss_pr_dbg("request MSI one vector\n");
  413. return true;
  414. }
  415. bool cnss_pci_is_one_msi(struct cnss_pci_data *pci_priv)
  416. {
  417. return pci_priv && pci_priv->msi_config &&
  418. (pci_priv->msi_config->total_vectors == 1);
  419. }
  420. int cnss_pci_get_one_msi_mhi_irq_array_size(struct cnss_pci_data *pci_priv)
  421. {
  422. return MHI_IRQ_NUMBER;
  423. }
  424. #else
  425. bool cnss_pci_fallback_one_msi(struct cnss_pci_data *pci_priv,
  426. int *num_vectors)
  427. {
  428. return false;
  429. }
  430. bool cnss_pci_is_one_msi(struct cnss_pci_data *pci_priv)
  431. {
  432. return false;
  433. }
  434. int cnss_pci_get_one_msi_mhi_irq_array_size(struct cnss_pci_data *pci_priv)
  435. {
  436. return 0;
  437. }
  438. #endif
  439. static int cnss_pci_smmu_fault_handler(struct iommu_domain *domain,
  440. struct device *dev, unsigned long iova,
  441. int flags, void *handler_token)
  442. {
  443. struct cnss_pci_data *pci_priv = handler_token;
  444. cnss_fatal_err("SMMU fault happened with IOVA 0x%lx\n", iova);
  445. if (!pci_priv) {
  446. cnss_pr_err("pci_priv is NULL\n");
  447. return -ENODEV;
  448. }
  449. pci_priv->is_smmu_fault = true;
  450. cnss_pci_update_status(pci_priv, CNSS_FW_DOWN);
  451. cnss_force_fw_assert(&pci_priv->pci_dev->dev);
  452. /* IOMMU driver requires -ENOSYS to print debug info. */
  453. return -ENOSYS;
  454. }
  455. int cnss_pci_init_smmu(struct cnss_pci_data *pci_priv)
  456. {
  457. struct pci_dev *pci_dev = pci_priv->pci_dev;
  458. struct cnss_plat_data *plat_priv = pci_priv->plat_priv;
  459. struct device_node *of_node;
  460. struct resource *res;
  461. const char *iommu_dma_type;
  462. u32 addr_win[2];
  463. int ret = 0;
  464. of_node = of_parse_phandle(pci_dev->dev.of_node, "qcom,iommu-group", 0);
  465. if (!of_node)
  466. return ret;
  467. cnss_pr_dbg("Initializing SMMU\n");
  468. pci_priv->iommu_domain = iommu_get_domain_for_dev(&pci_dev->dev);
  469. ret = of_property_read_string(of_node, "qcom,iommu-dma",
  470. &iommu_dma_type);
  471. if (!ret && !strcmp("fastmap", iommu_dma_type)) {
  472. cnss_pr_dbg("Enabling SMMU S1 stage\n");
  473. pci_priv->smmu_s1_enable = true;
  474. iommu_set_fault_handler(pci_priv->iommu_domain,
  475. cnss_pci_smmu_fault_handler, pci_priv);
  476. }
  477. ret = of_property_read_u32_array(of_node, "qcom,iommu-dma-addr-pool",
  478. addr_win, ARRAY_SIZE(addr_win));
  479. if (ret) {
  480. cnss_pr_err("Invalid SMMU size window, err = %d\n", ret);
  481. of_node_put(of_node);
  482. return ret;
  483. }
  484. pci_priv->smmu_iova_start = addr_win[0];
  485. pci_priv->smmu_iova_len = addr_win[1];
  486. cnss_pr_dbg("smmu_iova_start: %pa, smmu_iova_len: 0x%zx\n",
  487. &pci_priv->smmu_iova_start,
  488. pci_priv->smmu_iova_len);
  489. res = platform_get_resource_byname(plat_priv->plat_dev, IORESOURCE_MEM,
  490. "smmu_iova_ipa");
  491. if (res) {
  492. pci_priv->smmu_iova_ipa_start = res->start;
  493. pci_priv->smmu_iova_ipa_current = res->start;
  494. pci_priv->smmu_iova_ipa_len = resource_size(res);
  495. cnss_pr_dbg("smmu_iova_ipa_start: %pa, smmu_iova_ipa_len: 0x%zx\n",
  496. &pci_priv->smmu_iova_ipa_start,
  497. pci_priv->smmu_iova_ipa_len);
  498. }
  499. pci_priv->iommu_geometry = of_property_read_bool(of_node,
  500. "qcom,iommu-geometry");
  501. cnss_pr_dbg("iommu_geometry: %d\n", pci_priv->iommu_geometry);
  502. of_node_put(of_node);
  503. return 0;
  504. }
  505. int _cnss_pci_get_reg_dump(struct cnss_pci_data *pci_priv,
  506. u8 *buf, u32 len)
  507. {
  508. return msm_pcie_reg_dump(pci_priv->pci_dev, buf, len);
  509. }
  510. #if IS_ENABLED(CONFIG_ARCH_QCOM)
  511. /**
  512. * cnss_pci_of_reserved_mem_device_init() - Assign reserved memory region
  513. * to given PCI device
  514. * @pci_priv: driver PCI bus context pointer
  515. *
  516. * This function shall call corresponding of_reserved_mem_device* API to
  517. * assign reserved memory region to PCI device based on where the memory is
  518. * defined and attached to (platform device of_node or PCI device of_node)
  519. * in device tree.
  520. *
  521. * Return: 0 for success, negative value for error
  522. */
  523. int cnss_pci_of_reserved_mem_device_init(struct cnss_pci_data *pci_priv)
  524. {
  525. struct device *dev_pci = &pci_priv->pci_dev->dev;
  526. int ret;
  527. /* Use of_reserved_mem_device_init_by_idx() if reserved memory is
  528. * attached to platform device of_node.
  529. */
  530. ret = of_reserved_mem_device_init(dev_pci);
  531. if (ret)
  532. cnss_pr_err("Failed to init reserved mem device, err = %d\n",
  533. ret);
  534. if (dev_pci->cma_area)
  535. cnss_pr_dbg("CMA area is %s\n",
  536. cma_get_name(dev_pci->cma_area));
  537. return ret;
  538. }
  539. int cnss_pci_wake_gpio_init(struct cnss_pci_data *pci_priv)
  540. {
  541. return 0;
  542. }
  543. void cnss_pci_wake_gpio_deinit(struct cnss_pci_data *pci_priv)
  544. {
  545. }
  546. #endif