hif.h 18 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525
  1. /*
  2. * Copyright (c) 2013-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. #ifndef _HIF_H_
  27. #define _HIF_H_
  28. #ifdef __cplusplus
  29. extern "C" {
  30. #endif /* __cplusplus */
  31. /* Header files */
  32. #include <qdf_status.h>
  33. #include "qdf_nbuf.h"
  34. #include "ol_if_athvar.h"
  35. #include <linux/platform_device.h>
  36. #ifdef HIF_PCI
  37. #include <linux/pci.h>
  38. #endif /* HIF_PCI */
  39. #define ENABLE_MBOX_DUMMY_SPACE_FEATURE 1
  40. typedef struct htc_callbacks HTC_CALLBACKS;
  41. typedef void __iomem *A_target_id_t;
  42. #define HIF_TYPE_AR6002 2
  43. #define HIF_TYPE_AR6003 3
  44. #define HIF_TYPE_AR6004 5
  45. #define HIF_TYPE_AR9888 6
  46. #define HIF_TYPE_AR6320 7
  47. #define HIF_TYPE_AR6320V2 8
  48. /* For attaching Peregrine 2.0 board host_reg_tbl only */
  49. #define HIF_TYPE_AR9888V2 8
  50. #define HIF_TYPE_QCA6180 9
  51. #define HIF_TYPE_ADRASTEA 10
  52. #define TARGET_TYPE_UNKNOWN 0
  53. #define TARGET_TYPE_AR6001 1
  54. #define TARGET_TYPE_AR6002 2
  55. #define TARGET_TYPE_AR6003 3
  56. #define TARGET_TYPE_AR6004 5
  57. #define TARGET_TYPE_AR6006 6
  58. #define TARGET_TYPE_AR9888 7
  59. #define TARGET_TYPE_AR6320 8
  60. #define TARGET_TYPE_AR900B 9
  61. /* For attach Peregrine 2.0 board target_reg_tbl only */
  62. #define TARGET_TYPE_AR9888V2 10
  63. /* For attach Rome1.0 target_reg_tbl only*/
  64. #define TARGET_TYPE_AR6320V1 11
  65. /* For Rome2.0/2.1 target_reg_tbl ID*/
  66. #define TARGET_TYPE_AR6320V2 12
  67. /* For Rome3.0 target_reg_tbl ID*/
  68. #define TARGET_TYPE_AR6320V3 13
  69. /* For Tufello1.0 target_reg_tbl ID*/
  70. #define TARGET_TYPE_QCA9377V1 14
  71. /* For QCA6180 target */
  72. #define TARGET_TYPE_QCA6180 15
  73. /* For Adrastea target */
  74. #define TARGET_TYPE_ADRASTEA 16
  75. struct CE_state;
  76. #ifdef QCA_WIFI_3_0_ADRASTEA
  77. #define CE_COUNT_MAX 12
  78. #else
  79. #define CE_COUNT_MAX 8
  80. #endif
  81. /* These numbers are selected so that the product is close to current
  82. higher limit of packets HIF services at one shot (1000) */
  83. #define QCA_NAPI_BUDGET 64
  84. #define QCA_NAPI_DEF_SCALE 16
  85. /* NOTE: This is to adapt non-NAPI solution to use
  86. the same "budget" as NAPI. Will be removed
  87. `once decision about NAPI is made */
  88. #define HIF_NAPI_MAX_RECEIVES (QCA_NAPI_BUDGET * QCA_NAPI_DEF_SCALE)
  89. /* NOTE: "napi->scale" can be changed,
  90. but this does not change the number of buckets */
  91. #define QCA_NAPI_NUM_BUCKETS (QCA_NAPI_BUDGET / QCA_NAPI_DEF_SCALE)
  92. struct qca_napi_stat {
  93. uint32_t napi_schedules;
  94. uint32_t napi_polls;
  95. uint32_t napi_completes;
  96. uint32_t napi_workdone;
  97. uint32_t napi_budget_uses[QCA_NAPI_NUM_BUCKETS];
  98. };
  99. /**
  100. * per NAPI instance data structure
  101. * This data structure holds stuff per NAPI instance.
  102. * Note that, in the current implementation, though scale is
  103. * an instance variable, it is set to the same value for all
  104. * instances.
  105. */
  106. struct qca_napi_info {
  107. struct net_device netdev; /* dummy net_dev */
  108. struct napi_struct napi; /* one NAPI Instance per CE in phase I */
  109. uint8_t scale; /* currently same on all instances */
  110. uint8_t id;
  111. struct qca_napi_stat stats[NR_CPUS];
  112. };
  113. /**
  114. * NAPI data-sructure common to all NAPI instances.
  115. *
  116. * A variable of this type will be stored in hif module context.
  117. */
  118. struct qca_napi_data {
  119. /* NOTE: make sure the mutex is inited only at the very beginning
  120. once for the lifetime of the driver. For now, granularity of one
  121. is OK, but we might want to have a better granularity later */
  122. struct mutex mutex;
  123. uint32_t state;
  124. uint32_t ce_map; /* bitmap of created/registered NAPI
  125. instances, indexed by pipe_id,
  126. not used by clients (clients use an
  127. id returned by create) */
  128. struct qca_napi_info napis[CE_COUNT_MAX];
  129. };
  130. /**
  131. * struct hif_config_info - Place Holder for hif confiruation
  132. * @enable_self_recovery: Self Recovery
  133. *
  134. * Structure for holding hif ini parameters.
  135. */
  136. struct hif_config_info {
  137. bool enable_self_recovery;
  138. #ifdef FEATURE_RUNTIME_PM
  139. bool enable_runtime_pm;
  140. u_int32_t runtime_pm_delay;
  141. #endif
  142. };
  143. /**
  144. * struct hif_target_info - Target Information
  145. * @target_version: Target Version
  146. * @target_type: Target Type
  147. * @target_revision: Target Revision
  148. * @soc_version: SOC Version
  149. *
  150. * Structure to hold target information.
  151. */
  152. struct hif_target_info {
  153. uint32_t target_version;
  154. uint32_t target_type;
  155. uint32_t target_revision;
  156. uint32_t soc_version;
  157. };
  158. struct hif_opaque_softc {
  159. };
  160. typedef enum {
  161. HIF_DEVICE_POWER_UP, /* HIF layer should power up interface
  162. * and/or module */
  163. HIF_DEVICE_POWER_DOWN, /* HIF layer should initiate bus-specific
  164. * measures to minimize power */
  165. HIF_DEVICE_POWER_CUT /* HIF layer should initiate bus-specific
  166. * AND/OR platform-specific measures
  167. * to completely power-off the module and
  168. * associated hardware (i.e. cut power
  169. * supplies) */
  170. } HIF_DEVICE_POWER_CHANGE_TYPE;
  171. /**
  172. * enum hif_enable_type: what triggered the enabling of hif
  173. *
  174. * @HIF_ENABLE_TYPE_PROBE: probe triggered enable
  175. * @HIF_ENABLE_TYPE_REINIT: reinit triggered enable
  176. */
  177. enum hif_enable_type {
  178. HIF_ENABLE_TYPE_PROBE,
  179. HIF_ENABLE_TYPE_REINIT,
  180. HIF_ENABLE_TYPE_MAX
  181. };
  182. /**
  183. * enum hif_disable_type: what triggered the disabling of hif
  184. *
  185. * @HIF_DISABLE_TYPE_PROBE_ERROR: probe error triggered disable
  186. * @HIF_DISABLE_TYPE_REINIT_ERROR: reinit error triggered
  187. * disable
  188. * @HIF_DISABLE_TYPE_REMOVE: remove triggered disable
  189. * @HIF_DISABLE_TYPE_SHUTDOWN: shutdown triggered disable
  190. */
  191. enum hif_disable_type {
  192. HIF_DISABLE_TYPE_PROBE_ERROR,
  193. HIF_DISABLE_TYPE_REINIT_ERROR,
  194. HIF_DISABLE_TYPE_REMOVE,
  195. HIF_DISABLE_TYPE_SHUTDOWN,
  196. HIF_DISABLE_TYPE_MAX
  197. };
  198. #ifdef CONFIG_ATH_PCIE_ACCESS_DEBUG
  199. typedef struct _HID_ACCESS_LOG {
  200. uint32_t seqnum;
  201. bool is_write;
  202. void *addr;
  203. uint32_t value;
  204. } HIF_ACCESS_LOG;
  205. #endif
  206. #define HIF_MAX_DEVICES 1
  207. struct htc_callbacks {
  208. void *context; /* context to pass to the dsrhandler
  209. * note : rwCompletionHandler is provided
  210. * the context passed to hif_read_write */
  211. int (*rwCompletionHandler)(void *rwContext, int status);
  212. int (*dsrHandler)(void *context);
  213. };
  214. /**
  215. * struct hif_driver_state_callbacks - Callbacks for HIF to query Driver state
  216. * @context: Private data context
  217. * @set_recovery_in_progress: To Set Driver state for recovery in progress
  218. * @is_recovery_in_progress: Query if driver state is recovery in progress
  219. * @is_load_unload_in_progress: Query if driver state Load/Unload in Progress
  220. * @is_driver_unloading: Query if driver is unloading.
  221. *
  222. * This Structure provides callback pointer for HIF to query hdd for driver
  223. * states.
  224. */
  225. struct hif_driver_state_callbacks {
  226. void *context;
  227. void (*set_recovery_in_progress)(void *context, uint8_t val);
  228. bool (*is_recovery_in_progress)(void *context);
  229. bool (*is_load_unload_in_progress)(void *context);
  230. bool (*is_driver_unloading)(void *context);
  231. };
  232. /* This API detaches the HTC layer from the HIF device */
  233. void hif_detach_htc(struct hif_opaque_softc *scn);
  234. /****************************************************************/
  235. /* BMI and Diag window abstraction */
  236. /****************************************************************/
  237. #define HIF_BMI_EXCHANGE_NO_TIMEOUT ((uint32_t)(0))
  238. #define DIAG_TRANSFER_LIMIT 2048U /* maximum number of bytes that can be
  239. * handled atomically by
  240. * DiagRead/DiagWrite */
  241. /*
  242. * API to handle HIF-specific BMI message exchanges, this API is synchronous
  243. * and only allowed to be called from a context that can block (sleep) */
  244. QDF_STATUS hif_exchange_bmi_msg(struct hif_opaque_softc *scn,
  245. qdf_dma_addr_t cmd, qdf_dma_addr_t rsp,
  246. uint8_t *pSendMessage, uint32_t Length,
  247. uint8_t *pResponseMessage,
  248. uint32_t *pResponseLength, uint32_t TimeoutMS);
  249. /*
  250. * APIs to handle HIF specific diagnostic read accesses. These APIs are
  251. * synchronous and only allowed to be called from a context that
  252. * can block (sleep). They are not high performance APIs.
  253. *
  254. * hif_diag_read_access reads a 4 Byte aligned/length value from a
  255. * Target register or memory word.
  256. *
  257. * hif_diag_read_mem reads an arbitrary length of arbitrarily aligned memory.
  258. */
  259. QDF_STATUS hif_diag_read_access(struct hif_opaque_softc *scn, uint32_t address,
  260. uint32_t *data);
  261. QDF_STATUS hif_diag_read_mem(struct hif_opaque_softc *scn, uint32_t address,
  262. uint8_t *data, int nbytes);
  263. void hif_dump_target_memory(struct hif_opaque_softc *scn, void *ramdump_base,
  264. uint32_t address, uint32_t size);
  265. /*
  266. * APIs to handle HIF specific diagnostic write accesses. These APIs are
  267. * synchronous and only allowed to be called from a context that
  268. * can block (sleep).
  269. * They are not high performance APIs.
  270. *
  271. * hif_diag_write_access writes a 4 Byte aligned/length value to a
  272. * Target register or memory word.
  273. *
  274. * hif_diag_write_mem writes an arbitrary length of arbitrarily aligned memory.
  275. */
  276. QDF_STATUS hif_diag_write_access(struct hif_opaque_softc *scn, uint32_t address,
  277. uint32_t data);
  278. QDF_STATUS hif_diag_write_mem(struct hif_opaque_softc *scn, uint32_t address,
  279. uint8_t *data, int nbytes);
  280. typedef void (*fastpath_msg_handler)(void *, qdf_nbuf_t *, uint32_t);
  281. /*
  282. * Set the FASTPATH_mode_on flag in sc, for use by data path
  283. */
  284. #ifdef WLAN_FEATURE_FASTPATH
  285. void hif_enable_fastpath(struct hif_opaque_softc *hif_ctx);
  286. bool hif_is_fastpath_mode_enabled(struct hif_opaque_softc *hif_ctx);
  287. void *hif_get_ce_handle(struct hif_opaque_softc *hif_ctx, int);
  288. int hif_ce_fastpath_cb_register(fastpath_msg_handler handler, void *context);
  289. #else
  290. static inline int hif_ce_fastpath_cb_register(fastpath_msg_handler handler,
  291. void *context)
  292. {
  293. return QDF_STATUS_E_FAILURE;
  294. }
  295. #endif
  296. /*
  297. * Enable/disable CDC max performance workaround
  298. * For max-performace set this to 0
  299. * To allow SoC to enter sleep set this to 1
  300. */
  301. #define CONFIG_DISABLE_CDC_MAX_PERF_WAR 0
  302. #ifdef IPA_OFFLOAD
  303. void hif_ipa_get_ce_resource(struct hif_opaque_softc *scn,
  304. qdf_dma_addr_t *ce_sr_base_paddr,
  305. uint32_t *ce_sr_ring_size,
  306. qdf_dma_addr_t *ce_reg_paddr);
  307. #else
  308. /**
  309. * hif_ipa_get_ce_resource() - get uc resource on hif
  310. * @scn: bus context
  311. * @ce_sr_base_paddr: copyengine source ring base physical address
  312. * @ce_sr_ring_size: copyengine source ring size
  313. * @ce_reg_paddr: copyengine register physical address
  314. *
  315. * IPA micro controller data path offload feature enabled,
  316. * HIF should release copy engine related resource information to IPA UC
  317. * IPA UC will access hardware resource with released information
  318. *
  319. * Return: None
  320. */
  321. static inline void hif_ipa_get_ce_resource(struct hif_opaque_softc *scn,
  322. qdf_dma_addr_t *ce_sr_base_paddr,
  323. uint32_t *ce_sr_ring_size,
  324. qdf_dma_addr_t *ce_reg_paddr)
  325. {
  326. return;
  327. }
  328. #endif /* IPA_OFFLOAD */
  329. /**
  330. * @brief List of callbacks - filled in by HTC.
  331. */
  332. struct hif_msg_callbacks {
  333. void *Context;
  334. /**< context meaningful to HTC */
  335. QDF_STATUS (*txCompletionHandler)(void *Context, qdf_nbuf_t wbuf,
  336. uint32_t transferID,
  337. uint32_t toeplitz_hash_result);
  338. QDF_STATUS (*rxCompletionHandler)(void *Context, qdf_nbuf_t wbuf,
  339. uint8_t pipeID);
  340. void (*txResourceAvailHandler)(void *context, uint8_t pipe);
  341. void (*fwEventHandler)(void *context, QDF_STATUS status);
  342. };
  343. #define HIF_DATA_ATTR_SET_TX_CLASSIFY(attr, v) \
  344. (attr |= (v & 0x01) << 5)
  345. #define HIF_DATA_ATTR_SET_ENCAPSULATION_TYPE(attr, v) \
  346. (attr |= (v & 0x03) << 6)
  347. #define HIF_DATA_ATTR_SET_ADDR_X_SEARCH_DISABLE(attr, v) \
  348. (attr |= (v & 0x01) << 13)
  349. #define HIF_DATA_ATTR_SET_ADDR_Y_SEARCH_DISABLE(attr, v) \
  350. (attr |= (v & 0x01) << 14)
  351. #define HIF_DATA_ATTR_SET_TOEPLITZ_HASH_ENABLE(attr, v) \
  352. (attr |= (v & 0x01) << 15)
  353. #define HIF_DATA_ATTR_SET_PACKET_OR_RESULT_OFFSET(attr, v) \
  354. (attr |= (v & 0x0FFF) << 16)
  355. #define HIF_DATA_ATTR_SET_ENABLE_11H(attr, v) \
  356. (attr |= (v & 0x01) << 30)
  357. struct hif_bus_id;
  358. typedef struct hif_bus_id hif_bus_id;
  359. void hif_post_init(struct hif_opaque_softc *scn, void *hHTC,
  360. struct hif_msg_callbacks *callbacks);
  361. QDF_STATUS hif_start(struct hif_opaque_softc *scn);
  362. void hif_stop(struct hif_opaque_softc *scn);
  363. void hif_flush_surprise_remove(struct hif_opaque_softc *scn);
  364. void hif_dump(struct hif_opaque_softc *scn, uint8_t CmdId, bool start);
  365. QDF_STATUS hif_send_head(struct hif_opaque_softc *scn, uint8_t PipeID,
  366. uint32_t transferID, uint32_t nbytes,
  367. qdf_nbuf_t wbuf, uint32_t data_attr);
  368. void hif_send_complete_check(struct hif_opaque_softc *scn, uint8_t PipeID,
  369. int force);
  370. void hif_get_default_pipe(struct hif_opaque_softc *scn, uint8_t *ULPipe,
  371. uint8_t *DLPipe);
  372. int hif_map_service_to_pipe(struct hif_opaque_softc *scn, uint16_t svc_id,
  373. uint8_t *ul_pipe, uint8_t *dl_pipe, int *ul_is_polled,
  374. int *dl_is_polled);
  375. uint16_t
  376. hif_get_free_queue_number(struct hif_opaque_softc *scn, uint8_t PipeID);
  377. void *hif_get_targetdef(struct hif_opaque_softc *scn);
  378. uint32_t hif_hia_item_address(uint32_t target_type, uint32_t item_offset);
  379. void hif_set_target_sleep(struct hif_opaque_softc *scn, bool sleep_ok,
  380. bool wait_for_it);
  381. int hif_check_fw_reg(struct hif_opaque_softc *scn);
  382. int hif_check_soc_status(struct hif_opaque_softc *scn);
  383. void hif_get_hw_info(struct hif_opaque_softc *scn, u32 *version, u32 *revision,
  384. const char **target_name);
  385. void hif_disable_isr(struct hif_opaque_softc *scn);
  386. void hif_reset_soc(struct hif_opaque_softc *scn);
  387. void hif_save_htc_htt_config_endpoint(struct hif_opaque_softc *hif_ctx,
  388. int htc_endpoint);
  389. struct hif_opaque_softc *hif_open(qdf_device_t qdf_ctx, uint32_t mode,
  390. enum qdf_bus_type bus_type,
  391. struct hif_driver_state_callbacks *cbk);
  392. void hif_close(struct hif_opaque_softc *hif_ctx);
  393. QDF_STATUS hif_enable(struct hif_opaque_softc *hif_ctx, struct device *dev,
  394. void *bdev, const hif_bus_id *bid,
  395. enum qdf_bus_type bus_type,
  396. enum hif_enable_type type);
  397. void hif_disable(struct hif_opaque_softc *hif_ctx, enum hif_disable_type type);
  398. #ifdef FEATURE_RUNTIME_PM
  399. struct hif_pm_runtime_lock;
  400. int hif_pm_runtime_get(struct hif_opaque_softc *hif_ctx);
  401. void hif_pm_runtime_get_noresume(struct hif_opaque_softc *hif_ctx);
  402. int hif_pm_runtime_put(struct hif_opaque_softc *hif_ctx);
  403. struct hif_pm_runtime_lock *hif_runtime_lock_init(const char *name);
  404. void hif_runtime_lock_deinit(struct hif_opaque_softc *hif_ctx,
  405. struct hif_pm_runtime_lock *lock);
  406. int hif_pm_runtime_prevent_suspend(struct hif_opaque_softc *ol_sc,
  407. struct hif_pm_runtime_lock *lock);
  408. int hif_pm_runtime_allow_suspend(struct hif_opaque_softc *ol_sc,
  409. struct hif_pm_runtime_lock *lock);
  410. int hif_pm_runtime_prevent_suspend_timeout(struct hif_opaque_softc *ol_sc,
  411. struct hif_pm_runtime_lock *lock, unsigned int delay);
  412. #else
  413. struct hif_pm_runtime_lock {
  414. const char *name;
  415. };
  416. static inline void hif_pm_runtime_get_noresume(struct hif_opaque_softc *hif_ctx)
  417. {}
  418. static inline int hif_pm_runtime_get(struct hif_opaque_softc *hif_ctx)
  419. { return 0; }
  420. static inline int hif_pm_runtime_put(struct hif_opaque_softc *hif_ctx)
  421. { return 0; }
  422. static inline struct hif_pm_runtime_lock *hif_runtime_lock_init(
  423. const char *name)
  424. { return NULL; }
  425. static inline void
  426. hif_runtime_lock_deinit(struct hif_opaque_softc *hif_ctx,
  427. struct hif_pm_runtime_lock *lock) {}
  428. static inline int hif_pm_runtime_prevent_suspend(struct hif_opaque_softc *ol_sc,
  429. struct hif_pm_runtime_lock *lock)
  430. { return 0; }
  431. static inline int hif_pm_runtime_allow_suspend(struct hif_opaque_softc *ol_sc,
  432. struct hif_pm_runtime_lock *lock)
  433. { return 0; }
  434. static inline int
  435. hif_pm_runtime_prevent_suspend_timeout(struct hif_opaque_softc *ol_sc,
  436. struct hif_pm_runtime_lock *lock, unsigned int delay)
  437. { return 0; }
  438. #endif
  439. void hif_enable_power_management(struct hif_opaque_softc *hif_ctx,
  440. bool is_packet_log_enabled);
  441. void hif_disable_power_management(struct hif_opaque_softc *hif_ctx);
  442. void hif_vote_link_down(struct hif_opaque_softc *);
  443. void hif_vote_link_up(struct hif_opaque_softc *);
  444. bool hif_can_suspend_link(struct hif_opaque_softc *);
  445. int hif_bus_resume(struct hif_opaque_softc *);
  446. int hif_bus_suspend(struct hif_opaque_softc *);
  447. #ifdef FEATURE_RUNTIME_PM
  448. int hif_pre_runtime_suspend(struct hif_opaque_softc *hif_ctx);
  449. void hif_pre_runtime_resume(struct hif_opaque_softc *hif_ctx);
  450. int hif_runtime_suspend(struct hif_opaque_softc *hif_ctx);
  451. int hif_runtime_resume(struct hif_opaque_softc *hif_ctx);
  452. void hif_process_runtime_suspend_success(struct hif_opaque_softc *);
  453. void hif_process_runtime_suspend_failure(struct hif_opaque_softc *);
  454. void hif_process_runtime_resume_success(struct hif_opaque_softc *);
  455. #endif
  456. int hif_dump_registers(struct hif_opaque_softc *scn);
  457. int ol_copy_ramdump(struct hif_opaque_softc *scn);
  458. void hif_crash_shutdown(struct hif_opaque_softc *hif_ctx);
  459. void hif_get_hw_info(struct hif_opaque_softc *scn, u32 *version, u32 *revision,
  460. const char **target_name);
  461. void hif_lro_flush_cb_register(struct hif_opaque_softc *scn,
  462. void (handler)(void *), void *data);
  463. void hif_lro_flush_cb_deregister(struct hif_opaque_softc *scn);
  464. bool hif_needs_bmi(struct hif_opaque_softc *scn);
  465. enum qdf_bus_type hif_get_bus_type(struct hif_opaque_softc *hif_hdl);
  466. struct hif_target_info *hif_get_target_info_handle(struct hif_opaque_softc *
  467. scn);
  468. struct hif_config_info *hif_get_ini_handle(struct hif_opaque_softc *scn);
  469. struct ramdump_info *hif_get_ramdump_ctx(struct hif_opaque_softc *hif_ctx);
  470. ol_target_status hif_get_target_status(struct hif_opaque_softc *hif_ctx);
  471. void hif_set_target_status(struct hif_opaque_softc *hif_ctx, ol_target_status);
  472. void hif_init_ini_config(struct hif_opaque_softc *hif_ctx,
  473. struct hif_config_info *cfg);
  474. #ifdef __cplusplus
  475. }
  476. #endif
  477. #endif /* _HIF_H_ */