15625f965SAjay Singh /* SPDX-License-Identifier: GPL-2.0 */ 25625f965SAjay Singh /* 35625f965SAjay Singh * Copyright (c) 2012 - 2018 Microchip Technology Inc., and its subsidiaries. 45625f965SAjay Singh * All rights reserved. 55625f965SAjay Singh */ 65625f965SAjay Singh 75625f965SAjay Singh #ifndef WILC_WLAN_H 85625f965SAjay Singh #define WILC_WLAN_H 95625f965SAjay Singh 105625f965SAjay Singh #include <linux/types.h> 115625f965SAjay Singh #include <linux/bitfield.h> 125625f965SAjay Singh 135625f965SAjay Singh /******************************************** 145625f965SAjay Singh * 155625f965SAjay Singh * Mac eth header length 165625f965SAjay Singh * 175625f965SAjay Singh ********************************************/ 185625f965SAjay Singh #define MAX_MAC_HDR_LEN 26 /* QOS_MAC_HDR_LEN */ 195625f965SAjay Singh #define SUB_MSDU_HEADER_LENGTH 14 205625f965SAjay Singh #define SNAP_HDR_LEN 8 215625f965SAjay Singh #define ETHERNET_HDR_LEN 14 225625f965SAjay Singh #define WORD_ALIGNMENT_PAD 0 235625f965SAjay Singh 245625f965SAjay Singh #define ETH_ETHERNET_HDR_OFFSET (MAX_MAC_HDR_LEN + \ 255625f965SAjay Singh SUB_MSDU_HEADER_LENGTH + \ 265625f965SAjay Singh SNAP_HDR_LEN - \ 275625f965SAjay Singh ETHERNET_HDR_LEN + \ 285625f965SAjay Singh WORD_ALIGNMENT_PAD) 295625f965SAjay Singh 305625f965SAjay Singh #define HOST_HDR_OFFSET 4 315625f965SAjay Singh #define ETHERNET_HDR_LEN 14 325625f965SAjay Singh #define IP_HDR_LEN 20 335625f965SAjay Singh #define IP_HDR_OFFSET ETHERNET_HDR_LEN 345625f965SAjay Singh #define UDP_HDR_OFFSET (IP_HDR_LEN + IP_HDR_OFFSET) 355625f965SAjay Singh #define UDP_HDR_LEN 8 365625f965SAjay Singh #define UDP_DATA_OFFSET (UDP_HDR_OFFSET + UDP_HDR_LEN) 375625f965SAjay Singh #define ETH_CONFIG_PKT_HDR_LEN UDP_DATA_OFFSET 385625f965SAjay Singh 395625f965SAjay Singh #define ETH_CONFIG_PKT_HDR_OFFSET (ETH_ETHERNET_HDR_OFFSET + \ 405625f965SAjay Singh ETH_CONFIG_PKT_HDR_LEN) 415625f965SAjay Singh 425625f965SAjay Singh /******************************************** 435625f965SAjay Singh * 445625f965SAjay Singh * Register Defines 455625f965SAjay Singh * 465625f965SAjay Singh ********************************************/ 475625f965SAjay Singh #define WILC_PERIPH_REG_BASE 0x1000 485625f965SAjay Singh #define WILC_CHANGING_VIR_IF 0x108c 495625f965SAjay Singh #define WILC_CHIPID WILC_PERIPH_REG_BASE 505625f965SAjay Singh #define WILC_GLB_RESET_0 (WILC_PERIPH_REG_BASE + 0x400) 515625f965SAjay Singh #define WILC_PIN_MUX_0 (WILC_PERIPH_REG_BASE + 0x408) 525625f965SAjay Singh #define WILC_HOST_TX_CTRL (WILC_PERIPH_REG_BASE + 0x6c) 535625f965SAjay Singh #define WILC_HOST_RX_CTRL_0 (WILC_PERIPH_REG_BASE + 0x70) 545625f965SAjay Singh #define WILC_HOST_RX_CTRL_1 (WILC_PERIPH_REG_BASE + 0x74) 555625f965SAjay Singh #define WILC_HOST_VMM_CTL (WILC_PERIPH_REG_BASE + 0x78) 565625f965SAjay Singh #define WILC_HOST_RX_CTRL (WILC_PERIPH_REG_BASE + 0x80) 575625f965SAjay Singh #define WILC_HOST_RX_EXTRA_SIZE (WILC_PERIPH_REG_BASE + 0x84) 585625f965SAjay Singh #define WILC_HOST_TX_CTRL_1 (WILC_PERIPH_REG_BASE + 0x88) 595625f965SAjay Singh #define WILC_MISC (WILC_PERIPH_REG_BASE + 0x428) 605625f965SAjay Singh #define WILC_INTR_REG_BASE (WILC_PERIPH_REG_BASE + 0xa00) 615625f965SAjay Singh #define WILC_INTR_ENABLE WILC_INTR_REG_BASE 625625f965SAjay Singh #define WILC_INTR2_ENABLE (WILC_INTR_REG_BASE + 4) 635625f965SAjay Singh 645625f965SAjay Singh #define WILC_INTR_POLARITY (WILC_INTR_REG_BASE + 0x10) 655625f965SAjay Singh #define WILC_INTR_TYPE (WILC_INTR_REG_BASE + 0x20) 665625f965SAjay Singh #define WILC_INTR_CLEAR (WILC_INTR_REG_BASE + 0x30) 675625f965SAjay Singh #define WILC_INTR_STATUS (WILC_INTR_REG_BASE + 0x40) 685625f965SAjay Singh 695625f965SAjay Singh #define WILC_RF_REVISION_ID 0x13f4 705625f965SAjay Singh 715625f965SAjay Singh #define WILC_VMM_TBL_SIZE 64 725625f965SAjay Singh #define WILC_VMM_TX_TBL_BASE 0x150400 735625f965SAjay Singh #define WILC_VMM_RX_TBL_BASE 0x150500 745625f965SAjay Singh 755625f965SAjay Singh #define WILC_VMM_BASE 0x150000 765625f965SAjay Singh #define WILC_VMM_CORE_CTL WILC_VMM_BASE 775625f965SAjay Singh #define WILC_VMM_TBL_CTL (WILC_VMM_BASE + 0x4) 785625f965SAjay Singh #define WILC_VMM_TBL_ENTRY (WILC_VMM_BASE + 0x8) 795625f965SAjay Singh #define WILC_VMM_TBL0_SIZE (WILC_VMM_BASE + 0xc) 805625f965SAjay Singh #define WILC_VMM_TO_HOST_SIZE (WILC_VMM_BASE + 0x10) 815625f965SAjay Singh #define WILC_VMM_CORE_CFG (WILC_VMM_BASE + 0x14) 825625f965SAjay Singh #define WILC_VMM_TBL_ACTIVE (WILC_VMM_BASE + 040) 835625f965SAjay Singh #define WILC_VMM_TBL_STATUS (WILC_VMM_BASE + 0x44) 845625f965SAjay Singh 855625f965SAjay Singh #define WILC_SPI_REG_BASE 0xe800 865625f965SAjay Singh #define WILC_SPI_CTL WILC_SPI_REG_BASE 875625f965SAjay Singh #define WILC_SPI_MASTER_DMA_ADDR (WILC_SPI_REG_BASE + 0x4) 885625f965SAjay Singh #define WILC_SPI_MASTER_DMA_COUNT (WILC_SPI_REG_BASE + 0x8) 895625f965SAjay Singh #define WILC_SPI_SLAVE_DMA_ADDR (WILC_SPI_REG_BASE + 0xc) 905625f965SAjay Singh #define WILC_SPI_SLAVE_DMA_COUNT (WILC_SPI_REG_BASE + 0x10) 915625f965SAjay Singh #define WILC_SPI_TX_MODE (WILC_SPI_REG_BASE + 0x20) 925625f965SAjay Singh #define WILC_SPI_PROTOCOL_CONFIG (WILC_SPI_REG_BASE + 0x24) 935625f965SAjay Singh #define WILC_SPI_INTR_CTL (WILC_SPI_REG_BASE + 0x2c) 945625f965SAjay Singh #define WILC_SPI_INT_STATUS (WILC_SPI_REG_BASE + 0x40) 955625f965SAjay Singh #define WILC_SPI_INT_CLEAR (WILC_SPI_REG_BASE + 0x44) 965625f965SAjay Singh 975625f965SAjay Singh #define WILC_SPI_WAKEUP_REG 0x1 985625f965SAjay Singh #define WILC_SPI_WAKEUP_BIT BIT(1) 995625f965SAjay Singh 1005bb9de8bSAjay Singh #define WILC_SPI_CLK_STATUS_REG 0x0f 1015bb9de8bSAjay Singh #define WILC_SPI_CLK_STATUS_BIT BIT(2) 102f135a157SDavid Mosberger-Tang #define WILC_SPI_HOST_TO_FW_REG 0x0b 103f135a157SDavid Mosberger-Tang #define WILC_SPI_HOST_TO_FW_BIT BIT(0) 104f135a157SDavid Mosberger-Tang 105f135a157SDavid Mosberger-Tang #define WILC_SPI_FW_TO_HOST_REG 0x10 106f135a157SDavid Mosberger-Tang #define WILC_SPI_FW_TO_HOST_BIT BIT(0) 107f135a157SDavid Mosberger-Tang 1085625f965SAjay Singh #define WILC_SPI_PROTOCOL_OFFSET (WILC_SPI_PROTOCOL_CONFIG - \ 1095625f965SAjay Singh WILC_SPI_REG_BASE) 1105625f965SAjay Singh 1115625f965SAjay Singh #define WILC_SPI_CLOCKLESS_ADDR_LIMIT 0x30 1125625f965SAjay Singh 1135625f965SAjay Singh /* Functions IO enables bits */ 1145625f965SAjay Singh #define WILC_SDIO_CCCR_IO_EN_FUNC1 BIT(1) 1155625f965SAjay Singh 1165625f965SAjay Singh /* Function/Interrupt enables bits */ 1175625f965SAjay Singh #define WILC_SDIO_CCCR_IEN_MASTER BIT(0) 1185625f965SAjay Singh #define WILC_SDIO_CCCR_IEN_FUNC1 BIT(1) 1195625f965SAjay Singh 1205625f965SAjay Singh /* Abort CCCR register bits */ 1215625f965SAjay Singh #define WILC_SDIO_CCCR_ABORT_RESET BIT(3) 1225625f965SAjay Singh 1235625f965SAjay Singh /* Vendor specific CCCR registers */ 1245625f965SAjay Singh #define WILC_SDIO_WAKEUP_REG 0xf0 1255625f965SAjay Singh #define WILC_SDIO_WAKEUP_BIT BIT(0) 1265625f965SAjay Singh 1275625f965SAjay Singh #define WILC_SDIO_CLK_STATUS_REG 0xf1 1285625f965SAjay Singh #define WILC_SDIO_CLK_STATUS_BIT BIT(0) 1295625f965SAjay Singh 1305625f965SAjay Singh #define WILC_SDIO_INTERRUPT_DATA_SZ_REG 0xf2 /* Read size (2 bytes) */ 1315625f965SAjay Singh 1325625f965SAjay Singh #define WILC_SDIO_VMM_TBL_CTRL_REG 0xf6 1335625f965SAjay Singh #define WILC_SDIO_IRQ_FLAG_REG 0xf7 1345625f965SAjay Singh #define WILC_SDIO_IRQ_CLEAR_FLAG_REG 0xf8 1355625f965SAjay Singh 1365625f965SAjay Singh #define WILC_SDIO_HOST_TO_FW_REG 0xfa 1375625f965SAjay Singh #define WILC_SDIO_HOST_TO_FW_BIT BIT(0) 1385625f965SAjay Singh 1395625f965SAjay Singh #define WILC_SDIO_FW_TO_HOST_REG 0xfc 1405625f965SAjay Singh #define WILC_SDIO_FW_TO_HOST_BIT BIT(0) 1415625f965SAjay Singh 1425625f965SAjay Singh /* Function 1 specific FBR register */ 1435625f965SAjay Singh #define WILC_SDIO_FBR_CSA_REG 0x10C /* CSA pointer (3 bytes) */ 1445625f965SAjay Singh #define WILC_SDIO_FBR_DATA_REG 0x10F 1455625f965SAjay Singh 1465625f965SAjay Singh #define WILC_SDIO_F1_DATA_REG 0x0 1475625f965SAjay Singh #define WILC_SDIO_EXT_IRQ_FLAG_REG 0x4 1485625f965SAjay Singh 1495625f965SAjay Singh #define WILC_AHB_DATA_MEM_BASE 0x30000 1505625f965SAjay Singh #define WILC_AHB_SHARE_MEM_BASE 0xd0000 1515625f965SAjay Singh 1525625f965SAjay Singh #define WILC_VMM_TBL_RX_SHADOW_BASE WILC_AHB_SHARE_MEM_BASE 1535625f965SAjay Singh #define WILC_VMM_TBL_RX_SHADOW_SIZE 256 1545625f965SAjay Singh 1555625f965SAjay Singh #define WILC_FW_HOST_COMM 0x13c0 1565625f965SAjay Singh #define WILC_GP_REG_0 0x149c 1575625f965SAjay Singh #define WILC_GP_REG_1 0x14a0 1585625f965SAjay Singh 1595625f965SAjay Singh #define WILC_HAVE_SDIO_IRQ_GPIO BIT(0) 1605625f965SAjay Singh #define WILC_HAVE_USE_PMU BIT(1) 1615625f965SAjay Singh #define WILC_HAVE_SLEEP_CLK_SRC_RTC BIT(2) 1625625f965SAjay Singh #define WILC_HAVE_SLEEP_CLK_SRC_XO BIT(3) 1635625f965SAjay Singh #define WILC_HAVE_EXT_PA_INV_TX_RX BIT(4) 1645625f965SAjay Singh #define WILC_HAVE_LEGACY_RF_SETTINGS BIT(5) 1655625f965SAjay Singh #define WILC_HAVE_XTAL_24 BIT(6) 1665625f965SAjay Singh #define WILC_HAVE_DISABLE_WILC_UART BIT(7) 1675625f965SAjay Singh #define WILC_HAVE_USE_IRQ_AS_HOST_WAKE BIT(8) 1685625f965SAjay Singh 1695625f965SAjay Singh #define WILC_CORTUS_INTERRUPT_BASE 0x10A8 1705625f965SAjay Singh #define WILC_CORTUS_INTERRUPT_1 (WILC_CORTUS_INTERRUPT_BASE + 0x4) 1715625f965SAjay Singh #define WILC_CORTUS_INTERRUPT_2 (WILC_CORTUS_INTERRUPT_BASE + 0x8) 1725625f965SAjay Singh 1735625f965SAjay Singh /* tx control register 1 to 4 for RX */ 1745625f965SAjay Singh #define WILC_REG_4_TO_1_RX 0x1e1c 1755625f965SAjay Singh 1765625f965SAjay Singh /* tx control register 1 to 4 for TX Bank_0 */ 1775625f965SAjay Singh #define WILC_REG_4_TO_1_TX_BANK0 0x1e9c 1785625f965SAjay Singh 1795625f965SAjay Singh #define WILC_CORTUS_RESET_MUX_SEL 0x1118 1805625f965SAjay Singh #define WILC_CORTUS_BOOT_REGISTER 0xc0000 1815625f965SAjay Singh 1825625f965SAjay Singh #define WILC_CORTUS_BOOT_FROM_IRAM 0x71 1835625f965SAjay Singh 1845625f965SAjay Singh #define WILC_1000_BASE_ID 0x100000 1855625f965SAjay Singh 1865625f965SAjay Singh #define WILC_1000_BASE_ID_2A 0x1002A0 1875625f965SAjay Singh #define WILC_1000_BASE_ID_2A_REV1 (WILC_1000_BASE_ID_2A + 1) 1885625f965SAjay Singh 1895625f965SAjay Singh #define WILC_1000_BASE_ID_2B 0x1002B0 1905625f965SAjay Singh #define WILC_1000_BASE_ID_2B_REV1 (WILC_1000_BASE_ID_2B + 1) 1915625f965SAjay Singh #define WILC_1000_BASE_ID_2B_REV2 (WILC_1000_BASE_ID_2B + 2) 1925625f965SAjay Singh 1935625f965SAjay Singh #define WILC_CHIP_REV_FIELD GENMASK(11, 0) 1945625f965SAjay Singh 1955625f965SAjay Singh /******************************************** 1965625f965SAjay Singh * 1975625f965SAjay Singh * Wlan Defines 1985625f965SAjay Singh * 1995625f965SAjay Singh ********************************************/ 2005625f965SAjay Singh #define WILC_CFG_PKT 1 2015625f965SAjay Singh #define WILC_NET_PKT 0 2025625f965SAjay Singh #define WILC_MGMT_PKT 2 2035625f965SAjay Singh 2045625f965SAjay Singh #define WILC_CFG_SET 1 2055625f965SAjay Singh #define WILC_CFG_QUERY 0 2065625f965SAjay Singh 2075625f965SAjay Singh #define WILC_CFG_RSP 1 2085625f965SAjay Singh #define WILC_CFG_RSP_STATUS 2 2095625f965SAjay Singh #define WILC_CFG_RSP_SCAN 3 2105625f965SAjay Singh 2115625f965SAjay Singh #define WILC_ABORT_REQ_BIT BIT(31) 2125625f965SAjay Singh 2135625f965SAjay Singh #define WILC_RX_BUFF_SIZE (96 * 1024) 2145625f965SAjay Singh #define WILC_TX_BUFF_SIZE (64 * 1024) 2155625f965SAjay Singh 216339754ffSAjay Singh #define NQUEUES 4 217339754ffSAjay Singh #define AC_BUFFER_SIZE 1000 218339754ffSAjay Singh 219339754ffSAjay Singh #define VO_AC_COUNT_FIELD GENMASK(31, 25) 220339754ffSAjay Singh #define VO_AC_ACM_STAT_FIELD BIT(24) 221339754ffSAjay Singh #define VI_AC_COUNT_FIELD GENMASK(23, 17) 222339754ffSAjay Singh #define VI_AC_ACM_STAT_FIELD BIT(16) 223339754ffSAjay Singh #define BE_AC_COUNT_FIELD GENMASK(15, 9) 224339754ffSAjay Singh #define BE_AC_ACM_STAT_FIELD BIT(8) 225339754ffSAjay Singh #define BK_AC_COUNT_FIELD GENMASK(7, 3) 226339754ffSAjay Singh #define BK_AC_ACM_STAT_FIELD BIT(1) 227339754ffSAjay Singh 2285625f965SAjay Singh #define WILC_PKT_HDR_CONFIG_FIELD BIT(31) 2295625f965SAjay Singh #define WILC_PKT_HDR_OFFSET_FIELD GENMASK(30, 22) 2305625f965SAjay Singh #define WILC_PKT_HDR_TOTAL_LEN_FIELD GENMASK(21, 11) 2315625f965SAjay Singh #define WILC_PKT_HDR_LEN_FIELD GENMASK(10, 0) 2325625f965SAjay Singh 2335625f965SAjay Singh #define WILC_INTERRUPT_DATA_SIZE GENMASK(14, 0) 2345625f965SAjay Singh 2355625f965SAjay Singh #define WILC_VMM_BUFFER_SIZE GENMASK(9, 0) 2365625f965SAjay Singh 2375625f965SAjay Singh #define WILC_VMM_HDR_TYPE BIT(31) 2385625f965SAjay Singh #define WILC_VMM_HDR_MGMT_FIELD BIT(30) 2395625f965SAjay Singh #define WILC_VMM_HDR_PKT_SIZE GENMASK(29, 15) 2405625f965SAjay Singh #define WILC_VMM_HDR_BUFF_SIZE GENMASK(14, 0) 2415625f965SAjay Singh 2425625f965SAjay Singh #define WILC_VMM_ENTRY_COUNT GENMASK(8, 3) 2435625f965SAjay Singh #define WILC_VMM_ENTRY_AVAILABLE BIT(2) 2445625f965SAjay Singh /*******************************************/ 2455625f965SAjay Singh /* E0 and later Interrupt flags. */ 2465625f965SAjay Singh /*******************************************/ 2475625f965SAjay Singh /*******************************************/ 2485625f965SAjay Singh /* E0 and later Interrupt flags. */ 2495625f965SAjay Singh /* IRQ Status word */ 2505625f965SAjay Singh /* 15:0 = DMA count in words. */ 2515625f965SAjay Singh /* 16: INT0 flag */ 2525625f965SAjay Singh /* 17: INT1 flag */ 2535625f965SAjay Singh /* 18: INT2 flag */ 2545625f965SAjay Singh /* 19: INT3 flag */ 2555625f965SAjay Singh /* 20: INT4 flag */ 2565625f965SAjay Singh /* 21: INT5 flag */ 2575625f965SAjay Singh /*******************************************/ 2585625f965SAjay Singh #define IRG_FLAGS_OFFSET 16 2595625f965SAjay Singh #define IRQ_DMA_WD_CNT_MASK GENMASK(IRG_FLAGS_OFFSET - 1, 0) 2605625f965SAjay Singh #define INT_0 BIT(IRG_FLAGS_OFFSET) 2615625f965SAjay Singh #define INT_1 BIT(IRG_FLAGS_OFFSET + 1) 2625625f965SAjay Singh #define INT_2 BIT(IRG_FLAGS_OFFSET + 2) 2635625f965SAjay Singh #define INT_3 BIT(IRG_FLAGS_OFFSET + 3) 2645625f965SAjay Singh #define INT_4 BIT(IRG_FLAGS_OFFSET + 4) 2655625f965SAjay Singh #define INT_5 BIT(IRG_FLAGS_OFFSET + 5) 2665625f965SAjay Singh #define MAX_NUM_INT 5 2675625f965SAjay Singh #define IRG_FLAGS_MASK GENMASK(IRG_FLAGS_OFFSET + MAX_NUM_INT, \ 2685625f965SAjay Singh IRG_FLAGS_OFFSET) 2695625f965SAjay Singh 2705625f965SAjay Singh /*******************************************/ 2715625f965SAjay Singh /* E0 and later Interrupt flags. */ 2725625f965SAjay Singh /* IRQ Clear word */ 2735625f965SAjay Singh /* 0: Clear INT0 */ 2745625f965SAjay Singh /* 1: Clear INT1 */ 2755625f965SAjay Singh /* 2: Clear INT2 */ 2765625f965SAjay Singh /* 3: Clear INT3 */ 2775625f965SAjay Singh /* 4: Clear INT4 */ 2785625f965SAjay Singh /* 5: Clear INT5 */ 2795625f965SAjay Singh /* 6: Select VMM table 1 */ 2805625f965SAjay Singh /* 7: Select VMM table 2 */ 2815625f965SAjay Singh /* 8: Enable VMM */ 2825625f965SAjay Singh /*******************************************/ 2835625f965SAjay Singh #define CLR_INT0 BIT(0) 2845625f965SAjay Singh #define CLR_INT1 BIT(1) 2855625f965SAjay Singh #define CLR_INT2 BIT(2) 2865625f965SAjay Singh #define CLR_INT3 BIT(3) 2875625f965SAjay Singh #define CLR_INT4 BIT(4) 2885625f965SAjay Singh #define CLR_INT5 BIT(5) 2895625f965SAjay Singh #define SEL_VMM_TBL0 BIT(6) 2905625f965SAjay Singh #define SEL_VMM_TBL1 BIT(7) 2915625f965SAjay Singh #define EN_VMM BIT(8) 2925625f965SAjay Singh 2935625f965SAjay Singh #define DATA_INT_EXT INT_0 2945625f965SAjay Singh #define ALL_INT_EXT DATA_INT_EXT 2955625f965SAjay Singh #define NUM_INT_EXT 1 2965625f965SAjay Singh #define UNHANDLED_IRQ_MASK GENMASK(MAX_NUM_INT - 1, NUM_INT_EXT) 2975625f965SAjay Singh 2985625f965SAjay Singh #define DATA_INT_CLR CLR_INT0 2995625f965SAjay Singh 3005625f965SAjay Singh #define ENABLE_RX_VMM (SEL_VMM_TBL1 | EN_VMM) 3015625f965SAjay Singh #define ENABLE_TX_VMM (SEL_VMM_TBL0 | EN_VMM) 3025625f965SAjay Singh /* time for expiring the completion of cfg packets */ 303bb6a0d54SAjay Singh #define WILC_CFG_PKTS_TIMEOUT msecs_to_jiffies(3000) 3045625f965SAjay Singh 3055625f965SAjay Singh #define IS_MANAGMEMENT 0x100 3065625f965SAjay Singh #define IS_MANAGMEMENT_CALLBACK 0x080 3075625f965SAjay Singh #define IS_MGMT_STATUS_SUCCES 0x040 308c5b331d4SAjay Singh #define IS_MGMT_AUTH_PKT 0x010 3095625f965SAjay Singh 3105625f965SAjay Singh #define WILC_WID_TYPE GENMASK(15, 12) 3115625f965SAjay Singh #define WILC_VMM_ENTRY_FULL_RETRY 1 3125625f965SAjay Singh /******************************************** 3135625f965SAjay Singh * 3145625f965SAjay Singh * Tx/Rx Queue Structure 3155625f965SAjay Singh * 3165625f965SAjay Singh ********************************************/ 317339754ffSAjay Singh enum ip_pkt_priority { 318339754ffSAjay Singh AC_VO_Q = 0, 319339754ffSAjay Singh AC_VI_Q = 1, 320339754ffSAjay Singh AC_BE_Q = 2, 321339754ffSAjay Singh AC_BK_Q = 3 322339754ffSAjay Singh }; 3235625f965SAjay Singh 3245625f965SAjay Singh struct txq_entry_t { 3255625f965SAjay Singh struct list_head list; 3265625f965SAjay Singh int type; 327339754ffSAjay Singh u8 q_num; 3285625f965SAjay Singh int ack_idx; 3295625f965SAjay Singh u8 *buffer; 3305625f965SAjay Singh int buffer_size; 3315625f965SAjay Singh void *priv; 3325625f965SAjay Singh int status; 3335625f965SAjay Singh struct wilc_vif *vif; 3345625f965SAjay Singh void (*tx_complete_func)(void *priv, int status); 3355625f965SAjay Singh }; 3365625f965SAjay Singh 337339754ffSAjay Singh struct txq_fw_recv_queue_stat { 338339754ffSAjay Singh u8 acm; 339339754ffSAjay Singh u8 count; 340339754ffSAjay Singh }; 341339754ffSAjay Singh 342339754ffSAjay Singh struct txq_handle { 343339754ffSAjay Singh struct txq_entry_t txq_head; 344339754ffSAjay Singh u16 count; 345339754ffSAjay Singh struct txq_fw_recv_queue_stat fw; 346339754ffSAjay Singh }; 347339754ffSAjay Singh 3485625f965SAjay Singh struct rxq_entry_t { 3495625f965SAjay Singh struct list_head list; 3505625f965SAjay Singh u8 *buffer; 3515625f965SAjay Singh int buffer_size; 3525625f965SAjay Singh }; 3535625f965SAjay Singh 3545625f965SAjay Singh /******************************************** 3555625f965SAjay Singh * 3565625f965SAjay Singh * Host IF Structure 3575625f965SAjay Singh * 3585625f965SAjay Singh ********************************************/ 3595625f965SAjay Singh struct wilc; 3605625f965SAjay Singh struct wilc_hif_func { 3615625f965SAjay Singh int (*hif_init)(struct wilc *wilc, bool resume); 3625625f965SAjay Singh int (*hif_deinit)(struct wilc *wilc); 3635625f965SAjay Singh int (*hif_read_reg)(struct wilc *wilc, u32 addr, u32 *data); 3645625f965SAjay Singh int (*hif_write_reg)(struct wilc *wilc, u32 addr, u32 data); 3655625f965SAjay Singh int (*hif_block_rx)(struct wilc *wilc, u32 addr, u8 *buf, u32 size); 3665625f965SAjay Singh int (*hif_block_tx)(struct wilc *wilc, u32 addr, u8 *buf, u32 size); 3675625f965SAjay Singh int (*hif_read_int)(struct wilc *wilc, u32 *int_status); 3685625f965SAjay Singh int (*hif_clear_int_ext)(struct wilc *wilc, u32 val); 3695625f965SAjay Singh int (*hif_read_size)(struct wilc *wilc, u32 *size); 3705625f965SAjay Singh int (*hif_block_tx_ext)(struct wilc *wilc, u32 addr, u8 *buf, u32 size); 3715625f965SAjay Singh int (*hif_block_rx_ext)(struct wilc *wilc, u32 addr, u8 *buf, u32 size); 3725625f965SAjay Singh int (*hif_sync_ext)(struct wilc *wilc, int nint); 3735625f965SAjay Singh int (*enable_interrupt)(struct wilc *nic); 3745625f965SAjay Singh void (*disable_interrupt)(struct wilc *nic); 375c2dcb476SAjay Singh int (*hif_reset)(struct wilc *wilc); 376*39d0f1b0SAjay Singh bool (*hif_is_init)(struct wilc *wilc); 3775625f965SAjay Singh }; 3785625f965SAjay Singh 3795625f965SAjay Singh #define WILC_MAX_CFG_FRAME_SIZE 1468 3805625f965SAjay Singh 3815625f965SAjay Singh struct tx_complete_data { 3825625f965SAjay Singh int size; 3835625f965SAjay Singh void *buff; 3845625f965SAjay Singh struct sk_buff *skb; 3855625f965SAjay Singh }; 3865625f965SAjay Singh 3875625f965SAjay Singh struct wilc_cfg_cmd_hdr { 3885625f965SAjay Singh u8 cmd_type; 3895625f965SAjay Singh u8 seq_no; 3905625f965SAjay Singh __le16 total_len; 3915625f965SAjay Singh __le32 driver_handler; 3925625f965SAjay Singh }; 3935625f965SAjay Singh 3945625f965SAjay Singh struct wilc_cfg_frame { 3955625f965SAjay Singh struct wilc_cfg_cmd_hdr hdr; 3965625f965SAjay Singh u8 frame[WILC_MAX_CFG_FRAME_SIZE]; 3975625f965SAjay Singh }; 3985625f965SAjay Singh 3995625f965SAjay Singh struct wilc_cfg_rsp { 4005625f965SAjay Singh u8 type; 4015625f965SAjay Singh u8 seq_no; 4025625f965SAjay Singh }; 4035625f965SAjay Singh 4045625f965SAjay Singh struct wilc_vif; 4055625f965SAjay Singh 4065625f965SAjay Singh int wilc_wlan_firmware_download(struct wilc *wilc, const u8 *buffer, 4075625f965SAjay Singh u32 buffer_size); 4085625f965SAjay Singh int wilc_wlan_start(struct wilc *wilc); 4095625f965SAjay Singh int wilc_wlan_stop(struct wilc *wilc, struct wilc_vif *vif); 4106fe91b69SVsevolod Kozlov int wilc_wlan_txq_add_net_pkt(struct net_device *dev, 4116fe91b69SVsevolod Kozlov struct tx_complete_data *tx_data, u8 *buffer, 4125625f965SAjay Singh u32 buffer_size, 4135625f965SAjay Singh void (*tx_complete_fn)(void *, int)); 4145625f965SAjay Singh int wilc_wlan_handle_txq(struct wilc *wl, u32 *txq_count); 4155625f965SAjay Singh void wilc_handle_isr(struct wilc *wilc); 4165625f965SAjay Singh void wilc_wlan_cleanup(struct net_device *dev); 4175625f965SAjay Singh int wilc_wlan_cfg_set(struct wilc_vif *vif, int start, u16 wid, u8 *buffer, 4185625f965SAjay Singh u32 buffer_size, int commit, u32 drv_handler); 4195625f965SAjay Singh int wilc_wlan_cfg_get(struct wilc_vif *vif, int start, u16 wid, int commit, 4205625f965SAjay Singh u32 drv_handler); 4215625f965SAjay Singh int wilc_wlan_txq_add_mgmt_pkt(struct net_device *dev, void *priv, u8 *buffer, 4225625f965SAjay Singh u32 buffer_size, void (*func)(void *, int)); 4235625f965SAjay Singh void wilc_enable_tcp_ack_filter(struct wilc_vif *vif, bool value); 4245625f965SAjay Singh int wilc_wlan_get_num_conn_ifcs(struct wilc *wilc); 4255625f965SAjay Singh netdev_tx_t wilc_mac_xmit(struct sk_buff *skb, struct net_device *dev); 4265625f965SAjay Singh 4275625f965SAjay Singh void wilc_wfi_p2p_rx(struct wilc_vif *vif, u8 *buff, u32 size); 428c5b331d4SAjay Singh bool wilc_wfi_mgmt_frame_rx(struct wilc_vif *vif, u8 *buff, u32 size); 4295625f965SAjay Singh void host_wakeup_notify(struct wilc *wilc); 4305625f965SAjay Singh void host_sleep_notify(struct wilc *wilc); 4315625f965SAjay Singh void chip_allow_sleep(struct wilc *wilc); 4325625f965SAjay Singh void chip_wakeup(struct wilc *wilc); 4335625f965SAjay Singh int wilc_send_config_pkt(struct wilc_vif *vif, u8 mode, struct wid *wids, 4345625f965SAjay Singh u32 count); 4355625f965SAjay Singh int wilc_wlan_init(struct net_device *dev); 4365625f965SAjay Singh u32 wilc_get_chipid(struct wilc *wilc, bool update); 4375625f965SAjay Singh #endif 438