hif_main.c 19 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881
  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 "cdf_lock.h"
  32. #include "cdf_status.h"
  33. #include <cdf_atomic.h> /* cdf_atomic_read */
  34. #include <targaddrs.h>
  35. #include <bmi_msg.h>
  36. #include "hif_io32.h"
  37. #include <hif.h>
  38. #include <htc_services.h>
  39. #include "regtable.h"
  40. #define ATH_MODULE_NAME hif
  41. #include <a_debug.h>
  42. #include "hif_main.h"
  43. #include "hif_hw_version.h"
  44. #include "ce_api.h"
  45. #include "ce_tasklet.h"
  46. #include "cdf_trace.h"
  47. #include "cdf_status.h"
  48. #include "cds_api.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. #ifdef HIF_PCI
  56. #include "icnss_stub.h"
  57. #else
  58. #include <soc/qcom/icnss.h>
  59. #endif
  60. #include "cds_concurrency.h"
  61. #define AGC_DUMP 1
  62. #define CHANINFO_DUMP 2
  63. #define BB_WATCHDOG_DUMP 3
  64. #ifdef CONFIG_ATH_PCIE_ACCESS_DEBUG
  65. #define PCIE_ACCESS_DUMP 4
  66. #endif
  67. void hif_dump(struct ol_softc *scn, uint8_t cmd_id, bool start)
  68. {
  69. switch (cmd_id) {
  70. case AGC_DUMP:
  71. if (start)
  72. priv_start_agc(scn);
  73. else
  74. priv_dump_agc(scn);
  75. break;
  76. case CHANINFO_DUMP:
  77. if (start)
  78. priv_start_cap_chaninfo(scn);
  79. else
  80. priv_dump_chaninfo(scn);
  81. break;
  82. case BB_WATCHDOG_DUMP:
  83. priv_dump_bbwatchdog(scn);
  84. break;
  85. #ifdef CONFIG_ATH_PCIE_ACCESS_DEBUG
  86. case PCIE_ACCESS_DUMP:
  87. hif_target_dump_access_log();
  88. break;
  89. #endif
  90. default:
  91. HIF_ERROR("%s: Invalid htc dump command", __func__);
  92. break;
  93. }
  94. }
  95. /**
  96. * hif_shut_down_device() - hif_shut_down_device
  97. *
  98. * SThis fucntion shuts down the device
  99. *
  100. * @scn: ol_softc
  101. *
  102. * Return: void
  103. */
  104. void hif_shut_down_device(struct ol_softc *scn)
  105. {
  106. hif_stop(scn);
  107. }
  108. /**
  109. * hif_cancel_deferred_target_sleep() - cancel deferred target sleep
  110. *
  111. * This function cancels the defered target sleep
  112. *
  113. * @scn: ol_softc
  114. *
  115. * Return: void
  116. */
  117. void hif_cancel_deferred_target_sleep(struct ol_softc *scn)
  118. {
  119. hif_pci_cancel_deferred_target_sleep(scn);
  120. }
  121. /**
  122. * hif_get_target_id(): hif_get_target_id
  123. *
  124. * Return the virtual memory base address to the caller
  125. *
  126. * @scn: ol_softc
  127. *
  128. * Return: A_target_id_t
  129. */
  130. A_target_id_t hif_get_target_id(struct ol_softc *scn)
  131. {
  132. return scn->mem;
  133. }
  134. /**
  135. * hif_set_target_sleep(): hif_set_target_sleep
  136. * @scn: scn
  137. * @sleep_ok: sleep_ok
  138. * @wait_for_it: wait
  139. *
  140. * Return: void
  141. */
  142. void hif_set_target_sleep(struct ol_softc *scn,
  143. bool sleep_ok, bool wait_for_it)
  144. {
  145. hif_target_sleep_state_adjust(scn,
  146. sleep_ok, wait_for_it);
  147. }
  148. /**
  149. * hif_target_forced_awake(): hif_target_forced_awake
  150. * @scn: scn
  151. *
  152. * Return: bool
  153. */
  154. bool hif_target_forced_awake(struct ol_softc *scn)
  155. {
  156. A_target_id_t addr = scn->mem;
  157. bool awake;
  158. bool forced_awake;
  159. awake = hif_targ_is_awake(scn, addr);
  160. forced_awake =
  161. !!(hif_read32_mb
  162. (addr + PCIE_LOCAL_BASE_ADDRESS +
  163. PCIE_SOC_WAKE_ADDRESS) & PCIE_SOC_WAKE_V_MASK);
  164. return awake && forced_awake;
  165. }
  166. static inline void hif_fw_event_handler(struct HIF_CE_state *hif_state)
  167. {
  168. struct hif_msg_callbacks *msg_callbacks =
  169. &hif_state->msg_callbacks_current;
  170. if (!msg_callbacks->fwEventHandler)
  171. return;
  172. msg_callbacks->fwEventHandler(msg_callbacks->Context,
  173. CDF_STATUS_E_FAILURE);
  174. }
  175. /**
  176. * hif_fw_interrupt_handler(): FW interrupt handler
  177. *
  178. * This function is the FW interrupt handlder
  179. *
  180. * @irq: irq number
  181. * @arg: the user pointer
  182. *
  183. * Return: bool
  184. */
  185. #ifndef QCA_WIFI_3_0
  186. irqreturn_t hif_fw_interrupt_handler(int irq, void *arg)
  187. {
  188. struct ol_softc *scn = arg;
  189. struct HIF_CE_state *hif_state = HIF_GET_CE_STATE(scn);
  190. uint32_t fw_indicator_address, fw_indicator;
  191. A_TARGET_ACCESS_BEGIN_RET(scn);
  192. fw_indicator_address = hif_state->fw_indicator_address;
  193. /* For sudden unplug this will return ~0 */
  194. fw_indicator = A_TARGET_READ(scn, fw_indicator_address);
  195. if ((fw_indicator != ~0) && (fw_indicator & FW_IND_EVENT_PENDING)) {
  196. /* ACK: clear Target-side pending event */
  197. A_TARGET_WRITE(scn, fw_indicator_address,
  198. fw_indicator & ~FW_IND_EVENT_PENDING);
  199. A_TARGET_ACCESS_END_RET(scn);
  200. if (hif_state->started) {
  201. hif_fw_event_handler(hif_state);
  202. } else {
  203. /*
  204. * Probable Target failure before we're prepared
  205. * to handle it. Generally unexpected.
  206. */
  207. AR_DEBUG_PRINTF(ATH_DEBUG_ERR,
  208. ("%s: Early firmware event indicated\n",
  209. __func__));
  210. }
  211. } else {
  212. A_TARGET_ACCESS_END_RET(scn);
  213. }
  214. return ATH_ISR_SCHED;
  215. }
  216. #else
  217. irqreturn_t hif_fw_interrupt_handler(int irq, void *arg)
  218. {
  219. return ATH_ISR_SCHED;
  220. }
  221. #endif /* #ifdef QCA_WIFI_3_0 */
  222. /**
  223. * hif_get_targetdef(): hif_get_targetdef
  224. * @scn: scn
  225. *
  226. * Return: void *
  227. */
  228. void *hif_get_targetdef(struct ol_softc *hif_ctx)
  229. {
  230. struct ol_softc *scn = HIF_GET_SOFTC(hif_ctx);
  231. return scn->targetdef;
  232. }
  233. /**
  234. * hif_vote_link_down(): unvote for link up
  235. *
  236. * Call hif_vote_link_down to release a previous request made using
  237. * hif_vote_link_up. A hif_vote_link_down call should only be made
  238. * after a corresponding hif_vote_link_up, otherwise you could be
  239. * negating a vote from another source. When no votes are present
  240. * hif will not guarantee the linkstate after hif_bus_suspend.
  241. *
  242. * SYNCHRONIZE WITH hif_vote_link_up by only calling in MC thread
  243. * and initialization deinitialization sequencences.
  244. *
  245. * Return: n/a
  246. */
  247. void hif_vote_link_down(void *hif_ctx)
  248. {
  249. struct ol_softc *scn = hif_ctx;
  250. CDF_BUG(scn);
  251. scn->linkstate_vote--;
  252. if (scn->linkstate_vote == 0)
  253. hif_bus_prevent_linkdown(scn, false);
  254. }
  255. /**
  256. * hif_vote_link_up(): vote to prevent bus from suspending
  257. *
  258. * Makes hif guarantee that fw can message the host normally
  259. * durring suspend.
  260. *
  261. * SYNCHRONIZE WITH hif_vote_link_up by only calling in MC thread
  262. * and initialization deinitialization sequencences.
  263. *
  264. * Return: n/a
  265. */
  266. void hif_vote_link_up(void *hif_ctx)
  267. {
  268. struct ol_softc *scn = hif_ctx;
  269. CDF_BUG(scn);
  270. scn->linkstate_vote++;
  271. if (scn->linkstate_vote == 1)
  272. hif_bus_prevent_linkdown(scn, true);
  273. }
  274. /**
  275. * hif_can_suspend_link(): query if hif is permitted to suspend the link
  276. *
  277. * Hif will ensure that the link won't be suspended if the upperlayers
  278. * don't want it to.
  279. *
  280. * SYNCHRONIZATION: MC thread is stopped before bus suspend thus
  281. * we don't need extra locking to ensure votes dont change while
  282. * we are in the process of suspending or resuming.
  283. *
  284. * Return: false if hif will guarantee link up durring suspend.
  285. */
  286. bool hif_can_suspend_link(void *hif_ctx)
  287. {
  288. struct ol_softc *scn = hif_ctx;
  289. CDF_BUG(scn);
  290. return scn->linkstate_vote == 0;
  291. }
  292. /**
  293. * hif_hia_item_address(): hif_hia_item_address
  294. * @target_type: target_type
  295. * @item_offset: item_offset
  296. *
  297. * Return: n/a
  298. */
  299. uint32_t hif_hia_item_address(uint32_t target_type, uint32_t item_offset)
  300. {
  301. switch (target_type) {
  302. case TARGET_TYPE_AR6002:
  303. return AR6002_HOST_INTEREST_ADDRESS + item_offset;
  304. case TARGET_TYPE_AR6003:
  305. return AR6003_HOST_INTEREST_ADDRESS + item_offset;
  306. case TARGET_TYPE_AR6004:
  307. return AR6004_HOST_INTEREST_ADDRESS + item_offset;
  308. case TARGET_TYPE_AR6006:
  309. return AR6006_HOST_INTEREST_ADDRESS + item_offset;
  310. case TARGET_TYPE_AR9888:
  311. return AR9888_HOST_INTEREST_ADDRESS + item_offset;
  312. case TARGET_TYPE_AR6320:
  313. case TARGET_TYPE_AR6320V2:
  314. return AR6320_HOST_INTEREST_ADDRESS + item_offset;
  315. case TARGET_TYPE_QCA6180:
  316. return QCA6180_HOST_INTEREST_ADDRESS + item_offset;
  317. case TARGET_TYPE_ADRASTEA:
  318. /* ADRASTEA doesn't have a host interest address */
  319. ASSERT(0);
  320. return 0;
  321. default:
  322. ASSERT(0);
  323. return 0;
  324. }
  325. }
  326. /**
  327. * hif_max_num_receives_reached() - check max receive is reached
  328. * @count: unsigned int.
  329. *
  330. * Output check status as bool
  331. *
  332. * Return: bool
  333. */
  334. bool hif_max_num_receives_reached(unsigned int count)
  335. {
  336. if (WLAN_IS_EPPING_ENABLED(cds_get_conparam()))
  337. return count > 120;
  338. else
  339. return count > MAX_NUM_OF_RECEIVES;
  340. }
  341. /**
  342. * init_buffer_count() - initial buffer count
  343. * @maxSize: cdf_size_t
  344. *
  345. * routine to modify the initial buffer count to be allocated on an os
  346. * platform basis. Platform owner will need to modify this as needed
  347. *
  348. * Return: cdf_size_t
  349. */
  350. cdf_size_t init_buffer_count(cdf_size_t maxSize)
  351. {
  352. return maxSize;
  353. }
  354. /**
  355. * hif_init_cdf_ctx(): hif_init_cdf_ctx
  356. * @hif_ctx: hif_ctx
  357. *
  358. * Return: int
  359. */
  360. int hif_init_cdf_ctx(void *hif_ctx)
  361. {
  362. struct ol_softc *scn = (struct ol_softc *)hif_ctx;
  363. cdf_device_t cdf_ctx = scn->cdf_dev;
  364. cdf_ctx->drv = &scn->aps_osdev;
  365. cdf_ctx->drv_hdl = scn->aps_osdev.bdev;
  366. cdf_ctx->dev = scn->aps_osdev.device;
  367. return 0;
  368. }
  369. /**
  370. * hif_deinit_cdf_ctx(): hif_deinit_cdf_ctx
  371. * @hif_ctx: hif_ctx
  372. *
  373. * Return: void
  374. */
  375. void hif_deinit_cdf_ctx(void *hif_ctx)
  376. {
  377. struct ol_softc *scn = (struct ol_softc *)hif_ctx;
  378. if (scn == NULL || !scn->cdf_dev)
  379. return;
  380. scn->cdf_dev = NULL;
  381. }
  382. /**
  383. * hif_save_htc_htt_config_endpoint():
  384. * hif_save_htc_htt_config_endpoint
  385. * @htc_endpoint: htc_endpoint
  386. *
  387. * Return: void
  388. */
  389. void hif_save_htc_htt_config_endpoint(void *hif_ctx, int htc_endpoint)
  390. {
  391. struct ol_softc *scn = hif_ctx;
  392. if (!scn) {
  393. HIF_ERROR("%s: error: scn or scn->hif_sc is NULL!",
  394. __func__);
  395. return;
  396. }
  397. scn->htc_endpoint = htc_endpoint;
  398. }
  399. /**
  400. * hif_get_hw_name(): get a human readable name for the hardware
  401. * @info: Target Info
  402. *
  403. * Return: human readable name for the underlying wifi hardware.
  404. */
  405. static const char *hif_get_hw_name(struct hif_target_info *info)
  406. {
  407. int i;
  408. for (i = 0; i < ARRAY_SIZE(qwlan_hw_list); i++) {
  409. if (info->target_version == qwlan_hw_list[i].id &&
  410. info->target_revision == qwlan_hw_list[i].subid) {
  411. return qwlan_hw_list[i].name;
  412. }
  413. }
  414. return "Unknown Device";
  415. }
  416. /**
  417. * hif_get_hw_info(): hif_get_hw_info
  418. * @scn: scn
  419. * @version: version
  420. * @revision: revision
  421. *
  422. * Return: n/a
  423. */
  424. void hif_get_hw_info(struct ol_softc *scn, u32 *version, u32 *revision,
  425. const char **target_name)
  426. {
  427. struct hif_target_info *info = hif_get_target_info_handle(scn);
  428. *version = info->target_version;
  429. *revision = info->target_revision;
  430. *target_name = hif_get_hw_name(info);
  431. }
  432. /**
  433. * hif_open(): hif_open
  434. *
  435. * Return: scn
  436. */
  437. CDF_STATUS hif_open(cdf_device_t cdf_ctx, enum ath_hal_bus_type bus_type)
  438. {
  439. struct ol_softc *scn;
  440. v_CONTEXT_t cds_context;
  441. CDF_STATUS status = CDF_STATUS_SUCCESS;
  442. struct hif_config_info *cfg;
  443. int bus_context_size = hif_bus_get_context_size();
  444. cds_context = cds_get_global_context();
  445. status = cds_alloc_context(cds_context, CDF_MODULE_ID_HIF,
  446. (void **)&scn, bus_context_size);
  447. if (status != CDF_STATUS_SUCCESS) {
  448. HIF_ERROR("%s: cannot alloc ol_sc", __func__);
  449. return status;
  450. }
  451. cdf_mem_zero(scn, bus_context_size);
  452. scn->cdf_dev = cdf_ctx;
  453. cfg = hif_get_ini_handle(scn);
  454. cfg->max_no_of_peers = 1;
  455. cdf_atomic_init(&scn->wow_done);
  456. cdf_atomic_init(&scn->active_tasklet_cnt);
  457. cdf_atomic_init(&scn->link_suspended);
  458. cdf_atomic_init(&scn->tasklet_from_intr);
  459. init_waitqueue_head(&scn->aps_osdev.event_queue);
  460. scn->linkstate_vote = 0;
  461. status = hif_bus_open(scn, bus_type);
  462. if (status != CDF_STATUS_SUCCESS) {
  463. HIF_ERROR("%s: hif_bus_open error = %d, bus_type = %d",
  464. __func__, status, bus_type);
  465. cds_free_context(cds_context, CDF_MODULE_ID_HIF, scn);
  466. }
  467. return status;
  468. }
  469. /**
  470. * hif_close(): hif_close
  471. * @hif_ctx: hif_ctx
  472. *
  473. * Return: n/a
  474. */
  475. void hif_close(void *hif_ctx)
  476. {
  477. struct ol_softc *scn = hif_ctx;
  478. if (scn == NULL) {
  479. HIF_ERROR("%s: ol_softc is NULL", __func__);
  480. return;
  481. }
  482. if (scn->athdiag_procfs_inited) {
  483. athdiag_procfs_remove();
  484. scn->athdiag_procfs_inited = false;
  485. }
  486. hif_bus_close(scn);
  487. cds_free_context(cds_get_global_context(),
  488. CDF_MODULE_ID_HIF, hif_ctx);
  489. }
  490. /**
  491. * hif_enable(): hif_enable
  492. * @hif_ctx: hif_ctx
  493. * @dev: dev
  494. * @bdev: bus dev
  495. * @bid: bus ID
  496. * @bus_type: bus type
  497. * @type: enable type
  498. *
  499. * Return: CDF_STATUS
  500. */
  501. CDF_STATUS hif_enable(void *hif_ctx, struct device *dev,
  502. void *bdev, const hif_bus_id *bid,
  503. enum ath_hal_bus_type bus_type,
  504. enum hif_enable_type type)
  505. {
  506. CDF_STATUS status;
  507. struct ol_softc *scn = hif_ctx;
  508. if (scn == NULL) {
  509. HIF_ERROR("%s: hif_ctx = NULL", __func__);
  510. return CDF_STATUS_E_NULL_VALUE;
  511. }
  512. status = hif_enable_bus(scn, dev, bdev, bid, type);
  513. if (status != CDF_STATUS_SUCCESS) {
  514. HIF_ERROR("%s: hif_enable_bus error = %d",
  515. __func__, status);
  516. return status;
  517. }
  518. if (ADRASTEA_BU)
  519. hif_vote_link_up(hif_ctx);
  520. if (hif_config_ce(scn)) {
  521. HIF_ERROR("%s: Target probe failed.", __func__);
  522. hif_disable_bus(scn->aps_osdev.bdev);
  523. status = CDF_STATUS_E_FAILURE;
  524. return status;
  525. }
  526. /*
  527. * Flag to avoid potential unallocated memory access from MSI
  528. * interrupt handler which could get scheduled as soon as MSI
  529. * is enabled, i.e to take care of the race due to the order
  530. * in where MSI is enabled before the memory, that will be
  531. * in interrupt handlers, is allocated.
  532. */
  533. #ifdef HIF_PCI
  534. status = hif_configure_irq(hif_ctx);
  535. if (status < 0) {
  536. HIF_ERROR("%s: ERROR - configure_IRQ_and_CE failed, status = %d",
  537. __func__, status);
  538. return CDF_STATUS_E_FAILURE;
  539. }
  540. #endif
  541. scn->hif_init_done = true;
  542. HIF_TRACE("%s: X OK", __func__);
  543. return CDF_STATUS_SUCCESS;
  544. }
  545. /**
  546. * hif_wlan_disable(): call the platform driver to disable wlan
  547. *
  548. * This function passes the con_mode to platform driver to disable
  549. * wlan.
  550. *
  551. * Return: void
  552. */
  553. void hif_wlan_disable(void)
  554. {
  555. enum icnss_driver_mode mode;
  556. uint32_t con_mode = cds_get_conparam();
  557. if (CDF_GLOBAL_FTM_MODE == con_mode)
  558. mode = ICNSS_FTM;
  559. else if (WLAN_IS_EPPING_ENABLED(cds_get_conparam()))
  560. mode = ICNSS_EPPING;
  561. else
  562. mode = ICNSS_MISSION;
  563. icnss_wlan_disable(mode);
  564. }
  565. void hif_disable(void *hif_ctx, enum hif_disable_type type)
  566. {
  567. struct ol_softc *scn = hif_ctx;
  568. if (!scn)
  569. return;
  570. hif_nointrs(scn);
  571. if (scn->hif_init_done == false)
  572. hif_shut_down_device(scn);
  573. else
  574. hif_stop(scn);
  575. if (ADRASTEA_BU)
  576. hif_vote_link_down(hif_ctx);
  577. if (scn->aps_osdev.bdev)
  578. hif_disable_bus(scn->aps_osdev.bdev);
  579. hif_wlan_disable();
  580. scn->notice_send = false;
  581. HIF_INFO("%s: X", __func__);
  582. }
  583. /**
  584. * hif_crash_shutdown_dump_bus_register() - dump bus registers
  585. * @hif_ctx: hif_ctx
  586. *
  587. * Return: n/a
  588. */
  589. #if defined(TARGET_RAMDUMP_AFTER_KERNEL_PANIC) \
  590. && defined(HIF_PCI) && defined(DEBUG)
  591. static void hif_crash_shutdown_dump_bus_register(void *hif_ctx)
  592. {
  593. struct ol_softc *scn = hif_ctx;
  594. if (hif_check_soc_status(scn))
  595. return;
  596. if (hif_dump_registers(scn))
  597. HIF_ERROR("Failed to dump bus registers!");
  598. }
  599. /**
  600. * hif_crash_shutdown(): hif_crash_shutdown
  601. *
  602. * This function is called by the platform driver to dump CE registers
  603. *
  604. * @hif_ctx: hif_ctx
  605. *
  606. * Return: n/a
  607. */
  608. void hif_crash_shutdown(void *hif_ctx)
  609. {
  610. struct ol_softc *scn = HIF_GET_SOFTC(hif_ctx);
  611. struct HIF_CE_state *hif_state = HIF_GET_CE_STATE(hif_ctx);
  612. if (!hif_state)
  613. return;
  614. if (OL_TRGET_STATUS_RESET == scn->target_status) {
  615. HIF_INFO_MED("%s: Target is already asserted, ignore!",
  616. __func__);
  617. return;
  618. }
  619. if (cds_is_load_or_unload_in_progress()) {
  620. HIF_ERROR("%s: Load/unload is in progress, ignore!", __func__);
  621. return;
  622. }
  623. hif_crash_shutdown_dump_bus_register(hif_ctx);
  624. if (ol_copy_ramdump(scn))
  625. goto out;
  626. HIF_INFO_MED("%s: RAM dump collecting completed!", __func__);
  627. out:
  628. return;
  629. }
  630. #else
  631. void hif_crash_shutdown(void *hif_ctx)
  632. {
  633. HIF_INFO_MED("%s: Collecting target RAM dump disabled",
  634. __func__);
  635. return;
  636. }
  637. #endif /* TARGET_RAMDUMP_AFTER_KERNEL_PANIC */
  638. #ifdef QCA_WIFI_3_0
  639. /**
  640. * hif_check_fw_reg(): hif_check_fw_reg
  641. * @scn: scn
  642. * @state:
  643. *
  644. * Return: int
  645. */
  646. int hif_check_fw_reg(struct ol_softc *scn)
  647. {
  648. return 0;
  649. }
  650. #endif
  651. #ifdef IPA_OFFLOAD
  652. /**
  653. * hif_read_phy_mem_base(): hif_read_phy_mem_base
  654. * @scn: scn
  655. * @phy_mem_base: physical mem base
  656. *
  657. * Return: n/a
  658. */
  659. void hif_read_phy_mem_base(struct ol_softc *scn, cdf_dma_addr_t *phy_mem_base)
  660. {
  661. *phy_mem_base = scn->mem_pa;
  662. }
  663. #endif /* IPA_OFFLOAD */
  664. /**
  665. * hif_get_device_type(): hif_get_device_type
  666. * @device_id: device_id
  667. * @revision_id: revision_id
  668. * @hif_type: returned hif_type
  669. * @target_type: returned target_type
  670. *
  671. * Return: int
  672. */
  673. int hif_get_device_type(uint32_t device_id,
  674. uint32_t revision_id,
  675. uint32_t *hif_type, uint32_t *target_type)
  676. {
  677. int ret = 0;
  678. switch (device_id) {
  679. #ifdef QCA_WIFI_3_0_ADRASTEA
  680. case ADRASTEA_DEVICE_ID:
  681. case ADRASTEA_DEVICE_ID_P2_E12:
  682. *hif_type = HIF_TYPE_ADRASTEA;
  683. *target_type = TARGET_TYPE_ADRASTEA;
  684. break;
  685. #else
  686. case QCA6180_DEVICE_ID:
  687. *hif_type = HIF_TYPE_QCA6180;
  688. *target_type = TARGET_TYPE_QCA6180;
  689. break;
  690. #endif
  691. case AR9888_DEVICE_ID:
  692. *hif_type = HIF_TYPE_AR9888;
  693. *target_type = TARGET_TYPE_AR9888;
  694. break;
  695. case AR6320_DEVICE_ID:
  696. switch (revision_id) {
  697. case AR6320_FW_1_1:
  698. case AR6320_FW_1_3:
  699. *hif_type = HIF_TYPE_AR6320;
  700. *target_type = TARGET_TYPE_AR6320;
  701. break;
  702. case AR6320_FW_2_0:
  703. case AR6320_FW_3_0:
  704. case AR6320_FW_3_2:
  705. *hif_type = HIF_TYPE_AR6320V2;
  706. *target_type = TARGET_TYPE_AR6320V2;
  707. break;
  708. default:
  709. HIF_ERROR("%s: error - dev_id = 0x%x, rev_id = 0x%x",
  710. __func__, device_id, revision_id);
  711. ret = -ENODEV;
  712. goto end;
  713. }
  714. break;
  715. default:
  716. HIF_ERROR("%s: Unsupported device ID!", __func__);
  717. ret = -ENODEV;
  718. break;
  719. }
  720. end:
  721. return ret;
  722. }
  723. /**
  724. * Target info and ini parameters are global to the driver
  725. * Hence these structures are exposed to all the modules in
  726. * the driver and they don't need to maintains multiple copies
  727. * of the same info, instead get the handle from hif and
  728. * modify them in hif
  729. */
  730. /**
  731. * hif_get_ini_handle() - API to get hif_config_param handle
  732. * @scn: HIF Context
  733. *
  734. * Return: pointer to hif_config_info
  735. */
  736. struct hif_config_info *hif_get_ini_handle(struct ol_softc *scn)
  737. {
  738. return &scn->hif_config;
  739. }
  740. /**
  741. * hif_get_target_info_handle() - API to get hif_target_info handle
  742. * @scn: HIF context
  743. *
  744. * Return: Pointer to hif_target_info
  745. */
  746. struct hif_target_info *hif_get_target_info_handle(struct ol_softc *scn)
  747. {
  748. return &scn->target_info;
  749. }
  750. #if defined(FEATURE_LRO)
  751. /**
  752. * hif_lro_flush_cb_register - API to register for LRO Flush Callback
  753. * @scn: HIF Context
  754. * @handler: Function pointer to be called by HIF
  755. * @data: Private data to be used by the module registering to HIF
  756. *
  757. * Return: void
  758. */
  759. void hif_lro_flush_cb_register(struct ol_softc *scn,
  760. void (handler)(void *), void *data)
  761. {
  762. ce_lro_flush_cb_register(scn, handler, data);
  763. }
  764. /**
  765. * hif_lro_flush_cb_deregister - API to deregister for LRO Flush Callbacks
  766. * @scn: HIF Context
  767. *
  768. * Return: void
  769. */
  770. void hif_lro_flush_cb_deregister(struct ol_softc *scn)
  771. {
  772. ce_lro_flush_cb_deregister(scn);
  773. }
  774. #endif