hif.h 28 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848
  1. /*
  2. * Copyright (c) 2013-2017 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. #ifdef HIF_USB
  40. #include <linux/usb.h>
  41. #endif /* HIF_USB */
  42. #ifdef IPA_OFFLOAD
  43. #include <linux/ipa.h>
  44. #endif
  45. #define ENABLE_MBOX_DUMMY_SPACE_FEATURE 1
  46. typedef struct htc_callbacks HTC_CALLBACKS;
  47. typedef void __iomem *A_target_id_t;
  48. typedef void *hif_handle_t;
  49. #define HIF_TYPE_AR6002 2
  50. #define HIF_TYPE_AR6003 3
  51. #define HIF_TYPE_AR6004 5
  52. #define HIF_TYPE_AR9888 6
  53. #define HIF_TYPE_AR6320 7
  54. #define HIF_TYPE_AR6320V2 8
  55. /* For attaching Peregrine 2.0 board host_reg_tbl only */
  56. #define HIF_TYPE_AR9888V2 9
  57. #define HIF_TYPE_ADRASTEA 10
  58. #define HIF_TYPE_AR900B 11
  59. #define HIF_TYPE_QCA9984 12
  60. #define HIF_TYPE_IPQ4019 13
  61. #define HIF_TYPE_QCA9888 14
  62. #define HIF_TYPE_QCA8074 15
  63. #define HIF_TYPE_QCA6290 16
  64. /* TARGET definition needs to be abstracted in fw common
  65. * header files, below is the placeholder till WIN codebase
  66. * moved to latest copy of fw common header files.
  67. */
  68. #ifdef CONFIG_WIN
  69. #if ENABLE_10_4_FW_HDR
  70. #define TARGET_TYPE_UNKNOWN 0
  71. #define TARGET_TYPE_AR6001 1
  72. #define TARGET_TYPE_AR6002 2
  73. #define TARGET_TYPE_AR6003 3
  74. #define TARGET_TYPE_AR6004 5
  75. #define TARGET_TYPE_AR6006 6
  76. #define TARGET_TYPE_AR9888 7
  77. #define TARGET_TYPE_AR6320 8
  78. #define TARGET_TYPE_AR900B 9
  79. #define TARGET_TYPE_QCA9984 10
  80. #define TARGET_TYPE_IPQ4019 11
  81. #define TARGET_TYPE_QCA9888 12
  82. /* For attach Peregrine 2.0 board target_reg_tbl only */
  83. #define TARGET_TYPE_AR9888V2 13
  84. /* For attach Rome1.0 target_reg_tbl only*/
  85. #define TARGET_TYPE_AR6320V1 14
  86. /* For Rome2.0/2.1 target_reg_tbl ID*/
  87. #define TARGET_TYPE_AR6320V2 15
  88. /* For Rome3.0 target_reg_tbl ID*/
  89. #define TARGET_TYPE_AR6320V3 16
  90. /* For Tufello1.0 target_reg_tbl ID*/
  91. #define TARGET_TYPE_QCA9377V1 17
  92. #endif /* ENABLE_10_4_FW_HDR */
  93. /* For Adrastea target */
  94. #define TARGET_TYPE_ADRASTEA 19
  95. #endif /* CONFIG_WIN */
  96. #ifndef TARGET_TYPE_QCA8074
  97. #define TARGET_TYPE_QCA8074 20
  98. #endif
  99. #ifndef TARGET_TYPE_QCA6290
  100. #define TARGET_TYPE_QCA6290 21
  101. #endif
  102. #ifdef IPA_OFFLOAD
  103. #define DMA_COHERENT_MASK_IPA_VER_3_AND_ABOVE 37
  104. #define DMA_COHERENT_MASK_BELOW_IPA_VER_3 32
  105. #endif
  106. /* enum hif_ic_irq - enum defining integrated chip irq numbers
  107. * defining irq nubers that can be used by external modules like datapath
  108. */
  109. enum hif_ic_irq {
  110. host2wbm_desc_feed = 18,
  111. host2reo_re_injection,
  112. host2reo_command,
  113. host2rxdma_monitor_ring3,
  114. host2rxdma_monitor_ring2,
  115. host2rxdma_monitor_ring1,
  116. reo2ost_exception,
  117. wbm2host_rx_release,
  118. reo2host_status,
  119. reo2host_destination_ring4,
  120. reo2host_destination_ring3,
  121. reo2host_destination_ring2,
  122. reo2host_destination_ring1,
  123. rxdma2host_monitor_destination_mac3,
  124. rxdma2host_monitor_destination_mac2,
  125. rxdma2host_monitor_destination_mac1,
  126. ppdu_end_interrupts_mac3,
  127. ppdu_end_interrupts_mac2,
  128. ppdu_end_interrupts_mac1,
  129. rxdma2host_monitor_status_ring_mac3,
  130. rxdma2host_monitor_status_ring_mac2,
  131. rxdma2host_monitor_status_ring_mac1,
  132. host2rxdma_host_buf_ring_mac3,
  133. host2rxdma_host_buf_ring_mac2,
  134. host2rxdma_host_buf_ring_mac1,
  135. rxdma2host_destination_ring_mac3,
  136. rxdma2host_destination_ring_mac2,
  137. rxdma2host_destination_ring_mac1,
  138. host2tcl_input_ring4,
  139. host2tcl_input_ring3,
  140. host2tcl_input_ring2,
  141. host2tcl_input_ring1,
  142. wbm2host_tx_completions_ring3,
  143. wbm2host_tx_completions_ring2,
  144. wbm2host_tx_completions_ring1,
  145. tcl2host_status_ring,
  146. };
  147. struct CE_state;
  148. #define CE_COUNT_MAX 12
  149. #define HIF_MAX_GRP_IRQ 16
  150. #define HIF_MAX_GROUP 8
  151. #ifdef CONFIG_SLUB_DEBUG_ON
  152. #ifndef CONFIG_WIN
  153. #define HIF_CONFIG_SLUB_DEBUG_ON
  154. #endif
  155. #endif
  156. #ifndef NAPI_YIELD_BUDGET_BASED
  157. #ifdef HIF_CONFIG_SLUB_DEBUG_ON
  158. #define QCA_NAPI_BUDGET 64
  159. #define QCA_NAPI_DEF_SCALE 2
  160. #else /* PERF build */
  161. #define QCA_NAPI_BUDGET 64
  162. #define QCA_NAPI_DEF_SCALE 16
  163. #endif /* SLUB_DEBUG_ON */
  164. #else /* NAPI_YIELD_BUDGET_BASED */
  165. #define QCA_NAPI_BUDGET 64
  166. #define QCA_NAPI_DEF_SCALE 4
  167. #endif
  168. #define HIF_NAPI_MAX_RECEIVES (QCA_NAPI_BUDGET * QCA_NAPI_DEF_SCALE)
  169. /* NOTE: "napi->scale" can be changed,
  170. but this does not change the number of buckets */
  171. #define QCA_NAPI_NUM_BUCKETS (QCA_NAPI_BUDGET / QCA_NAPI_DEF_SCALE)
  172. struct qca_napi_stat {
  173. uint32_t napi_schedules;
  174. uint32_t napi_polls;
  175. uint32_t napi_completes;
  176. uint32_t napi_workdone;
  177. uint32_t napi_budget_uses[QCA_NAPI_NUM_BUCKETS];
  178. };
  179. /**
  180. * per NAPI instance data structure
  181. * This data structure holds stuff per NAPI instance.
  182. * Note that, in the current implementation, though scale is
  183. * an instance variable, it is set to the same value for all
  184. * instances.
  185. */
  186. struct qca_napi_info {
  187. struct net_device netdev; /* dummy net_dev */
  188. void *hif_ctx;
  189. struct napi_struct napi; /* one NAPI Instance per CE in phase I */
  190. uint8_t scale; /* currently same on all instances */
  191. uint8_t id;
  192. int irq;
  193. struct qca_napi_stat stats[NR_CPUS];
  194. /* will only be present for data rx CE's */
  195. void (*lro_flush_cb)(void *);
  196. void *lro_ctx;
  197. qdf_spinlock_t lro_unloading_lock;
  198. };
  199. /**
  200. * struct qca_napi_cpu - an entry of the napi cpu table
  201. * @core_id: physical core id of the core
  202. * @cluster_id: cluster this core belongs to
  203. * @core_mask: mask to match all core of this cluster
  204. * @thread_mask: mask for this core within the cluster
  205. * @max_freq: maximum clock this core can be clocked at
  206. * same for all cpus of the same core.
  207. * @napis: bitmap of napi instances on this core
  208. * cluster_nxt: chain to link cores within the same cluster
  209. *
  210. * This structure represents a single entry in the napi cpu
  211. * table. The table is part of struct qca_napi_data.
  212. * This table is initialized by the init function, called while
  213. * the first napi instance is being created, updated by hotplug
  214. * notifier and when cpu affinity decisions are made (by throughput
  215. * detection), and deleted when the last napi instance is removed.
  216. */
  217. enum qca_napi_tput_state {
  218. QCA_NAPI_TPUT_UNINITIALIZED,
  219. QCA_NAPI_TPUT_LO,
  220. QCA_NAPI_TPUT_HI
  221. };
  222. enum qca_napi_cpu_state {
  223. QCA_NAPI_CPU_UNINITIALIZED,
  224. QCA_NAPI_CPU_DOWN,
  225. QCA_NAPI_CPU_UP };
  226. struct qca_napi_cpu {
  227. enum qca_napi_cpu_state state;
  228. int core_id;
  229. int cluster_id;
  230. cpumask_t core_mask;
  231. cpumask_t thread_mask;
  232. unsigned int max_freq;
  233. uint32_t napis;
  234. int cluster_nxt; /* index, not pointer */
  235. };
  236. /**
  237. * NAPI data-structure common to all NAPI instances.
  238. *
  239. * A variable of this type will be stored in hif module context.
  240. */
  241. struct qca_napi_data {
  242. qdf_spinlock_t lock;
  243. uint32_t state;
  244. uint32_t ce_map; /* bitmap of created/registered NAPI
  245. instances, indexed by pipe_id,
  246. not used by clients (clients use an
  247. id returned by create) */
  248. struct qca_napi_info napis[CE_COUNT_MAX];
  249. struct qca_napi_cpu napi_cpu[NR_CPUS];
  250. int lilcl_head, bigcl_head;
  251. enum qca_napi_tput_state napi_mode;
  252. struct notifier_block hnc_cpu_notifier;
  253. };
  254. /**
  255. * struct hif_config_info - Place Holder for hif confiruation
  256. * @enable_self_recovery: Self Recovery
  257. *
  258. * Structure for holding hif ini parameters.
  259. */
  260. struct hif_config_info {
  261. bool enable_self_recovery;
  262. #ifdef FEATURE_RUNTIME_PM
  263. bool enable_runtime_pm;
  264. u_int32_t runtime_pm_delay;
  265. #endif
  266. };
  267. /**
  268. * struct hif_target_info - Target Information
  269. * @target_version: Target Version
  270. * @target_type: Target Type
  271. * @target_revision: Target Revision
  272. * @soc_version: SOC Version
  273. *
  274. * Structure to hold target information.
  275. */
  276. struct hif_target_info {
  277. uint32_t target_version;
  278. uint32_t target_type;
  279. uint32_t target_revision;
  280. uint32_t soc_version;
  281. char *hw_name;
  282. };
  283. struct hif_opaque_softc {
  284. };
  285. typedef enum {
  286. HIF_DEVICE_POWER_UP, /* HIF layer should power up interface
  287. * and/or module */
  288. HIF_DEVICE_POWER_DOWN, /* HIF layer should initiate bus-specific
  289. * measures to minimize power */
  290. HIF_DEVICE_POWER_CUT /* HIF layer should initiate bus-specific
  291. * AND/OR platform-specific measures
  292. * to completely power-off the module and
  293. * associated hardware (i.e. cut power
  294. * supplies) */
  295. } HIF_DEVICE_POWER_CHANGE_TYPE;
  296. /**
  297. * enum hif_enable_type: what triggered the enabling of hif
  298. *
  299. * @HIF_ENABLE_TYPE_PROBE: probe triggered enable
  300. * @HIF_ENABLE_TYPE_REINIT: reinit triggered enable
  301. */
  302. enum hif_enable_type {
  303. HIF_ENABLE_TYPE_PROBE,
  304. HIF_ENABLE_TYPE_REINIT,
  305. HIF_ENABLE_TYPE_MAX
  306. };
  307. /**
  308. * enum hif_disable_type: what triggered the disabling of hif
  309. *
  310. * @HIF_DISABLE_TYPE_PROBE_ERROR: probe error triggered disable
  311. * @HIF_DISABLE_TYPE_REINIT_ERROR: reinit error triggered
  312. * disable
  313. * @HIF_DISABLE_TYPE_REMOVE: remove triggered disable
  314. * @HIF_DISABLE_TYPE_SHUTDOWN: shutdown triggered disable
  315. */
  316. enum hif_disable_type {
  317. HIF_DISABLE_TYPE_PROBE_ERROR,
  318. HIF_DISABLE_TYPE_REINIT_ERROR,
  319. HIF_DISABLE_TYPE_REMOVE,
  320. HIF_DISABLE_TYPE_SHUTDOWN,
  321. HIF_DISABLE_TYPE_MAX
  322. };
  323. /**
  324. * enum hif_device_config_opcode: configure mode
  325. *
  326. * @HIF_DEVICE_POWER_STATE: device power state
  327. * @HIF_DEVICE_GET_MBOX_BLOCK_SIZE: get mbox block size
  328. * @HIF_DEVICE_GET_MBOX_ADDR: get mbox block address
  329. * @HIF_DEVICE_GET_PENDING_EVENTS_FUNC: get pending events functions
  330. * @HIF_DEVICE_GET_IRQ_PROC_MODE: get irq proc mode
  331. * @HIF_DEVICE_GET_RECV_EVENT_MASK_UNMASK_FUNC: receive event function
  332. * @HIF_DEVICE_POWER_STATE_CHANGE: change power state
  333. * @HIF_DEVICE_GET_IRQ_YIELD_PARAMS: get yield params
  334. * @HIF_CONFIGURE_QUERY_SCATTER_REQUEST_SUPPORT: configure scatter request
  335. * @HIF_DEVICE_GET_OS_DEVICE: get OS device
  336. * @HIF_DEVICE_DEBUG_BUS_STATE: debug bus state
  337. * @HIF_BMI_DONE: bmi done
  338. * @HIF_DEVICE_SET_TARGET_TYPE: set target type
  339. * @HIF_DEVICE_SET_HTC_CONTEXT: set htc context
  340. * @HIF_DEVICE_GET_HTC_CONTEXT: get htc context
  341. */
  342. enum hif_device_config_opcode {
  343. HIF_DEVICE_POWER_STATE = 0,
  344. HIF_DEVICE_GET_MBOX_BLOCK_SIZE,
  345. HIF_DEVICE_GET_MBOX_ADDR,
  346. HIF_DEVICE_GET_PENDING_EVENTS_FUNC,
  347. HIF_DEVICE_GET_IRQ_PROC_MODE,
  348. HIF_DEVICE_GET_RECV_EVENT_MASK_UNMASK_FUNC,
  349. HIF_DEVICE_POWER_STATE_CHANGE,
  350. HIF_DEVICE_GET_IRQ_YIELD_PARAMS,
  351. HIF_CONFIGURE_QUERY_SCATTER_REQUEST_SUPPORT,
  352. HIF_DEVICE_GET_OS_DEVICE,
  353. HIF_DEVICE_DEBUG_BUS_STATE,
  354. HIF_BMI_DONE,
  355. HIF_DEVICE_SET_TARGET_TYPE,
  356. HIF_DEVICE_SET_HTC_CONTEXT,
  357. HIF_DEVICE_GET_HTC_CONTEXT,
  358. };
  359. #ifdef CONFIG_ATH_PCIE_ACCESS_DEBUG
  360. typedef struct _HID_ACCESS_LOG {
  361. uint32_t seqnum;
  362. bool is_write;
  363. void *addr;
  364. uint32_t value;
  365. } HIF_ACCESS_LOG;
  366. #endif
  367. void hif_reg_write(struct hif_opaque_softc *hif_ctx, uint32_t offset,
  368. uint32_t value);
  369. uint32_t hif_reg_read(struct hif_opaque_softc *hif_ctx, uint32_t offset);
  370. #define HIF_MAX_DEVICES 1
  371. struct htc_callbacks {
  372. void *context; /* context to pass to the dsrhandler
  373. * note : rwCompletionHandler is provided
  374. * the context passed to hif_read_write */
  375. QDF_STATUS(*rwCompletionHandler)(void *rwContext, QDF_STATUS status);
  376. QDF_STATUS(*dsrHandler)(void *context);
  377. };
  378. /**
  379. * struct hif_driver_state_callbacks - Callbacks for HIF to query Driver state
  380. * @context: Private data context
  381. * @set_recovery_in_progress: To Set Driver state for recovery in progress
  382. * @is_recovery_in_progress: Query if driver state is recovery in progress
  383. * @is_load_unload_in_progress: Query if driver state Load/Unload in Progress
  384. * @is_driver_unloading: Query if driver is unloading.
  385. *
  386. * This Structure provides callback pointer for HIF to query hdd for driver
  387. * states.
  388. */
  389. struct hif_driver_state_callbacks {
  390. void *context;
  391. void (*set_recovery_in_progress)(void *context, uint8_t val);
  392. bool (*is_recovery_in_progress)(void *context);
  393. bool (*is_load_unload_in_progress)(void *context);
  394. bool (*is_driver_unloading)(void *context);
  395. };
  396. /* This API detaches the HTC layer from the HIF device */
  397. void hif_detach_htc(struct hif_opaque_softc *scn);
  398. /****************************************************************/
  399. /* BMI and Diag window abstraction */
  400. /****************************************************************/
  401. #define HIF_BMI_EXCHANGE_NO_TIMEOUT ((uint32_t)(0))
  402. #define DIAG_TRANSFER_LIMIT 2048U /* maximum number of bytes that can be
  403. * handled atomically by
  404. * DiagRead/DiagWrite */
  405. /*
  406. * API to handle HIF-specific BMI message exchanges, this API is synchronous
  407. * and only allowed to be called from a context that can block (sleep) */
  408. QDF_STATUS hif_exchange_bmi_msg(struct hif_opaque_softc *scn,
  409. qdf_dma_addr_t cmd, qdf_dma_addr_t rsp,
  410. uint8_t *pSendMessage, uint32_t Length,
  411. uint8_t *pResponseMessage,
  412. uint32_t *pResponseLength, uint32_t TimeoutMS);
  413. /*
  414. * APIs to handle HIF specific diagnostic read accesses. These APIs are
  415. * synchronous and only allowed to be called from a context that
  416. * can block (sleep). They are not high performance APIs.
  417. *
  418. * hif_diag_read_access reads a 4 Byte aligned/length value from a
  419. * Target register or memory word.
  420. *
  421. * hif_diag_read_mem reads an arbitrary length of arbitrarily aligned memory.
  422. */
  423. QDF_STATUS hif_diag_read_access(struct hif_opaque_softc *scn, uint32_t address,
  424. uint32_t *data);
  425. QDF_STATUS hif_diag_read_mem(struct hif_opaque_softc *scn, uint32_t address,
  426. uint8_t *data, int nbytes);
  427. void hif_dump_target_memory(struct hif_opaque_softc *scn, void *ramdump_base,
  428. uint32_t address, uint32_t size);
  429. /*
  430. * APIs to handle HIF specific diagnostic write accesses. These APIs are
  431. * synchronous and only allowed to be called from a context that
  432. * can block (sleep).
  433. * They are not high performance APIs.
  434. *
  435. * hif_diag_write_access writes a 4 Byte aligned/length value to a
  436. * Target register or memory word.
  437. *
  438. * hif_diag_write_mem writes an arbitrary length of arbitrarily aligned memory.
  439. */
  440. QDF_STATUS hif_diag_write_access(struct hif_opaque_softc *scn, uint32_t address,
  441. uint32_t data);
  442. QDF_STATUS hif_diag_write_mem(struct hif_opaque_softc *scn, uint32_t address,
  443. uint8_t *data, int nbytes);
  444. typedef void (*fastpath_msg_handler)(void *, qdf_nbuf_t *, uint32_t);
  445. typedef uint32_t (*ext_intr_handler)(void *, uint32_t);
  446. /*
  447. * Set the FASTPATH_mode_on flag in sc, for use by data path
  448. */
  449. #ifdef WLAN_FEATURE_FASTPATH
  450. void hif_enable_fastpath(struct hif_opaque_softc *hif_ctx);
  451. bool hif_is_fastpath_mode_enabled(struct hif_opaque_softc *hif_ctx);
  452. void *hif_get_ce_handle(struct hif_opaque_softc *hif_ctx, int ret);
  453. int hif_ce_fastpath_cb_register(struct hif_opaque_softc *hif_ctx,
  454. fastpath_msg_handler handler, void *context);
  455. #else
  456. static inline int hif_ce_fastpath_cb_register(struct hif_opaque_softc *hif_ctx,
  457. fastpath_msg_handler handler,
  458. void *context)
  459. {
  460. return QDF_STATUS_E_FAILURE;
  461. }
  462. static inline void *hif_get_ce_handle(struct hif_opaque_softc *hif_ctx, int ret)
  463. {
  464. return NULL;
  465. }
  466. #endif
  467. /*
  468. * Enable/disable CDC max performance workaround
  469. * For max-performace set this to 0
  470. * To allow SoC to enter sleep set this to 1
  471. */
  472. #define CONFIG_DISABLE_CDC_MAX_PERF_WAR 0
  473. void hif_ipa_get_ce_resource(struct hif_opaque_softc *scn,
  474. qdf_dma_addr_t *ce_sr_base_paddr,
  475. uint32_t *ce_sr_ring_size,
  476. qdf_dma_addr_t *ce_reg_paddr);
  477. /**
  478. * @brief List of callbacks - filled in by HTC.
  479. */
  480. struct hif_msg_callbacks {
  481. void *Context;
  482. /**< context meaningful to HTC */
  483. QDF_STATUS (*txCompletionHandler)(void *Context, qdf_nbuf_t wbuf,
  484. uint32_t transferID,
  485. uint32_t toeplitz_hash_result);
  486. QDF_STATUS (*rxCompletionHandler)(void *Context, qdf_nbuf_t wbuf,
  487. uint8_t pipeID);
  488. void (*txResourceAvailHandler)(void *context, uint8_t pipe);
  489. void (*fwEventHandler)(void *context, QDF_STATUS status);
  490. };
  491. enum hif_target_status {
  492. TARGET_STATUS_CONNECTED = 0, /* target connected */
  493. TARGET_STATUS_RESET, /* target got reset */
  494. TARGET_STATUS_EJECT, /* target got ejected */
  495. TARGET_STATUS_SUSPEND /*target got suspend */
  496. };
  497. /**
  498. * enum hif_attribute_flags: configure hif
  499. *
  500. * @HIF_LOWDESC_CE_CFG: Configure HIF with Low descriptor CE
  501. * @HIF_LOWDESC_CE_NO_PKTLOG_CFG: Configure HIF with Low descriptor
  502. * + No pktlog CE
  503. */
  504. enum hif_attribute_flags {
  505. HIF_LOWDESC_CE_CFG = 1,
  506. HIF_LOWDESC_CE_NO_PKTLOG_CFG
  507. };
  508. #define HIF_DATA_ATTR_SET_TX_CLASSIFY(attr, v) \
  509. (attr |= (v & 0x01) << 5)
  510. #define HIF_DATA_ATTR_SET_ENCAPSULATION_TYPE(attr, v) \
  511. (attr |= (v & 0x03) << 6)
  512. #define HIF_DATA_ATTR_SET_ADDR_X_SEARCH_DISABLE(attr, v) \
  513. (attr |= (v & 0x01) << 13)
  514. #define HIF_DATA_ATTR_SET_ADDR_Y_SEARCH_DISABLE(attr, v) \
  515. (attr |= (v & 0x01) << 14)
  516. #define HIF_DATA_ATTR_SET_TOEPLITZ_HASH_ENABLE(attr, v) \
  517. (attr |= (v & 0x01) << 15)
  518. #define HIF_DATA_ATTR_SET_PACKET_OR_RESULT_OFFSET(attr, v) \
  519. (attr |= (v & 0x0FFF) << 16)
  520. #define HIF_DATA_ATTR_SET_ENABLE_11H(attr, v) \
  521. (attr |= (v & 0x01) << 30)
  522. struct hif_ul_pipe_info {
  523. unsigned int nentries;
  524. unsigned int nentries_mask;
  525. unsigned int sw_index;
  526. unsigned int write_index; /* cached copy */
  527. unsigned int hw_index; /* cached copy */
  528. void *base_addr_owner_space; /* Host address space */
  529. qdf_dma_addr_t base_addr_CE_space; /* CE address space */
  530. };
  531. struct hif_dl_pipe_info {
  532. unsigned int nentries;
  533. unsigned int nentries_mask;
  534. unsigned int sw_index;
  535. unsigned int write_index; /* cached copy */
  536. unsigned int hw_index; /* cached copy */
  537. void *base_addr_owner_space; /* Host address space */
  538. qdf_dma_addr_t base_addr_CE_space; /* CE address space */
  539. };
  540. struct hif_pipe_addl_info {
  541. uint32_t pci_mem;
  542. uint32_t ctrl_addr;
  543. struct hif_ul_pipe_info ul_pipe;
  544. struct hif_dl_pipe_info dl_pipe;
  545. };
  546. struct hif_bus_id;
  547. typedef struct hif_bus_id hif_bus_id;
  548. void hif_claim_device(struct hif_opaque_softc *hif_ctx);
  549. QDF_STATUS hif_get_config_item(struct hif_opaque_softc *hif_ctx,
  550. int opcode, void *config, uint32_t config_len);
  551. void hif_set_mailbox_swap(struct hif_opaque_softc *hif_ctx);
  552. void hif_mask_interrupt_call(struct hif_opaque_softc *scn);
  553. void hif_post_init(struct hif_opaque_softc *scn, void *hHTC,
  554. struct hif_msg_callbacks *callbacks);
  555. QDF_STATUS hif_start(struct hif_opaque_softc *scn);
  556. void hif_stop(struct hif_opaque_softc *scn);
  557. void hif_flush_surprise_remove(struct hif_opaque_softc *scn);
  558. void hif_dump(struct hif_opaque_softc *scn, uint8_t CmdId, bool start);
  559. void hif_trigger_dump(struct hif_opaque_softc *hif_ctx,
  560. uint8_t cmd_id, bool start);
  561. QDF_STATUS hif_send_head(struct hif_opaque_softc *scn, uint8_t PipeID,
  562. uint32_t transferID, uint32_t nbytes,
  563. qdf_nbuf_t wbuf, uint32_t data_attr);
  564. void hif_send_complete_check(struct hif_opaque_softc *scn, uint8_t PipeID,
  565. int force);
  566. void hif_shut_down_device(struct hif_opaque_softc *scn);
  567. void hif_get_default_pipe(struct hif_opaque_softc *scn, uint8_t *ULPipe,
  568. uint8_t *DLPipe);
  569. int hif_map_service_to_pipe(struct hif_opaque_softc *scn, uint16_t svc_id,
  570. uint8_t *ul_pipe, uint8_t *dl_pipe, int *ul_is_polled,
  571. int *dl_is_polled);
  572. uint16_t
  573. hif_get_free_queue_number(struct hif_opaque_softc *scn, uint8_t PipeID);
  574. void *hif_get_targetdef(struct hif_opaque_softc *scn);
  575. uint32_t hif_hia_item_address(uint32_t target_type, uint32_t item_offset);
  576. void hif_set_target_sleep(struct hif_opaque_softc *scn, bool sleep_ok,
  577. bool wait_for_it);
  578. int hif_check_fw_reg(struct hif_opaque_softc *scn);
  579. #ifndef HIF_PCI
  580. static inline int hif_check_soc_status(struct hif_opaque_softc *scn)
  581. {
  582. return 0;
  583. }
  584. #else
  585. int hif_check_soc_status(struct hif_opaque_softc *scn);
  586. #endif
  587. void hif_get_hw_info(struct hif_opaque_softc *scn, u32 *version, u32 *revision,
  588. const char **target_name);
  589. void hif_disable_isr(struct hif_opaque_softc *scn);
  590. void hif_reset_soc(struct hif_opaque_softc *scn);
  591. void hif_save_htc_htt_config_endpoint(struct hif_opaque_softc *hif_ctx,
  592. int htc_htt_tx_endpoint);
  593. struct hif_opaque_softc *hif_open(qdf_device_t qdf_ctx, uint32_t mode,
  594. enum qdf_bus_type bus_type,
  595. struct hif_driver_state_callbacks *cbk);
  596. void hif_close(struct hif_opaque_softc *hif_ctx);
  597. QDF_STATUS hif_enable(struct hif_opaque_softc *hif_ctx, struct device *dev,
  598. void *bdev, const hif_bus_id *bid,
  599. enum qdf_bus_type bus_type,
  600. enum hif_enable_type type);
  601. void hif_disable(struct hif_opaque_softc *hif_ctx, enum hif_disable_type type);
  602. void hif_display_stats(struct hif_opaque_softc *hif_ctx);
  603. void hif_clear_stats(struct hif_opaque_softc *hif_ctx);
  604. #ifdef FEATURE_RUNTIME_PM
  605. struct hif_pm_runtime_lock;
  606. int hif_pm_runtime_get(struct hif_opaque_softc *hif_ctx);
  607. void hif_pm_runtime_get_noresume(struct hif_opaque_softc *hif_ctx);
  608. int hif_pm_runtime_put(struct hif_opaque_softc *hif_ctx);
  609. struct hif_pm_runtime_lock *hif_runtime_lock_init(const char *name);
  610. void hif_runtime_lock_deinit(struct hif_opaque_softc *hif_ctx,
  611. struct hif_pm_runtime_lock *lock);
  612. int hif_pm_runtime_prevent_suspend(struct hif_opaque_softc *ol_sc,
  613. struct hif_pm_runtime_lock *lock);
  614. int hif_pm_runtime_allow_suspend(struct hif_opaque_softc *ol_sc,
  615. struct hif_pm_runtime_lock *lock);
  616. int hif_pm_runtime_prevent_suspend_timeout(struct hif_opaque_softc *ol_sc,
  617. struct hif_pm_runtime_lock *lock, unsigned int delay);
  618. #else
  619. struct hif_pm_runtime_lock {
  620. const char *name;
  621. };
  622. static inline void hif_pm_runtime_get_noresume(struct hif_opaque_softc *hif_ctx)
  623. {}
  624. static inline int hif_pm_runtime_get(struct hif_opaque_softc *hif_ctx)
  625. { return 0; }
  626. static inline int hif_pm_runtime_put(struct hif_opaque_softc *hif_ctx)
  627. { return 0; }
  628. static inline struct hif_pm_runtime_lock *hif_runtime_lock_init(
  629. const char *name)
  630. { return NULL; }
  631. static inline void
  632. hif_runtime_lock_deinit(struct hif_opaque_softc *hif_ctx,
  633. struct hif_pm_runtime_lock *lock) {}
  634. static inline int hif_pm_runtime_prevent_suspend(struct hif_opaque_softc *ol_sc,
  635. struct hif_pm_runtime_lock *lock)
  636. { return 0; }
  637. static inline int hif_pm_runtime_allow_suspend(struct hif_opaque_softc *ol_sc,
  638. struct hif_pm_runtime_lock *lock)
  639. { return 0; }
  640. static inline int
  641. hif_pm_runtime_prevent_suspend_timeout(struct hif_opaque_softc *ol_sc,
  642. struct hif_pm_runtime_lock *lock, unsigned int delay)
  643. { return 0; }
  644. #endif
  645. void hif_enable_power_management(struct hif_opaque_softc *hif_ctx,
  646. bool is_packet_log_enabled);
  647. void hif_disable_power_management(struct hif_opaque_softc *hif_ctx);
  648. void hif_vote_link_down(struct hif_opaque_softc *);
  649. void hif_vote_link_up(struct hif_opaque_softc *);
  650. bool hif_can_suspend_link(struct hif_opaque_softc *);
  651. #ifdef IPA_OFFLOAD
  652. /**
  653. * hif_get_ipa_hw_type() - get IPA hw type
  654. *
  655. * This API return the IPA hw type.
  656. *
  657. * Return: IPA hw type
  658. */
  659. static inline
  660. enum ipa_hw_type hif_get_ipa_hw_type(void)
  661. {
  662. return ipa_get_hw_type();
  663. }
  664. #endif
  665. int hif_bus_resume(struct hif_opaque_softc *);
  666. int hif_bus_suspend(struct hif_opaque_softc *);
  667. int hif_bus_resume_noirq(struct hif_opaque_softc *);
  668. int hif_bus_suspend_noirq(struct hif_opaque_softc *);
  669. /**
  670. * hif_apps_irqs_enable() - Enables all irqs from the APPS side
  671. * @hif_ctx: an opaque HIF handle to use
  672. *
  673. * As opposed to the standard hif_irq_enable, this function always applies to
  674. * the APPS side kernel interrupt handling.
  675. *
  676. * Return: errno
  677. */
  678. int hif_apps_irqs_enable(struct hif_opaque_softc *hif_ctx);
  679. /**
  680. * hif_apps_irqs_disable() - Disables all irqs from the APPS side
  681. * @hif_ctx: an opaque HIF handle to use
  682. *
  683. * As opposed to the standard hif_irq_disable, this function always applies to
  684. * the APPS side kernel interrupt handling.
  685. *
  686. * Return: errno
  687. */
  688. int hif_apps_irqs_disable(struct hif_opaque_softc *hif_ctx);
  689. /**
  690. * hif_apps_wake_irq_enable() - Enables the wake irq from the APPS side
  691. * @hif_ctx: an opaque HIF handle to use
  692. *
  693. * As opposed to the standard hif_irq_enable, this function always applies to
  694. * the APPS side kernel interrupt handling.
  695. *
  696. * Return: errno
  697. */
  698. int hif_apps_wake_irq_enable(struct hif_opaque_softc *hif_ctx);
  699. /**
  700. * hif_apps_wake_irq_disable() - Disables the wake irq from the APPS side
  701. * @hif_ctx: an opaque HIF handle to use
  702. *
  703. * As opposed to the standard hif_irq_disable, this function always applies to
  704. * the APPS side kernel interrupt handling.
  705. *
  706. * Return: errno
  707. */
  708. int hif_apps_wake_irq_disable(struct hif_opaque_softc *hif_ctx);
  709. #ifdef FEATURE_RUNTIME_PM
  710. int hif_pre_runtime_suspend(struct hif_opaque_softc *hif_ctx);
  711. void hif_pre_runtime_resume(struct hif_opaque_softc *hif_ctx);
  712. int hif_runtime_suspend(struct hif_opaque_softc *hif_ctx);
  713. int hif_runtime_resume(struct hif_opaque_softc *hif_ctx);
  714. void hif_process_runtime_suspend_success(struct hif_opaque_softc *);
  715. void hif_process_runtime_suspend_failure(struct hif_opaque_softc *);
  716. void hif_process_runtime_resume_success(struct hif_opaque_softc *);
  717. #endif
  718. int hif_get_irq_num(struct hif_opaque_softc *scn, int *irq, uint32_t size);
  719. int hif_dump_registers(struct hif_opaque_softc *scn);
  720. int ol_copy_ramdump(struct hif_opaque_softc *scn);
  721. void hif_crash_shutdown(struct hif_opaque_softc *hif_ctx);
  722. void hif_get_hw_info(struct hif_opaque_softc *scn, u32 *version, u32 *revision,
  723. const char **target_name);
  724. void hif_lro_flush_cb_register(struct hif_opaque_softc *scn,
  725. void (lro_flush_handler)(void *),
  726. void *(lro_init_handler)(void));
  727. void hif_lro_flush_cb_deregister(struct hif_opaque_softc *scn,
  728. void (lro_deinit_cb)(void *));
  729. bool hif_needs_bmi(struct hif_opaque_softc *scn);
  730. enum qdf_bus_type hif_get_bus_type(struct hif_opaque_softc *hif_hdl);
  731. struct hif_target_info *hif_get_target_info_handle(struct hif_opaque_softc *
  732. scn);
  733. struct hif_config_info *hif_get_ini_handle(struct hif_opaque_softc *scn);
  734. struct ramdump_info *hif_get_ramdump_ctx(struct hif_opaque_softc *hif_ctx);
  735. enum hif_target_status hif_get_target_status(struct hif_opaque_softc *hif_ctx);
  736. void hif_set_target_status(struct hif_opaque_softc *hif_ctx, enum
  737. hif_target_status);
  738. void hif_init_ini_config(struct hif_opaque_softc *hif_ctx,
  739. struct hif_config_info *cfg);
  740. void hif_update_tx_ring(struct hif_opaque_softc *osc, u_int32_t num_htt_cmpls);
  741. qdf_nbuf_t hif_batch_send(struct hif_opaque_softc *osc, qdf_nbuf_t msdu,
  742. uint32_t transfer_id, u_int32_t len, uint32_t sendhead);
  743. int hif_send_single(struct hif_opaque_softc *osc, qdf_nbuf_t msdu, uint32_t
  744. transfer_id, u_int32_t len);
  745. int hif_send_fast(struct hif_opaque_softc *osc, qdf_nbuf_t nbuf,
  746. uint32_t transfer_id, uint32_t download_len);
  747. void hif_pkt_dl_len_set(void *hif_sc, unsigned int pkt_download_len);
  748. void hif_ce_war_disable(void);
  749. void hif_ce_war_enable(void);
  750. void hif_disable_interrupt(struct hif_opaque_softc *osc, uint32_t pipe_num);
  751. #ifdef QCA_NSS_WIFI_OFFLOAD_SUPPORT
  752. struct hif_pipe_addl_info *hif_get_addl_pipe_info(struct hif_opaque_softc *osc,
  753. struct hif_pipe_addl_info *hif_info, uint32_t pipe_number);
  754. uint32_t hif_set_nss_wifiol_mode(struct hif_opaque_softc *osc,
  755. uint32_t pipe_num);
  756. int32_t hif_get_nss_wifiol_bypass_nw_process(struct hif_opaque_softc *osc);
  757. #endif /* QCA_NSS_WIFI_OFFLOAD_SUPPORT */
  758. void hif_set_bundle_mode(struct hif_opaque_softc *scn, bool enabled,
  759. int rx_bundle_cnt);
  760. int hif_bus_reset_resume(struct hif_opaque_softc *scn);
  761. void hif_set_attribute(struct hif_opaque_softc *osc, uint8_t hif_attrib);
  762. void *hif_get_lro_info(int ctx_id, struct hif_opaque_softc *hif_hdl);
  763. #ifdef WLAN_SUSPEND_RESUME_TEST
  764. typedef void (*hif_fake_resume_callback)(uint32_t val);
  765. void hif_fake_apps_suspend(struct hif_opaque_softc *hif_ctx,
  766. hif_fake_resume_callback callback);
  767. void hif_fake_apps_resume(struct hif_opaque_softc *hif_ctx);
  768. #endif
  769. uint32_t hif_register_ext_group_int_handler(struct hif_opaque_softc *hif_ctx,
  770. uint32_t numirq, uint32_t irq[], ext_intr_handler handler,
  771. void *context);
  772. void hif_update_pipe_callback(struct hif_opaque_softc *osc,
  773. u_int8_t pipeid,
  774. struct hif_msg_callbacks *callbacks);
  775. #ifdef __cplusplus
  776. }
  777. #endif
  778. void *hif_get_dev_ba(struct hif_opaque_softc *hif_handle);
  779. #endif /* _HIF_H_ */