123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245 |
- #ifndef __HIF_MAIN_H__
- #define __HIF_MAIN_H__
- #include <qdf_atomic.h> /* qdf_atomic_read */
- #include "qdf_lock.h"
- #include "cepci.h"
- #include "hif.h"
- #include "multibus.h"
- #define HIF_MIN_SLEEP_INACTIVITY_TIME_MS 50
- #define HIF_SLEEP_INACTIVITY_TIMER_PERIOD_MS 60
- #define HIF_MAX_BUDGET 0xFFFF
- #define TARGID_TO_PCI_ADDR(targid) (*((A_target_id_t *)(targid)))
- #ifdef QCA_WIFI_3_0
- #define DISABLE_L1SS_STATES 1
- #endif
- #define MAX_NUM_OF_RECEIVES HIF_NAPI_MAX_RECEIVES
- #ifdef QCA_WIFI_3_0_ADRASTEA
- #define ADRASTEA_BU 1
- #else
- #define ADRASTEA_BU 0
- #endif
- #ifdef QCA_WIFI_3_0
- #define HAS_FW_INDICATOR 0
- #else
- #define HAS_FW_INDICATOR 1
- #endif
- #define AR9888_DEVICE_ID (0x003c)
- #define AR6320_DEVICE_ID (0x003e)
- #define AR6320_FW_1_1 (0x11)
- #define AR6320_FW_1_3 (0x13)
- #define AR6320_FW_2_0 (0x20)
- #define AR6320_FW_3_0 (0x30)
- #define AR6320_FW_3_2 (0x32)
- #define ADRASTEA_DEVICE_ID (0xabcd)
- #define ADRASTEA_DEVICE_ID_P2_E12 (0x7021)
- #define AR9887_DEVICE_ID (0x0050)
- #define AR900B_DEVICE_ID (0x0040)
- #define QCA9984_DEVICE_ID (0x0046)
- #define QCA9888_DEVICE_ID (0x0056)
- #define IPQ4019_DEVICE_ID (0x12ef)
- #define QCA8074_DEVICE_ID (0xffff)
- #define HIF_GET_PCI_SOFTC(scn) ((struct hif_pci_softc *)scn)
- #define HIF_GET_CE_STATE(scn) ((struct HIF_CE_state *)scn)
- #define HIF_GET_SDIO_SOFTC(scn) ((struct hif_sdio_softc *)scn)
- #define HIF_GET_USB_SOFTC(scn) ((struct hif_usb_softc *)scn)
- #define HIF_GET_USB_DEVICE(scn) ((HIF_DEVICE_USB *)scn)
- #define HIF_GET_SOFTC(scn) ((struct hif_softc *)scn)
- #define GET_HIF_OPAQUE_HDL(scn) ((struct hif_opaque_softc *)scn)
- struct hif_ce_stats {
- int hif_pipe_no_resrc_count;
- int ce_ring_delta_fail_count;
- };
- #ifdef WLAN_SUSPEND_RESUME_TEST
- struct fake_apps_context {
- unsigned long state;
- hif_fake_resume_callback resume_callback;
- struct work_struct resume_work;
- };
- enum hif_fake_apps_state_bits {
- HIF_FA_SUSPENDED_BIT = 0
- };
- void hif_fake_apps_resume_work(struct work_struct *work);
- #endif
- struct hif_softc {
- struct hif_opaque_softc osc;
- struct hif_config_info hif_config;
- struct hif_target_info target_info;
- void __iomem *mem;
- enum qdf_bus_type bus_type;
- struct hif_bus_ops bus_ops;
- void *ce_id_to_state[CE_COUNT_MAX];
- qdf_device_t qdf_dev;
- bool hif_init_done;
- bool request_irq_done;
-
- struct hif_ce_stats pkt_stats;
- enum hif_target_status target_status;
- struct targetdef_s *targetdef;
- struct ce_reg_def *target_ce_def;
- struct hostdef_s *hostdef;
- struct host_shadow_regs_s *host_shadow_regs;
- bool recovery;
- bool notice_send;
- bool per_ce_irq;
- uint32_t ce_irq_summary;
-
- unsigned int ce_count;
- atomic_t active_tasklet_cnt;
- atomic_t active_grp_tasklet_cnt;
- atomic_t link_suspended;
- uint32_t *vaddr_rri_on_ddr;
- int linkstate_vote;
- bool fastpath_mode_on;
- atomic_t tasklet_from_intr;
- int htc_htt_tx_endpoint;
- qdf_dma_addr_t mem_pa;
- bool athdiag_procfs_inited;
- #ifdef FEATURE_NAPI
- struct qca_napi_data napi_data;
- #endif
- struct hif_driver_state_callbacks callbacks;
- uint32_t hif_con_param;
- #ifdef QCA_NSS_WIFI_OFFLOAD_SUPPORT
- uint32_t nss_wifi_ol_mode;
- #endif
- void *hal_soc;
- #ifdef WLAN_SUSPEND_RESUME_TEST
- struct fake_apps_context fake_apps_ctx;
- #endif
- };
- #ifdef QCA_NSS_WIFI_OFFLOAD_SUPPORT
- static inline bool hif_is_nss_wifi_enabled(struct hif_softc *sc)
- {
- return !!(sc->nss_wifi_ol_mode);
- }
- #else
- static inline bool hif_is_nss_wifi_enabled(struct hif_softc *sc)
- {
- return false;
- }
- #endif
- A_target_id_t hif_get_target_id(struct hif_softc *scn);
- void hif_dump_pipe_debug_count(struct hif_softc *scn);
- void hif_display_bus_stats(struct hif_opaque_softc *scn);
- void hif_clear_bus_stats(struct hif_opaque_softc *scn);
- bool hif_max_num_receives_reached(struct hif_softc *scn, unsigned int count);
- void hif_shutdown_device(struct hif_opaque_softc *hif_ctx);
- int hif_bus_configure(struct hif_softc *scn);
- void hif_cancel_deferred_target_sleep(struct hif_softc *scn);
- int hif_config_ce(struct hif_softc *scn);
- void hif_unconfig_ce(struct hif_softc *scn);
- void hif_ce_prepare_config(struct hif_softc *scn);
- QDF_STATUS hif_ce_open(struct hif_softc *scn);
- void hif_ce_close(struct hif_softc *scn);
- int athdiag_procfs_init(void *scn);
- void athdiag_procfs_remove(void);
- qdf_size_t init_buffer_count(qdf_size_t maxSize);
- irqreturn_t hif_fw_interrupt_handler(int irq, void *arg);
- int hif_get_device_type(uint32_t device_id,
- uint32_t revision_id,
- uint32_t *hif_type, uint32_t *target_type);
- void hif_nointrs(struct hif_softc *scn);
- void hif_bus_close(struct hif_softc *ol_sc);
- QDF_STATUS hif_bus_open(struct hif_softc *ol_sc,
- enum qdf_bus_type bus_type);
- QDF_STATUS hif_enable_bus(struct hif_softc *ol_sc, struct device *dev,
- void *bdev, const hif_bus_id *bid, enum hif_enable_type type);
- void hif_disable_bus(struct hif_softc *scn);
- void hif_bus_prevent_linkdown(struct hif_softc *scn, bool flag);
- int hif_bus_get_context_size(enum qdf_bus_type bus_type);
- void hif_read_phy_mem_base(struct hif_softc *scn, qdf_dma_addr_t *bar_value);
- uint32_t hif_get_conparam(struct hif_softc *scn);
- struct hif_driver_state_callbacks *hif_get_callbacks_handle(struct hif_softc *scn);
- bool hif_is_driver_unloading(struct hif_softc *scn);
- bool hif_is_load_or_unload_in_progress(struct hif_softc *scn);
- bool hif_is_recovery_in_progress(struct hif_softc *scn);
- void hif_wlan_disable(struct hif_softc *scn);
- int hif_target_sleep_state_adjust(struct hif_softc *scn,
- bool sleep_ok,
- bool wait_for_it);
- #ifdef HIF_USB
- void hif_usb_get_hw_info(struct hif_softc *scn);
- void hif_ramdump_handler(struct hif_opaque_softc *scn);
- #else
- static inline void hif_usb_get_hw_info(struct hif_softc *scn) {}
- static inline void hif_ramdump_handler(struct hif_opaque_softc *scn) {}
- #endif
- void hif_ext_grp_tasklet(unsigned long data);
- void hif_grp_tasklet_kill(struct hif_softc *scn);
- #endif
|