hif_main.c 22 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980
  1. /*
  2. * Copyright (c) 2015-2016 The Linux Foundation. All rights reserved.
  3. *
  4. * Previously licensed under the ISC license by Qualcomm Atheros, Inc.
  5. *
  6. *
  7. * Permission to use, copy, modify, and/or distribute this software for
  8. * any purpose with or without fee is hereby granted, provided that the
  9. * above copyright notice and this permission notice appear in all
  10. * copies.
  11. *
  12. * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL
  13. * WARRANTIES WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED
  14. * WARRANTIES OF MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE
  15. * AUTHOR BE LIABLE FOR ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL
  16. * DAMAGES OR ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR
  17. * PROFITS, WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER
  18. * TORTIOUS ACTION, ARISING OUT OF OR IN CONNECTION WITH THE USE OR
  19. * PERFORMANCE OF THIS SOFTWARE.
  20. */
  21. /*
  22. * This file was originally distributed by Qualcomm Atheros, Inc.
  23. * under proprietary terms before Copyright ownership was assigned
  24. * to the Linux Foundation.
  25. */
  26. #include <osdep.h>
  27. #include "a_types.h"
  28. #include "athdefs.h"
  29. #include "osapi_linux.h"
  30. #include "targcfg.h"
  31. #include "qdf_lock.h"
  32. #include "qdf_status.h"
  33. #include "qdf_status.h"
  34. #include <qdf_atomic.h> /* qdf_atomic_read */
  35. #include <targaddrs.h>
  36. #include <bmi_msg.h>
  37. #include "hif_io32.h"
  38. #include <hif.h>
  39. #include <htc_services.h>
  40. #include "regtable.h"
  41. #define ATH_MODULE_NAME hif
  42. #include <a_debug.h>
  43. #include "hif_main.h"
  44. #include "hif_hw_version.h"
  45. #include "ce_api.h"
  46. #include "ce_tasklet.h"
  47. #include "qdf_trace.h"
  48. #include "qdf_status.h"
  49. #ifdef CONFIG_CNSS
  50. #include <net/cnss.h>
  51. #endif
  52. #include "epping_main.h"
  53. #include "hif_debug.h"
  54. #include "mp_dev.h"
  55. #include "platform_icnss.h"
  56. #define AGC_DUMP 1
  57. #define CHANINFO_DUMP 2
  58. #define BB_WATCHDOG_DUMP 3
  59. #ifdef CONFIG_ATH_PCIE_ACCESS_DEBUG
  60. #define PCIE_ACCESS_DUMP 4
  61. #endif
  62. void hif_dump(struct hif_opaque_softc *hif_ctx, uint8_t cmd_id, bool start)
  63. {
  64. struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
  65. switch (cmd_id) {
  66. case AGC_DUMP:
  67. if (start)
  68. priv_start_agc(scn);
  69. else
  70. priv_dump_agc(scn);
  71. break;
  72. case CHANINFO_DUMP:
  73. if (start)
  74. priv_start_cap_chaninfo(scn);
  75. else
  76. priv_dump_chaninfo(scn);
  77. break;
  78. case BB_WATCHDOG_DUMP:
  79. priv_dump_bbwatchdog(scn);
  80. break;
  81. #ifdef CONFIG_ATH_PCIE_ACCESS_DEBUG
  82. case PCIE_ACCESS_DUMP:
  83. hif_target_dump_access_log();
  84. break;
  85. #endif
  86. default:
  87. HIF_ERROR("%s: Invalid htc dump command", __func__);
  88. break;
  89. }
  90. }
  91. /**
  92. * hif_shut_down_device() - hif_shut_down_device
  93. *
  94. * SThis fucntion shuts down the device
  95. *
  96. * @scn: hif_opaque_softc
  97. *
  98. * Return: void
  99. */
  100. void hif_shut_down_device(struct hif_opaque_softc *scn)
  101. {
  102. hif_stop(scn);
  103. }
  104. /**
  105. * hif_cancel_deferred_target_sleep() - cancel deferred target sleep
  106. *
  107. * This function cancels the defered target sleep
  108. *
  109. * @scn: hif_opaque_softc
  110. *
  111. * Return: void
  112. */
  113. void hif_cancel_deferred_target_sleep(struct hif_opaque_softc *hif_ctx)
  114. {
  115. struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
  116. hif_pci_cancel_deferred_target_sleep(scn);
  117. }
  118. /**
  119. * hif_get_target_id(): hif_get_target_id
  120. *
  121. * Return the virtual memory base address to the caller
  122. *
  123. * @scn: hif_softc
  124. *
  125. * Return: A_target_id_t
  126. */
  127. A_target_id_t hif_get_target_id(struct hif_softc *scn)
  128. {
  129. return scn->mem;
  130. }
  131. /**
  132. * hif_target_forced_awake(): hif_target_forced_awake
  133. * @scn: scn
  134. *
  135. * Return: bool
  136. */
  137. bool hif_target_forced_awake(struct hif_softc *scn)
  138. {
  139. A_target_id_t addr = scn->mem;
  140. bool awake;
  141. bool forced_awake;
  142. awake = hif_targ_is_awake(scn, addr);
  143. forced_awake =
  144. !!(hif_read32_mb
  145. (addr + PCIE_LOCAL_BASE_ADDRESS +
  146. PCIE_SOC_WAKE_ADDRESS) & PCIE_SOC_WAKE_V_MASK);
  147. return awake && forced_awake;
  148. }
  149. static inline void hif_fw_event_handler(struct HIF_CE_state *hif_state)
  150. {
  151. struct hif_msg_callbacks *msg_callbacks =
  152. &hif_state->msg_callbacks_current;
  153. if (!msg_callbacks->fwEventHandler)
  154. return;
  155. msg_callbacks->fwEventHandler(msg_callbacks->Context,
  156. QDF_STATUS_E_FAILURE);
  157. }
  158. /**
  159. * hif_fw_interrupt_handler(): FW interrupt handler
  160. *
  161. * This function is the FW interrupt handlder
  162. *
  163. * @irq: irq number
  164. * @arg: the user pointer
  165. *
  166. * Return: bool
  167. */
  168. #ifndef QCA_WIFI_3_0
  169. irqreturn_t hif_fw_interrupt_handler(int irq, void *arg)
  170. {
  171. struct hif_softc *scn = arg;
  172. struct HIF_CE_state *hif_state = HIF_GET_CE_STATE(scn);
  173. uint32_t fw_indicator_address, fw_indicator;
  174. A_TARGET_ACCESS_BEGIN_RET(scn);
  175. fw_indicator_address = hif_state->fw_indicator_address;
  176. /* For sudden unplug this will return ~0 */
  177. fw_indicator = A_TARGET_READ(scn, fw_indicator_address);
  178. if ((fw_indicator != ~0) && (fw_indicator & FW_IND_EVENT_PENDING)) {
  179. /* ACK: clear Target-side pending event */
  180. A_TARGET_WRITE(scn, fw_indicator_address,
  181. fw_indicator & ~FW_IND_EVENT_PENDING);
  182. A_TARGET_ACCESS_END_RET(scn);
  183. if (hif_state->started) {
  184. hif_fw_event_handler(hif_state);
  185. } else {
  186. /*
  187. * Probable Target failure before we're prepared
  188. * to handle it. Generally unexpected.
  189. */
  190. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  191. ("%s: Early firmware event indicated\n",
  192. __func__));
  193. }
  194. } else {
  195. A_TARGET_ACCESS_END_RET(scn);
  196. }
  197. return ATH_ISR_SCHED;
  198. }
  199. #else
  200. irqreturn_t hif_fw_interrupt_handler(int irq, void *arg)
  201. {
  202. return ATH_ISR_SCHED;
  203. }
  204. #endif /* #ifdef QCA_WIFI_3_0 */
  205. /**
  206. * hif_get_targetdef(): hif_get_targetdef
  207. * @scn: scn
  208. *
  209. * Return: void *
  210. */
  211. void *hif_get_targetdef(struct hif_opaque_softc *hif_ctx)
  212. {
  213. struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
  214. return scn->targetdef;
  215. }
  216. /**
  217. * hif_vote_link_down(): unvote for link up
  218. *
  219. * Call hif_vote_link_down to release a previous request made using
  220. * hif_vote_link_up. A hif_vote_link_down call should only be made
  221. * after a corresponding hif_vote_link_up, otherwise you could be
  222. * negating a vote from another source. When no votes are present
  223. * hif will not guarantee the linkstate after hif_bus_suspend.
  224. *
  225. * SYNCHRONIZE WITH hif_vote_link_up by only calling in MC thread
  226. * and initialization deinitialization sequencences.
  227. *
  228. * Return: n/a
  229. */
  230. void hif_vote_link_down(struct hif_opaque_softc *hif_ctx)
  231. {
  232. struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
  233. QDF_BUG(scn);
  234. scn->linkstate_vote--;
  235. if (scn->linkstate_vote == 0)
  236. hif_bus_prevent_linkdown(scn, false);
  237. }
  238. /**
  239. * hif_vote_link_up(): vote to prevent bus from suspending
  240. *
  241. * Makes hif guarantee that fw can message the host normally
  242. * durring suspend.
  243. *
  244. * SYNCHRONIZE WITH hif_vote_link_up by only calling in MC thread
  245. * and initialization deinitialization sequencences.
  246. *
  247. * Return: n/a
  248. */
  249. void hif_vote_link_up(struct hif_opaque_softc *hif_ctx)
  250. {
  251. struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
  252. QDF_BUG(scn);
  253. scn->linkstate_vote++;
  254. if (scn->linkstate_vote == 1)
  255. hif_bus_prevent_linkdown(scn, true);
  256. }
  257. /**
  258. * hif_can_suspend_link(): query if hif is permitted to suspend the link
  259. *
  260. * Hif will ensure that the link won't be suspended if the upperlayers
  261. * don't want it to.
  262. *
  263. * SYNCHRONIZATION: MC thread is stopped before bus suspend thus
  264. * we don't need extra locking to ensure votes dont change while
  265. * we are in the process of suspending or resuming.
  266. *
  267. * Return: false if hif will guarantee link up durring suspend.
  268. */
  269. bool hif_can_suspend_link(struct hif_opaque_softc *hif_ctx)
  270. {
  271. struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
  272. QDF_BUG(scn);
  273. return scn->linkstate_vote == 0;
  274. }
  275. /**
  276. * hif_hia_item_address(): hif_hia_item_address
  277. * @target_type: target_type
  278. * @item_offset: item_offset
  279. *
  280. * Return: n/a
  281. */
  282. uint32_t hif_hia_item_address(uint32_t target_type, uint32_t item_offset)
  283. {
  284. switch (target_type) {
  285. case TARGET_TYPE_AR6002:
  286. return AR6002_HOST_INTEREST_ADDRESS + item_offset;
  287. case TARGET_TYPE_AR6003:
  288. return AR6003_HOST_INTEREST_ADDRESS + item_offset;
  289. case TARGET_TYPE_AR6004:
  290. return AR6004_HOST_INTEREST_ADDRESS + item_offset;
  291. case TARGET_TYPE_AR6006:
  292. return AR6006_HOST_INTEREST_ADDRESS + item_offset;
  293. case TARGET_TYPE_AR9888:
  294. return AR9888_HOST_INTEREST_ADDRESS + item_offset;
  295. case TARGET_TYPE_AR6320:
  296. case TARGET_TYPE_AR6320V2:
  297. return AR6320_HOST_INTEREST_ADDRESS + item_offset;
  298. case TARGET_TYPE_QCA6180:
  299. return QCA6180_HOST_INTEREST_ADDRESS + item_offset;
  300. case TARGET_TYPE_ADRASTEA:
  301. /* ADRASTEA doesn't have a host interest address */
  302. ASSERT(0);
  303. return 0;
  304. default:
  305. ASSERT(0);
  306. return 0;
  307. }
  308. }
  309. /**
  310. * hif_max_num_receives_reached() - check max receive is reached
  311. * @scn: HIF Context
  312. * @count: unsigned int.
  313. *
  314. * Output check status as bool
  315. *
  316. * Return: bool
  317. */
  318. bool hif_max_num_receives_reached(struct hif_softc *scn, unsigned int count)
  319. {
  320. if (WLAN_IS_EPPING_ENABLED(hif_get_conparam(scn)))
  321. return count > 120;
  322. else
  323. return count > MAX_NUM_OF_RECEIVES;
  324. }
  325. /**
  326. * init_buffer_count() - initial buffer count
  327. * @maxSize: qdf_size_t
  328. *
  329. * routine to modify the initial buffer count to be allocated on an os
  330. * platform basis. Platform owner will need to modify this as needed
  331. *
  332. * Return: qdf_size_t
  333. */
  334. qdf_size_t init_buffer_count(qdf_size_t maxSize)
  335. {
  336. return maxSize;
  337. }
  338. /**
  339. * hif_save_htc_htt_config_endpoint():
  340. * hif_save_htc_htt_config_endpoint
  341. * @htc_endpoint: htc_endpoint
  342. *
  343. * Return: void
  344. */
  345. void hif_save_htc_htt_config_endpoint(struct hif_opaque_softc *hif_ctx,
  346. int htc_endpoint)
  347. {
  348. struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
  349. if (!scn) {
  350. HIF_ERROR("%s: error: scn or scn->hif_sc is NULL!",
  351. __func__);
  352. return;
  353. }
  354. scn->htc_endpoint = htc_endpoint;
  355. }
  356. /**
  357. * hif_get_hw_name(): get a human readable name for the hardware
  358. * @info: Target Info
  359. *
  360. * Return: human readable name for the underlying wifi hardware.
  361. */
  362. static const char *hif_get_hw_name(struct hif_target_info *info)
  363. {
  364. int i;
  365. for (i = 0; i < ARRAY_SIZE(qwlan_hw_list); i++) {
  366. if (info->target_version == qwlan_hw_list[i].id &&
  367. info->target_revision == qwlan_hw_list[i].subid) {
  368. return qwlan_hw_list[i].name;
  369. }
  370. }
  371. return "Unknown Device";
  372. }
  373. /**
  374. * hif_get_hw_info(): hif_get_hw_info
  375. * @scn: scn
  376. * @version: version
  377. * @revision: revision
  378. *
  379. * Return: n/a
  380. */
  381. void hif_get_hw_info(struct hif_opaque_softc *scn, u32 *version, u32 *revision,
  382. const char **target_name)
  383. {
  384. struct hif_target_info *info = hif_get_target_info_handle(scn);
  385. *version = info->target_version;
  386. *revision = info->target_revision;
  387. *target_name = hif_get_hw_name(info);
  388. }
  389. /**
  390. * hif_open(): hif_open
  391. * @qdf_ctx: QDF Context
  392. * @mode: Driver Mode
  393. * @bus_type: Bus Type
  394. * @cbk: CDS Callbacks
  395. *
  396. * API to open HIF Context
  397. *
  398. * Return: HIF Opaque Pointer
  399. */
  400. struct hif_opaque_softc *hif_open(qdf_device_t qdf_ctx, uint32_t mode,
  401. enum qdf_bus_type bus_type,
  402. struct hif_callbacks *cbk)
  403. {
  404. struct hif_softc *scn;
  405. QDF_STATUS status = QDF_STATUS_SUCCESS;
  406. int bus_context_size = hif_bus_get_context_size();
  407. scn = (struct hif_softc *)qdf_mem_malloc(bus_context_size);
  408. if (!scn) {
  409. HIF_ERROR("%s: cannot alloc memory for HIF context of size:%d",
  410. __func__, bus_context_size);
  411. return GET_HIF_OPAQUE_HDL(scn);
  412. }
  413. qdf_mem_zero(scn, bus_context_size);
  414. scn->qdf_dev = qdf_ctx;
  415. scn->hif_con_param = mode;
  416. qdf_atomic_init(&scn->active_tasklet_cnt);
  417. qdf_atomic_init(&scn->link_suspended);
  418. qdf_atomic_init(&scn->tasklet_from_intr);
  419. qdf_mem_copy(&scn->callbacks, cbk, sizeof(struct hif_callbacks));
  420. status = hif_bus_open(scn, bus_type);
  421. if (status != QDF_STATUS_SUCCESS) {
  422. HIF_ERROR("%s: hif_bus_open error = %d, bus_type = %d",
  423. __func__, status, bus_type);
  424. qdf_mem_free(scn);
  425. scn = NULL;
  426. }
  427. return GET_HIF_OPAQUE_HDL(scn);
  428. }
  429. /**
  430. * hif_close(): hif_close
  431. * @hif_ctx: hif_ctx
  432. *
  433. * Return: n/a
  434. */
  435. void hif_close(struct hif_opaque_softc *hif_ctx)
  436. {
  437. struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
  438. if (scn == NULL) {
  439. HIF_ERROR("%s: hif_opaque_softc is NULL", __func__);
  440. return;
  441. }
  442. if (scn->athdiag_procfs_inited) {
  443. athdiag_procfs_remove();
  444. scn->athdiag_procfs_inited = false;
  445. }
  446. hif_bus_close(scn);
  447. qdf_mem_free(scn);
  448. }
  449. /**
  450. * hif_enable(): hif_enable
  451. * @hif_ctx: hif_ctx
  452. * @dev: dev
  453. * @bdev: bus dev
  454. * @bid: bus ID
  455. * @bus_type: bus type
  456. * @type: enable type
  457. *
  458. * Return: QDF_STATUS
  459. */
  460. QDF_STATUS hif_enable(struct hif_opaque_softc *hif_ctx, struct device *dev,
  461. void *bdev, const hif_bus_id *bid,
  462. enum qdf_bus_type bus_type,
  463. enum hif_enable_type type)
  464. {
  465. QDF_STATUS status;
  466. struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
  467. if (scn == NULL) {
  468. HIF_ERROR("%s: hif_ctx = NULL", __func__);
  469. return QDF_STATUS_E_NULL_VALUE;
  470. }
  471. status = hif_enable_bus(scn, dev, bdev, bid, type);
  472. if (status != QDF_STATUS_SUCCESS) {
  473. HIF_ERROR("%s: hif_enable_bus error = %d",
  474. __func__, status);
  475. return status;
  476. }
  477. if (ADRASTEA_BU)
  478. hif_vote_link_up(hif_ctx);
  479. if (hif_bus_configure(scn)) {
  480. HIF_ERROR("%s: Target probe failed.", __func__);
  481. hif_disable_bus(scn);
  482. status = QDF_STATUS_E_FAILURE;
  483. return status;
  484. }
  485. /*
  486. * Flag to avoid potential unallocated memory access from MSI
  487. * interrupt handler which could get scheduled as soon as MSI
  488. * is enabled, i.e to take care of the race due to the order
  489. * in where MSI is enabled before the memory, that will be
  490. * in interrupt handlers, is allocated.
  491. */
  492. scn->hif_init_done = true;
  493. HIF_TRACE("%s: X OK", __func__);
  494. return QDF_STATUS_SUCCESS;
  495. }
  496. /**
  497. * hif_wlan_disable(): call the platform driver to disable wlan
  498. * @scn: HIF Context
  499. *
  500. * This function passes the con_mode to platform driver to disable
  501. * wlan.
  502. *
  503. * Return: void
  504. */
  505. void hif_wlan_disable(struct hif_softc *scn)
  506. {
  507. enum icnss_driver_mode mode;
  508. uint32_t con_mode = hif_get_conparam(scn);
  509. if (QDF_GLOBAL_FTM_MODE == con_mode)
  510. mode = ICNSS_FTM;
  511. else if (WLAN_IS_EPPING_ENABLED(con_mode))
  512. mode = ICNSS_EPPING;
  513. else
  514. mode = ICNSS_MISSION;
  515. icnss_wlan_disable(mode);
  516. }
  517. void hif_disable(struct hif_opaque_softc *hif_ctx, enum hif_disable_type type)
  518. {
  519. struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
  520. if (!scn)
  521. return;
  522. hif_nointrs(scn);
  523. if (scn->hif_init_done == false)
  524. hif_shut_down_device(hif_ctx);
  525. else
  526. hif_stop(hif_ctx);
  527. if (ADRASTEA_BU)
  528. hif_vote_link_down(hif_ctx);
  529. hif_disable_bus(scn);
  530. hif_wlan_disable(scn);
  531. scn->notice_send = false;
  532. HIF_INFO("%s: X", __func__);
  533. }
  534. /**
  535. * hif_crash_shutdown_dump_bus_register() - dump bus registers
  536. * @hif_ctx: hif_ctx
  537. *
  538. * Return: n/a
  539. */
  540. #if defined(TARGET_RAMDUMP_AFTER_KERNEL_PANIC) \
  541. && defined(DEBUG)
  542. static void hif_crash_shutdown_dump_bus_register(void *hif_ctx)
  543. {
  544. struct hif_opaque_softc *scn = hif_ctx;
  545. if (hif_check_soc_status(scn))
  546. return;
  547. if (hif_dump_registers(scn))
  548. HIF_ERROR("Failed to dump bus registers!");
  549. }
  550. /**
  551. * hif_crash_shutdown(): hif_crash_shutdown
  552. *
  553. * This function is called by the platform driver to dump CE registers
  554. *
  555. * @hif_ctx: hif_ctx
  556. *
  557. * Return: n/a
  558. */
  559. void hif_crash_shutdown(struct hif_opaque_softc *hif_ctx)
  560. {
  561. struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
  562. if (!hif_ctx)
  563. return;
  564. if (scn->bus_type == QDF_BUS_TYPE_SNOC) {
  565. HIF_INFO_MED("%s: RAM dump disabled for bustype %d",
  566. __func__, scn->bus_type);
  567. return;
  568. }
  569. if (OL_TRGET_STATUS_RESET == scn->target_status) {
  570. HIF_INFO_MED("%s: Target is already asserted, ignore!",
  571. __func__);
  572. return;
  573. }
  574. if (hif_is_load_or_unload_in_progress(scn)) {
  575. HIF_ERROR("%s: Load/unload is in progress, ignore!", __func__);
  576. return;
  577. }
  578. hif_crash_shutdown_dump_bus_register(hif_ctx);
  579. if (ol_copy_ramdump(hif_ctx))
  580. goto out;
  581. HIF_INFO_MED("%s: RAM dump collecting completed!", __func__);
  582. out:
  583. return;
  584. }
  585. #else
  586. void hif_crash_shutdown(struct hif_opaque_softc *hif_ctx)
  587. {
  588. HIF_INFO_MED("%s: Collecting target RAM dump disabled",
  589. __func__);
  590. return;
  591. }
  592. #endif /* TARGET_RAMDUMP_AFTER_KERNEL_PANIC */
  593. #ifdef QCA_WIFI_3_0
  594. /**
  595. * hif_check_fw_reg(): hif_check_fw_reg
  596. * @scn: scn
  597. * @state:
  598. *
  599. * Return: int
  600. */
  601. int hif_check_fw_reg(struct hif_opaque_softc *scn)
  602. {
  603. return 0;
  604. }
  605. #endif
  606. #ifdef IPA_OFFLOAD
  607. /**
  608. * hif_read_phy_mem_base(): hif_read_phy_mem_base
  609. * @scn: scn
  610. * @phy_mem_base: physical mem base
  611. *
  612. * Return: n/a
  613. */
  614. void hif_read_phy_mem_base(struct hif_softc *scn, qdf_dma_addr_t *phy_mem_base)
  615. {
  616. *phy_mem_base = scn->mem_pa;
  617. }
  618. #endif /* IPA_OFFLOAD */
  619. /**
  620. * hif_get_device_type(): hif_get_device_type
  621. * @device_id: device_id
  622. * @revision_id: revision_id
  623. * @hif_type: returned hif_type
  624. * @target_type: returned target_type
  625. *
  626. * Return: int
  627. */
  628. int hif_get_device_type(uint32_t device_id,
  629. uint32_t revision_id,
  630. uint32_t *hif_type, uint32_t *target_type)
  631. {
  632. int ret = 0;
  633. switch (device_id) {
  634. #ifdef QCA_WIFI_3_0_ADRASTEA
  635. case ADRASTEA_DEVICE_ID:
  636. case ADRASTEA_DEVICE_ID_P2_E12:
  637. *hif_type = HIF_TYPE_ADRASTEA;
  638. *target_type = TARGET_TYPE_ADRASTEA;
  639. break;
  640. #else
  641. case QCA6180_DEVICE_ID:
  642. *hif_type = HIF_TYPE_QCA6180;
  643. *target_type = TARGET_TYPE_QCA6180;
  644. break;
  645. #endif
  646. case AR9888_DEVICE_ID:
  647. *hif_type = HIF_TYPE_AR9888;
  648. *target_type = TARGET_TYPE_AR9888;
  649. break;
  650. case AR6320_DEVICE_ID:
  651. switch (revision_id) {
  652. case AR6320_FW_1_1:
  653. case AR6320_FW_1_3:
  654. *hif_type = HIF_TYPE_AR6320;
  655. *target_type = TARGET_TYPE_AR6320;
  656. break;
  657. case AR6320_FW_2_0:
  658. case AR6320_FW_3_0:
  659. case AR6320_FW_3_2:
  660. *hif_type = HIF_TYPE_AR6320V2;
  661. *target_type = TARGET_TYPE_AR6320V2;
  662. break;
  663. default:
  664. HIF_ERROR("%s: error - dev_id = 0x%x, rev_id = 0x%x",
  665. __func__, device_id, revision_id);
  666. ret = -ENODEV;
  667. goto end;
  668. }
  669. break;
  670. default:
  671. HIF_ERROR("%s: Unsupported device ID!", __func__);
  672. ret = -ENODEV;
  673. break;
  674. }
  675. end:
  676. return ret;
  677. }
  678. /**
  679. * hif_needs_bmi() - return true if the soc needs bmi through the driver
  680. * @hif_ctx: hif context
  681. *
  682. * Return: true if the soc needs driver bmi otherwise false
  683. */
  684. bool hif_needs_bmi(struct hif_opaque_softc *hif_ctx)
  685. {
  686. struct hif_softc *hif_sc = HIF_GET_SOFTC(hif_ctx);
  687. return hif_sc->bus_type != QDF_BUS_TYPE_SNOC;
  688. }
  689. /**
  690. * hif_get_bus_type() - return the bus type
  691. *
  692. * Return: enum qdf_bus_type
  693. */
  694. enum qdf_bus_type hif_get_bus_type(struct hif_opaque_softc *hif_hdl)
  695. {
  696. struct hif_softc *scn = HIF_GET_SOFTC(hif_hdl);
  697. return scn->bus_type;
  698. }
  699. /**
  700. * Target info and ini parameters are global to the driver
  701. * Hence these structures are exposed to all the modules in
  702. * the driver and they don't need to maintains multiple copies
  703. * of the same info, instead get the handle from hif and
  704. * modify them in hif
  705. */
  706. /**
  707. * hif_get_ini_handle() - API to get hif_config_param handle
  708. * @hif_ctx: HIF Context
  709. *
  710. * Return: pointer to hif_config_info
  711. */
  712. struct hif_config_info *hif_get_ini_handle(struct hif_opaque_softc *hif_ctx)
  713. {
  714. struct hif_softc *sc = HIF_GET_SOFTC(hif_ctx);
  715. return &sc->hif_config;
  716. }
  717. /**
  718. * hif_get_target_info_handle() - API to get hif_target_info handle
  719. * @hif_ctx: HIF context
  720. *
  721. * Return: Pointer to hif_target_info
  722. */
  723. struct hif_target_info *hif_get_target_info_handle(
  724. struct hif_opaque_softc *hif_ctx)
  725. {
  726. struct hif_softc *sc = HIF_GET_SOFTC(hif_ctx);
  727. return &sc->target_info;
  728. }
  729. #if defined(FEATURE_LRO)
  730. /**
  731. * hif_lro_flush_cb_register - API to register for LRO Flush Callback
  732. * @scn: HIF Context
  733. * @handler: Function pointer to be called by HIF
  734. * @data: Private data to be used by the module registering to HIF
  735. *
  736. * Return: void
  737. */
  738. void hif_lro_flush_cb_register(struct hif_opaque_softc *scn,
  739. void (handler)(void *), void *data)
  740. {
  741. ce_lro_flush_cb_register(scn, handler, data);
  742. }
  743. /**
  744. * hif_lro_flush_cb_deregister - API to deregister for LRO Flush Callbacks
  745. * @scn: HIF Context
  746. *
  747. * Return: void
  748. */
  749. void hif_lro_flush_cb_deregister(struct hif_opaque_softc *scn)
  750. {
  751. ce_lro_flush_cb_deregister(scn);
  752. }
  753. #endif
  754. /**
  755. * hif_get_target_status - API to get target status
  756. * @hif_ctx: HIF Context
  757. *
  758. * Return: enum ol_target_status
  759. */
  760. ol_target_status hif_get_target_status(struct hif_opaque_softc *hif_ctx)
  761. {
  762. struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
  763. return scn->target_status;
  764. }
  765. /**
  766. * hif_set_target_status() - API to set target status
  767. * @hif_ctx: HIF Context
  768. * @status: Target Status
  769. *
  770. * Return: void
  771. */
  772. void hif_set_target_status(struct hif_opaque_softc *hif_ctx,
  773. ol_target_status status)
  774. {
  775. struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
  776. scn->target_status = status;
  777. }
  778. /**
  779. * hif_init_ini_config() - API to initialize HIF configuration parameters
  780. * @hif_ctx: HIF Context
  781. * @cfg: HIF Configuration
  782. *
  783. * Return: void
  784. */
  785. void hif_init_ini_config(struct hif_opaque_softc *hif_ctx,
  786. struct hif_config_info *cfg)
  787. {
  788. struct hif_softc *scn = HIF_GET_SOFTC(hif_ctx);
  789. qdf_mem_copy(&scn->hif_config, cfg, sizeof(struct hif_config_info));
  790. }
  791. /**
  792. * hif_get_conparam() - API to get driver mode in HIF
  793. * @scn: HIF Context
  794. *
  795. * Return: driver mode of operation
  796. */
  797. uint32_t hif_get_conparam(struct hif_softc *scn)
  798. {
  799. if (!scn)
  800. return 0;
  801. return scn->hif_con_param;
  802. }
  803. /**
  804. * hif_get_callbacks_handle() - API to get callbacks Handle
  805. * @scn: HIF Context
  806. *
  807. * Return: pointer to HIF Callbacks
  808. */
  809. struct hif_callbacks *hif_get_callbacks_handle(struct hif_softc *scn)
  810. {
  811. return &scn->callbacks;
  812. }
  813. /**
  814. * hif_is_driver_unloading() - API to query upper layers if driver is unloading
  815. * @scn: HIF Context
  816. *
  817. * Return: True/False
  818. */
  819. bool hif_is_driver_unloading(struct hif_softc *scn)
  820. {
  821. struct hif_callbacks *cbk = hif_get_callbacks_handle(scn);
  822. if (cbk && cbk->is_driver_unloading)
  823. return cbk->is_driver_unloading(cbk->context);
  824. return false;
  825. }
  826. /**
  827. * hif_is_load_or_unload_in_progress() - API to query upper layers if
  828. * load/unload in progress
  829. * @scn: HIF Context
  830. *
  831. * Return: True/False
  832. */
  833. bool hif_is_load_or_unload_in_progress(struct hif_softc *scn)
  834. {
  835. struct hif_callbacks *cbk = hif_get_callbacks_handle(scn);
  836. if (cbk && cbk->is_load_unload_in_progress)
  837. return cbk->is_load_unload_in_progress(cbk->context);
  838. return false;
  839. }
  840. /**
  841. * hif_is_recovery_in_progress() - API to query upper layers if recovery in
  842. * progress
  843. * @scn: HIF Context
  844. *
  845. * Return: True/False
  846. */
  847. bool hif_is_recovery_in_progress(struct hif_softc *scn)
  848. {
  849. struct hif_callbacks *cbk = hif_get_callbacks_handle(scn);
  850. if (cbk && cbk->is_recovery_in_progress)
  851. return cbk->is_recovery_in_progress(cbk->context);
  852. return false;
  853. }