2011-10-05 11:19:03 +00:00
|
|
|
/*
|
|
|
|
* Copyright (c) 2010 Broadcom Corporation
|
|
|
|
*
|
|
|
|
* Permission to use, copy, modify, and/or distribute this software for any
|
|
|
|
* purpose with or without fee is hereby granted, provided that the above
|
|
|
|
* copyright notice and this permission notice appear in all copies.
|
|
|
|
*
|
|
|
|
* THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
|
|
|
|
* WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
|
|
|
|
* MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY
|
|
|
|
* SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
|
|
|
|
* WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN ACTION
|
|
|
|
* OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF OR IN
|
|
|
|
* CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
|
|
|
|
*/
|
2012-01-15 08:38:44 +00:00
|
|
|
|
2011-10-05 11:19:03 +00:00
|
|
|
#include <linux/kernel.h>
|
|
|
|
#include <linux/string.h>
|
|
|
|
#include <linux/netdevice.h>
|
|
|
|
#include <brcmu_wifi.h>
|
|
|
|
#include <brcmu_utils.h>
|
|
|
|
#include "dhd.h"
|
2014-10-28 13:56:14 +00:00
|
|
|
#include "bus.h"
|
2014-10-28 13:56:13 +00:00
|
|
|
#include "debug.h"
|
2012-10-22 17:36:25 +00:00
|
|
|
#include "fwil.h"
|
2013-11-29 11:25:19 +00:00
|
|
|
#include "fwil_types.h"
|
2013-03-03 11:45:21 +00:00
|
|
|
#include "tracepoint.h"
|
2011-10-05 11:19:03 +00:00
|
|
|
|
2012-10-22 17:36:25 +00:00
|
|
|
#define BRCMF_DEFAULT_BCN_TIMEOUT 3
|
|
|
|
#define BRCMF_DEFAULT_SCAN_CHANNEL_TIME 40
|
|
|
|
#define BRCMF_DEFAULT_SCAN_UNASSOC_TIME 40
|
2011-10-05 11:19:03 +00:00
|
|
|
|
2014-05-12 08:47:26 +00:00
|
|
|
/* boost value for RSSI_DELTA in preferred join selection */
|
|
|
|
#define BRCMF_JOIN_PREF_RSSI_BOOST 8
|
|
|
|
|
2011-10-12 18:51:30 +00:00
|
|
|
|
2011-12-17 02:36:59 +00:00
|
|
|
bool brcmf_c_prec_enq(struct device *dev, struct pktq *q,
|
2011-10-05 11:19:03 +00:00
|
|
|
struct sk_buff *pkt, int prec)
|
|
|
|
{
|
|
|
|
struct sk_buff *p;
|
|
|
|
int eprec = -1; /* precedence to evict from */
|
|
|
|
bool discard_oldest;
|
2011-12-17 02:36:59 +00:00
|
|
|
struct brcmf_bus *bus_if = dev_get_drvdata(dev);
|
|
|
|
struct brcmf_pub *drvr = bus_if->drvr;
|
2011-10-05 11:19:03 +00:00
|
|
|
|
|
|
|
/* Fast case, precedence queue is not full and we are also not
|
|
|
|
* exceeding total queue length
|
|
|
|
*/
|
|
|
|
if (!pktq_pfull(q, prec) && !pktq_full(q)) {
|
|
|
|
brcmu_pktq_penq(q, prec, pkt);
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Determine precedence from which to evict packet, if any */
|
2014-10-28 13:56:15 +00:00
|
|
|
if (pktq_pfull(q, prec)) {
|
2011-10-05 11:19:03 +00:00
|
|
|
eprec = prec;
|
2014-10-28 13:56:15 +00:00
|
|
|
} else if (pktq_full(q)) {
|
2011-10-05 11:19:03 +00:00
|
|
|
p = brcmu_pktq_peek_tail(q, &eprec);
|
|
|
|
if (eprec > prec)
|
|
|
|
return false;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Evict if needed */
|
|
|
|
if (eprec >= 0) {
|
|
|
|
/* Detect queueing to unconfigured precedence */
|
|
|
|
discard_oldest = ac_bitmap_tst(drvr->wme_dp, eprec);
|
|
|
|
if (eprec == prec && !discard_oldest)
|
|
|
|
return false; /* refuse newer (incoming) packet */
|
|
|
|
/* Evict packet according to discard policy */
|
|
|
|
p = discard_oldest ? brcmu_pktq_pdeq(q, eprec) :
|
|
|
|
brcmu_pktq_pdeq_tail(q, eprec);
|
|
|
|
if (p == NULL)
|
2012-12-07 09:49:57 +00:00
|
|
|
brcmf_err("brcmu_pktq_penq() failed, oldest %d\n",
|
2011-10-05 11:19:03 +00:00
|
|
|
discard_oldest);
|
|
|
|
|
|
|
|
brcmu_pkt_buf_free_skb(p);
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Enqueue */
|
|
|
|
p = brcmu_pktq_penq(q, prec, pkt);
|
|
|
|
if (p == NULL)
|
2012-12-07 09:49:57 +00:00
|
|
|
brcmf_err("brcmu_pktq_penq() failed\n");
|
2011-10-05 11:19:03 +00:00
|
|
|
|
|
|
|
return p != NULL;
|
|
|
|
}
|
|
|
|
|
2012-10-22 17:36:25 +00:00
|
|
|
int brcmf_c_preinit_dcmds(struct brcmf_if *ifp)
|
2011-10-05 11:19:03 +00:00
|
|
|
{
|
2012-10-22 17:36:25 +00:00
|
|
|
s8 eventmask[BRCMF_EVENTING_MASK_LEN];
|
|
|
|
u8 buf[BRCMF_DCMD_SMLEN];
|
2014-05-12 08:47:26 +00:00
|
|
|
struct brcmf_join_pref_params join_pref_params[2];
|
2012-10-22 17:36:25 +00:00
|
|
|
char *ptr;
|
|
|
|
s32 err;
|
2011-10-05 11:19:03 +00:00
|
|
|
|
2012-10-22 17:36:25 +00:00
|
|
|
/* retreive mac address */
|
|
|
|
err = brcmf_fil_iovar_data_get(ifp, "cur_etheraddr", ifp->mac_addr,
|
|
|
|
sizeof(ifp->mac_addr));
|
|
|
|
if (err < 0) {
|
2012-12-07 09:49:57 +00:00
|
|
|
brcmf_err("Retreiving cur_etheraddr failed, %d\n",
|
2012-10-22 17:36:25 +00:00
|
|
|
err);
|
|
|
|
goto done;
|
2011-10-05 11:19:03 +00:00
|
|
|
}
|
2012-10-22 17:36:25 +00:00
|
|
|
memcpy(ifp->drvr->mac, ifp->mac_addr, sizeof(ifp->drvr->mac));
|
2011-10-05 11:19:03 +00:00
|
|
|
|
|
|
|
/* query for 'ver' to get version info from firmware */
|
|
|
|
memset(buf, 0, sizeof(buf));
|
2012-10-22 17:36:25 +00:00
|
|
|
strcpy(buf, "ver");
|
|
|
|
err = brcmf_fil_iovar_data_get(ifp, "ver", buf, sizeof(buf));
|
|
|
|
if (err < 0) {
|
2012-12-07 09:49:57 +00:00
|
|
|
brcmf_err("Retreiving version information failed, %d\n",
|
2012-10-22 17:36:25 +00:00
|
|
|
err);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
ptr = (char *)buf;
|
2011-10-05 11:19:03 +00:00
|
|
|
strsep(&ptr, "\n");
|
2013-11-29 11:25:17 +00:00
|
|
|
|
2011-10-05 11:19:03 +00:00
|
|
|
/* Print fw version info */
|
2012-12-07 09:49:57 +00:00
|
|
|
brcmf_err("Firmware version = %s\n", buf);
|
2011-10-05 11:19:03 +00:00
|
|
|
|
2013-11-29 11:25:17 +00:00
|
|
|
/* locate firmware version number for ethtool */
|
|
|
|
ptr = strrchr(buf, ' ') + 1;
|
|
|
|
strlcpy(ifp->drvr->fwver, ptr, sizeof(ifp->drvr->fwver));
|
|
|
|
|
2014-06-21 10:11:18 +00:00
|
|
|
/* set mpc */
|
|
|
|
err = brcmf_fil_iovar_int_set(ifp, "mpc", 1);
|
|
|
|
if (err) {
|
|
|
|
brcmf_err("failed setting mpc\n");
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2012-10-22 17:36:25 +00:00
|
|
|
/*
|
|
|
|
* Setup timeout if Beacons are lost and roam is off to report
|
|
|
|
* link down
|
|
|
|
*/
|
|
|
|
err = brcmf_fil_iovar_int_set(ifp, "bcn_timeout",
|
|
|
|
BRCMF_DEFAULT_BCN_TIMEOUT);
|
|
|
|
if (err) {
|
2012-12-07 09:49:57 +00:00
|
|
|
brcmf_err("bcn_timeout error (%d)\n", err);
|
2012-10-22 17:36:25 +00:00
|
|
|
goto done;
|
|
|
|
}
|
2011-10-05 11:19:03 +00:00
|
|
|
|
|
|
|
/* Enable/Disable build-in roaming to allowed ext supplicant to take
|
2012-10-22 17:36:25 +00:00
|
|
|
* of romaing
|
|
|
|
*/
|
|
|
|
err = brcmf_fil_iovar_int_set(ifp, "roam_off", 1);
|
|
|
|
if (err) {
|
2012-12-07 09:49:57 +00:00
|
|
|
brcmf_err("roam_off error (%d)\n", err);
|
2012-10-22 17:36:25 +00:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2014-05-12 08:47:26 +00:00
|
|
|
/* Setup join_pref to select target by RSSI(with boost on 5GHz) */
|
|
|
|
join_pref_params[0].type = BRCMF_JOIN_PREF_RSSI_DELTA;
|
|
|
|
join_pref_params[0].len = 2;
|
|
|
|
join_pref_params[0].rssi_gain = BRCMF_JOIN_PREF_RSSI_BOOST;
|
|
|
|
join_pref_params[0].band = WLC_BAND_5G;
|
|
|
|
join_pref_params[1].type = BRCMF_JOIN_PREF_RSSI;
|
|
|
|
join_pref_params[1].len = 2;
|
|
|
|
join_pref_params[1].rssi_gain = 0;
|
|
|
|
join_pref_params[1].band = 0;
|
|
|
|
err = brcmf_fil_iovar_data_set(ifp, "join_pref", join_pref_params,
|
|
|
|
sizeof(join_pref_params));
|
|
|
|
if (err)
|
|
|
|
brcmf_err("Set join_pref error (%d)\n", err);
|
|
|
|
|
2012-10-22 17:36:25 +00:00
|
|
|
/* Setup event_msgs, enable E_IF */
|
|
|
|
err = brcmf_fil_iovar_data_get(ifp, "event_msgs", eventmask,
|
|
|
|
BRCMF_EVENTING_MASK_LEN);
|
|
|
|
if (err) {
|
2012-12-07 09:49:57 +00:00
|
|
|
brcmf_err("Get event_msgs error (%d)\n", err);
|
2012-10-22 17:36:25 +00:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
setbit(eventmask, BRCMF_E_IF);
|
|
|
|
err = brcmf_fil_iovar_data_set(ifp, "event_msgs", eventmask,
|
|
|
|
BRCMF_EVENTING_MASK_LEN);
|
|
|
|
if (err) {
|
2012-12-07 09:49:57 +00:00
|
|
|
brcmf_err("Set event_msgs error (%d)\n", err);
|
2012-10-22 17:36:25 +00:00
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Setup default scan channel time */
|
|
|
|
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_SCAN_CHANNEL_TIME,
|
|
|
|
BRCMF_DEFAULT_SCAN_CHANNEL_TIME);
|
|
|
|
if (err) {
|
2012-12-07 09:49:57 +00:00
|
|
|
brcmf_err("BRCMF_C_SET_SCAN_CHANNEL_TIME error (%d)\n",
|
2012-10-22 17:36:25 +00:00
|
|
|
err);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
|
|
|
/* Setup default scan unassoc time */
|
|
|
|
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_SCAN_UNASSOC_TIME,
|
|
|
|
BRCMF_DEFAULT_SCAN_UNASSOC_TIME);
|
|
|
|
if (err) {
|
2012-12-07 09:49:57 +00:00
|
|
|
brcmf_err("BRCMF_C_SET_SCAN_UNASSOC_TIME error (%d)\n",
|
2012-10-22 17:36:25 +00:00
|
|
|
err);
|
|
|
|
goto done;
|
|
|
|
}
|
|
|
|
|
2013-11-29 10:48:15 +00:00
|
|
|
/* do bus specific preinit here */
|
|
|
|
err = brcmf_bus_preinit(ifp->drvr->bus_if);
|
2012-10-22 17:36:25 +00:00
|
|
|
done:
|
|
|
|
return err;
|
2011-10-05 11:19:03 +00:00
|
|
|
}
|
2013-03-03 11:45:21 +00:00
|
|
|
|
|
|
|
#if defined(CONFIG_BRCM_TRACING) || defined(CONFIG_BRCMDBG)
|
|
|
|
void __brcmf_dbg(u32 level, const char *func, const char *fmt, ...)
|
|
|
|
{
|
|
|
|
struct va_format vaf = {
|
|
|
|
.fmt = fmt,
|
|
|
|
};
|
|
|
|
va_list args;
|
|
|
|
|
|
|
|
va_start(args, fmt);
|
|
|
|
vaf.va = &args;
|
|
|
|
if (brcmf_msg_level & level)
|
|
|
|
pr_debug("%s %pV", func, &vaf);
|
|
|
|
trace_brcmf_dbg(level, func, &vaf);
|
|
|
|
va_end(args);
|
|
|
|
}
|
|
|
|
#endif
|