Path: blob/main/sys/contrib/dev/broadcom/brcm80211/brcmsmac/d11.h
178665 views
/*1* Copyright (c) 2010 Broadcom Corporation2*3* Permission to use, copy, modify, and/or distribute this software for any4* purpose with or without fee is hereby granted, provided that the above5* copyright notice and this permission notice appear in all copies.6*7* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES8* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF9* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY10* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES11* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION12* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN13* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.14*/1516#ifndef _BRCM_D11_H_17#define _BRCM_D11_H_1819#include <linux/ieee80211.h>2021#include <defs.h>22#include "pub.h"23#include "dma.h"2425/* RX FIFO numbers */26#define RX_FIFO 0 /* data and ctl frames */27#define RX_TXSTATUS_FIFO 3 /* RX fifo for tx status packages */2829/* TX FIFO numbers using WME Access Category */30#define TX_AC_BK_FIFO 0 /* Background TX FIFO */31#define TX_AC_BE_FIFO 1 /* Best-Effort TX FIFO */32#define TX_AC_VI_FIFO 2 /* Video TX FIFO */33#define TX_AC_VO_FIFO 3 /* Voice TX FIFO */34#define TX_BCMC_FIFO 4 /* Broadcast/Multicast TX FIFO */35#define TX_ATIM_FIFO 5 /* TX fifo for ATIM window info */3637/* Addr is byte address used by SW; offset is word offset used by uCode */3839/* Per AC TX limit settings */40#define M_AC_TXLMT_BASE_ADDR (0x180 * 2)41#define M_AC_TXLMT_ADDR(_ac) (M_AC_TXLMT_BASE_ADDR + (2 * (_ac)))4243/* Legacy TX FIFO numbers */44#define TX_DATA_FIFO TX_AC_BE_FIFO45#define TX_CTL_FIFO TX_AC_VO_FIFO4647#define WL_RSSI_ANT_MAX 4 /* max possible rx antennas */4849struct intctrlregs {50u32 intstatus;51u32 intmask;52};5354/* PIO structure,55* support two PIO format: 2 bytes access and 4 bytes access56* basic FIFO register set is per channel(transmit or receive)57* a pair of channels is defined for convenience58*/59/* 2byte-wide pio register set per channel(xmt or rcv) */60struct pio2regs {61u16 fifocontrol;62u16 fifodata;63u16 fifofree; /* only valid in xmt channel, not in rcv channel */64u16 PAD;65};6667/* a pair of pio channels(tx and rx) */68struct pio2regp {69struct pio2regs tx;70struct pio2regs rx;71};7273/* 4byte-wide pio register set per channel(xmt or rcv) */74struct pio4regs {75u32 fifocontrol;76u32 fifodata;77};7879/* a pair of pio channels(tx and rx) */80struct pio4regp {81struct pio4regs tx;82struct pio4regs rx;83};8485/* read: 32-bit register that can be read as 32-bit or as 2 16-bit86* write: only low 16b-it half can be written87*/88union pmqreg {89u32 pmqhostdata; /* read only! */90struct {91u16 pmqctrlstatus; /* read/write */92u16 PAD;93} w;94};9596struct fifo64 {97struct dma64regs dmaxmt; /* dma tx */98struct pio4regs piotx; /* pio tx */99struct dma64regs dmarcv; /* dma rx */100struct pio4regs piorx; /* pio rx */101};102103/*104* Host Interface Registers105*/106struct d11regs {107/* Device Control ("semi-standard host registers") */108u32 PAD[3]; /* 0x0 - 0x8 */109u32 biststatus; /* 0xC */110u32 biststatus2; /* 0x10 */111u32 PAD; /* 0x14 */112u32 gptimer; /* 0x18 */113u32 usectimer; /* 0x1c *//* for corerev >= 26 */114115/* Interrupt Control *//* 0x20 */116struct intctrlregs intctrlregs[8];117118u32 PAD[40]; /* 0x60 - 0xFC */119120u32 intrcvlazy[4]; /* 0x100 - 0x10C */121122u32 PAD[4]; /* 0x110 - 0x11c */123124u32 maccontrol; /* 0x120 */125u32 maccommand; /* 0x124 */126u32 macintstatus; /* 0x128 */127u32 macintmask; /* 0x12C */128129/* Transmit Template Access */130u32 tplatewrptr; /* 0x130 */131u32 tplatewrdata; /* 0x134 */132u32 PAD[2]; /* 0x138 - 0x13C */133134/* PMQ registers */135union pmqreg pmqreg; /* 0x140 */136u32 pmqpatl; /* 0x144 */137u32 pmqpath; /* 0x148 */138u32 PAD; /* 0x14C */139140u32 chnstatus; /* 0x150 */141u32 psmdebug; /* 0x154 */142u32 phydebug; /* 0x158 */143u32 machwcap; /* 0x15C */144145/* Extended Internal Objects */146u32 objaddr; /* 0x160 */147u32 objdata; /* 0x164 */148u32 PAD[2]; /* 0x168 - 0x16c */149150u32 frmtxstatus; /* 0x170 */151u32 frmtxstatus2; /* 0x174 */152u32 PAD[2]; /* 0x178 - 0x17c */153154/* TSF host access */155u32 tsf_timerlow; /* 0x180 */156u32 tsf_timerhigh; /* 0x184 */157u32 tsf_cfprep; /* 0x188 */158u32 tsf_cfpstart; /* 0x18c */159u32 tsf_cfpmaxdur32; /* 0x190 */160u32 PAD[3]; /* 0x194 - 0x19c */161162u32 maccontrol1; /* 0x1a0 */163u32 machwcap1; /* 0x1a4 */164u32 PAD[14]; /* 0x1a8 - 0x1dc */165166/* Clock control and hardware workarounds*/167u32 clk_ctl_st; /* 0x1e0 */168u32 hw_war;169u32 d11_phypllctl; /* the phypll request/avail bits are170* moved to clk_ctl_st171*/172u32 PAD[5]; /* 0x1ec - 0x1fc */173174/* 0x200-0x37F dma/pio registers */175struct fifo64 fifo64regs[6];176177/* FIFO diagnostic port access */178struct dma32diag dmafifo; /* 0x380 - 0x38C */179180u32 aggfifocnt; /* 0x390 */181u32 aggfifodata; /* 0x394 */182u32 PAD[16]; /* 0x398 - 0x3d4 */183u16 radioregaddr; /* 0x3d8 */184u16 radioregdata; /* 0x3da */185186/*187* time delay between the change on rf disable input and188* radio shutdown189*/190u32 rfdisabledly; /* 0x3DC */191192/* PHY register access */193u16 phyversion; /* 0x3e0 - 0x0 */194u16 phybbconfig; /* 0x3e2 - 0x1 */195u16 phyadcbias; /* 0x3e4 - 0x2 Bphy only */196u16 phyanacore; /* 0x3e6 - 0x3 pwwrdwn on aphy */197u16 phyrxstatus0; /* 0x3e8 - 0x4 */198u16 phyrxstatus1; /* 0x3ea - 0x5 */199u16 phycrsth; /* 0x3ec - 0x6 */200u16 phytxerror; /* 0x3ee - 0x7 */201u16 phychannel; /* 0x3f0 - 0x8 */202u16 PAD[1]; /* 0x3f2 - 0x9 */203u16 phytest; /* 0x3f4 - 0xa */204u16 phy4waddr; /* 0x3f6 - 0xb */205u16 phy4wdatahi; /* 0x3f8 - 0xc */206u16 phy4wdatalo; /* 0x3fa - 0xd */207u16 phyregaddr; /* 0x3fc - 0xe */208u16 phyregdata; /* 0x3fe - 0xf */209210/* IHR *//* 0x400 - 0x7FE */211212/* RXE Block */213u16 PAD[3]; /* 0x400 - 0x406 */214u16 rcv_fifo_ctl; /* 0x406 */215u16 PAD; /* 0x408 - 0x40a */216u16 rcv_frm_cnt; /* 0x40a */217u16 PAD[4]; /* 0x40a - 0x414 */218u16 rssi; /* 0x414 */219u16 PAD[5]; /* 0x414 - 0x420 */220u16 rcm_ctl; /* 0x420 */221u16 rcm_mat_data; /* 0x422 */222u16 rcm_mat_mask; /* 0x424 */223u16 rcm_mat_dly; /* 0x426 */224u16 rcm_cond_mask_l; /* 0x428 */225u16 rcm_cond_mask_h; /* 0x42A */226u16 rcm_cond_dly; /* 0x42C */227u16 PAD[1]; /* 0x42E */228u16 ext_ihr_addr; /* 0x430 */229u16 ext_ihr_data; /* 0x432 */230u16 rxe_phyrs_2; /* 0x434 */231u16 rxe_phyrs_3; /* 0x436 */232u16 phy_mode; /* 0x438 */233u16 rcmta_ctl; /* 0x43a */234u16 rcmta_size; /* 0x43c */235u16 rcmta_addr0; /* 0x43e */236u16 rcmta_addr1; /* 0x440 */237u16 rcmta_addr2; /* 0x442 */238u16 PAD[30]; /* 0x444 - 0x480 */239240/* PSM Block *//* 0x480 - 0x500 */241242u16 PAD; /* 0x480 */243u16 psm_maccontrol_h; /* 0x482 */244u16 psm_macintstatus_l; /* 0x484 */245u16 psm_macintstatus_h; /* 0x486 */246u16 psm_macintmask_l; /* 0x488 */247u16 psm_macintmask_h; /* 0x48A */248u16 PAD; /* 0x48C */249u16 psm_maccommand; /* 0x48E */250u16 psm_brc; /* 0x490 */251u16 psm_phy_hdr_param; /* 0x492 */252u16 psm_postcard; /* 0x494 */253u16 psm_pcard_loc_l; /* 0x496 */254u16 psm_pcard_loc_h; /* 0x498 */255u16 psm_gpio_in; /* 0x49A */256u16 psm_gpio_out; /* 0x49C */257u16 psm_gpio_oe; /* 0x49E */258259u16 psm_bred_0; /* 0x4A0 */260u16 psm_bred_1; /* 0x4A2 */261u16 psm_bred_2; /* 0x4A4 */262u16 psm_bred_3; /* 0x4A6 */263u16 psm_brcl_0; /* 0x4A8 */264u16 psm_brcl_1; /* 0x4AA */265u16 psm_brcl_2; /* 0x4AC */266u16 psm_brcl_3; /* 0x4AE */267u16 psm_brpo_0; /* 0x4B0 */268u16 psm_brpo_1; /* 0x4B2 */269u16 psm_brpo_2; /* 0x4B4 */270u16 psm_brpo_3; /* 0x4B6 */271u16 psm_brwk_0; /* 0x4B8 */272u16 psm_brwk_1; /* 0x4BA */273u16 psm_brwk_2; /* 0x4BC */274u16 psm_brwk_3; /* 0x4BE */275276u16 psm_base_0; /* 0x4C0 */277u16 psm_base_1; /* 0x4C2 */278u16 psm_base_2; /* 0x4C4 */279u16 psm_base_3; /* 0x4C6 */280u16 psm_base_4; /* 0x4C8 */281u16 psm_base_5; /* 0x4CA */282u16 psm_base_6; /* 0x4CC */283u16 psm_pc_reg_0; /* 0x4CE */284u16 psm_pc_reg_1; /* 0x4D0 */285u16 psm_pc_reg_2; /* 0x4D2 */286u16 psm_pc_reg_3; /* 0x4D4 */287u16 PAD[0xD]; /* 0x4D6 - 0x4DE */288u16 psm_corectlsts; /* 0x4f0 *//* Corerev >= 13 */289u16 PAD[0x7]; /* 0x4f2 - 0x4fE */290291/* TXE0 Block *//* 0x500 - 0x580 */292u16 txe_ctl; /* 0x500 */293u16 txe_aux; /* 0x502 */294u16 txe_ts_loc; /* 0x504 */295u16 txe_time_out; /* 0x506 */296u16 txe_wm_0; /* 0x508 */297u16 txe_wm_1; /* 0x50A */298u16 txe_phyctl; /* 0x50C */299u16 txe_status; /* 0x50E */300u16 txe_mmplcp0; /* 0x510 */301u16 txe_mmplcp1; /* 0x512 */302u16 txe_phyctl1; /* 0x514 */303304u16 PAD[0x05]; /* 0x510 - 0x51E */305306/* Transmit control */307u16 xmtfifodef; /* 0x520 */308u16 xmtfifo_frame_cnt; /* 0x522 *//* Corerev >= 16 */309u16 xmtfifo_byte_cnt; /* 0x524 *//* Corerev >= 16 */310u16 xmtfifo_head; /* 0x526 *//* Corerev >= 16 */311u16 xmtfifo_rd_ptr; /* 0x528 *//* Corerev >= 16 */312u16 xmtfifo_wr_ptr; /* 0x52A *//* Corerev >= 16 */313u16 xmtfifodef1; /* 0x52C *//* Corerev >= 16 */314315u16 PAD[0x09]; /* 0x52E - 0x53E */316317u16 xmtfifocmd; /* 0x540 */318u16 xmtfifoflush; /* 0x542 */319u16 xmtfifothresh; /* 0x544 */320u16 xmtfifordy; /* 0x546 */321u16 xmtfifoprirdy; /* 0x548 */322u16 xmtfiforqpri; /* 0x54A */323u16 xmttplatetxptr; /* 0x54C */324u16 PAD; /* 0x54E */325u16 xmttplateptr; /* 0x550 */326u16 smpl_clct_strptr; /* 0x552 *//* Corerev >= 22 */327u16 smpl_clct_stpptr; /* 0x554 *//* Corerev >= 22 */328u16 smpl_clct_curptr; /* 0x556 *//* Corerev >= 22 */329u16 PAD[0x04]; /* 0x558 - 0x55E */330u16 xmttplatedatalo; /* 0x560 */331u16 xmttplatedatahi; /* 0x562 */332333u16 PAD[2]; /* 0x564 - 0x566 */334335u16 xmtsel; /* 0x568 */336u16 xmttxcnt; /* 0x56A */337u16 xmttxshmaddr; /* 0x56C */338339u16 PAD[0x09]; /* 0x56E - 0x57E */340341/* TXE1 Block */342u16 PAD[0x40]; /* 0x580 - 0x5FE */343344/* TSF Block */345u16 PAD[0X02]; /* 0x600 - 0x602 */346u16 tsf_cfpstrt_l; /* 0x604 */347u16 tsf_cfpstrt_h; /* 0x606 */348u16 PAD[0X05]; /* 0x608 - 0x610 */349u16 tsf_cfppretbtt; /* 0x612 */350u16 PAD[0XD]; /* 0x614 - 0x62C */351u16 tsf_clk_frac_l; /* 0x62E */352u16 tsf_clk_frac_h; /* 0x630 */353u16 PAD[0X14]; /* 0x632 - 0x658 */354u16 tsf_random; /* 0x65A */355u16 PAD[0x05]; /* 0x65C - 0x664 */356/* GPTimer 2 registers */357u16 tsf_gpt2_stat; /* 0x666 */358u16 tsf_gpt2_ctr_l; /* 0x668 */359u16 tsf_gpt2_ctr_h; /* 0x66A */360u16 tsf_gpt2_val_l; /* 0x66C */361u16 tsf_gpt2_val_h; /* 0x66E */362u16 tsf_gptall_stat; /* 0x670 */363u16 PAD[0x07]; /* 0x672 - 0x67E */364365/* IFS Block */366u16 ifs_sifs_rx_tx_tx; /* 0x680 */367u16 ifs_sifs_nav_tx; /* 0x682 */368u16 ifs_slot; /* 0x684 */369u16 PAD; /* 0x686 */370u16 ifs_ctl; /* 0x688 */371u16 PAD[0x3]; /* 0x68a - 0x68F */372u16 ifsstat; /* 0x690 */373u16 ifsmedbusyctl; /* 0x692 */374u16 iftxdur; /* 0x694 */375u16 PAD[0x3]; /* 0x696 - 0x69b */376/* EDCF support in dot11macs */377u16 ifs_aifsn; /* 0x69c */378u16 ifs_ctl1; /* 0x69e */379380/* slow clock registers */381u16 scc_ctl; /* 0x6a0 */382u16 scc_timer_l; /* 0x6a2 */383u16 scc_timer_h; /* 0x6a4 */384u16 scc_frac; /* 0x6a6 */385u16 scc_fastpwrup_dly; /* 0x6a8 */386u16 scc_per; /* 0x6aa */387u16 scc_per_frac; /* 0x6ac */388u16 scc_cal_timer_l; /* 0x6ae */389u16 scc_cal_timer_h; /* 0x6b0 */390u16 PAD; /* 0x6b2 */391392u16 PAD[0x26];393394/* NAV Block */395u16 nav_ctl; /* 0x700 */396u16 navstat; /* 0x702 */397u16 PAD[0x3e]; /* 0x702 - 0x77E */398399/* WEP/PMQ Block *//* 0x780 - 0x7FE */400u16 PAD[0x20]; /* 0x780 - 0x7BE */401402u16 wepctl; /* 0x7C0 */403u16 wepivloc; /* 0x7C2 */404u16 wepivkey; /* 0x7C4 */405u16 wepwkey; /* 0x7C6 */406407u16 PAD[4]; /* 0x7C8 - 0x7CE */408u16 pcmctl; /* 0X7D0 */409u16 pcmstat; /* 0X7D2 */410u16 PAD[6]; /* 0x7D4 - 0x7DE */411412u16 pmqctl; /* 0x7E0 */413u16 pmqstatus; /* 0x7E2 */414u16 pmqpat0; /* 0x7E4 */415u16 pmqpat1; /* 0x7E6 */416u16 pmqpat2; /* 0x7E8 */417418u16 pmqdat; /* 0x7EA */419u16 pmqdator; /* 0x7EC */420u16 pmqhst; /* 0x7EE */421u16 pmqpath0; /* 0x7F0 */422u16 pmqpath1; /* 0x7F2 */423u16 pmqpath2; /* 0x7F4 */424u16 pmqdath; /* 0x7F6 */425426u16 PAD[0x04]; /* 0x7F8 - 0x7FE */427428/* SHM *//* 0x800 - 0xEFE */429u16 PAD[0x380]; /* 0x800 - 0xEFE */430};431432/* d11 register field offset */433#define D11REGOFFS(field) offsetof(struct d11regs, field)434435#define PIHR_BASE 0x0400 /* byte address of packed IHR region */436437/* biststatus */438#define BT_DONE (1U << 31) /* bist done */439#define BT_B2S (1 << 30) /* bist2 ram summary bit */440441/* intstatus and intmask */442#define I_PC (1 << 10) /* pci descriptor error */443#define I_PD (1 << 11) /* pci data error */444#define I_DE (1 << 12) /* descriptor protocol error */445#define I_RU (1 << 13) /* receive descriptor underflow */446#define I_RO (1 << 14) /* receive fifo overflow */447#define I_XU (1 << 15) /* transmit fifo underflow */448#define I_RI (1 << 16) /* receive interrupt */449#define I_XI (1 << 24) /* transmit interrupt */450451/* interrupt receive lazy */452#define IRL_TO_MASK 0x00ffffff /* timeout */453#define IRL_FC_MASK 0xff000000 /* frame count */454#define IRL_FC_SHIFT 24 /* frame count */455456/*== maccontrol register ==*/457#define MCTL_GMODE (1U << 31)458#define MCTL_DISCARD_PMQ (1 << 30)459#define MCTL_TBTTHOLD (1 << 28)460#define MCTL_WAKE (1 << 26)461#define MCTL_HPS (1 << 25)462#define MCTL_PROMISC (1 << 24)463#define MCTL_KEEPBADFCS (1 << 23)464#define MCTL_KEEPCONTROL (1 << 22)465#define MCTL_PHYLOCK (1 << 21)466#define MCTL_BCNS_PROMISC (1 << 20)467#define MCTL_LOCK_RADIO (1 << 19)468#define MCTL_AP (1 << 18)469#define MCTL_INFRA (1 << 17)470#define MCTL_BIGEND (1 << 16)471#define MCTL_GPOUT_SEL_MASK (3 << 14)472#define MCTL_GPOUT_SEL_SHIFT 14473#define MCTL_EN_PSMDBG (1 << 13)474#define MCTL_IHR_EN (1 << 10)475#define MCTL_SHM_UPPER (1 << 9)476#define MCTL_SHM_EN (1 << 8)477#define MCTL_PSM_JMP_0 (1 << 2)478#define MCTL_PSM_RUN (1 << 1)479#define MCTL_EN_MAC (1 << 0)480481/*== maccommand register ==*/482#define MCMD_BCN0VLD (1 << 0)483#define MCMD_BCN1VLD (1 << 1)484#define MCMD_DIRFRMQVAL (1 << 2)485#define MCMD_CCA (1 << 3)486#define MCMD_BG_NOISE (1 << 4)487#define MCMD_SKIP_SHMINIT (1 << 5) /* only used for simulation */488#define MCMD_SAMPLECOLL MCMD_SKIP_SHMINIT /* reuse for sample collect */489490/*== macintstatus/macintmask ==*/491/* gracefully suspended */492#define MI_MACSSPNDD (1 << 0)493/* beacon template available */494#define MI_BCNTPL (1 << 1)495/* TBTT indication */496#define MI_TBTT (1 << 2)497/* beacon successfully tx'd */498#define MI_BCNSUCCESS (1 << 3)499/* beacon canceled (IBSS) */500#define MI_BCNCANCLD (1 << 4)501/* end of ATIM-window (IBSS) */502#define MI_ATIMWINEND (1 << 5)503/* PMQ entries available */504#define MI_PMQ (1 << 6)505/* non-specific gen-stat bits that are set by PSM */506#define MI_NSPECGEN_0 (1 << 7)507/* non-specific gen-stat bits that are set by PSM */508#define MI_NSPECGEN_1 (1 << 8)509/* MAC level Tx error */510#define MI_MACTXERR (1 << 9)511/* non-specific gen-stat bits that are set by PSM */512#define MI_NSPECGEN_3 (1 << 10)513/* PHY Tx error */514#define MI_PHYTXERR (1 << 11)515/* Power Management Event */516#define MI_PME (1 << 12)517/* General-purpose timer0 */518#define MI_GP0 (1 << 13)519/* General-purpose timer1 */520#define MI_GP1 (1 << 14)521/* (ORed) DMA-interrupts */522#define MI_DMAINT (1 << 15)523/* MAC has completed a TX FIFO Suspend/Flush */524#define MI_TXSTOP (1 << 16)525/* MAC has completed a CCA measurement */526#define MI_CCA (1 << 17)527/* MAC has collected background noise samples */528#define MI_BG_NOISE (1 << 18)529/* MBSS DTIM TBTT indication */530#define MI_DTIM_TBTT (1 << 19)531/* Probe response queue needs attention */532#define MI_PRQ (1 << 20)533/* Radio/PHY has been powered back up. */534#define MI_PWRUP (1 << 21)535#define MI_RESERVED3 (1 << 22)536#define MI_RESERVED2 (1 << 23)537#define MI_RESERVED1 (1 << 25)538/* MAC detected change on RF Disable input*/539#define MI_RFDISABLE (1 << 28)540/* MAC has completed a TX */541#define MI_TFS (1 << 29)542/* A phy status change wrt G mode */543#define MI_PHYCHANGED (1 << 30)544/* general purpose timeout */545#define MI_TO (1U << 31)546547/* Mac capabilities registers */548/*== machwcap ==*/549#define MCAP_TKIPMIC 0x80000000 /* TKIP MIC hardware present */550551/*== pmqhost data ==*/552/* data entry of head pmq entry */553#define PMQH_DATA_MASK 0xffff0000554/* PM entry for BSS config */555#define PMQH_BSSCFG 0x00100000556/* PM Mode OFF: power save off */557#define PMQH_PMOFF 0x00010000558/* PM Mode ON: power save on */559#define PMQH_PMON 0x00020000560/* Dis-associated or De-authenticated */561#define PMQH_DASAT 0x00040000562/* ATIM not acknowledged */563#define PMQH_ATIMFAIL 0x00080000564/* delete head entry */565#define PMQH_DEL_ENTRY 0x00000001566/* delete head entry to cur read pointer -1 */567#define PMQH_DEL_MULT 0x00000002568/* pmq overflow indication */569#define PMQH_OFLO 0x00000004570/* entries are present in pmq */571#define PMQH_NOT_EMPTY 0x00000008572573/*== phydebug ==*/574/* phy is asserting carrier sense */575#define PDBG_CRS (1 << 0)576/* phy is taking xmit byte from mac this cycle */577#define PDBG_TXA (1 << 1)578/* mac is instructing the phy to transmit a frame */579#define PDBG_TXF (1 << 2)580/* phy is signalling a transmit Error to the mac */581#define PDBG_TXE (1 << 3)582/* phy detected the end of a valid frame preamble */583#define PDBG_RXF (1 << 4)584/* phy detected the end of a valid PLCP header */585#define PDBG_RXS (1 << 5)586/* rx start not asserted */587#define PDBG_RXFRG (1 << 6)588/* mac is taking receive byte from phy this cycle */589#define PDBG_RXV (1 << 7)590/* RF portion of the radio is disabled */591#define PDBG_RFD (1 << 16)592593/*== objaddr register ==*/594#define OBJADDR_SEL_MASK 0x000F0000595#define OBJADDR_UCM_SEL 0x00000000596#define OBJADDR_SHM_SEL 0x00010000597#define OBJADDR_SCR_SEL 0x00020000598#define OBJADDR_IHR_SEL 0x00030000599#define OBJADDR_RCMTA_SEL 0x00040000600#define OBJADDR_SRCHM_SEL 0x00060000601#define OBJADDR_WINC 0x01000000602#define OBJADDR_RINC 0x02000000603#define OBJADDR_AUTO_INC 0x03000000604605#define WEP_PCMADDR 0x07d4606#define WEP_PCMDATA 0x07d6607608/*== frmtxstatus ==*/609#define TXS_V (1 << 0) /* valid bit */610#define TXS_STATUS_MASK 0xffff611#define TXS_FID_MASK 0xffff0000612#define TXS_FID_SHIFT 16613614/*== frmtxstatus2 ==*/615#define TXS_SEQ_MASK 0xffff616#define TXS_PTX_MASK 0xff0000617#define TXS_PTX_SHIFT 16618#define TXS_MU_MASK 0x01000000619#define TXS_MU_SHIFT 24620621/*== clk_ctl_st ==*/622#define CCS_ERSRC_REQ_D11PLL 0x00000100 /* d11 core pll request */623#define CCS_ERSRC_REQ_PHYPLL 0x00000200 /* PHY pll request */624#define CCS_ERSRC_AVAIL_D11PLL 0x01000000 /* d11 core pll available */625#define CCS_ERSRC_AVAIL_PHYPLL 0x02000000 /* PHY pll available */626627/* HT Cloclk Ctrl and Clock Avail for 4313 */628#define CCS_ERSRC_REQ_HT 0x00000010 /* HT avail request */629#define CCS_ERSRC_AVAIL_HT 0x00020000 /* HT clock available */630631/* tsf_cfprep register */632#define CFPREP_CBI_MASK 0xffffffc0633#define CFPREP_CBI_SHIFT 6634#define CFPREP_CFPP 0x00000001635636/* tx fifo sizes values are in terms of 256 byte blocks */637#define TXFIFOCMD_RESET_MASK (1 << 15) /* reset */638#define TXFIFOCMD_FIFOSEL_SHIFT 8 /* fifo */639#define TXFIFO_FIFOTOP_SHIFT 8 /* fifo start */640641#define TXFIFO_START_BLK16 65 /* Base address + 32 * 512 B/P */642#define TXFIFO_START_BLK 6 /* Base address + 6 * 256 B */643#define TXFIFO_SIZE_UNIT 256 /* one unit corresponds to 256 bytes */644#define MBSS16_TEMPLMEM_MINBLKS 65 /* one unit corresponds to 256 bytes */645646/*== phy versions (PhyVersion:Revision field) ==*/647/* analog block version */648#define PV_AV_MASK 0xf000649/* analog block version bitfield offset */650#define PV_AV_SHIFT 12651/* phy type */652#define PV_PT_MASK 0x0f00653/* phy type bitfield offset */654#define PV_PT_SHIFT 8655/* phy version */656#define PV_PV_MASK 0x000f657#define PHY_TYPE(v) ((v & PV_PT_MASK) >> PV_PT_SHIFT)658659/*== phy types (PhyVersion:PhyType field) ==*/660#define PHY_TYPE_N 4 /* N-Phy value */661#define PHY_TYPE_SSN 6 /* SSLPN-Phy value */662#define PHY_TYPE_LCN 8 /* LCN-Phy value */663#define PHY_TYPE_LCNXN 9 /* LCNXN-Phy value */664#define PHY_TYPE_NULL 0xf /* Invalid Phy value */665666/*== analog types (PhyVersion:AnalogType field) ==*/667#define ANA_11N_013 5668669/* 802.11a PLCP header def */670struct ofdm_phy_hdr {671u8 rlpt[3]; /* rate, length, parity, tail */672u16 service;673u8 pad;674} __packed;675676#define D11A_PHY_HDR_GRATE(phdr) ((phdr)->rlpt[0] & 0x0f)677#define D11A_PHY_HDR_GRES(phdr) (((phdr)->rlpt[0] >> 4) & 0x01)678#define D11A_PHY_HDR_GLENGTH(phdr) (((u32 *)((phdr)->rlpt) >> 5) & 0x0fff)679#define D11A_PHY_HDR_GPARITY(phdr) (((phdr)->rlpt[3] >> 1) & 0x01)680#define D11A_PHY_HDR_GTAIL(phdr) (((phdr)->rlpt[3] >> 2) & 0x3f)681682/* rate encoded per 802.11a-1999 sec 17.3.4.1 */683#define D11A_PHY_HDR_SRATE(phdr, rate) \684((phdr)->rlpt[0] = ((phdr)->rlpt[0] & 0xf0) | ((rate) & 0xf))685/* set reserved field to zero */686#define D11A_PHY_HDR_SRES(phdr) ((phdr)->rlpt[0] &= 0xef)687/* length is number of octets in PSDU */688#define D11A_PHY_HDR_SLENGTH(phdr, length) \689(*(u32 *)((phdr)->rlpt) = *(u32 *)((phdr)->rlpt) | \690(((length) & 0x0fff) << 5))691/* set the tail to all zeros */692#define D11A_PHY_HDR_STAIL(phdr) ((phdr)->rlpt[3] &= 0x03)693694#define D11A_PHY_HDR_LEN_L 3 /* low-rate part of PLCP header */695#define D11A_PHY_HDR_LEN_R 2 /* high-rate part of PLCP header */696697#define D11A_PHY_TX_DELAY (2) /* 2.1 usec */698699#define D11A_PHY_HDR_TIME (4) /* low-rate part of PLCP header */700#define D11A_PHY_PRE_TIME (16)701#define D11A_PHY_PREHDR_TIME (D11A_PHY_PRE_TIME + D11A_PHY_HDR_TIME)702703/* 802.11b PLCP header def */704struct cck_phy_hdr {705u8 signal;706u8 service;707u16 length;708u16 crc;709} __packed;710711#define D11B_PHY_HDR_LEN 6712713#define D11B_PHY_TX_DELAY (3) /* 3.4 usec */714715#define D11B_PHY_LHDR_TIME (D11B_PHY_HDR_LEN << 3)716#define D11B_PHY_LPRE_TIME (144)717#define D11B_PHY_LPREHDR_TIME (D11B_PHY_LPRE_TIME + D11B_PHY_LHDR_TIME)718719#define D11B_PHY_SHDR_TIME (D11B_PHY_LHDR_TIME >> 1)720#define D11B_PHY_SPRE_TIME (D11B_PHY_LPRE_TIME >> 1)721#define D11B_PHY_SPREHDR_TIME (D11B_PHY_SPRE_TIME + D11B_PHY_SHDR_TIME)722723#define D11B_PLCP_SIGNAL_LOCKED (1 << 2)724#define D11B_PLCP_SIGNAL_LE (1 << 7)725726#define MIMO_PLCP_MCS_MASK 0x7f /* mcs index */727#define MIMO_PLCP_40MHZ 0x80 /* 40 Hz frame */728#define MIMO_PLCP_AMPDU 0x08 /* ampdu */729730#define BRCMS_GET_CCK_PLCP_LEN(plcp) (plcp[4] + (plcp[5] << 8))731#define BRCMS_GET_MIMO_PLCP_LEN(plcp) (plcp[1] + (plcp[2] << 8))732#define BRCMS_SET_MIMO_PLCP_LEN(plcp, len) \733do { \734plcp[1] = len & 0xff; \735plcp[2] = ((len >> 8) & 0xff); \736} while (0)737738#define BRCMS_SET_MIMO_PLCP_AMPDU(plcp) (plcp[3] |= MIMO_PLCP_AMPDU)739#define BRCMS_CLR_MIMO_PLCP_AMPDU(plcp) (plcp[3] &= ~MIMO_PLCP_AMPDU)740#define BRCMS_IS_MIMO_PLCP_AMPDU(plcp) (plcp[3] & MIMO_PLCP_AMPDU)741742/*743* The dot11a PLCP header is 5 bytes. To simplify the software (so that we744* don't need e.g. different tx DMA headers for 11a and 11b), the PLCP header745* has padding added in the ucode.746*/747#define D11_PHY_HDR_LEN 6748749/* TX DMA buffer header */750struct d11txh {751__le16 MacTxControlLow; /* 0x0 */752__le16 MacTxControlHigh; /* 0x1 */753__le16 MacFrameControl; /* 0x2 */754__le16 TxFesTimeNormal; /* 0x3 */755__le16 PhyTxControlWord; /* 0x4 */756__le16 PhyTxControlWord_1; /* 0x5 */757__le16 PhyTxControlWord_1_Fbr; /* 0x6 */758__le16 PhyTxControlWord_1_Rts; /* 0x7 */759__le16 PhyTxControlWord_1_FbrRts; /* 0x8 */760__le16 MainRates; /* 0x9 */761__le16 XtraFrameTypes; /* 0xa */762u8 IV[16]; /* 0x0b - 0x12 */763u8 TxFrameRA[6]; /* 0x13 - 0x15 */764__le16 TxFesTimeFallback; /* 0x16 */765u8 RTSPLCPFallback[6]; /* 0x17 - 0x19 */766__le16 RTSDurFallback; /* 0x1a */767u8 FragPLCPFallback[6]; /* 0x1b - 1d */768__le16 FragDurFallback; /* 0x1e */769__le16 MModeLen; /* 0x1f */770__le16 MModeFbrLen; /* 0x20 */771__le16 TstampLow; /* 0x21 */772__le16 TstampHigh; /* 0x22 */773__le16 ABI_MimoAntSel; /* 0x23 */774__le16 PreloadSize; /* 0x24 */775__le16 AmpduSeqCtl; /* 0x25 */776__le16 TxFrameID; /* 0x26 */777__le16 TxStatus; /* 0x27 */778__le16 MaxNMpdus; /* 0x28 */779__le16 MaxABytes_MRT; /* 0x29 */780__le16 MaxABytes_FBR; /* 0x2a */781__le16 MinMBytes; /* 0x2b */782u8 RTSPhyHeader[D11_PHY_HDR_LEN]; /* 0x2c - 0x2e */783struct ieee80211_rts rts_frame; /* 0x2f - 0x36 */784u16 PAD; /* 0x37 */785} __packed __aligned(2);786787#define D11_TXH_LEN 112 /* bytes */788789/* Frame Types */790#define FT_CCK 0791#define FT_OFDM 1792#define FT_HT 2793#define FT_N 3794795/*796* Position of MPDU inside A-MPDU; indicated with bits 10:9797* of MacTxControlLow798*/799#define TXC_AMPDU_SHIFT 9 /* shift for ampdu settings */800#define TXC_AMPDU_NONE 0 /* Regular MPDU, not an A-MPDU */801#define TXC_AMPDU_FIRST 1 /* first MPDU of an A-MPDU */802#define TXC_AMPDU_MIDDLE 2 /* intermediate MPDU of an A-MPDU */803#define TXC_AMPDU_LAST 3 /* last (or single) MPDU of an A-MPDU */804805/*== MacTxControlLow ==*/806#define TXC_AMIC 0x8000807#define TXC_SENDCTS 0x0800808#define TXC_AMPDU_MASK 0x0600809#define TXC_BW_40 0x0100810#define TXC_FREQBAND_5G 0x0080811#define TXC_DFCS 0x0040812#define TXC_IGNOREPMQ 0x0020813#define TXC_HWSEQ 0x0010814#define TXC_STARTMSDU 0x0008815#define TXC_SENDRTS 0x0004816#define TXC_LONGFRAME 0x0002817#define TXC_IMMEDACK 0x0001818819/*== MacTxControlHigh ==*/820/* RTS fallback preamble type 1 = SHORT 0 = LONG */821#define TXC_PREAMBLE_RTS_FB_SHORT 0x8000822/* RTS main rate preamble type 1 = SHORT 0 = LONG */823#define TXC_PREAMBLE_RTS_MAIN_SHORT 0x4000824/*825* Main fallback rate preamble type826* 1 = SHORT for OFDM/GF for MIMO827* 0 = LONG for CCK/MM for MIMO828*/829#define TXC_PREAMBLE_DATA_FB_SHORT 0x2000830831/* TXC_PREAMBLE_DATA_MAIN is in PhyTxControl bit 5 */832/* use fallback rate for this AMPDU */833#define TXC_AMPDU_FBR 0x1000834#define TXC_SECKEY_MASK 0x0FF0835#define TXC_SECKEY_SHIFT 4836/* Use alternate txpwr defined at loc. M_ALT_TXPWR_IDX */837#define TXC_ALT_TXPWR 0x0008838#define TXC_SECTYPE_MASK 0x0007839#define TXC_SECTYPE_SHIFT 0840841/* Null delimiter for Fallback rate */842#define AMPDU_FBR_NULL_DELIM 5 /* Location of Null delimiter count for AMPDU */843844/* PhyTxControl for Mimophy */845#define PHY_TXC_PWR_MASK 0xFC00846#define PHY_TXC_PWR_SHIFT 10847#define PHY_TXC_ANT_MASK 0x03C0 /* bit 6, 7, 8, 9 */848#define PHY_TXC_ANT_SHIFT 6849#define PHY_TXC_ANT_0_1 0x00C0 /* auto, last rx */850#define PHY_TXC_LCNPHY_ANT_LAST 0x0000851#define PHY_TXC_ANT_3 0x0200 /* virtual antenna 3 */852#define PHY_TXC_ANT_2 0x0100 /* virtual antenna 2 */853#define PHY_TXC_ANT_1 0x0080 /* virtual antenna 1 */854#define PHY_TXC_ANT_0 0x0040 /* virtual antenna 0 */855#define PHY_TXC_SHORT_HDR 0x0010856857#define PHY_TXC_OLD_ANT_0 0x0000858#define PHY_TXC_OLD_ANT_1 0x0100859#define PHY_TXC_OLD_ANT_LAST 0x0300860861/* PhyTxControl_1 for Mimophy */862#define PHY_TXC1_BW_MASK 0x0007863#define PHY_TXC1_BW_10MHZ 0864#define PHY_TXC1_BW_10MHZ_UP 1865#define PHY_TXC1_BW_20MHZ 2866#define PHY_TXC1_BW_20MHZ_UP 3867#define PHY_TXC1_BW_40MHZ 4868#define PHY_TXC1_BW_40MHZ_DUP 5869#define PHY_TXC1_MODE_SHIFT 3870#define PHY_TXC1_MODE_MASK 0x0038871#define PHY_TXC1_MODE_SISO 0872#define PHY_TXC1_MODE_CDD 1873#define PHY_TXC1_MODE_STBC 2874#define PHY_TXC1_MODE_SDM 3875876/* PhyTxControl for HTphy that are different from Mimophy */877#define PHY_TXC_HTANT_MASK 0x3fC0 /* bits 6-13 */878879/* XtraFrameTypes */880#define XFTS_RTS_FT_SHIFT 2881#define XFTS_FBRRTS_FT_SHIFT 4882#define XFTS_CHANNEL_SHIFT 8883884/* Antenna diversity bit in ant_wr_settle */885#define PHY_AWS_ANTDIV 0x2000886887/* IFS ctl */888#define IFS_USEEDCF (1 << 2)889890/* IFS ctl1 */891#define IFS_CTL1_EDCRS (1 << 3)892#define IFS_CTL1_EDCRS_20L (1 << 4)893#define IFS_CTL1_EDCRS_40 (1 << 5)894895/* ABI_MimoAntSel */896#define ABI_MAS_ADDR_BMP_IDX_MASK 0x0f00897#define ABI_MAS_ADDR_BMP_IDX_SHIFT 8898#define ABI_MAS_FBR_ANT_PTN_MASK 0x00f0899#define ABI_MAS_FBR_ANT_PTN_SHIFT 4900#define ABI_MAS_MRT_ANT_PTN_MASK 0x000f901902/* tx status packet */903struct tx_status {904u16 framelen;905u16 PAD;906u16 frameid;907u16 status;908u16 lasttxtime;909u16 sequence;910u16 phyerr;911u16 ackphyrxsh;912} __packed;913914#define TXSTATUS_LEN 16915916/* status field bit definitions */917#define TX_STATUS_FRM_RTX_MASK 0xF000918#define TX_STATUS_FRM_RTX_SHIFT 12919#define TX_STATUS_RTS_RTX_MASK 0x0F00920#define TX_STATUS_RTS_RTX_SHIFT 8921#define TX_STATUS_MASK 0x00FE922#define TX_STATUS_PMINDCTD (1 << 7) /* PM mode indicated to AP */923#define TX_STATUS_INTERMEDIATE (1 << 6) /* intermediate or 1st ampdu pkg */924#define TX_STATUS_AMPDU (1 << 5) /* AMPDU status */925#define TX_STATUS_SUPR_MASK 0x1C /* suppress status bits (4:2) */926#define TX_STATUS_SUPR_SHIFT 2927#define TX_STATUS_ACK_RCV (1 << 1) /* ACK received */928#define TX_STATUS_VALID (1 << 0) /* Tx status valid */929#define TX_STATUS_NO_ACK 0930931/* suppress status reason codes */932#define TX_STATUS_SUPR_PMQ (1 << 2) /* PMQ entry */933#define TX_STATUS_SUPR_FLUSH (2 << 2) /* flush request */934#define TX_STATUS_SUPR_FRAG (3 << 2) /* previous frag failure */935#define TX_STATUS_SUPR_TBTT (3 << 2) /* SHARED: Probe resp supr for TBTT */936#define TX_STATUS_SUPR_BADCH (4 << 2) /* channel mismatch */937#define TX_STATUS_SUPR_EXPTIME (5 << 2) /* lifetime expiry */938#define TX_STATUS_SUPR_UF (6 << 2) /* underflow */939940/* Unexpected tx status for rate update */941#define TX_STATUS_UNEXP(status) \942((((status) & TX_STATUS_INTERMEDIATE) != 0) && \943TX_STATUS_UNEXP_AMPDU(status))944945/* Unexpected tx status for A-MPDU rate update */946#define TX_STATUS_UNEXP_AMPDU(status) \947((((status) & TX_STATUS_SUPR_MASK) != 0) && \948(((status) & TX_STATUS_SUPR_MASK) != TX_STATUS_SUPR_EXPTIME))949950#define TX_STATUS_BA_BMAP03_MASK 0xF000 /* ba bitmap 0:3 in 1st pkg */951#define TX_STATUS_BA_BMAP03_SHIFT 12 /* ba bitmap 0:3 in 1st pkg */952#define TX_STATUS_BA_BMAP47_MASK 0x001E /* ba bitmap 4:7 in 2nd pkg */953#define TX_STATUS_BA_BMAP47_SHIFT 3 /* ba bitmap 4:7 in 2nd pkg */954955/* RXE (Receive Engine) */956957/* RCM_CTL */958#define RCM_INC_MASK_H 0x0080959#define RCM_INC_MASK_L 0x0040960#define RCM_INC_DATA 0x0020961#define RCM_INDEX_MASK 0x001F962#define RCM_SIZE 15963964#define RCM_MAC_OFFSET 0 /* current MAC address */965#define RCM_BSSID_OFFSET 3 /* current BSSID address */966#define RCM_F_BSSID_0_OFFSET 6 /* foreign BSS CFP tracking */967#define RCM_F_BSSID_1_OFFSET 9 /* foreign BSS CFP tracking */968#define RCM_F_BSSID_2_OFFSET 12 /* foreign BSS CFP tracking */969970#define RCM_WEP_TA0_OFFSET 16971#define RCM_WEP_TA1_OFFSET 19972#define RCM_WEP_TA2_OFFSET 22973#define RCM_WEP_TA3_OFFSET 25974975/* PSM Block */976977/* psm_phy_hdr_param bits */978#define MAC_PHY_RESET 1979#define MAC_PHY_CLOCK_EN 2980#define MAC_PHY_FORCE_CLK 4981982/* WEP Block */983984/* WEP_WKEY */985#define WKEY_START (1 << 8)986#define WKEY_SEL_MASK 0x1F987988/* WEP data formats */989990/* the number of RCMTA entries */991#define RCMTA_SIZE 50992993#define M_ADDR_BMP_BLK (0x37e * 2)994#define M_ADDR_BMP_BLK_SZ 12995996#define ADDR_BMP_RA (1 << 0) /* Receiver Address (RA) */997#define ADDR_BMP_TA (1 << 1) /* Transmitter Address (TA) */998#define ADDR_BMP_BSSID (1 << 2) /* BSSID */999#define ADDR_BMP_AP (1 << 3) /* Infra-BSS Access Point */1000#define ADDR_BMP_STA (1 << 4) /* Infra-BSS Station */1001#define ADDR_BMP_RESERVED1 (1 << 5)1002#define ADDR_BMP_RESERVED2 (1 << 6)1003#define ADDR_BMP_RESERVED3 (1 << 7)1004#define ADDR_BMP_BSS_IDX_MASK (3 << 8) /* BSS control block index */1005#define ADDR_BMP_BSS_IDX_SHIFT 810061007#define WSEC_MAX_RCMTA_KEYS 5410081009/* max keys in M_TKMICKEYS_BLK */1010#define WSEC_MAX_TKMIC_ENGINE_KEYS 12 /* 8 + 4 default */10111012/* max RXE match registers */1013#define WSEC_MAX_RXE_KEYS 410141015/* SECKINDXALGO (Security Key Index & Algorithm Block) word format */1016/* SKL (Security Key Lookup) */1017#define SKL_ALGO_MASK 0x00071018#define SKL_ALGO_SHIFT 01019#define SKL_KEYID_MASK 0x00081020#define SKL_KEYID_SHIFT 31021#define SKL_INDEX_MASK 0x03F01022#define SKL_INDEX_SHIFT 41023#define SKL_GRP_ALGO_MASK 0x1c001024#define SKL_GRP_ALGO_SHIFT 1010251026/* additional bits defined for IBSS group key support */1027#define SKL_IBSS_INDEX_MASK 0x01F01028#define SKL_IBSS_INDEX_SHIFT 41029#define SKL_IBSS_KEYID1_MASK 0x06001030#define SKL_IBSS_KEYID1_SHIFT 91031#define SKL_IBSS_KEYID2_MASK 0x18001032#define SKL_IBSS_KEYID2_SHIFT 111033#define SKL_IBSS_KEYALGO_MASK 0xE0001034#define SKL_IBSS_KEYALGO_SHIFT 1310351036#define WSEC_MODE_OFF 01037#define WSEC_MODE_HW 11038#define WSEC_MODE_SW 210391040#define WSEC_ALGO_OFF 01041#define WSEC_ALGO_WEP1 11042#define WSEC_ALGO_TKIP 21043#define WSEC_ALGO_AES 31044#define WSEC_ALGO_WEP128 41045#define WSEC_ALGO_AES_LEGACY 51046#define WSEC_ALGO_NALG 610471048#define AES_MODE_NONE 01049#define AES_MODE_CCM 110501051/* WEP_CTL (Rev 0) */1052#define WECR0_KEYREG_SHIFT 01053#define WECR0_KEYREG_MASK 0x71054#define WECR0_DECRYPT (1 << 3)1055#define WECR0_IVINLINE (1 << 4)1056#define WECR0_WEPALG_SHIFT 51057#define WECR0_WEPALG_MASK (0x7 << 5)1058#define WECR0_WKEYSEL_SHIFT 81059#define WECR0_WKEYSEL_MASK (0x7 << 8)1060#define WECR0_WKEYSTART (1 << 11)1061#define WECR0_WEPINIT (1 << 14)1062#define WECR0_ICVERR (1 << 15)10631064/* Frame template map byte offsets */1065#define T_ACTS_TPL_BASE (0)1066#define T_NULL_TPL_BASE (0xc * 2)1067#define T_QNULL_TPL_BASE (0x1c * 2)1068#define T_RR_TPL_BASE (0x2c * 2)1069#define T_BCN0_TPL_BASE (0x34 * 2)1070#define T_PRS_TPL_BASE (0x134 * 2)1071#define T_BCN1_TPL_BASE (0x234 * 2)1072#define T_TX_FIFO_TXRAM_BASE (T_ACTS_TPL_BASE + \1073(TXFIFO_START_BLK * TXFIFO_SIZE_UNIT))10741075#define T_BA_TPL_BASE T_QNULL_TPL_BASE /* template area for BA */10761077#define T_RAM_ACCESS_SZ 4 /* template ram is 4 byte access only */10781079/* Shared Mem byte offsets */10801081/* Location where the ucode expects the corerev */1082#define M_MACHW_VER (0x00b * 2)10831084/* Location where the ucode expects the MAC capabilities */1085#define M_MACHW_CAP_L (0x060 * 2)1086#define M_MACHW_CAP_H (0x061 * 2)10871088/* WME shared memory */1089#define M_EDCF_STATUS_OFF (0x007 * 2)1090#define M_TXF_CUR_INDEX (0x018 * 2)1091#define M_EDCF_QINFO (0x120 * 2)10921093/* PS-mode related parameters */1094#define M_DOT11_SLOT (0x008 * 2)1095#define M_DOT11_DTIMPERIOD (0x009 * 2)1096#define M_NOSLPZNATDTIM (0x026 * 2)10971098/* Beacon-related parameters */1099#define M_BCN0_FRM_BYTESZ (0x00c * 2) /* Bcn 0 template length */1100#define M_BCN1_FRM_BYTESZ (0x00d * 2) /* Bcn 1 template length */1101#define M_BCN_TXTSF_OFFSET (0x00e * 2)1102#define M_TIMBPOS_INBEACON (0x00f * 2)1103#define M_SFRMTXCNTFBRTHSD (0x022 * 2)1104#define M_LFRMTXCNTFBRTHSD (0x023 * 2)1105#define M_BCN_PCTLWD (0x02a * 2)1106#define M_BCN_LI (0x05b * 2) /* beacon listen interval */11071108/* MAX Rx Frame len */1109#define M_MAXRXFRM_LEN (0x010 * 2)11101111/* ACK/CTS related params */1112#define M_RSP_PCTLWD (0x011 * 2)11131114/* Hardware Power Control */1115#define M_TXPWR_N (0x012 * 2)1116#define M_TXPWR_TARGET (0x013 * 2)1117#define M_TXPWR_MAX (0x014 * 2)1118#define M_TXPWR_CUR (0x019 * 2)11191120/* Rx-related parameters */1121#define M_RX_PAD_DATA_OFFSET (0x01a * 2)11221123/* WEP Shared mem data */1124#define M_SEC_DEFIVLOC (0x01e * 2)1125#define M_SEC_VALNUMSOFTMCHTA (0x01f * 2)1126#define M_PHYVER (0x028 * 2)1127#define M_PHYTYPE (0x029 * 2)1128#define M_SECRXKEYS_PTR (0x02b * 2)1129#define M_TKMICKEYS_PTR (0x059 * 2)1130#define M_SECKINDXALGO_BLK (0x2ea * 2)1131#define M_SECKINDXALGO_BLK_SZ 541132#define M_SECPSMRXTAMCH_BLK (0x2fa * 2)1133#define M_TKIP_TSC_TTAK (0x18c * 2)1134#define D11_MAX_KEY_SIZE 1611351136#define M_MAX_ANTCNT (0x02e * 2) /* antenna swap threshold */11371138/* Probe response related parameters */1139#define M_SSIDLEN (0x024 * 2)1140#define M_PRB_RESP_FRM_LEN (0x025 * 2)1141#define M_PRS_MAXTIME (0x03a * 2)1142#define M_SSID (0xb0 * 2)1143#define M_CTXPRS_BLK (0xc0 * 2)1144#define C_CTX_PCTLWD_POS (0x4 * 2)11451146/* Delta between OFDM and CCK power in CCK power boost mode */1147#define M_OFDM_OFFSET (0x027 * 2)11481149/* TSSI for last 4 11b/g CCK packets transmitted */1150#define M_B_TSSI_0 (0x02c * 2)1151#define M_B_TSSI_1 (0x02d * 2)11521153/* Host flags to turn on ucode options */1154#define M_HOST_FLAGS1 (0x02f * 2)1155#define M_HOST_FLAGS2 (0x030 * 2)1156#define M_HOST_FLAGS3 (0x031 * 2)1157#define M_HOST_FLAGS4 (0x03c * 2)1158#define M_HOST_FLAGS5 (0x06a * 2)1159#define M_HOST_FLAGS_SZ 1611601161#define M_RADAR_REG (0x033 * 2)11621163/* TSSI for last 4 11a OFDM packets transmitted */1164#define M_A_TSSI_0 (0x034 * 2)1165#define M_A_TSSI_1 (0x035 * 2)11661167/* noise interference measurement */1168#define M_NOISE_IF_COUNT (0x034 * 2)1169#define M_NOISE_IF_TIMEOUT (0x035 * 2)11701171#define M_RF_RX_SP_REG1 (0x036 * 2)11721173/* TSSI for last 4 11g OFDM packets transmitted */1174#define M_G_TSSI_0 (0x038 * 2)1175#define M_G_TSSI_1 (0x039 * 2)11761177/* Background noise measure */1178#define M_JSSI_0 (0x44 * 2)1179#define M_JSSI_1 (0x45 * 2)1180#define M_JSSI_AUX (0x46 * 2)11811182#define M_CUR_2050_RADIOCODE (0x47 * 2)11831184/* TX fifo sizes */1185#define M_FIFOSIZE0 (0x4c * 2)1186#define M_FIFOSIZE1 (0x4d * 2)1187#define M_FIFOSIZE2 (0x4e * 2)1188#define M_FIFOSIZE3 (0x4f * 2)1189#define D11_MAX_TX_FRMS 32 /* max frames allowed in tx fifo */11901191/* Current channel number plus upper bits */1192#define M_CURCHANNEL (0x50 * 2)1193#define D11_CURCHANNEL_5G 0x0100;1194#define D11_CURCHANNEL_40 0x0200;1195#define D11_CURCHANNEL_MAX 0x00FF;11961197/* last posted frameid on the bcmc fifo */1198#define M_BCMC_FID (0x54 * 2)1199#define INVALIDFID 0xffff12001201/* extended beacon phyctl bytes for 11N */1202#define M_BCN_PCTL1WD (0x058 * 2)12031204/* idle busy ratio to duty_cycle requirement */1205#define M_TX_IDLE_BUSY_RATIO_X_16_CCK (0x52 * 2)1206#define M_TX_IDLE_BUSY_RATIO_X_16_OFDM (0x5A * 2)12071208/* CW RSSI for LCNPHY */1209#define M_LCN_RSSI_0 0x13321210#define M_LCN_RSSI_1 0x13381211#define M_LCN_RSSI_2 0x133e1212#define M_LCN_RSSI_3 0x134412131214/* SNR for LCNPHY */1215#define M_LCN_SNR_A_0 0x13341216#define M_LCN_SNR_B_0 0x133612171218#define M_LCN_SNR_A_1 0x133a1219#define M_LCN_SNR_B_1 0x133c12201221#define M_LCN_SNR_A_2 0x13401222#define M_LCN_SNR_B_2 0x134212231224#define M_LCN_SNR_A_3 0x13461225#define M_LCN_SNR_B_3 0x134812261227#define M_LCN_LAST_RESET (81*2)1228#define M_LCN_LAST_LOC (63*2)1229#define M_LCNPHY_RESET_STATUS (4902)1230#define M_LCNPHY_DSC_TIME (0x98d*2)1231#define M_LCNPHY_RESET_CNT_DSC (0x98b*2)1232#define M_LCNPHY_RESET_CNT (0x98c*2)12331234/* Rate table offsets */1235#define M_RT_DIRMAP_A (0xe0 * 2)1236#define M_RT_BBRSMAP_A (0xf0 * 2)1237#define M_RT_DIRMAP_B (0x100 * 2)1238#define M_RT_BBRSMAP_B (0x110 * 2)12391240/* Rate table entry offsets */1241#define M_RT_PRS_PLCP_POS 101242#define M_RT_PRS_DUR_POS 161243#define M_RT_OFDM_PCTL1_POS 1812441245#define M_20IN40_IQ (0x380 * 2)12461247/* SHM locations where ucode stores the current power index */1248#define M_CURR_IDX1 (0x384 * 2)1249#define M_CURR_IDX2 (0x387 * 2)12501251#define M_BSCALE_ANT0 (0x5e * 2)1252#define M_BSCALE_ANT1 (0x5f * 2)12531254/* Antenna Diversity Testing */1255#define M_MIMO_ANTSEL_RXDFLT (0x63 * 2)1256#define M_ANTSEL_CLKDIV (0x61 * 2)1257#define M_MIMO_ANTSEL_TXDFLT (0x64 * 2)12581259#define M_MIMO_MAXSYM (0x5d * 2)1260#define MIMO_MAXSYM_DEF 0x8000 /* 32k */1261#define MIMO_MAXSYM_MAX 0xffff /* 64k */12621263#define M_WATCHDOG_8TU (0x1e * 2)1264#define WATCHDOG_8TU_DEF 51265#define WATCHDOG_8TU_MAX 1012661267/* Manufacturing Test Variables */1268/* PER test mode */1269#define M_PKTENG_CTRL (0x6c * 2)1270/* IFS for TX mode */1271#define M_PKTENG_IFS (0x6d * 2)1272/* Lower word of tx frmcnt/rx lostcnt */1273#define M_PKTENG_FRMCNT_LO (0x6e * 2)1274/* Upper word of tx frmcnt/rx lostcnt */1275#define M_PKTENG_FRMCNT_HI (0x6f * 2)12761277/* Index variation in vbat ripple */1278#define M_LCN_PWR_IDX_MAX (0x67 * 2) /* highest index read by ucode */1279#define M_LCN_PWR_IDX_MIN (0x66 * 2) /* lowest index read by ucode */12801281/* M_PKTENG_CTRL bit definitions */1282#define M_PKTENG_MODE_TX 0x00011283#define M_PKTENG_MODE_TX_RIFS 0x00041284#define M_PKTENG_MODE_TX_CTS 0x00081285#define M_PKTENG_MODE_RX 0x00021286#define M_PKTENG_MODE_RX_WITH_ACK 0x04021287#define M_PKTENG_MODE_MASK 0x00031288/* TX frames indicated in the frmcnt reg */1289#define M_PKTENG_FRMCNT_VLD 0x010012901291/* Sample Collect parameters (bitmap and type) */1292/* Trigger bitmap for sample collect */1293#define M_SMPL_COL_BMP (0x37d * 2)1294/* Sample collect type */1295#define M_SMPL_COL_CTL (0x3b2 * 2)12961297#define ANTSEL_CLKDIV_4MHZ 61298#define MIMO_ANTSEL_BUSY 0x4000 /* bit 14 (busy) */1299#define MIMO_ANTSEL_SEL 0x8000 /* bit 15 write the value */1300#define MIMO_ANTSEL_WAIT 50 /* 50us wait */1301#define MIMO_ANTSEL_OVERRIDE 0x8000 /* flag */13021303struct shm_acparams {1304u16 txop;1305u16 cwmin;1306u16 cwmax;1307u16 cwcur;1308u16 aifs;1309u16 bslots;1310u16 reggap;1311u16 status;1312u16 rsvd[8];1313} __packed;1314#define M_EDCF_QLEN (16 * 2)13151316#define WME_STATUS_NEWAC (1 << 8)13171318/* M_HOST_FLAGS */1319#define MHFMAX 5 /* Number of valid hostflag half-word (u16) */1320#define MHF1 0 /* Hostflag 1 index */1321#define MHF2 1 /* Hostflag 2 index */1322#define MHF3 2 /* Hostflag 3 index */1323#define MHF4 3 /* Hostflag 4 index */1324#define MHF5 4 /* Hostflag 5 index */13251326/* Flags in M_HOST_FLAGS */1327/* Enable ucode antenna diversity help */1328#define MHF1_ANTDIV 0x00011329/* Enable EDCF access control */1330#define MHF1_EDCF 0x01001331#define MHF1_IQSWAP_WAR 0x02001332/* Disable Slow clock request, for corerev < 11 */1333#define MHF1_FORCEFASTCLK 0x040013341335/* Flags in M_HOST_FLAGS2 */13361337/* Flush BCMC FIFO immediately */1338#define MHF2_TXBCMC_NOW 0x00401339/* Enable ucode/hw power control */1340#define MHF2_HWPWRCTL 0x00801341#define MHF2_NPHY40MHZ_WAR 0x080013421343/* Flags in M_HOST_FLAGS3 */1344/* enabled mimo antenna selection */1345#define MHF3_ANTSEL_EN 0x00011346/* antenna selection mode: 0: 2x3, 1: 2x4 */1347#define MHF3_ANTSEL_MODE 0x00021348#define MHF3_RESERVED1 0x00041349#define MHF3_RESERVED2 0x00081350#define MHF3_NPHY_MLADV_WAR 0x001013511352/* Flags in M_HOST_FLAGS4 */1353/* force bphy Tx on core 0 (board level WAR) */1354#define MHF4_BPHY_TXCORE0 0x00801355/* for 4313A0 FEM boards */1356#define MHF4_EXTPA_ENABLE 0x400013571358/* Flags in M_HOST_FLAGS5 */1359#define MHF5_4313_GPIOCTRL 0x00011360#define MHF5_RESERVED1 0x00021361#define MHF5_RESERVED2 0x00041362/* Radio power setting for ucode */1363#define M_RADIO_PWR (0x32 * 2)13641365/* phy noise recorded by ucode right after tx */1366#define M_PHY_NOISE (0x037 * 2)1367#define PHY_NOISE_MASK 0x00ff13681369/*1370* Receive Frame Data Header for 802.11b DCF-only frames1371*1372* RxFrameSize: Actual byte length of the frame data received1373* PAD: padding (not used)1374* PhyRxStatus_0: PhyRxStatus 15:01375* PhyRxStatus_1: PhyRxStatus 31:161376* PhyRxStatus_2: PhyRxStatus 47:321377* PhyRxStatus_3: PhyRxStatus 63:481378* PhyRxStatus_4: PhyRxStatus 79:641379* PhyRxStatus_5: PhyRxStatus 95:801380* RxStatus1: MAC Rx Status1381* RxStatus2: extended MAC Rx status1382* RxTSFTime: RxTSFTime time of first MAC symbol + M_PHY_PLCPRX_DLY1383* RxChan: gain code, channel radio code, and phy type1384*/1385struct d11rxhdr_le {1386__le16 RxFrameSize;1387u16 PAD;1388__le16 PhyRxStatus_0;1389__le16 PhyRxStatus_1;1390__le16 PhyRxStatus_2;1391__le16 PhyRxStatus_3;1392__le16 PhyRxStatus_4;1393__le16 PhyRxStatus_5;1394__le16 RxStatus1;1395__le16 RxStatus2;1396__le16 RxTSFTime;1397__le16 RxChan;1398} __packed;13991400struct d11rxhdr {1401u16 RxFrameSize;1402u16 PAD;1403u16 PhyRxStatus_0;1404u16 PhyRxStatus_1;1405u16 PhyRxStatus_2;1406u16 PhyRxStatus_3;1407u16 PhyRxStatus_4;1408u16 PhyRxStatus_5;1409u16 RxStatus1;1410u16 RxStatus2;1411u16 RxTSFTime;1412u16 RxChan;1413} __packed;14141415/* PhyRxStatus_0: */1416/* NPHY only: CCK, OFDM, preN, N */1417#define PRXS0_FT_MASK 0x00031418/* NPHY only: clip count adjustment steps by AGC */1419#define PRXS0_CLIP_MASK 0x000C1420#define PRXS0_CLIP_SHIFT 21421/* PHY received a frame with unsupported rate */1422#define PRXS0_UNSRATE 0x00101423/* GPHY: rx ant, NPHY: upper sideband */1424#define PRXS0_RXANT_UPSUBBAND 0x00201425/* CCK frame only: lost crs during cck frame reception */1426#define PRXS0_LCRS 0x00401427/* Short Preamble */1428#define PRXS0_SHORTH 0x00801429/* PLCP violation */1430#define PRXS0_PLCPFV 0x01001431/* PLCP header integrity check failed */1432#define PRXS0_PLCPHCF 0x02001433/* legacy PHY gain control */1434#define PRXS0_GAIN_CTL 0x40001435/* NPHY: Antennas used for received frame, bitmask */1436#define PRXS0_ANTSEL_MASK 0xF0001437#define PRXS0_ANTSEL_SHIFT 0x1214381439/* subfield PRXS0_FT_MASK */1440#define PRXS0_CCK 0x00001441/* valid only for G phy, use rxh->RxChan for A phy */1442#define PRXS0_OFDM 0x00011443#define PRXS0_PREN 0x00021444#define PRXS0_STDN 0x000314451446/* subfield PRXS0_ANTSEL_MASK */1447#define PRXS0_ANTSEL_0 0x0 /* antenna 0 is used */1448#define PRXS0_ANTSEL_1 0x2 /* antenna 1 is used */1449#define PRXS0_ANTSEL_2 0x4 /* antenna 2 is used */1450#define PRXS0_ANTSEL_3 0x8 /* antenna 3 is used */14511452/* PhyRxStatus_1: */1453#define PRXS1_JSSI_MASK 0x00FF1454#define PRXS1_JSSI_SHIFT 01455#define PRXS1_SQ_MASK 0xFF001456#define PRXS1_SQ_SHIFT 814571458/* nphy PhyRxStatus_1: */1459#define PRXS1_nphy_PWR0_MASK 0x00FF1460#define PRXS1_nphy_PWR1_MASK 0xFF0014611462/* HTPHY Rx Status defines */1463/* htphy PhyRxStatus_0: those bit are overlapped with PhyRxStatus_0 */1464#define PRXS0_BAND 0x0400 /* 0 = 2.4G, 1 = 5G */1465#define PRXS0_RSVD 0x0800 /* reserved; set to 0 */1466#define PRXS0_UNUSED 0xF000 /* unused and not defined; set to 0 */14671468/* htphy PhyRxStatus_1: */1469/* core enables for {3..0}, 0=disabled, 1=enabled */1470#define PRXS1_HTPHY_CORE_MASK 0x000F1471/* antenna configuration */1472#define PRXS1_HTPHY_ANTCFG_MASK 0x00F01473/* Mixmode PLCP Length low byte mask */1474#define PRXS1_HTPHY_MMPLCPLenL_MASK 0xFF0014751476/* htphy PhyRxStatus_2: */1477/* Mixmode PLCP Length high byte maskw */1478#define PRXS2_HTPHY_MMPLCPLenH_MASK 0x000F1479/* Mixmode PLCP rate mask */1480#define PRXS2_HTPHY_MMPLCH_RATE_MASK 0x00F01481/* Rx power on core 0 */1482#define PRXS2_HTPHY_RXPWR_ANT0 0xFF0014831484/* htphy PhyRxStatus_3: */1485/* Rx power on core 1 */1486#define PRXS3_HTPHY_RXPWR_ANT1 0x00FF1487/* Rx power on core 2 */1488#define PRXS3_HTPHY_RXPWR_ANT2 0xFF0014891490/* htphy PhyRxStatus_4: */1491/* Rx power on core 3 */1492#define PRXS4_HTPHY_RXPWR_ANT3 0x00FF1493/* Coarse frequency offset */1494#define PRXS4_HTPHY_CFO 0xFF0014951496/* htphy PhyRxStatus_5: */1497/* Fine frequency offset */1498#define PRXS5_HTPHY_FFO 0x00FF1499/* Advance Retard */1500#define PRXS5_HTPHY_AR 0xFF0015011502#define HTPHY_MMPLCPLen(rxs) \1503((((rxs)->PhyRxStatus_1 & PRXS1_HTPHY_MMPLCPLenL_MASK) >> 8) | \1504(((rxs)->PhyRxStatus_2 & PRXS2_HTPHY_MMPLCPLenH_MASK) << 8))1505/* Get Rx power on core 0 */1506#define HTPHY_RXPWR_ANT0(rxs) \1507((((rxs)->PhyRxStatus_2) & PRXS2_HTPHY_RXPWR_ANT0) >> 8)1508/* Get Rx power on core 1 */1509#define HTPHY_RXPWR_ANT1(rxs) \1510(((rxs)->PhyRxStatus_3) & PRXS3_HTPHY_RXPWR_ANT1)1511/* Get Rx power on core 2 */1512#define HTPHY_RXPWR_ANT2(rxs) \1513((((rxs)->PhyRxStatus_3) & PRXS3_HTPHY_RXPWR_ANT2) >> 8)15141515/* ucode RxStatus1: */1516#define RXS_BCNSENT 0x80001517#define RXS_SECKINDX_MASK 0x07e01518#define RXS_SECKINDX_SHIFT 51519#define RXS_DECERR (1 << 4)1520#define RXS_DECATMPT (1 << 3)1521/* PAD bytes to make IP data 4 bytes aligned */1522#define RXS_PBPRES (1 << 2)1523#define RXS_RESPFRAMETX (1 << 1)1524#define RXS_FCSERR (1 << 0)15251526/* ucode RxStatus2: */1527#define RXS_AMSDU_MASK 11528#define RXS_AGGTYPE_MASK 0x61529#define RXS_AGGTYPE_SHIFT 11530#define RXS_PHYRXST_VALID (1 << 8)1531#define RXS_RXANT_MASK 0x31532#define RXS_RXANT_SHIFT 1215331534/* RxChan */1535#define RXS_CHAN_40 0x10001536#define RXS_CHAN_5G 0x08001537#define RXS_CHAN_ID_MASK 0x07f81538#define RXS_CHAN_ID_SHIFT 31539#define RXS_CHAN_PHYTYPE_MASK 0x00071540#define RXS_CHAN_PHYTYPE_SHIFT 015411542/* Index of attenuations used during ucode power control. */1543#define M_PWRIND_BLKS (0x184 * 2)1544#define M_PWRIND_MAP0 (M_PWRIND_BLKS + 0x0)1545#define M_PWRIND_MAP1 (M_PWRIND_BLKS + 0x2)1546#define M_PWRIND_MAP2 (M_PWRIND_BLKS + 0x4)1547#define M_PWRIND_MAP3 (M_PWRIND_BLKS + 0x6)1548/* M_PWRIND_MAP(core) macro */1549#define M_PWRIND_MAP(core) (M_PWRIND_BLKS + ((core)<<1))15501551/* PSM SHM variable offsets */1552#define M_PSM_SOFT_REGS 0x01553#define M_BOM_REV_MAJOR (M_PSM_SOFT_REGS + 0x0)1554#define M_BOM_REV_MINOR (M_PSM_SOFT_REGS + 0x2)1555#define M_UCODE_DBGST (M_PSM_SOFT_REGS + 0x40) /* ucode debug status code */1556#define M_UCODE_MACSTAT (M_PSM_SOFT_REGS + 0xE0) /* macstat counters */15571558#define M_AGING_THRSH (0x3e * 2) /* max time waiting for medium before tx */1559#define M_MBURST_SIZE (0x40 * 2) /* max frames in a frameburst */1560#define M_MBURST_TXOP (0x41 * 2) /* max frameburst TXOP in unit of us */1561#define M_SYNTHPU_DLY (0x4a * 2) /* pre-wakeup for synthpu, default: 500 */1562#define M_PRETBTT (0x4b * 2)15631564/* offset to the target txpwr */1565#define M_ALT_TXPWR_IDX (M_PSM_SOFT_REGS + (0x3b * 2))1566#define M_PHY_TX_FLT_PTR (M_PSM_SOFT_REGS + (0x3d * 2))1567#define M_CTS_DURATION (M_PSM_SOFT_REGS + (0x5c * 2))1568#define M_LP_RCCAL_OVR (M_PSM_SOFT_REGS + (0x6b * 2))15691570/* PKTENG Rx Stats Block */1571#define M_RXSTATS_BLK_PTR (M_PSM_SOFT_REGS + (0x65 * 2))15721573/* ucode debug status codes */1574/* not valid really */1575#define DBGST_INACTIVE 01576/* after zeroing SHM, before suspending at init */1577#define DBGST_INIT 11578/* "normal" state */1579#define DBGST_ACTIVE 21580/* suspended */1581#define DBGST_SUSPENDED 31582/* asleep (PS mode) */1583#define DBGST_ASLEEP 415841585/* Scratch Reg defs */1586enum _ePsmScratchPadRegDefinitions {1587S_RSV0 = 0,1588S_RSV1,1589S_RSV2,15901591/* offset 0x03: scratch registers for Dot11-contants */1592S_DOT11_CWMIN, /* CW-minimum */1593S_DOT11_CWMAX, /* CW-maximum */1594S_DOT11_CWCUR, /* CW-current */1595S_DOT11_SRC_LMT, /* short retry count limit */1596S_DOT11_LRC_LMT, /* long retry count limit */1597S_DOT11_DTIMCOUNT, /* DTIM-count */15981599/* offset 0x09: Tx-side scratch registers */1600S_SEQ_NUM, /* hardware sequence number reg */1601S_SEQ_NUM_FRAG, /* seq num for frags (at the start of MSDU) */1602S_FRMRETX_CNT, /* frame retx count */1603S_SSRC, /* Station short retry count */1604S_SLRC, /* Station long retry count */1605S_EXP_RSP, /* Expected response frame */1606S_OLD_BREM, /* Remaining backoff ctr */1607S_OLD_CWWIN, /* saved-off CW-cur */1608S_TXECTL, /* TXE-Ctl word constructed in scr-pad */1609S_CTXTST, /* frm type-subtype as read from Tx-descr */16101611/* offset 0x13: Rx-side scratch registers */1612S_RXTST, /* Type and subtype in Rxframe */16131614/* Global state register */1615S_STREG, /* state storage actual bit maps below */16161617S_TXPWR_SUM, /* Tx power control: accumulator */1618S_TXPWR_ITER, /* Tx power control: iteration */1619S_RX_FRMTYPE, /* Rate and PHY type for frames */1620S_THIS_AGG, /* Size of this AGG (A-MSDU) */16211622S_KEYINDX,1623S_RXFRMLEN, /* Receive MPDU length in bytes */16241625/* offset 0x1B: Receive TSF time stored in SCR */1626S_RXTSFTMRVAL_WD3, /* TSF value at the start of rx */1627S_RXTSFTMRVAL_WD2, /* TSF value at the start of rx */1628S_RXTSFTMRVAL_WD1, /* TSF value at the start of rx */1629S_RXTSFTMRVAL_WD0, /* TSF value at the start of rx */1630S_RXSSN, /* Received start seq number for A-MPDU BA */1631S_RXQOSFLD, /* Rx-QoS field (if present) */16321633/* offset 0x21: Scratch pad regs used in microcode as temp storage */1634S_TMP0, /* stmp0 */1635S_TMP1, /* stmp1 */1636S_TMP2, /* stmp2 */1637S_TMP3, /* stmp3 */1638S_TMP4, /* stmp4 */1639S_TMP5, /* stmp5 */1640S_PRQPENALTY_CTR, /* Probe response queue penalty counter */1641S_ANTCNT, /* unsuccessful attempts on current ant. */1642S_SYMBOL, /* flag for possible symbol ctl frames */1643S_RXTP, /* rx frame type */1644S_STREG2, /* extra state storage */1645S_STREG3, /* even more extra state storage */1646S_STREG4, /* ... */1647S_STREG5, /* remember to initialize it to zero */16481649S_ADJPWR_IDX,1650S_CUR_PTR, /* Temp pointer for A-MPDU re-Tx SHM table */1651S_REVID4, /* 0x33 */1652S_INDX, /* 0x34 */1653S_ADDR0, /* 0x35 */1654S_ADDR1, /* 0x36 */1655S_ADDR2, /* 0x37 */1656S_ADDR3, /* 0x38 */1657S_ADDR4, /* 0x39 */1658S_ADDR5, /* 0x3A */1659S_TMP6, /* 0x3B */1660S_KEYINDX_BU, /* Backup for Key index */1661S_MFGTEST_TMP0, /* Temp regs used for RX test calculations */1662S_RXESN, /* Received end sequence number for A-MPDU BA */1663S_STREG6, /* 0x3F */1664};16651666#define S_BEACON_INDX S_OLD_BREM1667#define S_PRS_INDX S_OLD_CWWIN1668#define S_PHYTYPE S_SSRC1669#define S_PHYVER S_SLRC16701671/* IHR SLOW_CTRL values */1672#define SLOW_CTRL_PDE (1 << 0)1673#define SLOW_CTRL_FD (1 << 8)16741675/* ucode mac statistic counters in shared memory */1676struct macstat {1677u16 txallfrm; /* 0x80 */1678u16 txrtsfrm; /* 0x82 */1679u16 txctsfrm; /* 0x84 */1680u16 txackfrm; /* 0x86 */1681u16 txdnlfrm; /* 0x88 */1682u16 txbcnfrm; /* 0x8a */1683u16 txfunfl[8]; /* 0x8c - 0x9b */1684u16 txtplunfl; /* 0x9c */1685u16 txphyerr; /* 0x9e */1686u16 pktengrxducast; /* 0xa0 */1687u16 pktengrxdmcast; /* 0xa2 */1688u16 rxfrmtoolong; /* 0xa4 */1689u16 rxfrmtooshrt; /* 0xa6 */1690u16 rxinvmachdr; /* 0xa8 */1691u16 rxbadfcs; /* 0xaa */1692u16 rxbadplcp; /* 0xac */1693u16 rxcrsglitch; /* 0xae */1694u16 rxstrt; /* 0xb0 */1695u16 rxdfrmucastmbss; /* 0xb2 */1696u16 rxmfrmucastmbss; /* 0xb4 */1697u16 rxcfrmucast; /* 0xb6 */1698u16 rxrtsucast; /* 0xb8 */1699u16 rxctsucast; /* 0xba */1700u16 rxackucast; /* 0xbc */1701u16 rxdfrmocast; /* 0xbe */1702u16 rxmfrmocast; /* 0xc0 */1703u16 rxcfrmocast; /* 0xc2 */1704u16 rxrtsocast; /* 0xc4 */1705u16 rxctsocast; /* 0xc6 */1706u16 rxdfrmmcast; /* 0xc8 */1707u16 rxmfrmmcast; /* 0xca */1708u16 rxcfrmmcast; /* 0xcc */1709u16 rxbeaconmbss; /* 0xce */1710u16 rxdfrmucastobss; /* 0xd0 */1711u16 rxbeaconobss; /* 0xd2 */1712u16 rxrsptmout; /* 0xd4 */1713u16 bcntxcancl; /* 0xd6 */1714u16 PAD;1715u16 rxf0ovfl; /* 0xda */1716u16 rxf1ovfl; /* 0xdc */1717u16 rxf2ovfl; /* 0xde */1718u16 txsfovfl; /* 0xe0 */1719u16 pmqovfl; /* 0xe2 */1720u16 rxcgprqfrm; /* 0xe4 */1721u16 rxcgprsqovfl; /* 0xe6 */1722u16 txcgprsfail; /* 0xe8 */1723u16 txcgprssuc; /* 0xea */1724u16 prs_timeout; /* 0xec */1725u16 rxnack;1726u16 frmscons;1727u16 txnack;1728u16 txglitch_nack;1729u16 txburst; /* 0xf6 # tx bursts */1730u16 bphy_rxcrsglitch; /* bphy rx crs glitch */1731u16 phywatchdog; /* 0xfa # of phy watchdog events */1732u16 PAD;1733u16 bphy_badplcp; /* bphy bad plcp */1734};17351736/* dot11 core-specific control flags */1737#define SICF_PCLKE 0x0004 /* PHY clock enable */1738#define SICF_PRST 0x0008 /* PHY reset */1739#define SICF_MPCLKE 0x0010 /* MAC PHY clockcontrol enable */1740#define SICF_FREF 0x0020 /* PLL FreqRefSelect */1741/* NOTE: the following bw bits only apply when the core is attached1742* to a NPHY1743*/1744#define SICF_BWMASK 0x00c0 /* phy clock mask (b6 & b7) */1745#define SICF_BW40 0x0080 /* 40MHz BW (160MHz phyclk) */1746#define SICF_BW20 0x0040 /* 20MHz BW (80MHz phyclk) */1747#define SICF_BW10 0x0000 /* 10MHz BW (40MHz phyclk) */1748#define SICF_GMODE 0x2000 /* gmode enable */17491750/* dot11 core-specific status flags */1751#define SISF_2G_PHY 0x0001 /* 2.4G capable phy */1752#define SISF_5G_PHY 0x0002 /* 5G capable phy */1753#define SISF_FCLKA 0x0004 /* FastClkAvailable */1754#define SISF_DB_PHY 0x0008 /* Dualband phy */17551756/* === End of MAC reg, Beginning of PHY(b/a/g/n) reg === */1757/* radio and LPPHY regs are separated */17581759#define BPHY_REG_OFT_BASE 0x01760/* offsets for indirect access to bphy registers */1761#define BPHY_BB_CONFIG 0x011762#define BPHY_ADCBIAS 0x021763#define BPHY_ANACORE 0x031764#define BPHY_PHYCRSTH 0x061765#define BPHY_TEST 0x0a1766#define BPHY_PA_TX_TO 0x101767#define BPHY_SYNTH_DC_TO 0x111768#define BPHY_PA_TX_TIME_UP 0x121769#define BPHY_RX_FLTR_TIME_UP 0x131770#define BPHY_TX_POWER_OVERRIDE 0x141771#define BPHY_RF_OVERRIDE 0x151772#define BPHY_RF_TR_LOOKUP1 0x161773#define BPHY_RF_TR_LOOKUP2 0x171774#define BPHY_COEFFS 0x181775#define BPHY_PLL_OUT 0x191776#define BPHY_REFRESH_MAIN 0x1a1777#define BPHY_REFRESH_TO0 0x1b1778#define BPHY_REFRESH_TO1 0x1c1779#define BPHY_RSSI_TRESH 0x201780#define BPHY_IQ_TRESH_HH 0x211781#define BPHY_IQ_TRESH_H 0x221782#define BPHY_IQ_TRESH_L 0x231783#define BPHY_IQ_TRESH_LL 0x241784#define BPHY_GAIN 0x251785#define BPHY_LNA_GAIN_RANGE 0x261786#define BPHY_JSSI 0x271787#define BPHY_TSSI_CTL 0x281788#define BPHY_TSSI 0x291789#define BPHY_TR_LOSS_CTL 0x2a1790#define BPHY_LO_LEAKAGE 0x2b1791#define BPHY_LO_RSSI_ACC 0x2c1792#define BPHY_LO_IQMAG_ACC 0x2d1793#define BPHY_TX_DC_OFF1 0x2e1794#define BPHY_TX_DC_OFF2 0x2f1795#define BPHY_PEAK_CNT_THRESH 0x301796#define BPHY_FREQ_OFFSET 0x311797#define BPHY_DIVERSITY_CTL 0x321798#define BPHY_PEAK_ENERGY_LO 0x331799#define BPHY_PEAK_ENERGY_HI 0x341800#define BPHY_SYNC_CTL 0x351801#define BPHY_TX_PWR_CTRL 0x361802#define BPHY_TX_EST_PWR 0x371803#define BPHY_STEP 0x381804#define BPHY_WARMUP 0x391805#define BPHY_LMS_CFF_READ 0x3a1806#define BPHY_LMS_COEFF_I 0x3b1807#define BPHY_LMS_COEFF_Q 0x3c1808#define BPHY_SIG_POW 0x3d1809#define BPHY_RFDC_CANCEL_CTL 0x3e1810#define BPHY_HDR_TYPE 0x401811#define BPHY_SFD_TO 0x411812#define BPHY_SFD_CTL 0x421813#define BPHY_DEBUG 0x431814#define BPHY_RX_DELAY_COMP 0x441815#define BPHY_CRS_DROP_TO 0x451816#define BPHY_SHORT_SFD_NZEROS 0x461817#define BPHY_DSSS_COEFF1 0x481818#define BPHY_DSSS_COEFF2 0x491819#define BPHY_CCK_COEFF1 0x4a1820#define BPHY_CCK_COEFF2 0x4b1821#define BPHY_TR_CORR 0x4c1822#define BPHY_ANGLE_SCALE 0x4d1823#define BPHY_TX_PWR_BASE_IDX 0x4e1824#define BPHY_OPTIONAL_MODES2 0x4f1825#define BPHY_CCK_LMS_STEP 0x501826#define BPHY_BYPASS 0x511827#define BPHY_CCK_DELAY_LONG 0x521828#define BPHY_CCK_DELAY_SHORT 0x531829#define BPHY_PPROC_CHAN_DELAY 0x541830#define BPHY_DDFS_ENABLE 0x581831#define BPHY_PHASE_SCALE 0x591832#define BPHY_FREQ_CONTROL 0x5a1833#define BPHY_LNA_GAIN_RANGE_10 0x5b1834#define BPHY_LNA_GAIN_RANGE_32 0x5c1835#define BPHY_OPTIONAL_MODES 0x5d1836#define BPHY_RX_STATUS2 0x5e1837#define BPHY_RX_STATUS3 0x5f1838#define BPHY_DAC_CONTROL 0x601839#define BPHY_ANA11G_FILT_CTRL 0x621840#define BPHY_REFRESH_CTRL 0x641841#define BPHY_RF_OVERRIDE2 0x651842#define BPHY_SPUR_CANCEL_CTRL 0x661843#define BPHY_FINE_DIGIGAIN_CTRL 0x671844#define BPHY_RSSI_LUT 0x881845#define BPHY_RSSI_LUT_END 0xa71846#define BPHY_TSSI_LUT 0xa81847#define BPHY_TSSI_LUT_END 0xc71848#define BPHY_TSSI2PWR_LUT 0x3801849#define BPHY_TSSI2PWR_LUT_END 0x39f1850#define BPHY_LOCOMP_LUT 0x3a01851#define BPHY_LOCOMP_LUT_END 0x3bf1852#define BPHY_TXGAIN_LUT 0x3c01853#define BPHY_TXGAIN_LUT_END 0x3ff18541855/* Bits in BB_CONFIG: */1856#define PHY_BBC_ANT_MASK 0x01801857#define PHY_BBC_ANT_SHIFT 71858#define BB_DARWIN 0x10001859#define BBCFG_RESETCCA 0x40001860#define BBCFG_RESETRX 0x800018611862/* Bits in phytest(0x0a): */1863#define TST_DDFS 0x20001864#define TST_TXFILT1 0x08001865#define TST_UNSCRAM 0x04001866#define TST_CARR_SUPP 0x02001867#define TST_DC_COMP_LOOP 0x01001868#define TST_LOOPBACK 0x00801869#define TST_TXFILT0 0x00401870#define TST_TXTEST_ENABLE 0x00201871#define TST_TXTEST_RATE 0x00181872#define TST_TXTEST_PHASE 0x000718731874/* phytest txTestRate values */1875#define TST_TXTEST_RATE_1MBPS 01876#define TST_TXTEST_RATE_2MBPS 11877#define TST_TXTEST_RATE_5_5MBPS 21878#define TST_TXTEST_RATE_11MBPS 31879#define TST_TXTEST_RATE_SHIFT 318801881#define SHM_BYT_CNT 0x2 /* IHR location */1882#define MAX_BYT_CNT 0x600 /* Maximum frame len */18831884struct d11cnt {1885u32 txfrag;1886u32 txmulti;1887u32 txfail;1888u32 txretry;1889u32 txretrie;1890u32 rxdup;1891u32 txrts;1892u32 txnocts;1893u32 txnoack;1894u32 rxfrag;1895u32 rxmulti;1896u32 rxcrc;1897u32 txfrmsnt;1898u32 rxundec;1899};19001901#endif /* _BRCM_D11_H_ */190219031904