hif.h 20 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588
  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 "cdf_status.h"
  36. #include "cdf_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 configuration
  135. * @enable_uart_print: UART Print
  136. * @enable_self_recovery: Self Recovery
  137. * @enable_fw_log: To Enable FW LOG
  138. * @enable_lpass_support: LPASS support
  139. * @enable_ramdump_collection: Ramdump Collection
  140. * @max_no_of_peers: Max Number of Peers
  141. *
  142. * Structure for holding ini parameters.
  143. */
  144. struct hif_config_info {
  145. bool enable_uart_print;
  146. bool enable_self_recovery;
  147. bool enable_fw_log;
  148. bool enable_lpass_support;
  149. bool enable_ramdump_collection;
  150. uint8_t max_no_of_peers;
  151. };
  152. /**
  153. * struct hif_target_info - Target Information
  154. * @target_version: Target Version
  155. * @target_type: Target Type
  156. * @target_revision: Target Revision
  157. * @soc_version: SOC Version
  158. *
  159. * Structure to hold target information.
  160. */
  161. struct hif_target_info {
  162. uint32_t target_version;
  163. uint32_t target_type;
  164. uint32_t target_revision;
  165. uint32_t soc_version;
  166. };
  167. struct bmi_info {
  168. uint8_t *bmi_cmd_buff;
  169. uint8_t *bmi_rsp_buff;
  170. dma_addr_t bmi_cmd_da;
  171. dma_addr_t bmi_rsp_da;
  172. uint8_t *cal_in_flash;
  173. bool bmi_done;
  174. #ifdef CONFIG_CNSS
  175. struct cnss_fw_files fw_files;
  176. #endif
  177. };
  178. struct ol_softc {
  179. /*
  180. * handle for code that uses the osdep.h version of OS
  181. * abstraction primitives
  182. */
  183. struct _NIC_DEV aps_osdev;
  184. /*
  185. * handle for code that uses cdf version of OS
  186. * abstraction primitives
  187. */
  188. cdf_device_t cdf_dev;
  189. struct targetdef_s *targetdef;
  190. };
  191. typedef enum {
  192. HIF_DEVICE_POWER_UP, /* HIF layer should power up interface
  193. * and/or module */
  194. HIF_DEVICE_POWER_DOWN, /* HIF layer should initiate bus-specific
  195. * measures to minimize power */
  196. HIF_DEVICE_POWER_CUT /* HIF layer should initiate bus-specific
  197. * AND/OR platform-specific measures
  198. * to completely power-off the module and
  199. * associated hardware (i.e. cut power
  200. * supplies) */
  201. } HIF_DEVICE_POWER_CHANGE_TYPE;
  202. /**
  203. * enum hif_enable_type: what triggered the enabling of hif
  204. *
  205. * @HIF_ENABLE_TYPE_PROBE: probe triggered enable
  206. * @HIF_ENABLE_TYPE_REINIT: reinit triggered enable
  207. */
  208. enum hif_enable_type {
  209. HIF_ENABLE_TYPE_PROBE,
  210. HIF_ENABLE_TYPE_REINIT,
  211. HIF_ENABLE_TYPE_MAX
  212. };
  213. /**
  214. * enum hif_disable_type: what triggered the disabling of hif
  215. *
  216. * @HIF_DISABLE_TYPE_PROBE_ERROR: probe error triggered disable
  217. * @HIF_DISABLE_TYPE_REINIT_ERROR: reinit error triggered
  218. * disable
  219. * @HIF_DISABLE_TYPE_REMOVE: remove triggered disable
  220. * @HIF_DISABLE_TYPE_SHUTDOWN: shutdown triggered disable
  221. */
  222. enum hif_disable_type {
  223. HIF_DISABLE_TYPE_PROBE_ERROR,
  224. HIF_DISABLE_TYPE_REINIT_ERROR,
  225. HIF_DISABLE_TYPE_REMOVE,
  226. HIF_DISABLE_TYPE_SHUTDOWN,
  227. HIF_DISABLE_TYPE_MAX
  228. };
  229. #ifdef CONFIG_ATH_PCIE_ACCESS_DEBUG
  230. typedef struct _HID_ACCESS_LOG {
  231. uint32_t seqnum;
  232. bool is_write;
  233. void *addr;
  234. uint32_t value;
  235. } HIF_ACCESS_LOG;
  236. #endif
  237. #define HIF_MAX_DEVICES 1
  238. struct htc_callbacks {
  239. void *context; /* context to pass to the dsrhandler
  240. * note : rwCompletionHandler is provided
  241. * the context passed to hif_read_write */
  242. int (*rwCompletionHandler)(void *rwContext, int status);
  243. int (*dsrHandler)(void *context);
  244. };
  245. /* This API detaches the HTC layer from the HIF device */
  246. void hif_detach_htc(struct ol_softc *scn);
  247. /****************************************************************/
  248. /* BMI and Diag window abstraction */
  249. /****************************************************************/
  250. #define HIF_BMI_EXCHANGE_NO_TIMEOUT ((uint32_t)(0))
  251. #define DIAG_TRANSFER_LIMIT 2048U /* maximum number of bytes that can be
  252. * handled atomically by
  253. * DiagRead/DiagWrite */
  254. /*
  255. * API to handle HIF-specific BMI message exchanges, this API is synchronous
  256. * and only allowed to be called from a context that can block (sleep) */
  257. CDF_STATUS hif_exchange_bmi_msg(struct ol_softc *scn,
  258. uint8_t *pSendMessage,
  259. uint32_t Length,
  260. uint8_t *pResponseMessage,
  261. uint32_t *pResponseLength, uint32_t TimeoutMS);
  262. /*
  263. * APIs to handle HIF specific diagnostic read accesses. These APIs are
  264. * synchronous and only allowed to be called from a context that
  265. * can block (sleep). They are not high performance APIs.
  266. *
  267. * hif_diag_read_access reads a 4 Byte aligned/length value from a
  268. * Target register or memory word.
  269. *
  270. * hif_diag_read_mem reads an arbitrary length of arbitrarily aligned memory.
  271. */
  272. CDF_STATUS hif_diag_read_access(struct ol_softc *scn, uint32_t address,
  273. uint32_t *data);
  274. CDF_STATUS hif_diag_read_mem(struct ol_softc *scn, uint32_t address,
  275. uint8_t *data, int nbytes);
  276. void hif_dump_target_memory(struct ol_softc *scn, void *ramdump_base,
  277. uint32_t address, uint32_t size);
  278. /*
  279. * APIs to handle HIF specific diagnostic write accesses. These APIs are
  280. * synchronous and only allowed to be called from a context that
  281. * can block (sleep).
  282. * They are not high performance APIs.
  283. *
  284. * hif_diag_write_access writes a 4 Byte aligned/length value to a
  285. * Target register or memory word.
  286. *
  287. * hif_diag_write_mem writes an arbitrary length of arbitrarily aligned memory.
  288. */
  289. CDF_STATUS hif_diag_write_access(struct ol_softc *scn, uint32_t address,
  290. uint32_t data);
  291. CDF_STATUS hif_diag_write_mem(struct ol_softc *scn, uint32_t address,
  292. uint8_t *data, int nbytes);
  293. /*
  294. * Set the FASTPATH_mode_on flag in sc, for use by data path
  295. */
  296. #ifdef WLAN_FEATURE_FASTPATH
  297. void hif_enable_fastpath(struct ol_softc *hif_ctx);
  298. bool hif_is_fastpath_mode_enabled(struct ol_softc *hif_ctx);
  299. void *hif_get_ce_handle(struct ol_softc *hif_ctx, int);
  300. #endif
  301. #if defined(HIF_PCI) && !defined(A_SIMOS_DEVHOST)
  302. /*
  303. * This API allows the Host to access Target registers of a given
  304. * A_target_id_t directly and relatively efficiently over PCIe.
  305. * This allows the Host to avoid extra overhead associated with
  306. * sending a message to firmware and waiting for a response message
  307. * from firmware, as is done on other interconnects.
  308. *
  309. * Yet there is some complexity with direct accesses because the
  310. * Target's power state is not known a priori. The Host must issue
  311. * special PCIe reads/writes in order to explicitly wake the Target
  312. * and to verify that it is awake and will remain awake.
  313. *
  314. * NB: Host endianness conversion is left for the caller to handle.
  315. * These interfaces handle access; not interpretation.
  316. *
  317. * Usage:
  318. * During initialization, use A_TARGET_ID to obtain an 'target ID'
  319. * for use with these interfaces.
  320. *
  321. * Use A_TARGET_READ and A_TARGET_WRITE to access Target space.
  322. * These calls must be bracketed by A_TARGET_ACCESS_BEGIN and
  323. * A_TARGET_ACCESS_END. A single BEGIN/END pair is adequate for
  324. * multiple READ/WRITE operations.
  325. *
  326. * Use A_TARGET_ACCESS_BEGIN to put the Target in a state in
  327. * which it is legal for the Host to directly access it. This
  328. * may involve waking the Target from a low power state, which
  329. * may take up to 2Ms!
  330. *
  331. * Use A_TARGET_ACCESS_END to tell the Target that as far as
  332. * this code path is concerned, it no longer needs to remain
  333. * directly accessible. BEGIN/END is under a reference counter;
  334. * multiple code paths may issue BEGIN/END on a single targid.
  335. *
  336. * For added efficiency, the Host may use A_TARGET_ACCESS_LIKELY.
  337. * The LIKELY interface works just like A_TARGET_ACCESS_BEGIN,
  338. * except that it may return before the Target is actually
  339. * available. It's a vague indication that some Target accesses
  340. * are expected "soon". When the LIKELY API is used,
  341. * A_TARGET_ACCESS_BEGIN must be used before any access.
  342. *
  343. * There are several uses for the LIKELY/UNLIKELY API:
  344. * -If there is some potential time before Target accesses
  345. * and we want to get a head start on waking the Target
  346. * (e.g. to overlap Target wake with Host-side malloc)
  347. * -High-level code knows that it will call low-level
  348. * functions that will use BEGIN/END, and we don't want
  349. * to allow the Target to sleep until the entire sequence
  350. * has completed.
  351. *
  352. * A_TARGET_ACCESS_OK verifies that the Target can be
  353. * accessed. In general, this should not be needed, but it
  354. * may be useful for debugging or for special uses.
  355. *
  356. * Note that there must be a matching END for each BEGIN
  357. * AND there must be a matching UNLIKELY for each LIKELY!
  358. *
  359. * NB: This API is designed to allow some flexibility in tradeoffs
  360. * between Target power utilization and Host efficiency and
  361. * system performance.
  362. */
  363. /*
  364. * Enable/disable CDC max performance workaround
  365. * For max-performace set this to 0
  366. * To allow SoC to enter sleep set this to 1
  367. */
  368. #define CONFIG_DISABLE_CDC_MAX_PERF_WAR 0
  369. #endif
  370. #ifdef IPA_OFFLOAD
  371. void hif_ipa_get_ce_resource(struct ol_softc *scn,
  372. cdf_dma_addr_t *ce_sr_base_paddr,
  373. uint32_t *ce_sr_ring_size,
  374. cdf_dma_addr_t *ce_reg_paddr);
  375. #else
  376. /**
  377. * hif_ipa_get_ce_resource() - get uc resource on hif
  378. * @scn: bus context
  379. * @ce_sr_base_paddr: copyengine source ring base physical address
  380. * @ce_sr_ring_size: copyengine source ring size
  381. * @ce_reg_paddr: copyengine register physical address
  382. *
  383. * IPA micro controller data path offload feature enabled,
  384. * HIF should release copy engine related resource information to IPA UC
  385. * IPA UC will access hardware resource with released information
  386. *
  387. * Return: None
  388. */
  389. static inline void hif_ipa_get_ce_resource(struct ol_softc *scn,
  390. cdf_dma_addr_t *ce_sr_base_paddr,
  391. uint32_t *ce_sr_ring_size,
  392. cdf_dma_addr_t *ce_reg_paddr)
  393. {
  394. return;
  395. }
  396. #endif /* IPA_OFFLOAD */
  397. /**
  398. * @brief List of callbacks - filled in by HTC.
  399. */
  400. struct hif_msg_callbacks {
  401. void *Context;
  402. /**< context meaningful to HTC */
  403. CDF_STATUS (*txCompletionHandler)(void *Context, cdf_nbuf_t wbuf,
  404. uint32_t transferID,
  405. uint32_t toeplitz_hash_result);
  406. CDF_STATUS (*rxCompletionHandler)(void *Context, cdf_nbuf_t wbuf,
  407. uint8_t pipeID);
  408. void (*txResourceAvailHandler)(void *context, uint8_t pipe);
  409. void (*fwEventHandler)(void *context, CDF_STATUS status);
  410. };
  411. #define HIF_DATA_ATTR_SET_TX_CLASSIFY(attr, v) \
  412. (attr |= (v & 0x01) << 5)
  413. #define HIF_DATA_ATTR_SET_ENCAPSULATION_TYPE(attr, v) \
  414. (attr |= (v & 0x03) << 6)
  415. #define HIF_DATA_ATTR_SET_ADDR_X_SEARCH_DISABLE(attr, v) \
  416. (attr |= (v & 0x01) << 13)
  417. #define HIF_DATA_ATTR_SET_ADDR_Y_SEARCH_DISABLE(attr, v) \
  418. (attr |= (v & 0x01) << 14)
  419. #define HIF_DATA_ATTR_SET_TOEPLITZ_HASH_ENABLE(attr, v) \
  420. (attr |= (v & 0x01) << 15)
  421. #define HIF_DATA_ATTR_SET_PACKET_OR_RESULT_OFFSET(attr, v) \
  422. (attr |= (v & 0x0FFF) << 16)
  423. #define HIF_DATA_ATTR_SET_ENABLE_11H(attr, v) \
  424. (attr |= (v & 0x01) << 30)
  425. #ifdef HIF_PCI
  426. typedef struct pci_device_id hif_bus_id;
  427. #else
  428. typedef struct device hif_bus_id;
  429. #endif
  430. void hif_post_init(struct ol_softc *scn, void *hHTC,
  431. struct hif_msg_callbacks *callbacks);
  432. CDF_STATUS hif_start(struct ol_softc *scn);
  433. void hif_stop(struct ol_softc *scn);
  434. void hif_flush_surprise_remove(struct ol_softc *scn);
  435. void hif_dump(struct ol_softc *scn, uint8_t CmdId, bool start);
  436. CDF_STATUS hif_send_head(struct ol_softc *scn, uint8_t PipeID,
  437. uint32_t transferID, uint32_t nbytes,
  438. cdf_nbuf_t wbuf, uint32_t data_attr);
  439. void hif_send_complete_check(struct ol_softc *scn, uint8_t PipeID,
  440. int force);
  441. void hif_cancel_deferred_target_sleep(struct ol_softc *scn);
  442. void hif_get_default_pipe(struct ol_softc *scn, uint8_t *ULPipe,
  443. uint8_t *DLPipe);
  444. int hif_map_service_to_pipe(struct ol_softc *scn, uint16_t svc_id,
  445. uint8_t *ul_pipe, uint8_t *dl_pipe, int *ul_is_polled,
  446. int *dl_is_polled);
  447. uint16_t hif_get_free_queue_number(struct ol_softc *scn, uint8_t PipeID);
  448. void *hif_get_targetdef(struct ol_softc *scn);
  449. uint32_t hif_hia_item_address(uint32_t target_type, uint32_t item_offset);
  450. void hif_set_target_sleep(struct ol_softc *scn, bool sleep_ok,
  451. bool wait_for_it);
  452. int hif_check_fw_reg(struct ol_softc *scn);
  453. int hif_check_soc_status(struct ol_softc *scn);
  454. void hif_disable_isr(struct ol_softc *scn);
  455. void hif_reset_soc(struct ol_softc *scn);
  456. void hif_disable_aspm(struct ol_softc *);
  457. void
  458. hif_save_htc_htt_config_endpoint(struct ol_softc *hif_ctx, int htc_endpoint);
  459. CDF_STATUS hif_open(cdf_device_t cdf_ctx, enum ath_hal_bus_type bus_type);
  460. void hif_close(struct ol_softc *hif_ctx);
  461. CDF_STATUS hif_enable(struct ol_softc *hif_ctx, struct device *dev, void *bdev,
  462. const hif_bus_id *bid, enum ath_hal_bus_type bus_type,
  463. enum hif_enable_type type);
  464. void hif_disable(struct ol_softc *hif_ctx, enum hif_disable_type type);
  465. void hif_enable_power_gating(struct ol_softc *hif_ctx);
  466. #ifdef FEATURE_RUNTIME_PM
  467. struct hif_pm_runtime_lock;
  468. int hif_pm_runtime_get(struct ol_softc *hif_ctx);
  469. void hif_pm_runtime_get_noresume(struct ol_softc *hif_ctx);
  470. int hif_pm_runtime_put(struct ol_softc *hif_ctx);
  471. struct hif_pm_runtime_lock *hif_runtime_lock_init(const char *name);
  472. void hif_runtime_lock_deinit(struct ol_softc *hif_ctx,
  473. struct hif_pm_runtime_lock *lock);
  474. int hif_pm_runtime_prevent_suspend(struct ol_softc *ol_sc,
  475. struct hif_pm_runtime_lock *lock);
  476. int hif_pm_runtime_allow_suspend(struct ol_softc *ol_sc,
  477. struct hif_pm_runtime_lock *lock);
  478. int hif_pm_runtime_prevent_suspend_timeout(struct ol_softc *ol_sc,
  479. struct hif_pm_runtime_lock *lock, unsigned int delay);
  480. #else
  481. struct hif_pm_runtime_lock {
  482. const char *name;
  483. };
  484. static inline void hif_pm_runtime_get_noresume(struct ol_softc *hif_ctx)
  485. {}
  486. static inline int hif_pm_runtime_get(struct ol_softc *hif_ctx)
  487. { return 0; }
  488. static inline int hif_pm_runtime_put(struct ol_softc *hif_ctx)
  489. { return 0; }
  490. static inline struct hif_pm_runtime_lock *hif_runtime_lock_init(
  491. const char *name)
  492. { return NULL; }
  493. static inline void
  494. hif_runtime_lock_deinit(struct ol_softc *hif_ctx,
  495. struct hif_pm_runtime_lock *lock) {}
  496. static inline int hif_pm_runtime_prevent_suspend(struct ol_softc *ol_sc,
  497. struct hif_pm_runtime_lock *lock)
  498. { return 0; }
  499. static inline int hif_pm_runtime_allow_suspend(struct ol_softc *ol_sc,
  500. struct hif_pm_runtime_lock *lock)
  501. { return 0; }
  502. static inline int
  503. hif_pm_runtime_prevent_suspend_timeout(struct ol_softc *ol_sc,
  504. struct hif_pm_runtime_lock *lock, unsigned int delay)
  505. { return 0; }
  506. #endif
  507. void hif_enable_power_management(struct ol_softc *hif_ctx);
  508. void hif_disable_power_management(struct ol_softc *hif_ctx);
  509. void hif_vote_link_down(struct ol_softc *);
  510. void hif_vote_link_up(struct ol_softc *);
  511. bool hif_can_suspend_link(struct ol_softc *);
  512. int hif_bus_resume(struct ol_softc *);
  513. int hif_bus_suspend(struct ol_softc *);
  514. #ifdef FEATURE_RUNTIME_PM
  515. int hif_pre_runtime_suspend(struct ol_softc *hif_ctx);
  516. void hif_pre_runtime_resume(struct ol_softc *hif_ctx);
  517. int hif_runtime_suspend(struct ol_softc *hif_ctx);
  518. int hif_runtime_resume(struct ol_softc *hif_ctx);
  519. void hif_process_runtime_suspend_success(struct ol_softc *);
  520. void hif_process_runtime_suspend_failure(struct ol_softc *);
  521. void hif_process_runtime_resume_success(struct ol_softc *);
  522. #endif
  523. int hif_dump_registers(struct ol_softc *scn);
  524. int ol_copy_ramdump(struct ol_softc *scn);
  525. void hif_crash_shutdown(struct ol_softc *hif_ctx);
  526. void hif_get_hw_info(struct ol_softc *scn, u32 *version, u32 *revision,
  527. const char **target_name);
  528. void hif_lro_flush_cb_register(struct ol_softc *scn,
  529. void (handler)(void *), void *data);
  530. void hif_lro_flush_cb_deregister(struct ol_softc *scn);
  531. struct hif_target_info *hif_get_target_info_handle(struct ol_softc *scn);
  532. struct hif_config_info *hif_get_ini_handle(struct ol_softc *scn);
  533. struct ramdump_info *hif_get_ramdump_ctx(struct ol_softc *hif_ctx);
  534. struct bmi_info *hif_get_bmi_ctx(struct ol_softc *hif_ctx);
  535. ol_target_status hif_get_target_status(struct ol_softc *hif_ctx);
  536. void hif_set_target_status(struct ol_softc *hif_ctx, ol_target_status);
  537. #ifdef __cplusplus
  538. }
  539. #endif
  540. #endif /* _HIF_H_ */