hif.h 17 KB

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