Commit c43f1e05 authored by Roland Vossen's avatar Roland Vossen Committed by Greg Kroah-Hartman

staging: brcm80211: remove AP related code from softmac

AP support was only partially implemented and never invoked.
AP related code sections removed.
Reported-by: default avatarJohannes Berg <johannes@sipsolutions.net>
Reviewed-by: default avatarPieter-Paul Giesberts <pieterpg@broadcom.com>
Reviewed-by: default avatarArend van Spriel <arend@broadcom.com>
Signed-off-by: default avatarRoland Vossen <rvossen@broadcom.com>
Signed-off-by: default avatarGreg Kroah-Hartman <gregkh@suse.de>
parent 9b5795a7
...@@ -193,7 +193,7 @@ ...@@ -193,7 +193,7 @@
* for maintenance tasks such as phy calibration and scb update * for maintenance tasks such as phy calibration and scb update
*/ */
#define BRCMS_WAR16165(wlc) ((!AP_ENAB(wlc->pub)) && (wlc->war16165)) #define BRCMS_WAR16165(wlc) (wlc->war16165)
/* Find basic rate for a given rate */ /* Find basic rate for a given rate */
#define BRCMS_BASIC_RATE(wlc, rspec) \ #define BRCMS_BASIC_RATE(wlc, rspec) \
...@@ -780,11 +780,6 @@ bool brcms_c_dpc(struct brcms_c_info *wlc, bool bounded) ...@@ -780,11 +780,6 @@ bool brcms_c_dpc(struct brcms_c_info *wlc, bool bounded)
WARN_ON(macintstatus & MI_PRQ); /* PRQ Interrupt in non-MBSS */ WARN_ON(macintstatus & MI_PRQ); /* PRQ Interrupt in non-MBSS */
/* BCN template is available */
if (AP_ENAB(wlc->pub) && (!APSTA_ENAB(wlc->pub))
&& (macintstatus & MI_BCNTPL))
brcms_c_update_beacon(wlc);
/* tx status */ /* tx status */
if (macintstatus & MI_TFS) { if (macintstatus & MI_TFS) {
if (brcms_b_txstatus(wlc->hw, bounded, &fatal)) if (brcms_b_txstatus(wlc->hw, bounded, &fatal))
...@@ -3596,8 +3591,7 @@ void brcms_c_mac_bcn_promisc_change(struct brcms_c_info *wlc, bool promisc) ...@@ -3596,8 +3591,7 @@ void brcms_c_mac_bcn_promisc_change(struct brcms_c_info *wlc, bool promisc)
void brcms_c_mac_bcn_promisc(struct brcms_c_info *wlc) void brcms_c_mac_bcn_promisc(struct brcms_c_info *wlc)
{ {
if ((AP_ENAB(wlc->pub) && (N_ENAB(wlc->pub) || wlc->band->gmode)) || if (wlc->bcnmisc_ibss || wlc->bcnmisc_scan || wlc->bcnmisc_monitor)
wlc->bcnmisc_ibss || wlc->bcnmisc_scan || wlc->bcnmisc_monitor)
brcms_c_mctrl(wlc, MCTL_BCNS_PROMISC, MCTL_BCNS_PROMISC); brcms_c_mctrl(wlc, MCTL_BCNS_PROMISC, MCTL_BCNS_PROMISC);
else else
brcms_c_mctrl(wlc, MCTL_BCNS_PROMISC, 0); brcms_c_mctrl(wlc, MCTL_BCNS_PROMISC, 0);
...@@ -3614,7 +3608,7 @@ void brcms_c_mac_promisc(struct brcms_c_info *wlc) ...@@ -3614,7 +3608,7 @@ void brcms_c_mac_promisc(struct brcms_c_info *wlc)
* the MCTL_PROMISC bit since all BSS data traffic is * the MCTL_PROMISC bit since all BSS data traffic is
* directed at the AP * directed at the AP
*/ */
if (PROMISC_ENAB(wlc->pub) && !AP_ENAB(wlc->pub)) if (PROMISC_ENAB(wlc->pub))
promisc_bits |= MCTL_PROMISC; promisc_bits |= MCTL_PROMISC;
/* monitor mode needs both MCTL_PROMISC and MCTL_KEEPCONTROL /* monitor mode needs both MCTL_PROMISC and MCTL_KEEPCONTROL
...@@ -4129,11 +4123,6 @@ void brcms_c_edcf_setparams(struct brcms_c_info *wlc, bool suspend) ...@@ -4129,11 +4123,6 @@ void brcms_c_edcf_setparams(struct brcms_c_info *wlc, bool suspend)
if (suspend) if (suspend)
brcms_c_suspend_mac_and_wait(wlc); brcms_c_suspend_mac_and_wait(wlc);
if (AP_ENAB(wlc->pub) && WME_ENAB(wlc->pub)) {
brcms_c_update_beacon(wlc);
brcms_c_update_probe_resp(wlc, false);
}
if (suspend) if (suspend)
brcms_c_enable_mac(wlc); brcms_c_enable_mac(wlc);
...@@ -4146,11 +4135,8 @@ static void brcms_c_down_led_upd(struct brcms_c_info *wlc) ...@@ -4146,11 +4135,8 @@ static void brcms_c_down_led_upd(struct brcms_c_info *wlc)
* maintain LEDs while in down state, turn on sbclk if * maintain LEDs while in down state, turn on sbclk if
* not available yet. Turn on sbclk if necessary * not available yet. Turn on sbclk if necessary
*/ */
if (!AP_ENAB(wlc->pub)) { brcms_c_pllreq(wlc, true, BRCMS_PLLREQ_FLIP);
brcms_c_pllreq(wlc, true, BRCMS_PLLREQ_FLIP); brcms_c_pllreq(wlc, false, BRCMS_PLLREQ_FLIP);
brcms_c_pllreq(wlc, false, BRCMS_PLLREQ_FLIP);
}
} }
static bool brcms_c_radio_monitor_start(struct brcms_c_info *wlc) static bool brcms_c_radio_monitor_start(struct brcms_c_info *wlc)
...@@ -5394,12 +5380,8 @@ uint brcms_c_detach(struct brcms_c_info *wlc) ...@@ -5394,12 +5380,8 @@ uint brcms_c_detach(struct brcms_c_info *wlc)
/* update state that depends on the current value of "ap" */ /* update state that depends on the current value of "ap" */
void brcms_c_ap_upd(struct brcms_c_info *wlc) void brcms_c_ap_upd(struct brcms_c_info *wlc)
{ {
if (AP_ENAB(wlc->pub)) /* STA-BSS; short capable */
/* AP: short not allowed, but not enforced */ wlc->PLCPHdr_override = BRCMS_PLCP_SHORT;
wlc->PLCPHdr_override = BRCMS_PLCP_AUTO;
else
/* STA-BSS; short capable */
wlc->PLCPHdr_override = BRCMS_PLCP_SHORT;
/* fixup mpc */ /* fixup mpc */
wlc->mpc = true; wlc->mpc = true;
...@@ -5678,10 +5660,6 @@ int brcms_c_up(struct brcms_c_info *wlc) ...@@ -5678,10 +5660,6 @@ int brcms_c_up(struct brcms_c_info *wlc)
brcms_b_up_finish(wlc->hw); brcms_b_up_finish(wlc->hw);
/* other software states up after ISR is running */
/* start APs that were to be brought up but are not up yet */
/* if (AP_ENAB(wlc->pub)) brcms_c_restart_ap(wlc->ap); */
/* Program the TX wme params with the current settings */ /* Program the TX wme params with the current settings */
brcms_c_wme_retries_write(wlc); brcms_c_wme_retries_write(wlc);
...@@ -5900,9 +5878,6 @@ int brcms_c_set_gmode(struct brcms_c_info *wlc, u8 gmode, bool config) ...@@ -5900,9 +5878,6 @@ int brcms_c_set_gmode(struct brcms_c_info *wlc, u8 gmode, bool config)
break; break;
case GMODE_LRS: case GMODE_LRS:
if (AP_ENAB(wlc->pub))
brcms_c_rateset_copy(&cck_rates,
&wlc->sup_rates_override);
break; break;
case GMODE_AUTO: case GMODE_AUTO:
...@@ -5916,11 +5891,6 @@ int brcms_c_set_gmode(struct brcms_c_info *wlc, u8 gmode, bool config) ...@@ -5916,11 +5891,6 @@ int brcms_c_set_gmode(struct brcms_c_info *wlc, u8 gmode, bool config)
break; break;
case GMODE_PERFORMANCE: case GMODE_PERFORMANCE:
if (AP_ENAB(wlc->pub))
/* Put all rates into the Supported Rates element */
brcms_c_rateset_copy(&cck_ofdm_rates,
&wlc->sup_rates_override);
shortslot = BRCMS_SHORTSLOT_ON; shortslot = BRCMS_SHORTSLOT_ON;
shortslot_restrict = true; shortslot_restrict = true;
ofdm_basic = true; ofdm_basic = true;
...@@ -5953,21 +5923,13 @@ int brcms_c_set_gmode(struct brcms_c_info *wlc, u8 gmode, bool config) ...@@ -5953,21 +5923,13 @@ int brcms_c_set_gmode(struct brcms_c_info *wlc, u8 gmode, bool config)
wlc->shortslot_override = shortslot; wlc->shortslot_override = shortslot;
if (AP_ENAB(wlc->pub)) if (preamble == BRCMS_PLCP_SHORT)
/* wlc->ap->shortslot_restrict = shortslot_restrict; */
wlc->PLCPHdr_override =
(preamble !=
BRCMS_PLCP_LONG) ? BRCMS_PLCP_SHORT : BRCMS_PLCP_AUTO;
if ((AP_ENAB(wlc->pub) && preamble != BRCMS_PLCP_LONG)
|| preamble == BRCMS_PLCP_SHORT)
wlc->default_bss->capability |= WLAN_CAPABILITY_SHORT_PREAMBLE; wlc->default_bss->capability |= WLAN_CAPABILITY_SHORT_PREAMBLE;
else else
wlc->default_bss->capability &= ~WLAN_CAPABILITY_SHORT_PREAMBLE; wlc->default_bss->capability &= ~WLAN_CAPABILITY_SHORT_PREAMBLE;
/* Update shortslot capability bit for AP and IBSS */ /* Update shortslot capability bit for AP and IBSS */
if ((AP_ENAB(wlc->pub) && shortslot == BRCMS_SHORTSLOT_AUTO) || if (shortslot == BRCMS_SHORTSLOT_ON)
shortslot == BRCMS_SHORTSLOT_ON)
wlc->default_bss->capability |= WLAN_CAPABILITY_SHORT_SLOT_TIME; wlc->default_bss->capability |= WLAN_CAPABILITY_SHORT_SLOT_TIME;
else else
wlc->default_bss->capability &= wlc->default_bss->capability &=
...@@ -8359,20 +8321,12 @@ brcms_c_txfifo_complete(struct brcms_c_info *wlc, uint fifo, s8 txpktpend) ...@@ -8359,20 +8321,12 @@ brcms_c_txfifo_complete(struct brcms_c_info *wlc, uint fifo, s8 txpktpend)
/* There is more room; mark precedences related to this FIFO sendable */ /* There is more room; mark precedences related to this FIFO sendable */
BRCMS_TX_FIFO_ENAB(wlc, fifo); BRCMS_TX_FIFO_ENAB(wlc, fifo);
/* Clear MHF2_TXBCMC_NOW flag if BCMC fifo has drained */
if (AP_ENAB(wlc->pub) &&
!TXPKTPENDGET(wlc, TX_BCMC_FIFO))
brcms_c_mhf(wlc, MHF2, MHF2_TXBCMC_NOW, 0, BRCM_BAND_AUTO);
/* figure out which bsscfg is being worked on... */ /* figure out which bsscfg is being worked on... */
} }
/* Update beacon listen interval in shared memory */ /* Update beacon listen interval in shared memory */
void brcms_c_bcn_li_upd(struct brcms_c_info *wlc) void brcms_c_bcn_li_upd(struct brcms_c_info *wlc)
{ {
if (AP_ENAB(wlc->pub))
return;
/* wake up every DTIM is the default */ /* wake up every DTIM is the default */
if (wlc->bcn_li_dtim == 1) if (wlc->bcn_li_dtim == 1)
brcms_c_write_shm(wlc, M_BCN_LI, 0); brcms_c_write_shm(wlc, M_BCN_LI, 0);
......
...@@ -285,22 +285,13 @@ enum wlc_par_id { ...@@ -285,22 +285,13 @@ enum wlc_par_id {
* ********************************************* * *********************************************
*/ */
/* AP Support (versus STA) */
#define AP_ENAB(pub) (0)
/* Macro to check if APSTA mode enabled */
#define APSTA_ENAB(pub) (0)
/* Some useful combinations */
#define STA_ONLY(pub) (!AP_ENAB(pub))
#define AP_ONLY(pub) (AP_ENAB(pub) && !APSTA_ENAB(pub))
#define ENAB_1x1 0x01 #define ENAB_1x1 0x01
#define ENAB_2x2 0x02 #define ENAB_2x2 0x02
#define ENAB_3x3 0x04 #define ENAB_3x3 0x04
#define ENAB_4x4 0x08 #define ENAB_4x4 0x08
#define SUPPORT_11N (ENAB_1x1|ENAB_2x2) #define SUPPORT_11N (ENAB_1x1|ENAB_2x2)
#define SUPPORT_HT (ENAB_1x1|ENAB_2x2|ENAB_3x3) #define SUPPORT_HT (ENAB_1x1|ENAB_2x2|ENAB_3x3)
/* WL11N Support */ /* WL11N Support */
#define N_ENAB(pub) ((pub)->_n_enab & SUPPORT_11N) #define N_ENAB(pub) ((pub)->_n_enab & SUPPORT_11N)
#define N_REQD(pub) ((pub)->_n_reqd) #define N_REQD(pub) ((pub)->_n_reqd)
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment