Commit 3ef005b8 authored by Rafał Miłecki's avatar Rafał Miłecki Committed by Kalle Valo

brcmfmac: add bphy_err() and use it in the cfg80211.c

This new macro uses wiphy_err() which:
1) Should be the best choice with wiphy already created
2) Uses dev_err() which allows identifying error-affected device
Signed-off-by: default avatarRafał Miłecki <rafal@milecki.pl>
Signed-off-by: default avatarKalle Valo <kvalo@codeaurora.org>
parent 8602e624
...@@ -457,6 +457,7 @@ static void convert_key_from_CPU(struct brcmf_wsec_key *key, ...@@ -457,6 +457,7 @@ static void convert_key_from_CPU(struct brcmf_wsec_key *key,
static int static int
send_key_to_dongle(struct brcmf_if *ifp, struct brcmf_wsec_key *key) send_key_to_dongle(struct brcmf_if *ifp, struct brcmf_wsec_key *key)
{ {
struct wiphy *wiphy = ifp->drvr->wiphy;
int err; int err;
struct brcmf_wsec_key_le key_le; struct brcmf_wsec_key_le key_le;
...@@ -468,7 +469,7 @@ send_key_to_dongle(struct brcmf_if *ifp, struct brcmf_wsec_key *key) ...@@ -468,7 +469,7 @@ send_key_to_dongle(struct brcmf_if *ifp, struct brcmf_wsec_key *key)
sizeof(key_le)); sizeof(key_le));
if (err) if (err)
brcmf_err("wsec_key error (%d)\n", err); bphy_err(wiphy, "wsec_key error (%d)\n", err);
return err; return err;
} }
...@@ -508,6 +509,7 @@ static int brcmf_get_first_free_bsscfgidx(struct brcmf_pub *drvr) ...@@ -508,6 +509,7 @@ static int brcmf_get_first_free_bsscfgidx(struct brcmf_pub *drvr)
static int brcmf_cfg80211_request_ap_if(struct brcmf_if *ifp) static int brcmf_cfg80211_request_ap_if(struct brcmf_if *ifp)
{ {
struct wiphy *wiphy = ifp->drvr->wiphy;
struct brcmf_mbss_ssid_le mbss_ssid_le; struct brcmf_mbss_ssid_le mbss_ssid_le;
int bsscfgidx; int bsscfgidx;
int err; int err;
...@@ -524,7 +526,7 @@ static int brcmf_cfg80211_request_ap_if(struct brcmf_if *ifp) ...@@ -524,7 +526,7 @@ static int brcmf_cfg80211_request_ap_if(struct brcmf_if *ifp)
err = brcmf_fil_bsscfg_data_set(ifp, "bsscfg:ssid", &mbss_ssid_le, err = brcmf_fil_bsscfg_data_set(ifp, "bsscfg:ssid", &mbss_ssid_le,
sizeof(mbss_ssid_le)); sizeof(mbss_ssid_le));
if (err < 0) if (err < 0)
brcmf_err("setting ssid failed %d\n", err); bphy_err(wiphy, "setting ssid failed %d\n", err);
return err; return err;
} }
...@@ -567,7 +569,7 @@ struct wireless_dev *brcmf_ap_add_vif(struct wiphy *wiphy, const char *name, ...@@ -567,7 +569,7 @@ struct wireless_dev *brcmf_ap_add_vif(struct wiphy *wiphy, const char *name,
BRCMF_VIF_EVENT_TIMEOUT); BRCMF_VIF_EVENT_TIMEOUT);
brcmf_cfg80211_arm_vif_event(cfg, NULL); brcmf_cfg80211_arm_vif_event(cfg, NULL);
if (!err) { if (!err) {
brcmf_err("timeout occurred\n"); bphy_err(wiphy, "timeout occurred\n");
err = -EIO; err = -EIO;
goto fail; goto fail;
} }
...@@ -575,7 +577,7 @@ struct wireless_dev *brcmf_ap_add_vif(struct wiphy *wiphy, const char *name, ...@@ -575,7 +577,7 @@ struct wireless_dev *brcmf_ap_add_vif(struct wiphy *wiphy, const char *name,
/* interface created in firmware */ /* interface created in firmware */
ifp = vif->ifp; ifp = vif->ifp;
if (!ifp) { if (!ifp) {
brcmf_err("no if pointer provided\n"); bphy_err(wiphy, "no if pointer provided\n");
err = -ENOENT; err = -ENOENT;
goto fail; goto fail;
} }
...@@ -583,7 +585,7 @@ struct wireless_dev *brcmf_ap_add_vif(struct wiphy *wiphy, const char *name, ...@@ -583,7 +585,7 @@ struct wireless_dev *brcmf_ap_add_vif(struct wiphy *wiphy, const char *name,
strncpy(ifp->ndev->name, name, sizeof(ifp->ndev->name) - 1); strncpy(ifp->ndev->name, name, sizeof(ifp->ndev->name) - 1);
err = brcmf_net_attach(ifp, true); err = brcmf_net_attach(ifp, true);
if (err) { if (err) {
brcmf_err("Registering netdevice failed\n"); bphy_err(wiphy, "Registering netdevice failed\n");
free_netdev(ifp->ndev); free_netdev(ifp->ndev);
goto fail; goto fail;
} }
...@@ -620,7 +622,7 @@ static struct wireless_dev *brcmf_cfg80211_add_iface(struct wiphy *wiphy, ...@@ -620,7 +622,7 @@ static struct wireless_dev *brcmf_cfg80211_add_iface(struct wiphy *wiphy,
brcmf_dbg(TRACE, "enter: %s type %d\n", name, type); brcmf_dbg(TRACE, "enter: %s type %d\n", name, type);
err = brcmf_vif_add_validate(wiphy_to_cfg(wiphy), type); err = brcmf_vif_add_validate(wiphy_to_cfg(wiphy), type);
if (err) { if (err) {
brcmf_err("iface validation failed: err=%d\n", err); bphy_err(wiphy, "iface validation failed: err=%d\n", err);
return ERR_PTR(err); return ERR_PTR(err);
} }
switch (type) { switch (type) {
...@@ -645,8 +647,8 @@ static struct wireless_dev *brcmf_cfg80211_add_iface(struct wiphy *wiphy, ...@@ -645,8 +647,8 @@ static struct wireless_dev *brcmf_cfg80211_add_iface(struct wiphy *wiphy,
} }
if (IS_ERR(wdev)) if (IS_ERR(wdev))
brcmf_err("add iface %s type %d failed: err=%d\n", bphy_err(wiphy, "add iface %s type %d failed: err=%d\n", name,
name, type, (int)PTR_ERR(wdev)); type, (int)PTR_ERR(wdev));
else else
brcmf_cfg80211_update_proto_addr_mode(wdev); brcmf_cfg80211_update_proto_addr_mode(wdev);
...@@ -661,12 +663,13 @@ static void brcmf_scan_config_mpc(struct brcmf_if *ifp, int mpc) ...@@ -661,12 +663,13 @@ static void brcmf_scan_config_mpc(struct brcmf_if *ifp, int mpc)
void brcmf_set_mpc(struct brcmf_if *ifp, int mpc) void brcmf_set_mpc(struct brcmf_if *ifp, int mpc)
{ {
struct wiphy *wiphy = ifp->drvr->wiphy;
s32 err = 0; s32 err = 0;
if (check_vif_up(ifp->vif)) { if (check_vif_up(ifp->vif)) {
err = brcmf_fil_iovar_int_set(ifp, "mpc", mpc); err = brcmf_fil_iovar_int_set(ifp, "mpc", mpc);
if (err) { if (err) {
brcmf_err("fail to set mpc\n"); bphy_err(wiphy, "fail to set mpc\n");
return; return;
} }
brcmf_dbg(INFO, "MPC : %d\n", mpc); brcmf_dbg(INFO, "MPC : %d\n", mpc);
...@@ -677,6 +680,7 @@ s32 brcmf_notify_escan_complete(struct brcmf_cfg80211_info *cfg, ...@@ -677,6 +680,7 @@ s32 brcmf_notify_escan_complete(struct brcmf_cfg80211_info *cfg,
struct brcmf_if *ifp, bool aborted, struct brcmf_if *ifp, bool aborted,
bool fw_abort) bool fw_abort)
{ {
struct wiphy *wiphy = cfg_to_wiphy(cfg);
struct brcmf_scan_params_le params_le; struct brcmf_scan_params_le params_le;
struct cfg80211_scan_request *scan_request; struct cfg80211_scan_request *scan_request;
u64 reqid; u64 reqid;
...@@ -711,7 +715,7 @@ s32 brcmf_notify_escan_complete(struct brcmf_cfg80211_info *cfg, ...@@ -711,7 +715,7 @@ s32 brcmf_notify_escan_complete(struct brcmf_cfg80211_info *cfg,
err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SCAN, err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SCAN,
&params_le, sizeof(params_le)); &params_le, sizeof(params_le));
if (err) if (err)
brcmf_err("Scan abort failed\n"); bphy_err(wiphy, "Scan abort failed\n");
} }
brcmf_scan_config_mpc(ifp, 1); brcmf_scan_config_mpc(ifp, 1);
...@@ -763,7 +767,7 @@ static int brcmf_cfg80211_del_ap_iface(struct wiphy *wiphy, ...@@ -763,7 +767,7 @@ static int brcmf_cfg80211_del_ap_iface(struct wiphy *wiphy,
err = brcmf_fil_bsscfg_data_set(ifp, "interface_remove", NULL, 0); err = brcmf_fil_bsscfg_data_set(ifp, "interface_remove", NULL, 0);
if (err) { if (err) {
brcmf_err("interface_remove failed %d\n", err); bphy_err(wiphy, "interface_remove failed %d\n", err);
goto err_unarm; goto err_unarm;
} }
...@@ -771,7 +775,7 @@ static int brcmf_cfg80211_del_ap_iface(struct wiphy *wiphy, ...@@ -771,7 +775,7 @@ static int brcmf_cfg80211_del_ap_iface(struct wiphy *wiphy,
ret = brcmf_cfg80211_wait_vif_event(cfg, BRCMF_E_IF_DEL, ret = brcmf_cfg80211_wait_vif_event(cfg, BRCMF_E_IF_DEL,
BRCMF_VIF_EVENT_TIMEOUT); BRCMF_VIF_EVENT_TIMEOUT);
if (!ret) { if (!ret) {
brcmf_err("timeout occurred\n"); bphy_err(wiphy, "timeout occurred\n");
err = -EIO; err = -EIO;
goto err_unarm; goto err_unarm;
} }
...@@ -873,13 +877,13 @@ brcmf_cfg80211_change_iface(struct wiphy *wiphy, struct net_device *ndev, ...@@ -873,13 +877,13 @@ brcmf_cfg80211_change_iface(struct wiphy *wiphy, struct net_device *ndev,
} }
err = brcmf_vif_change_validate(wiphy_to_cfg(wiphy), vif, type); err = brcmf_vif_change_validate(wiphy_to_cfg(wiphy), vif, type);
if (err) { if (err) {
brcmf_err("iface validation failed: err=%d\n", err); bphy_err(wiphy, "iface validation failed: err=%d\n", err);
return err; return err;
} }
switch (type) { switch (type) {
case NL80211_IFTYPE_MONITOR: case NL80211_IFTYPE_MONITOR:
case NL80211_IFTYPE_WDS: case NL80211_IFTYPE_WDS:
brcmf_err("type (%d) : currently we do not support this type\n", bphy_err(wiphy, "type (%d) : currently we do not support this type\n",
type); type);
return -EOPNOTSUPP; return -EOPNOTSUPP;
case NL80211_IFTYPE_ADHOC: case NL80211_IFTYPE_ADHOC:
...@@ -908,7 +912,7 @@ brcmf_cfg80211_change_iface(struct wiphy *wiphy, struct net_device *ndev, ...@@ -908,7 +912,7 @@ brcmf_cfg80211_change_iface(struct wiphy *wiphy, struct net_device *ndev,
} else { } else {
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_INFRA, infra); err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_INFRA, infra);
if (err) { if (err) {
brcmf_err("WLC_SET_INFRA error (%d)\n", err); bphy_err(wiphy, "WLC_SET_INFRA error (%d)\n", err);
err = -EAGAIN; err = -EAGAIN;
goto done; goto done;
} }
...@@ -999,6 +1003,7 @@ static s32 ...@@ -999,6 +1003,7 @@ static s32
brcmf_run_escan(struct brcmf_cfg80211_info *cfg, struct brcmf_if *ifp, brcmf_run_escan(struct brcmf_cfg80211_info *cfg, struct brcmf_if *ifp,
struct cfg80211_scan_request *request) struct cfg80211_scan_request *request)
{ {
struct wiphy *wiphy = cfg_to_wiphy(cfg);
s32 params_size = BRCMF_SCAN_PARAMS_FIXED_SIZE + s32 params_size = BRCMF_SCAN_PARAMS_FIXED_SIZE +
offsetof(struct brcmf_escan_params_le, params_le); offsetof(struct brcmf_escan_params_le, params_le);
struct brcmf_escan_params_le *params; struct brcmf_escan_params_le *params;
...@@ -1030,7 +1035,7 @@ brcmf_run_escan(struct brcmf_cfg80211_info *cfg, struct brcmf_if *ifp, ...@@ -1030,7 +1035,7 @@ brcmf_run_escan(struct brcmf_cfg80211_info *cfg, struct brcmf_if *ifp,
if (err == -EBUSY) if (err == -EBUSY)
brcmf_dbg(INFO, "system busy : escan canceled\n"); brcmf_dbg(INFO, "system busy : escan canceled\n");
else else
brcmf_err("error (%d)\n", err); bphy_err(wiphy, "error (%d)\n", err);
} }
kfree(params); kfree(params);
...@@ -1076,21 +1081,22 @@ brcmf_cfg80211_scan(struct wiphy *wiphy, struct cfg80211_scan_request *request) ...@@ -1076,21 +1081,22 @@ brcmf_cfg80211_scan(struct wiphy *wiphy, struct cfg80211_scan_request *request)
return -EIO; return -EIO;
if (test_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status)) { if (test_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status)) {
brcmf_err("Scanning already: status (%lu)\n", cfg->scan_status); bphy_err(wiphy, "Scanning already: status (%lu)\n",
cfg->scan_status);
return -EAGAIN; return -EAGAIN;
} }
if (test_bit(BRCMF_SCAN_STATUS_ABORT, &cfg->scan_status)) { if (test_bit(BRCMF_SCAN_STATUS_ABORT, &cfg->scan_status)) {
brcmf_err("Scanning being aborted: status (%lu)\n", bphy_err(wiphy, "Scanning being aborted: status (%lu)\n",
cfg->scan_status); cfg->scan_status);
return -EAGAIN; return -EAGAIN;
} }
if (test_bit(BRCMF_SCAN_STATUS_SUPPRESS, &cfg->scan_status)) { if (test_bit(BRCMF_SCAN_STATUS_SUPPRESS, &cfg->scan_status)) {
brcmf_err("Scanning suppressed: status (%lu)\n", bphy_err(wiphy, "Scanning suppressed: status (%lu)\n",
cfg->scan_status); cfg->scan_status);
return -EAGAIN; return -EAGAIN;
} }
if (test_bit(BRCMF_VIF_STATUS_CONNECTING, &vif->sme_state)) { if (test_bit(BRCMF_VIF_STATUS_CONNECTING, &vif->sme_state)) {
brcmf_err("Connecting: status (%lu)\n", vif->sme_state); bphy_err(wiphy, "Connecting: status (%lu)\n", vif->sme_state);
return -EAGAIN; return -EAGAIN;
} }
...@@ -1124,7 +1130,7 @@ brcmf_cfg80211_scan(struct wiphy *wiphy, struct cfg80211_scan_request *request) ...@@ -1124,7 +1130,7 @@ brcmf_cfg80211_scan(struct wiphy *wiphy, struct cfg80211_scan_request *request)
return 0; return 0;
scan_out: scan_out:
brcmf_err("scan error (%d)\n", err); bphy_err(wiphy, "scan error (%d)\n", err);
clear_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status); clear_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status);
cfg->scan_request = NULL; cfg->scan_request = NULL;
return err; return err;
...@@ -1132,36 +1138,41 @@ brcmf_cfg80211_scan(struct wiphy *wiphy, struct cfg80211_scan_request *request) ...@@ -1132,36 +1138,41 @@ brcmf_cfg80211_scan(struct wiphy *wiphy, struct cfg80211_scan_request *request)
static s32 brcmf_set_rts(struct net_device *ndev, u32 rts_threshold) static s32 brcmf_set_rts(struct net_device *ndev, u32 rts_threshold)
{ {
struct brcmf_if *ifp = netdev_priv(ndev);
struct wiphy *wiphy = ifp->drvr->wiphy;
s32 err = 0; s32 err = 0;
err = brcmf_fil_iovar_int_set(netdev_priv(ndev), "rtsthresh", err = brcmf_fil_iovar_int_set(ifp, "rtsthresh", rts_threshold);
rts_threshold);
if (err) if (err)
brcmf_err("Error (%d)\n", err); bphy_err(wiphy, "Error (%d)\n", err);
return err; return err;
} }
static s32 brcmf_set_frag(struct net_device *ndev, u32 frag_threshold) static s32 brcmf_set_frag(struct net_device *ndev, u32 frag_threshold)
{ {
struct brcmf_if *ifp = netdev_priv(ndev);
struct wiphy *wiphy = ifp->drvr->wiphy;
s32 err = 0; s32 err = 0;
err = brcmf_fil_iovar_int_set(netdev_priv(ndev), "fragthresh", err = brcmf_fil_iovar_int_set(ifp, "fragthresh",
frag_threshold); frag_threshold);
if (err) if (err)
brcmf_err("Error (%d)\n", err); bphy_err(wiphy, "Error (%d)\n", err);
return err; return err;
} }
static s32 brcmf_set_retry(struct net_device *ndev, u32 retry, bool l) static s32 brcmf_set_retry(struct net_device *ndev, u32 retry, bool l)
{ {
struct brcmf_if *ifp = netdev_priv(ndev);
struct wiphy *wiphy = ifp->drvr->wiphy;
s32 err = 0; s32 err = 0;
u32 cmd = (l ? BRCMF_C_SET_LRL : BRCMF_C_SET_SRL); u32 cmd = (l ? BRCMF_C_SET_LRL : BRCMF_C_SET_SRL);
err = brcmf_fil_cmd_int_set(netdev_priv(ndev), cmd, retry); err = brcmf_fil_cmd_int_set(ifp, cmd, retry);
if (err) { if (err) {
brcmf_err("cmd (%d) , error (%d)\n", cmd, err); bphy_err(wiphy, "cmd (%d) , error (%d)\n", cmd, err);
return err; return err;
} }
return err; return err;
...@@ -1237,6 +1248,7 @@ static u16 brcmf_map_fw_linkdown_reason(const struct brcmf_event_msg *e) ...@@ -1237,6 +1248,7 @@ static u16 brcmf_map_fw_linkdown_reason(const struct brcmf_event_msg *e)
static int brcmf_set_pmk(struct brcmf_if *ifp, const u8 *pmk_data, u16 pmk_len) static int brcmf_set_pmk(struct brcmf_if *ifp, const u8 *pmk_data, u16 pmk_len)
{ {
struct wiphy *wiphy = ifp->drvr->wiphy;
struct brcmf_wsec_pmk_le pmk; struct brcmf_wsec_pmk_le pmk;
int i, err; int i, err;
...@@ -1250,7 +1262,7 @@ static int brcmf_set_pmk(struct brcmf_if *ifp, const u8 *pmk_data, u16 pmk_len) ...@@ -1250,7 +1262,7 @@ static int brcmf_set_pmk(struct brcmf_if *ifp, const u8 *pmk_data, u16 pmk_len)
err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_WSEC_PMK, err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_WSEC_PMK,
&pmk, sizeof(pmk)); &pmk, sizeof(pmk));
if (err < 0) if (err < 0)
brcmf_err("failed to change PSK in firmware (len=%u)\n", bphy_err(wiphy, "failed to change PSK in firmware (len=%u)\n",
pmk_len); pmk_len);
return err; return err;
...@@ -1259,6 +1271,7 @@ static int brcmf_set_pmk(struct brcmf_if *ifp, const u8 *pmk_data, u16 pmk_len) ...@@ -1259,6 +1271,7 @@ static int brcmf_set_pmk(struct brcmf_if *ifp, const u8 *pmk_data, u16 pmk_len)
static void brcmf_link_down(struct brcmf_cfg80211_vif *vif, u16 reason) static void brcmf_link_down(struct brcmf_cfg80211_vif *vif, u16 reason)
{ {
struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(vif->wdev.wiphy); struct brcmf_cfg80211_info *cfg = wiphy_to_cfg(vif->wdev.wiphy);
struct wiphy *wiphy = cfg_to_wiphy(cfg);
s32 err = 0; s32 err = 0;
brcmf_dbg(TRACE, "Enter\n"); brcmf_dbg(TRACE, "Enter\n");
...@@ -1268,7 +1281,7 @@ static void brcmf_link_down(struct brcmf_cfg80211_vif *vif, u16 reason) ...@@ -1268,7 +1281,7 @@ static void brcmf_link_down(struct brcmf_cfg80211_vif *vif, u16 reason)
err = brcmf_fil_cmd_data_set(vif->ifp, err = brcmf_fil_cmd_data_set(vif->ifp,
BRCMF_C_DISASSOC, NULL, 0); BRCMF_C_DISASSOC, NULL, 0);
if (err) { if (err) {
brcmf_err("WLC_DISASSOC failed (%d)\n", err); bphy_err(wiphy, "WLC_DISASSOC failed (%d)\n", err);
} }
if ((vif->wdev.iftype == NL80211_IFTYPE_STATION) || if ((vif->wdev.iftype == NL80211_IFTYPE_STATION) ||
(vif->wdev.iftype == NL80211_IFTYPE_P2P_CLIENT)) (vif->wdev.iftype == NL80211_IFTYPE_P2P_CLIENT))
...@@ -1356,7 +1369,7 @@ brcmf_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *ndev, ...@@ -1356,7 +1369,7 @@ brcmf_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_iovar_int_set(ifp, "wsec", wsec); err = brcmf_fil_iovar_int_set(ifp, "wsec", wsec);
if (err) { if (err) {
brcmf_err("wsec failed (%d)\n", err); bphy_err(wiphy, "wsec failed (%d)\n", err);
goto done; goto done;
} }
...@@ -1368,7 +1381,7 @@ brcmf_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *ndev, ...@@ -1368,7 +1381,7 @@ brcmf_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_BCNPRD, bcnprd); err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_BCNPRD, bcnprd);
if (err) { if (err) {
brcmf_err("WLC_SET_BCNPRD failed (%d)\n", err); bphy_err(wiphy, "WLC_SET_BCNPRD failed (%d)\n", err);
goto done; goto done;
} }
...@@ -1413,7 +1426,7 @@ brcmf_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *ndev, ...@@ -1413,7 +1426,7 @@ brcmf_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_CHANNEL, err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_CHANNEL,
target_channel); target_channel);
if (err) { if (err) {
brcmf_err("WLC_SET_CHANNEL failed (%d)\n", err); bphy_err(wiphy, "WLC_SET_CHANNEL failed (%d)\n", err);
goto done; goto done;
} }
} else } else
...@@ -1425,7 +1438,7 @@ brcmf_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *ndev, ...@@ -1425,7 +1438,7 @@ brcmf_cfg80211_join_ibss(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_SSID, err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_SSID,
&join_params, join_params_size); &join_params, join_params_size);
if (err) { if (err) {
brcmf_err("WLC_SET_SSID failed (%d)\n", err); bphy_err(wiphy, "WLC_SET_SSID failed (%d)\n", err);
goto done; goto done;
} }
...@@ -1461,6 +1474,8 @@ brcmf_cfg80211_leave_ibss(struct wiphy *wiphy, struct net_device *ndev) ...@@ -1461,6 +1474,8 @@ brcmf_cfg80211_leave_ibss(struct wiphy *wiphy, struct net_device *ndev)
static s32 brcmf_set_wpa_version(struct net_device *ndev, static s32 brcmf_set_wpa_version(struct net_device *ndev,
struct cfg80211_connect_params *sme) struct cfg80211_connect_params *sme)
{ {
struct brcmf_if *ifp = netdev_priv(ndev);
struct wiphy *wiphy = ifp->drvr->wiphy;
struct brcmf_cfg80211_profile *profile = ndev_to_prof(ndev); struct brcmf_cfg80211_profile *profile = ndev_to_prof(ndev);
struct brcmf_cfg80211_security *sec; struct brcmf_cfg80211_security *sec;
s32 val = 0; s32 val = 0;
...@@ -1473,9 +1488,9 @@ static s32 brcmf_set_wpa_version(struct net_device *ndev, ...@@ -1473,9 +1488,9 @@ static s32 brcmf_set_wpa_version(struct net_device *ndev,
else else
val = WPA_AUTH_DISABLED; val = WPA_AUTH_DISABLED;
brcmf_dbg(CONN, "setting wpa_auth to 0x%0x\n", val); brcmf_dbg(CONN, "setting wpa_auth to 0x%0x\n", val);
err = brcmf_fil_bsscfg_int_set(netdev_priv(ndev), "wpa_auth", val); err = brcmf_fil_bsscfg_int_set(ifp, "wpa_auth", val);
if (err) { if (err) {
brcmf_err("set wpa_auth failed (%d)\n", err); bphy_err(wiphy, "set wpa_auth failed (%d)\n", err);
return err; return err;
} }
sec = &profile->sec; sec = &profile->sec;
...@@ -1486,6 +1501,8 @@ static s32 brcmf_set_wpa_version(struct net_device *ndev, ...@@ -1486,6 +1501,8 @@ static s32 brcmf_set_wpa_version(struct net_device *ndev,
static s32 brcmf_set_auth_type(struct net_device *ndev, static s32 brcmf_set_auth_type(struct net_device *ndev,
struct cfg80211_connect_params *sme) struct cfg80211_connect_params *sme)
{ {
struct brcmf_if *ifp = netdev_priv(ndev);
struct wiphy *wiphy = ifp->drvr->wiphy;
struct brcmf_cfg80211_profile *profile = ndev_to_prof(ndev); struct brcmf_cfg80211_profile *profile = ndev_to_prof(ndev);
struct brcmf_cfg80211_security *sec; struct brcmf_cfg80211_security *sec;
s32 val = 0; s32 val = 0;
...@@ -1506,9 +1523,9 @@ static s32 brcmf_set_auth_type(struct net_device *ndev, ...@@ -1506,9 +1523,9 @@ static s32 brcmf_set_auth_type(struct net_device *ndev,
break; break;
} }
err = brcmf_fil_bsscfg_int_set(netdev_priv(ndev), "auth", val); err = brcmf_fil_bsscfg_int_set(ifp, "auth", val);
if (err) { if (err) {
brcmf_err("set auth failed (%d)\n", err); bphy_err(wiphy, "set auth failed (%d)\n", err);
return err; return err;
} }
sec = &profile->sec; sec = &profile->sec;
...@@ -1520,6 +1537,8 @@ static s32 ...@@ -1520,6 +1537,8 @@ static s32
brcmf_set_wsec_mode(struct net_device *ndev, brcmf_set_wsec_mode(struct net_device *ndev,
struct cfg80211_connect_params *sme) struct cfg80211_connect_params *sme)
{ {
struct brcmf_if *ifp = netdev_priv(ndev);
struct wiphy *wiphy = ifp->drvr->wiphy;
struct brcmf_cfg80211_profile *profile = ndev_to_prof(ndev); struct brcmf_cfg80211_profile *profile = ndev_to_prof(ndev);
struct brcmf_cfg80211_security *sec; struct brcmf_cfg80211_security *sec;
s32 pval = 0; s32 pval = 0;
...@@ -1543,7 +1562,7 @@ brcmf_set_wsec_mode(struct net_device *ndev, ...@@ -1543,7 +1562,7 @@ brcmf_set_wsec_mode(struct net_device *ndev,
pval = AES_ENABLED; pval = AES_ENABLED;
break; break;
default: default:
brcmf_err("invalid cipher pairwise (%d)\n", bphy_err(wiphy, "invalid cipher pairwise (%d)\n",
sme->crypto.ciphers_pairwise[0]); sme->crypto.ciphers_pairwise[0]);
return -EINVAL; return -EINVAL;
} }
...@@ -1564,7 +1583,7 @@ brcmf_set_wsec_mode(struct net_device *ndev, ...@@ -1564,7 +1583,7 @@ brcmf_set_wsec_mode(struct net_device *ndev,
gval = AES_ENABLED; gval = AES_ENABLED;
break; break;
default: default:
brcmf_err("invalid cipher group (%d)\n", bphy_err(wiphy, "invalid cipher group (%d)\n",
sme->crypto.cipher_group); sme->crypto.cipher_group);
return -EINVAL; return -EINVAL;
} }
...@@ -1578,9 +1597,9 @@ brcmf_set_wsec_mode(struct net_device *ndev, ...@@ -1578,9 +1597,9 @@ brcmf_set_wsec_mode(struct net_device *ndev,
pval = AES_ENABLED; pval = AES_ENABLED;
wsec = pval | gval; wsec = pval | gval;
err = brcmf_fil_bsscfg_int_set(netdev_priv(ndev), "wsec", wsec); err = brcmf_fil_bsscfg_int_set(ifp, "wsec", wsec);
if (err) { if (err) {
brcmf_err("error (%d)\n", err); bphy_err(wiphy, "error (%d)\n", err);
return err; return err;
} }
...@@ -1595,6 +1614,7 @@ static s32 ...@@ -1595,6 +1614,7 @@ static s32
brcmf_set_key_mgmt(struct net_device *ndev, struct cfg80211_connect_params *sme) brcmf_set_key_mgmt(struct net_device *ndev, struct cfg80211_connect_params *sme)
{ {
struct brcmf_if *ifp = netdev_priv(ndev); struct brcmf_if *ifp = netdev_priv(ndev);
struct wiphy *wiphy = ifp->drvr->wiphy;
struct brcmf_cfg80211_profile *profile = &ifp->vif->profile; struct brcmf_cfg80211_profile *profile = &ifp->vif->profile;
s32 val; s32 val;
s32 err; s32 err;
...@@ -1613,7 +1633,7 @@ brcmf_set_key_mgmt(struct net_device *ndev, struct cfg80211_connect_params *sme) ...@@ -1613,7 +1633,7 @@ brcmf_set_key_mgmt(struct net_device *ndev, struct cfg80211_connect_params *sme)
err = brcmf_fil_bsscfg_int_get(netdev_priv(ndev), "wpa_auth", &val); err = brcmf_fil_bsscfg_int_get(netdev_priv(ndev), "wpa_auth", &val);
if (err) { if (err) {
brcmf_err("could not get wpa_auth (%d)\n", err); bphy_err(wiphy, "could not get wpa_auth (%d)\n", err);
return err; return err;
} }
if (val & (WPA_AUTH_PSK | WPA_AUTH_UNSPECIFIED)) { if (val & (WPA_AUTH_PSK | WPA_AUTH_UNSPECIFIED)) {
...@@ -1627,7 +1647,7 @@ brcmf_set_key_mgmt(struct net_device *ndev, struct cfg80211_connect_params *sme) ...@@ -1627,7 +1647,7 @@ brcmf_set_key_mgmt(struct net_device *ndev, struct cfg80211_connect_params *sme)
val = WPA_AUTH_PSK; val = WPA_AUTH_PSK;
break; break;
default: default:
brcmf_err("invalid cipher group (%d)\n", bphy_err(wiphy, "invalid cipher group (%d)\n",
sme->crypto.cipher_group); sme->crypto.cipher_group);
return -EINVAL; return -EINVAL;
} }
...@@ -1658,7 +1678,7 @@ brcmf_set_key_mgmt(struct net_device *ndev, struct cfg80211_connect_params *sme) ...@@ -1658,7 +1678,7 @@ brcmf_set_key_mgmt(struct net_device *ndev, struct cfg80211_connect_params *sme)
val = WPA2_AUTH_PSK | WPA2_AUTH_FT; val = WPA2_AUTH_PSK | WPA2_AUTH_FT;
break; break;
default: default:
brcmf_err("invalid cipher group (%d)\n", bphy_err(wiphy, "invalid cipher group (%d)\n",
sme->crypto.cipher_group); sme->crypto.cipher_group);
return -EINVAL; return -EINVAL;
} }
...@@ -1705,7 +1725,7 @@ brcmf_set_key_mgmt(struct net_device *ndev, struct cfg80211_connect_params *sme) ...@@ -1705,7 +1725,7 @@ brcmf_set_key_mgmt(struct net_device *ndev, struct cfg80211_connect_params *sme)
brcmf_dbg(CONN, "setting wpa_auth to %d\n", val); brcmf_dbg(CONN, "setting wpa_auth to %d\n", val);
err = brcmf_fil_bsscfg_int_set(netdev_priv(ndev), "wpa_auth", val); err = brcmf_fil_bsscfg_int_set(netdev_priv(ndev), "wpa_auth", val);
if (err) { if (err) {
brcmf_err("could not set wpa_auth (%d)\n", err); bphy_err(wiphy, "could not set wpa_auth (%d)\n", err);
return err; return err;
} }
...@@ -1716,6 +1736,8 @@ static s32 ...@@ -1716,6 +1736,8 @@ static s32
brcmf_set_sharedkey(struct net_device *ndev, brcmf_set_sharedkey(struct net_device *ndev,
struct cfg80211_connect_params *sme) struct cfg80211_connect_params *sme)
{ {
struct brcmf_if *ifp = netdev_priv(ndev);
struct wiphy *wiphy = ifp->drvr->wiphy;
struct brcmf_cfg80211_profile *profile = ndev_to_prof(ndev); struct brcmf_cfg80211_profile *profile = ndev_to_prof(ndev);
struct brcmf_cfg80211_security *sec; struct brcmf_cfg80211_security *sec;
struct brcmf_wsec_key key; struct brcmf_wsec_key key;
...@@ -1742,7 +1764,7 @@ brcmf_set_sharedkey(struct net_device *ndev, ...@@ -1742,7 +1764,7 @@ brcmf_set_sharedkey(struct net_device *ndev,
key.len = (u32) sme->key_len; key.len = (u32) sme->key_len;
key.index = (u32) sme->key_idx; key.index = (u32) sme->key_idx;
if (key.len > sizeof(key.data)) { if (key.len > sizeof(key.data)) {
brcmf_err("Too long key length (%u)\n", key.len); bphy_err(wiphy, "Too long key length (%u)\n", key.len);
return -EINVAL; return -EINVAL;
} }
memcpy(key.data, sme->key, key.len); memcpy(key.data, sme->key, key.len);
...@@ -1755,7 +1777,7 @@ brcmf_set_sharedkey(struct net_device *ndev, ...@@ -1755,7 +1777,7 @@ brcmf_set_sharedkey(struct net_device *ndev,
key.algo = CRYPTO_ALGO_WEP128; key.algo = CRYPTO_ALGO_WEP128;
break; break;
default: default:
brcmf_err("Invalid algorithm (%d)\n", bphy_err(wiphy, "Invalid algorithm (%d)\n",
sme->crypto.ciphers_pairwise[0]); sme->crypto.ciphers_pairwise[0]);
return -EINVAL; return -EINVAL;
} }
...@@ -1763,16 +1785,16 @@ brcmf_set_sharedkey(struct net_device *ndev, ...@@ -1763,16 +1785,16 @@ brcmf_set_sharedkey(struct net_device *ndev,
brcmf_dbg(CONN, "key length (%d) key index (%d) algo (%d)\n", brcmf_dbg(CONN, "key length (%d) key index (%d) algo (%d)\n",
key.len, key.index, key.algo); key.len, key.index, key.algo);
brcmf_dbg(CONN, "key \"%s\"\n", key.data); brcmf_dbg(CONN, "key \"%s\"\n", key.data);
err = send_key_to_dongle(netdev_priv(ndev), &key); err = send_key_to_dongle(ifp, &key);
if (err) if (err)
return err; return err;
if (sec->auth_type == NL80211_AUTHTYPE_SHARED_KEY) { if (sec->auth_type == NL80211_AUTHTYPE_SHARED_KEY) {
brcmf_dbg(CONN, "set auth_type to shared key\n"); brcmf_dbg(CONN, "set auth_type to shared key\n");
val = WL_AUTH_SHARED_KEY; /* shared key */ val = WL_AUTH_SHARED_KEY; /* shared key */
err = brcmf_fil_bsscfg_int_set(netdev_priv(ndev), "auth", val); err = brcmf_fil_bsscfg_int_set(ifp, "auth", val);
if (err) if (err)
brcmf_err("set auth failed (%d)\n", err); bphy_err(wiphy, "set auth failed (%d)\n", err);
} }
return err; return err;
} }
...@@ -1792,6 +1814,7 @@ enum nl80211_auth_type brcmf_war_auth_type(struct brcmf_if *ifp, ...@@ -1792,6 +1814,7 @@ enum nl80211_auth_type brcmf_war_auth_type(struct brcmf_if *ifp,
static void brcmf_set_join_pref(struct brcmf_if *ifp, static void brcmf_set_join_pref(struct brcmf_if *ifp,
struct cfg80211_bss_selection *bss_select) struct cfg80211_bss_selection *bss_select)
{ {
struct wiphy *wiphy = ifp->drvr->wiphy;
struct brcmf_join_pref_params join_pref_params[2]; struct brcmf_join_pref_params join_pref_params[2];
enum nl80211_band band; enum nl80211_band band;
int err, i = 0; int err, i = 0;
...@@ -1830,7 +1853,7 @@ static void brcmf_set_join_pref(struct brcmf_if *ifp, ...@@ -1830,7 +1853,7 @@ static void brcmf_set_join_pref(struct brcmf_if *ifp,
err = brcmf_fil_iovar_data_set(ifp, "join_pref", join_pref_params, err = brcmf_fil_iovar_data_set(ifp, "join_pref", join_pref_params,
sizeof(join_pref_params)); sizeof(join_pref_params));
if (err) if (err)
brcmf_err("Set join_pref error (%d)\n", err); bphy_err(wiphy, "Set join_pref error (%d)\n", err);
} }
static s32 static s32
...@@ -1857,7 +1880,7 @@ brcmf_cfg80211_connect(struct wiphy *wiphy, struct net_device *ndev, ...@@ -1857,7 +1880,7 @@ brcmf_cfg80211_connect(struct wiphy *wiphy, struct net_device *ndev,
return -EIO; return -EIO;
if (!sme->ssid) { if (!sme->ssid) {
brcmf_err("Invalid ssid\n"); bphy_err(wiphy, "Invalid ssid\n");
return -EOPNOTSUPP; return -EOPNOTSUPP;
} }
...@@ -1886,7 +1909,7 @@ brcmf_cfg80211_connect(struct wiphy *wiphy, struct net_device *ndev, ...@@ -1886,7 +1909,7 @@ brcmf_cfg80211_connect(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_vif_set_mgmt_ie(ifp->vif, BRCMF_VNDR_IE_ASSOCREQ_FLAG, err = brcmf_vif_set_mgmt_ie(ifp->vif, BRCMF_VNDR_IE_ASSOCREQ_FLAG,
sme->ie, sme->ie_len); sme->ie, sme->ie_len);
if (err) if (err)
brcmf_err("Set Assoc REQ IE Failed\n"); bphy_err(wiphy, "Set Assoc REQ IE Failed\n");
else else
brcmf_dbg(TRACE, "Applied Vndr IEs for Assoc request\n"); brcmf_dbg(TRACE, "Applied Vndr IEs for Assoc request\n");
...@@ -1907,32 +1930,32 @@ brcmf_cfg80211_connect(struct wiphy *wiphy, struct net_device *ndev, ...@@ -1907,32 +1930,32 @@ brcmf_cfg80211_connect(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_set_wpa_version(ndev, sme); err = brcmf_set_wpa_version(ndev, sme);
if (err) { if (err) {
brcmf_err("wl_set_wpa_version failed (%d)\n", err); bphy_err(wiphy, "wl_set_wpa_version failed (%d)\n", err);
goto done; goto done;
} }
sme->auth_type = brcmf_war_auth_type(ifp, sme->auth_type); sme->auth_type = brcmf_war_auth_type(ifp, sme->auth_type);
err = brcmf_set_auth_type(ndev, sme); err = brcmf_set_auth_type(ndev, sme);
if (err) { if (err) {
brcmf_err("wl_set_auth_type failed (%d)\n", err); bphy_err(wiphy, "wl_set_auth_type failed (%d)\n", err);
goto done; goto done;
} }
err = brcmf_set_wsec_mode(ndev, sme); err = brcmf_set_wsec_mode(ndev, sme);
if (err) { if (err) {
brcmf_err("wl_set_set_cipher failed (%d)\n", err); bphy_err(wiphy, "wl_set_set_cipher failed (%d)\n", err);
goto done; goto done;
} }
err = brcmf_set_key_mgmt(ndev, sme); err = brcmf_set_key_mgmt(ndev, sme);
if (err) { if (err) {
brcmf_err("wl_set_key_mgmt failed (%d)\n", err); bphy_err(wiphy, "wl_set_key_mgmt failed (%d)\n", err);
goto done; goto done;
} }
err = brcmf_set_sharedkey(ndev, sme); err = brcmf_set_sharedkey(ndev, sme);
if (err) { if (err) {
brcmf_err("brcmf_set_sharedkey failed (%d)\n", err); bphy_err(wiphy, "brcmf_set_sharedkey failed (%d)\n", err);
goto done; goto done;
} }
...@@ -1949,7 +1972,7 @@ brcmf_cfg80211_connect(struct wiphy *wiphy, struct net_device *ndev, ...@@ -1949,7 +1972,7 @@ brcmf_cfg80211_connect(struct wiphy *wiphy, struct net_device *ndev,
/* enable firmware supplicant for this interface */ /* enable firmware supplicant for this interface */
err = brcmf_fil_iovar_int_set(ifp, "sup_wpa", 1); err = brcmf_fil_iovar_int_set(ifp, "sup_wpa", 1);
if (err < 0) { if (err < 0) {
brcmf_err("failed to enable fw supplicant\n"); bphy_err(wiphy, "failed to enable fw supplicant\n");
goto done; goto done;
} }
} }
...@@ -2044,7 +2067,7 @@ brcmf_cfg80211_connect(struct wiphy *wiphy, struct net_device *ndev, ...@@ -2044,7 +2067,7 @@ brcmf_cfg80211_connect(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_SSID, err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_SSID,
&join_params, join_params_size); &join_params, join_params_size);
if (err) if (err)
brcmf_err("BRCMF_C_SET_SSID failed (%d)\n", err); bphy_err(wiphy, "BRCMF_C_SET_SSID failed (%d)\n", err);
done: done:
if (err) if (err)
...@@ -2075,7 +2098,7 @@ brcmf_cfg80211_disconnect(struct wiphy *wiphy, struct net_device *ndev, ...@@ -2075,7 +2098,7 @@ brcmf_cfg80211_disconnect(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_DISASSOC, err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_DISASSOC,
&scbval, sizeof(scbval)); &scbval, sizeof(scbval));
if (err) if (err)
brcmf_err("error (%d)\n", err); bphy_err(wiphy, "error (%d)\n", err);
brcmf_dbg(TRACE, "Exit\n"); brcmf_dbg(TRACE, "Exit\n");
return err; return err;
...@@ -2102,7 +2125,7 @@ brcmf_cfg80211_set_tx_power(struct wiphy *wiphy, struct wireless_dev *wdev, ...@@ -2102,7 +2125,7 @@ brcmf_cfg80211_set_tx_power(struct wiphy *wiphy, struct wireless_dev *wdev,
case NL80211_TX_POWER_LIMITED: case NL80211_TX_POWER_LIMITED:
case NL80211_TX_POWER_FIXED: case NL80211_TX_POWER_FIXED:
if (mbm < 0) { if (mbm < 0) {
brcmf_err("TX_POWER_FIXED - dbm is negative\n"); bphy_err(wiphy, "TX_POWER_FIXED - dbm is negative\n");
err = -EINVAL; err = -EINVAL;
goto done; goto done;
} }
...@@ -2112,7 +2135,7 @@ brcmf_cfg80211_set_tx_power(struct wiphy *wiphy, struct wireless_dev *wdev, ...@@ -2112,7 +2135,7 @@ brcmf_cfg80211_set_tx_power(struct wiphy *wiphy, struct wireless_dev *wdev,
qdbm |= WL_TXPWR_OVERRIDE; qdbm |= WL_TXPWR_OVERRIDE;
break; break;
default: default:
brcmf_err("Unsupported type %d\n", type); bphy_err(wiphy, "Unsupported type %d\n", type);
err = -EINVAL; err = -EINVAL;
goto done; goto done;
} }
...@@ -2120,11 +2143,11 @@ brcmf_cfg80211_set_tx_power(struct wiphy *wiphy, struct wireless_dev *wdev, ...@@ -2120,11 +2143,11 @@ brcmf_cfg80211_set_tx_power(struct wiphy *wiphy, struct wireless_dev *wdev,
disable = WL_RADIO_SW_DISABLE << 16; disable = WL_RADIO_SW_DISABLE << 16;
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_RADIO, disable); err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_RADIO, disable);
if (err) if (err)
brcmf_err("WLC_SET_RADIO error (%d)\n", err); bphy_err(wiphy, "WLC_SET_RADIO error (%d)\n", err);
err = brcmf_fil_iovar_int_set(ifp, "qtxpower", qdbm); err = brcmf_fil_iovar_int_set(ifp, "qtxpower", qdbm);
if (err) if (err)
brcmf_err("qtxpower error (%d)\n", err); bphy_err(wiphy, "qtxpower error (%d)\n", err);
done: done:
brcmf_dbg(TRACE, "Exit %d (qdbm)\n", qdbm & ~WL_TXPWR_OVERRIDE); brcmf_dbg(TRACE, "Exit %d (qdbm)\n", qdbm & ~WL_TXPWR_OVERRIDE);
...@@ -2145,7 +2168,7 @@ brcmf_cfg80211_get_tx_power(struct wiphy *wiphy, struct wireless_dev *wdev, ...@@ -2145,7 +2168,7 @@ brcmf_cfg80211_get_tx_power(struct wiphy *wiphy, struct wireless_dev *wdev,
err = brcmf_fil_iovar_int_get(vif->ifp, "qtxpower", &qdbm); err = brcmf_fil_iovar_int_get(vif->ifp, "qtxpower", &qdbm);
if (err) { if (err) {
brcmf_err("error (%d)\n", err); bphy_err(wiphy, "error (%d)\n", err);
goto done; goto done;
} }
*dbm = (qdbm & ~WL_TXPWR_OVERRIDE) / 4; *dbm = (qdbm & ~WL_TXPWR_OVERRIDE) / 4;
...@@ -2171,7 +2194,7 @@ brcmf_cfg80211_config_default_key(struct wiphy *wiphy, struct net_device *ndev, ...@@ -2171,7 +2194,7 @@ brcmf_cfg80211_config_default_key(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_bsscfg_int_get(ifp, "wsec", &wsec); err = brcmf_fil_bsscfg_int_get(ifp, "wsec", &wsec);
if (err) { if (err) {
brcmf_err("WLC_GET_WSEC error (%d)\n", err); bphy_err(wiphy, "WLC_GET_WSEC error (%d)\n", err);
goto done; goto done;
} }
...@@ -2181,7 +2204,7 @@ brcmf_cfg80211_config_default_key(struct wiphy *wiphy, struct net_device *ndev, ...@@ -2181,7 +2204,7 @@ brcmf_cfg80211_config_default_key(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_cmd_int_set(ifp, err = brcmf_fil_cmd_int_set(ifp,
BRCMF_C_SET_KEY_PRIMARY, index); BRCMF_C_SET_KEY_PRIMARY, index);
if (err) if (err)
brcmf_err("error (%d)\n", err); bphy_err(wiphy, "error (%d)\n", err);
} }
done: done:
brcmf_dbg(TRACE, "Exit\n"); brcmf_dbg(TRACE, "Exit\n");
...@@ -2245,7 +2268,7 @@ brcmf_cfg80211_add_key(struct wiphy *wiphy, struct net_device *ndev, ...@@ -2245,7 +2268,7 @@ brcmf_cfg80211_add_key(struct wiphy *wiphy, struct net_device *ndev,
if (key_idx >= BRCMF_MAX_DEFAULT_KEYS) { if (key_idx >= BRCMF_MAX_DEFAULT_KEYS) {
/* we ignore this key index in this case */ /* we ignore this key index in this case */
brcmf_err("invalid key index (%d)\n", key_idx); bphy_err(wiphy, "invalid key index (%d)\n", key_idx);
return -EINVAL; return -EINVAL;
} }
...@@ -2254,7 +2277,7 @@ brcmf_cfg80211_add_key(struct wiphy *wiphy, struct net_device *ndev, ...@@ -2254,7 +2277,7 @@ brcmf_cfg80211_add_key(struct wiphy *wiphy, struct net_device *ndev,
mac_addr); mac_addr);
if (params->key_len > sizeof(key->data)) { if (params->key_len > sizeof(key->data)) {
brcmf_err("Too long key length (%u)\n", params->key_len); bphy_err(wiphy, "Too long key length (%u)\n", params->key_len);
return -EINVAL; return -EINVAL;
} }
...@@ -2308,7 +2331,7 @@ brcmf_cfg80211_add_key(struct wiphy *wiphy, struct net_device *ndev, ...@@ -2308,7 +2331,7 @@ brcmf_cfg80211_add_key(struct wiphy *wiphy, struct net_device *ndev,
brcmf_dbg(CONN, "WLAN_CIPHER_SUITE_CCMP\n"); brcmf_dbg(CONN, "WLAN_CIPHER_SUITE_CCMP\n");
break; break;
default: default:
brcmf_err("Invalid cipher (0x%x)\n", params->cipher); bphy_err(wiphy, "Invalid cipher (0x%x)\n", params->cipher);
err = -EINVAL; err = -EINVAL;
goto done; goto done;
} }
...@@ -2319,13 +2342,13 @@ brcmf_cfg80211_add_key(struct wiphy *wiphy, struct net_device *ndev, ...@@ -2319,13 +2342,13 @@ brcmf_cfg80211_add_key(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_bsscfg_int_get(ifp, "wsec", &wsec); err = brcmf_fil_bsscfg_int_get(ifp, "wsec", &wsec);
if (err) { if (err) {
brcmf_err("get wsec error (%d)\n", err); bphy_err(wiphy, "get wsec error (%d)\n", err);
goto done; goto done;
} }
wsec |= val; wsec |= val;
err = brcmf_fil_bsscfg_int_set(ifp, "wsec", wsec); err = brcmf_fil_bsscfg_int_set(ifp, "wsec", wsec);
if (err) { if (err) {
brcmf_err("set wsec error (%d)\n", err); bphy_err(wiphy, "set wsec error (%d)\n", err);
goto done; goto done;
} }
...@@ -2356,7 +2379,7 @@ brcmf_cfg80211_get_key(struct wiphy *wiphy, struct net_device *ndev, u8 key_idx, ...@@ -2356,7 +2379,7 @@ brcmf_cfg80211_get_key(struct wiphy *wiphy, struct net_device *ndev, u8 key_idx,
err = brcmf_fil_bsscfg_int_get(ifp, "wsec", &wsec); err = brcmf_fil_bsscfg_int_get(ifp, "wsec", &wsec);
if (err) { if (err) {
brcmf_err("WLC_GET_WSEC error (%d)\n", err); bphy_err(wiphy, "WLC_GET_WSEC error (%d)\n", err);
/* Ignore this error, may happen during DISASSOC */ /* Ignore this error, may happen during DISASSOC */
err = -EAGAIN; err = -EAGAIN;
goto done; goto done;
...@@ -2377,7 +2400,7 @@ brcmf_cfg80211_get_key(struct wiphy *wiphy, struct net_device *ndev, u8 key_idx, ...@@ -2377,7 +2400,7 @@ brcmf_cfg80211_get_key(struct wiphy *wiphy, struct net_device *ndev, u8 key_idx,
params.cipher = WLAN_CIPHER_SUITE_AES_CMAC; params.cipher = WLAN_CIPHER_SUITE_AES_CMAC;
brcmf_dbg(CONN, "WLAN_CIPHER_SUITE_AES_CMAC\n"); brcmf_dbg(CONN, "WLAN_CIPHER_SUITE_AES_CMAC\n");
} else { } else {
brcmf_err("Invalid algo (0x%x)\n", wsec); bphy_err(wiphy, "Invalid algo (0x%x)\n", wsec);
err = -EINVAL; err = -EINVAL;
goto done; goto done;
} }
...@@ -2407,6 +2430,7 @@ brcmf_cfg80211_config_default_mgmt_key(struct wiphy *wiphy, ...@@ -2407,6 +2430,7 @@ brcmf_cfg80211_config_default_mgmt_key(struct wiphy *wiphy,
static void static void
brcmf_cfg80211_reconfigure_wep(struct brcmf_if *ifp) brcmf_cfg80211_reconfigure_wep(struct brcmf_if *ifp)
{ {
struct wiphy *wiphy = ifp->drvr->wiphy;
s32 err; s32 err;
u8 key_idx; u8 key_idx;
struct brcmf_wsec_key *key; struct brcmf_wsec_key *key;
...@@ -2423,18 +2447,18 @@ brcmf_cfg80211_reconfigure_wep(struct brcmf_if *ifp) ...@@ -2423,18 +2447,18 @@ brcmf_cfg80211_reconfigure_wep(struct brcmf_if *ifp)
err = send_key_to_dongle(ifp, key); err = send_key_to_dongle(ifp, key);
if (err) { if (err) {
brcmf_err("Setting WEP key failed (%d)\n", err); bphy_err(wiphy, "Setting WEP key failed (%d)\n", err);
return; return;
} }
err = brcmf_fil_bsscfg_int_get(ifp, "wsec", &wsec); err = brcmf_fil_bsscfg_int_get(ifp, "wsec", &wsec);
if (err) { if (err) {
brcmf_err("get wsec error (%d)\n", err); bphy_err(wiphy, "get wsec error (%d)\n", err);
return; return;
} }
wsec |= WEP_ENABLED; wsec |= WEP_ENABLED;
err = brcmf_fil_bsscfg_int_set(ifp, "wsec", wsec); err = brcmf_fil_bsscfg_int_set(ifp, "wsec", wsec);
if (err) if (err)
brcmf_err("set wsec error (%d)\n", err); bphy_err(wiphy, "set wsec error (%d)\n", err);
} }
static void brcmf_convert_sta_flags(u32 fw_sta_flags, struct station_info *si) static void brcmf_convert_sta_flags(u32 fw_sta_flags, struct station_info *si)
...@@ -2460,6 +2484,7 @@ static void brcmf_convert_sta_flags(u32 fw_sta_flags, struct station_info *si) ...@@ -2460,6 +2484,7 @@ static void brcmf_convert_sta_flags(u32 fw_sta_flags, struct station_info *si)
static void brcmf_fill_bss_param(struct brcmf_if *ifp, struct station_info *si) static void brcmf_fill_bss_param(struct brcmf_if *ifp, struct station_info *si)
{ {
struct wiphy *wiphy = ifp->drvr->wiphy;
struct { struct {
__le32 len; __le32 len;
struct brcmf_bss_info_le bss_le; struct brcmf_bss_info_le bss_le;
...@@ -2475,7 +2500,7 @@ static void brcmf_fill_bss_param(struct brcmf_if *ifp, struct station_info *si) ...@@ -2475,7 +2500,7 @@ static void brcmf_fill_bss_param(struct brcmf_if *ifp, struct station_info *si)
err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_BSS_INFO, buf, err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_BSS_INFO, buf,
WL_BSS_INFO_MAX); WL_BSS_INFO_MAX);
if (err) { if (err) {
brcmf_err("Failed to get bss info (%d)\n", err); bphy_err(wiphy, "Failed to get bss info (%d)\n", err);
goto out_kfree; goto out_kfree;
} }
si->filled |= BIT_ULL(NL80211_STA_INFO_BSS_PARAM); si->filled |= BIT_ULL(NL80211_STA_INFO_BSS_PARAM);
...@@ -2497,6 +2522,7 @@ static s32 ...@@ -2497,6 +2522,7 @@ static s32
brcmf_cfg80211_get_station_ibss(struct brcmf_if *ifp, brcmf_cfg80211_get_station_ibss(struct brcmf_if *ifp,
struct station_info *sinfo) struct station_info *sinfo)
{ {
struct wiphy *wiphy = ifp->drvr->wiphy;
struct brcmf_scb_val_le scbval; struct brcmf_scb_val_le scbval;
struct brcmf_pktcnt_le pktcnt; struct brcmf_pktcnt_le pktcnt;
s32 err; s32 err;
...@@ -2506,7 +2532,7 @@ brcmf_cfg80211_get_station_ibss(struct brcmf_if *ifp, ...@@ -2506,7 +2532,7 @@ brcmf_cfg80211_get_station_ibss(struct brcmf_if *ifp,
/* Get the current tx rate */ /* Get the current tx rate */
err = brcmf_fil_cmd_int_get(ifp, BRCMF_C_GET_RATE, &rate); err = brcmf_fil_cmd_int_get(ifp, BRCMF_C_GET_RATE, &rate);
if (err < 0) { if (err < 0) {
brcmf_err("BRCMF_C_GET_RATE error (%d)\n", err); bphy_err(wiphy, "BRCMF_C_GET_RATE error (%d)\n", err);
return err; return err;
} }
sinfo->filled |= BIT_ULL(NL80211_STA_INFO_TX_BITRATE); sinfo->filled |= BIT_ULL(NL80211_STA_INFO_TX_BITRATE);
...@@ -2516,7 +2542,7 @@ brcmf_cfg80211_get_station_ibss(struct brcmf_if *ifp, ...@@ -2516,7 +2542,7 @@ brcmf_cfg80211_get_station_ibss(struct brcmf_if *ifp,
err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_RSSI, &scbval, err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_RSSI, &scbval,
sizeof(scbval)); sizeof(scbval));
if (err) { if (err) {
brcmf_err("BRCMF_C_GET_RSSI error (%d)\n", err); bphy_err(wiphy, "BRCMF_C_GET_RSSI error (%d)\n", err);
return err; return err;
} }
rssi = le32_to_cpu(scbval.val); rssi = le32_to_cpu(scbval.val);
...@@ -2526,7 +2552,7 @@ brcmf_cfg80211_get_station_ibss(struct brcmf_if *ifp, ...@@ -2526,7 +2552,7 @@ brcmf_cfg80211_get_station_ibss(struct brcmf_if *ifp,
err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_GET_PKTCNTS, &pktcnt, err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_GET_PKTCNTS, &pktcnt,
sizeof(pktcnt)); sizeof(pktcnt));
if (err) { if (err) {
brcmf_err("BRCMF_C_GET_GET_PKTCNTS error (%d)\n", err); bphy_err(wiphy, "BRCMF_C_GET_GET_PKTCNTS error (%d)\n", err);
return err; return err;
} }
sinfo->filled |= BIT_ULL(NL80211_STA_INFO_RX_PACKETS) | sinfo->filled |= BIT_ULL(NL80211_STA_INFO_RX_PACKETS) |
...@@ -2574,7 +2600,7 @@ brcmf_cfg80211_get_station(struct wiphy *wiphy, struct net_device *ndev, ...@@ -2574,7 +2600,7 @@ brcmf_cfg80211_get_station(struct wiphy *wiphy, struct net_device *ndev,
&sta_info_le, &sta_info_le,
sizeof(sta_info_le)); sizeof(sta_info_le));
if (err < 0) { if (err < 0) {
brcmf_err("GET STA INFO failed, %d\n", err); bphy_err(wiphy, "GET STA INFO failed, %d\n", err);
goto done; goto done;
} }
} }
...@@ -2643,7 +2669,8 @@ brcmf_cfg80211_get_station(struct wiphy *wiphy, struct net_device *ndev, ...@@ -2643,7 +2669,8 @@ brcmf_cfg80211_get_station(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_RSSI, err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_RSSI,
&scb_val, sizeof(scb_val)); &scb_val, sizeof(scb_val));
if (err) { if (err) {
brcmf_err("Could not get rssi (%d)\n", err); bphy_err(wiphy, "Could not get rssi (%d)\n",
err);
goto done; goto done;
} else { } else {
rssi = le32_to_cpu(scb_val.val); rssi = le32_to_cpu(scb_val.val);
...@@ -2674,7 +2701,7 @@ brcmf_cfg80211_dump_station(struct wiphy *wiphy, struct net_device *ndev, ...@@ -2674,7 +2701,7 @@ brcmf_cfg80211_dump_station(struct wiphy *wiphy, struct net_device *ndev,
&cfg->assoclist, &cfg->assoclist,
sizeof(cfg->assoclist)); sizeof(cfg->assoclist));
if (err) { if (err) {
brcmf_err("BRCMF_C_GET_ASSOCLIST unsupported, err=%d\n", bphy_err(wiphy, "BRCMF_C_GET_ASSOCLIST unsupported, err=%d\n",
err); err);
cfg->assoclist.count = 0; cfg->assoclist.count = 0;
return -EOPNOTSUPP; return -EOPNOTSUPP;
...@@ -2723,9 +2750,9 @@ brcmf_cfg80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *ndev, ...@@ -2723,9 +2750,9 @@ brcmf_cfg80211_set_power_mgmt(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_PM, pm); err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_PM, pm);
if (err) { if (err) {
if (err == -ENODEV) if (err == -ENODEV)
brcmf_err("net_device is not ready yet\n"); bphy_err(wiphy, "net_device is not ready yet\n");
else else
brcmf_err("error (%d)\n", err); bphy_err(wiphy, "error (%d)\n", err);
} }
done: done:
brcmf_dbg(TRACE, "Exit\n"); brcmf_dbg(TRACE, "Exit\n");
...@@ -2748,7 +2775,7 @@ static s32 brcmf_inform_single_bss(struct brcmf_cfg80211_info *cfg, ...@@ -2748,7 +2775,7 @@ static s32 brcmf_inform_single_bss(struct brcmf_cfg80211_info *cfg,
struct cfg80211_inform_bss bss_data = {}; struct cfg80211_inform_bss bss_data = {};
if (le32_to_cpu(bi->length) > WL_BSS_INFO_MAX) { if (le32_to_cpu(bi->length) > WL_BSS_INFO_MAX) {
brcmf_err("Bss info is larger than buffer. Discarding\n"); bphy_err(wiphy, "Bss info is larger than buffer. Discarding\n");
return 0; return 0;
} }
...@@ -2807,6 +2834,7 @@ next_bss_le(struct brcmf_scan_results *list, struct brcmf_bss_info_le *bss) ...@@ -2807,6 +2834,7 @@ next_bss_le(struct brcmf_scan_results *list, struct brcmf_bss_info_le *bss)
static s32 brcmf_inform_bss(struct brcmf_cfg80211_info *cfg) static s32 brcmf_inform_bss(struct brcmf_cfg80211_info *cfg)
{ {
struct wiphy *wiphy = cfg_to_wiphy(cfg);
struct brcmf_scan_results *bss_list; struct brcmf_scan_results *bss_list;
struct brcmf_bss_info_le *bi = NULL; /* must be initialized */ struct brcmf_bss_info_le *bi = NULL; /* must be initialized */
s32 err = 0; s32 err = 0;
...@@ -2815,7 +2843,7 @@ static s32 brcmf_inform_bss(struct brcmf_cfg80211_info *cfg) ...@@ -2815,7 +2843,7 @@ static s32 brcmf_inform_bss(struct brcmf_cfg80211_info *cfg)
bss_list = (struct brcmf_scan_results *)cfg->escan_info.escan_buf; bss_list = (struct brcmf_scan_results *)cfg->escan_info.escan_buf;
if (bss_list->count != 0 && if (bss_list->count != 0 &&
bss_list->version != BRCMF_BSS_INFO_VERSION) { bss_list->version != BRCMF_BSS_INFO_VERSION) {
brcmf_err("Version %d != WL_BSS_INFO_VERSION\n", bphy_err(wiphy, "Version %d != WL_BSS_INFO_VERSION\n",
bss_list->version); bss_list->version);
return -EOPNOTSUPP; return -EOPNOTSUPP;
} }
...@@ -2860,7 +2888,7 @@ static s32 brcmf_inform_ibss(struct brcmf_cfg80211_info *cfg, ...@@ -2860,7 +2888,7 @@ static s32 brcmf_inform_ibss(struct brcmf_cfg80211_info *cfg,
err = brcmf_fil_cmd_data_get(netdev_priv(ndev), BRCMF_C_GET_BSS_INFO, err = brcmf_fil_cmd_data_get(netdev_priv(ndev), BRCMF_C_GET_BSS_INFO,
buf, WL_BSS_INFO_MAX); buf, WL_BSS_INFO_MAX);
if (err) { if (err) {
brcmf_err("WLC_GET_BSS_INFO failed: %d\n", err); bphy_err(wiphy, "WLC_GET_BSS_INFO failed: %d\n", err);
goto CleanUp; goto CleanUp;
} }
...@@ -2914,6 +2942,7 @@ static s32 brcmf_inform_ibss(struct brcmf_cfg80211_info *cfg, ...@@ -2914,6 +2942,7 @@ static s32 brcmf_inform_ibss(struct brcmf_cfg80211_info *cfg,
static s32 brcmf_update_bss_info(struct brcmf_cfg80211_info *cfg, static s32 brcmf_update_bss_info(struct brcmf_cfg80211_info *cfg,
struct brcmf_if *ifp) struct brcmf_if *ifp)
{ {
struct wiphy *wiphy = cfg_to_wiphy(cfg);
struct brcmf_bss_info_le *bi; struct brcmf_bss_info_le *bi;
const struct brcmf_tlv *tim; const struct brcmf_tlv *tim;
u16 beacon_interval; u16 beacon_interval;
...@@ -2930,7 +2959,7 @@ static s32 brcmf_update_bss_info(struct brcmf_cfg80211_info *cfg, ...@@ -2930,7 +2959,7 @@ static s32 brcmf_update_bss_info(struct brcmf_cfg80211_info *cfg,
err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_BSS_INFO, err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_BSS_INFO,
cfg->extra_buf, WL_EXTRA_BUF_MAX); cfg->extra_buf, WL_EXTRA_BUF_MAX);
if (err) { if (err) {
brcmf_err("Could not get bss info %d\n", err); bphy_err(wiphy, "Could not get bss info %d\n", err);
goto update_bss_info_out; goto update_bss_info_out;
} }
...@@ -2955,7 +2984,7 @@ static s32 brcmf_update_bss_info(struct brcmf_cfg80211_info *cfg, ...@@ -2955,7 +2984,7 @@ static s32 brcmf_update_bss_info(struct brcmf_cfg80211_info *cfg,
u32 var; u32 var;
err = brcmf_fil_iovar_int_get(ifp, "dtim_assoc", &var); err = brcmf_fil_iovar_int_get(ifp, "dtim_assoc", &var);
if (err) { if (err) {
brcmf_err("wl dtim_assoc failed (%d)\n", err); bphy_err(wiphy, "wl dtim_assoc failed (%d)\n", err);
goto update_bss_info_out; goto update_bss_info_out;
} }
dtim_period = (u8)var; dtim_period = (u8)var;
...@@ -2993,9 +3022,10 @@ static void brcmf_escan_timeout(struct timer_list *t) ...@@ -2993,9 +3022,10 @@ static void brcmf_escan_timeout(struct timer_list *t)
{ {
struct brcmf_cfg80211_info *cfg = struct brcmf_cfg80211_info *cfg =
from_timer(cfg, t, escan_timeout); from_timer(cfg, t, escan_timeout);
struct wiphy *wiphy = cfg_to_wiphy(cfg);
if (cfg->int_escan_map || cfg->scan_request) { if (cfg->int_escan_map || cfg->scan_request) {
brcmf_err("timer expired\n"); bphy_err(wiphy, "timer expired\n");
schedule_work(&cfg->escan_timeout_work); schedule_work(&cfg->escan_timeout_work);
} }
} }
...@@ -3044,6 +3074,7 @@ brcmf_cfg80211_escan_handler(struct brcmf_if *ifp, ...@@ -3044,6 +3074,7 @@ brcmf_cfg80211_escan_handler(struct brcmf_if *ifp,
const struct brcmf_event_msg *e, void *data) const struct brcmf_event_msg *e, void *data)
{ {
struct brcmf_cfg80211_info *cfg = ifp->drvr->config; struct brcmf_cfg80211_info *cfg = ifp->drvr->config;
struct wiphy *wiphy = cfg_to_wiphy(cfg);
s32 status; s32 status;
struct brcmf_escan_result_le *escan_result_le; struct brcmf_escan_result_le *escan_result_le;
u32 escan_buflen; u32 escan_buflen;
...@@ -3060,31 +3091,32 @@ brcmf_cfg80211_escan_handler(struct brcmf_if *ifp, ...@@ -3060,31 +3091,32 @@ brcmf_cfg80211_escan_handler(struct brcmf_if *ifp,
goto exit; goto exit;
if (!test_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status)) { if (!test_bit(BRCMF_SCAN_STATUS_BUSY, &cfg->scan_status)) {
brcmf_err("scan not ready, bsscfgidx=%d\n", ifp->bsscfgidx); bphy_err(wiphy, "scan not ready, bsscfgidx=%d\n",
ifp->bsscfgidx);
return -EPERM; return -EPERM;
} }
if (status == BRCMF_E_STATUS_PARTIAL) { if (status == BRCMF_E_STATUS_PARTIAL) {
brcmf_dbg(SCAN, "ESCAN Partial result\n"); brcmf_dbg(SCAN, "ESCAN Partial result\n");
if (e->datalen < sizeof(*escan_result_le)) { if (e->datalen < sizeof(*escan_result_le)) {
brcmf_err("invalid event data length\n"); bphy_err(wiphy, "invalid event data length\n");
goto exit; goto exit;
} }
escan_result_le = (struct brcmf_escan_result_le *) data; escan_result_le = (struct brcmf_escan_result_le *) data;
if (!escan_result_le) { if (!escan_result_le) {
brcmf_err("Invalid escan result (NULL pointer)\n"); bphy_err(wiphy, "Invalid escan result (NULL pointer)\n");
goto exit; goto exit;
} }
escan_buflen = le32_to_cpu(escan_result_le->buflen); escan_buflen = le32_to_cpu(escan_result_le->buflen);
if (escan_buflen > BRCMF_ESCAN_BUF_SIZE || if (escan_buflen > BRCMF_ESCAN_BUF_SIZE ||
escan_buflen > e->datalen || escan_buflen > e->datalen ||
escan_buflen < sizeof(*escan_result_le)) { escan_buflen < sizeof(*escan_result_le)) {
brcmf_err("Invalid escan buffer length: %d\n", bphy_err(wiphy, "Invalid escan buffer length: %d\n",
escan_buflen); escan_buflen);
goto exit; goto exit;
} }
if (le16_to_cpu(escan_result_le->bss_count) != 1) { if (le16_to_cpu(escan_result_le->bss_count) != 1) {
brcmf_err("Invalid bss_count %d: ignoring\n", bphy_err(wiphy, "Invalid bss_count %d: ignoring\n",
escan_result_le->bss_count); escan_result_le->bss_count);
goto exit; goto exit;
} }
...@@ -3100,7 +3132,7 @@ brcmf_cfg80211_escan_handler(struct brcmf_if *ifp, ...@@ -3100,7 +3132,7 @@ brcmf_cfg80211_escan_handler(struct brcmf_if *ifp,
bi_length = le32_to_cpu(bss_info_le->length); bi_length = le32_to_cpu(bss_info_le->length);
if (bi_length != escan_buflen - WL_ESCAN_RESULTS_FIXED_SIZE) { if (bi_length != escan_buflen - WL_ESCAN_RESULTS_FIXED_SIZE) {
brcmf_err("Ignoring invalid bss_info length: %d\n", bphy_err(wiphy, "Ignoring invalid bss_info length: %d\n",
bi_length); bi_length);
goto exit; goto exit;
} }
...@@ -3109,7 +3141,7 @@ brcmf_cfg80211_escan_handler(struct brcmf_if *ifp, ...@@ -3109,7 +3141,7 @@ brcmf_cfg80211_escan_handler(struct brcmf_if *ifp,
BIT(NL80211_IFTYPE_ADHOC))) { BIT(NL80211_IFTYPE_ADHOC))) {
if (le16_to_cpu(bss_info_le->capability) & if (le16_to_cpu(bss_info_le->capability) &
WLAN_CAPABILITY_IBSS) { WLAN_CAPABILITY_IBSS) {
brcmf_err("Ignoring IBSS result\n"); bphy_err(wiphy, "Ignoring IBSS result\n");
goto exit; goto exit;
} }
} }
...@@ -3117,7 +3149,7 @@ brcmf_cfg80211_escan_handler(struct brcmf_if *ifp, ...@@ -3117,7 +3149,7 @@ brcmf_cfg80211_escan_handler(struct brcmf_if *ifp,
list = (struct brcmf_scan_results *) list = (struct brcmf_scan_results *)
cfg->escan_info.escan_buf; cfg->escan_info.escan_buf;
if (bi_length > BRCMF_ESCAN_BUF_SIZE - list->buflen) { if (bi_length > BRCMF_ESCAN_BUF_SIZE - list->buflen) {
brcmf_err("Buffer is too small: ignoring\n"); bphy_err(wiphy, "Buffer is too small: ignoring\n");
goto exit; goto exit;
} }
...@@ -3309,14 +3341,14 @@ brcmf_notify_sched_scan_results(struct brcmf_if *ifp, ...@@ -3309,14 +3341,14 @@ brcmf_notify_sched_scan_results(struct brcmf_if *ifp,
WARN_ON(status != BRCMF_PNO_SCAN_COMPLETE); WARN_ON(status != BRCMF_PNO_SCAN_COMPLETE);
brcmf_dbg(SCAN, "PFN NET FOUND event. count: %d\n", result_count); brcmf_dbg(SCAN, "PFN NET FOUND event. count: %d\n", result_count);
if (!result_count) { if (!result_count) {
brcmf_err("FALSE PNO Event. (pfn_count == 0)\n"); bphy_err(wiphy, "FALSE PNO Event. (pfn_count == 0)\n");
goto out_err; goto out_err;
} }
netinfo_start = brcmf_get_netinfo_array(pfn_result); netinfo_start = brcmf_get_netinfo_array(pfn_result);
datalen = e->datalen - ((void *)netinfo_start - (void *)pfn_result); datalen = e->datalen - ((void *)netinfo_start - (void *)pfn_result);
if (datalen < result_count * sizeof(*netinfo)) { if (datalen < result_count * sizeof(*netinfo)) {
brcmf_err("insufficient event data\n"); bphy_err(wiphy, "insufficient event data\n");
goto out_err; goto out_err;
} }
...@@ -3370,7 +3402,7 @@ brcmf_cfg80211_sched_scan_start(struct wiphy *wiphy, ...@@ -3370,7 +3402,7 @@ brcmf_cfg80211_sched_scan_start(struct wiphy *wiphy,
req->n_match_sets, req->n_ssids); req->n_match_sets, req->n_ssids);
if (test_bit(BRCMF_SCAN_STATUS_SUPPRESS, &cfg->scan_status)) { if (test_bit(BRCMF_SCAN_STATUS_SUPPRESS, &cfg->scan_status)) {
brcmf_err("Scanning suppressed: status=%lu\n", bphy_err(wiphy, "Scanning suppressed: status=%lu\n",
cfg->scan_status); cfg->scan_status);
return -EAGAIN; return -EAGAIN;
} }
...@@ -3450,6 +3482,7 @@ brcmf_wowl_nd_results(struct brcmf_if *ifp, const struct brcmf_event_msg *e, ...@@ -3450,6 +3482,7 @@ brcmf_wowl_nd_results(struct brcmf_if *ifp, const struct brcmf_event_msg *e,
void *data) void *data)
{ {
struct brcmf_cfg80211_info *cfg = ifp->drvr->config; struct brcmf_cfg80211_info *cfg = ifp->drvr->config;
struct wiphy *wiphy = cfg_to_wiphy(cfg);
struct brcmf_pno_scanresults_le *pfn_result; struct brcmf_pno_scanresults_le *pfn_result;
struct brcmf_pno_net_info_le *netinfo; struct brcmf_pno_net_info_le *netinfo;
...@@ -3468,7 +3501,7 @@ brcmf_wowl_nd_results(struct brcmf_if *ifp, const struct brcmf_event_msg *e, ...@@ -3468,7 +3501,7 @@ brcmf_wowl_nd_results(struct brcmf_if *ifp, const struct brcmf_event_msg *e,
} }
if (le32_to_cpu(pfn_result->count) < 1) { if (le32_to_cpu(pfn_result->count) < 1) {
brcmf_err("Invalid result count, expected 1 (%d)\n", bphy_err(wiphy, "Invalid result count, expected 1 (%d)\n",
le32_to_cpu(pfn_result->count)); le32_to_cpu(pfn_result->count));
return -EINVAL; return -EINVAL;
} }
...@@ -3506,7 +3539,7 @@ static void brcmf_report_wowl_wakeind(struct wiphy *wiphy, struct brcmf_if *ifp) ...@@ -3506,7 +3539,7 @@ static void brcmf_report_wowl_wakeind(struct wiphy *wiphy, struct brcmf_if *ifp)
err = brcmf_fil_iovar_data_get(ifp, "wowl_wakeind", &wake_ind_le, err = brcmf_fil_iovar_data_get(ifp, "wowl_wakeind", &wake_ind_le,
sizeof(wake_ind_le)); sizeof(wake_ind_le));
if (err) { if (err) {
brcmf_err("Get wowl_wakeind failed, err = %d\n", err); bphy_err(wiphy, "Get wowl_wakeind failed, err = %d\n", err);
return; return;
} }
...@@ -3547,7 +3580,7 @@ static void brcmf_report_wowl_wakeind(struct wiphy *wiphy, struct brcmf_if *ifp) ...@@ -3547,7 +3580,7 @@ static void brcmf_report_wowl_wakeind(struct wiphy *wiphy, struct brcmf_if *ifp)
cfg->wowl.nd_data_completed, cfg->wowl.nd_data_completed,
BRCMF_ND_INFO_TIMEOUT); BRCMF_ND_INFO_TIMEOUT);
if (!timeout) if (!timeout)
brcmf_err("No result for wowl net detect\n"); bphy_err(wiphy, "No result for wowl net detect\n");
else else
wakeup_data.net_detect = cfg->wowl.nd_info; wakeup_data.net_detect = cfg->wowl.nd_info;
} }
...@@ -3755,7 +3788,7 @@ brcmf_cfg80211_set_pmksa(struct wiphy *wiphy, struct net_device *ndev, ...@@ -3755,7 +3788,7 @@ brcmf_cfg80211_set_pmksa(struct wiphy *wiphy, struct net_device *ndev,
cfg->pmk_list.npmk = cpu_to_le32(npmk); cfg->pmk_list.npmk = cpu_to_le32(npmk);
} }
} else { } else {
brcmf_err("Too many PMKSA entries cached %d\n", npmk); bphy_err(wiphy, "Too many PMKSA entries cached %d\n", npmk);
return -EINVAL; return -EINVAL;
} }
...@@ -3801,7 +3834,7 @@ brcmf_cfg80211_del_pmksa(struct wiphy *wiphy, struct net_device *ndev, ...@@ -3801,7 +3834,7 @@ brcmf_cfg80211_del_pmksa(struct wiphy *wiphy, struct net_device *ndev,
memset(&pmk[i], 0, sizeof(*pmk)); memset(&pmk[i], 0, sizeof(*pmk));
cfg->pmk_list.npmk = cpu_to_le32(npmk - 1); cfg->pmk_list.npmk = cpu_to_le32(npmk - 1);
} else { } else {
brcmf_err("Cache entry not found\n"); bphy_err(wiphy, "Cache entry not found\n");
return -EINVAL; return -EINVAL;
} }
...@@ -3833,19 +3866,20 @@ brcmf_cfg80211_flush_pmksa(struct wiphy *wiphy, struct net_device *ndev) ...@@ -3833,19 +3866,20 @@ brcmf_cfg80211_flush_pmksa(struct wiphy *wiphy, struct net_device *ndev)
static s32 brcmf_configure_opensecurity(struct brcmf_if *ifp) static s32 brcmf_configure_opensecurity(struct brcmf_if *ifp)
{ {
struct wiphy *wiphy = ifp->drvr->wiphy;
s32 err; s32 err;
s32 wpa_val; s32 wpa_val;
/* set auth */ /* set auth */
err = brcmf_fil_bsscfg_int_set(ifp, "auth", 0); err = brcmf_fil_bsscfg_int_set(ifp, "auth", 0);
if (err < 0) { if (err < 0) {
brcmf_err("auth error %d\n", err); bphy_err(wiphy, "auth error %d\n", err);
return err; return err;
} }
/* set wsec */ /* set wsec */
err = brcmf_fil_bsscfg_int_set(ifp, "wsec", 0); err = brcmf_fil_bsscfg_int_set(ifp, "wsec", 0);
if (err < 0) { if (err < 0) {
brcmf_err("wsec error %d\n", err); bphy_err(wiphy, "wsec error %d\n", err);
return err; return err;
} }
/* set upper-layer auth */ /* set upper-layer auth */
...@@ -3855,7 +3889,7 @@ static s32 brcmf_configure_opensecurity(struct brcmf_if *ifp) ...@@ -3855,7 +3889,7 @@ static s32 brcmf_configure_opensecurity(struct brcmf_if *ifp)
wpa_val = WPA_AUTH_DISABLED; wpa_val = WPA_AUTH_DISABLED;
err = brcmf_fil_bsscfg_int_set(ifp, "wpa_auth", wpa_val); err = brcmf_fil_bsscfg_int_set(ifp, "wpa_auth", wpa_val);
if (err < 0) { if (err < 0) {
brcmf_err("wpa_auth error %d\n", err); bphy_err(wiphy, "wpa_auth error %d\n", err);
return err; return err;
} }
...@@ -3875,6 +3909,7 @@ brcmf_configure_wpaie(struct brcmf_if *ifp, ...@@ -3875,6 +3909,7 @@ brcmf_configure_wpaie(struct brcmf_if *ifp,
const struct brcmf_vs_tlv *wpa_ie, const struct brcmf_vs_tlv *wpa_ie,
bool is_rsn_ie) bool is_rsn_ie)
{ {
struct wiphy *wiphy = ifp->drvr->wiphy;
u32 auth = 0; /* d11 open authentication */ u32 auth = 0; /* d11 open authentication */
u16 count; u16 count;
s32 err = 0; s32 err = 0;
...@@ -3905,13 +3940,13 @@ brcmf_configure_wpaie(struct brcmf_if *ifp, ...@@ -3905,13 +3940,13 @@ brcmf_configure_wpaie(struct brcmf_if *ifp,
/* check for multicast cipher suite */ /* check for multicast cipher suite */
if (offset + WPA_IE_MIN_OUI_LEN > len) { if (offset + WPA_IE_MIN_OUI_LEN > len) {
err = -EINVAL; err = -EINVAL;
brcmf_err("no multicast cipher suite\n"); bphy_err(wiphy, "no multicast cipher suite\n");
goto exit; goto exit;
} }
if (!brcmf_valid_wpa_oui(&data[offset], is_rsn_ie)) { if (!brcmf_valid_wpa_oui(&data[offset], is_rsn_ie)) {
err = -EINVAL; err = -EINVAL;
brcmf_err("ivalid OUI\n"); bphy_err(wiphy, "ivalid OUI\n");
goto exit; goto exit;
} }
offset += TLV_OUI_LEN; offset += TLV_OUI_LEN;
...@@ -3933,7 +3968,7 @@ brcmf_configure_wpaie(struct brcmf_if *ifp, ...@@ -3933,7 +3968,7 @@ brcmf_configure_wpaie(struct brcmf_if *ifp,
break; break;
default: default:
err = -EINVAL; err = -EINVAL;
brcmf_err("Invalid multi cast cipher info\n"); bphy_err(wiphy, "Invalid multi cast cipher info\n");
goto exit; goto exit;
} }
...@@ -3944,13 +3979,13 @@ brcmf_configure_wpaie(struct brcmf_if *ifp, ...@@ -3944,13 +3979,13 @@ brcmf_configure_wpaie(struct brcmf_if *ifp,
/* Check for unicast suite(s) */ /* Check for unicast suite(s) */
if (offset + (WPA_IE_MIN_OUI_LEN * count) > len) { if (offset + (WPA_IE_MIN_OUI_LEN * count) > len) {
err = -EINVAL; err = -EINVAL;
brcmf_err("no unicast cipher suite\n"); bphy_err(wiphy, "no unicast cipher suite\n");
goto exit; goto exit;
} }
for (i = 0; i < count; i++) { for (i = 0; i < count; i++) {
if (!brcmf_valid_wpa_oui(&data[offset], is_rsn_ie)) { if (!brcmf_valid_wpa_oui(&data[offset], is_rsn_ie)) {
err = -EINVAL; err = -EINVAL;
brcmf_err("ivalid OUI\n"); bphy_err(wiphy, "ivalid OUI\n");
goto exit; goto exit;
} }
offset += TLV_OUI_LEN; offset += TLV_OUI_LEN;
...@@ -3968,7 +4003,7 @@ brcmf_configure_wpaie(struct brcmf_if *ifp, ...@@ -3968,7 +4003,7 @@ brcmf_configure_wpaie(struct brcmf_if *ifp,
pval |= AES_ENABLED; pval |= AES_ENABLED;
break; break;
default: default:
brcmf_err("Invalid unicast security info\n"); bphy_err(wiphy, "Invalid unicast security info\n");
} }
offset++; offset++;
} }
...@@ -3978,13 +4013,13 @@ brcmf_configure_wpaie(struct brcmf_if *ifp, ...@@ -3978,13 +4013,13 @@ brcmf_configure_wpaie(struct brcmf_if *ifp,
/* Check for auth key management suite(s) */ /* Check for auth key management suite(s) */
if (offset + (WPA_IE_MIN_OUI_LEN * count) > len) { if (offset + (WPA_IE_MIN_OUI_LEN * count) > len) {
err = -EINVAL; err = -EINVAL;
brcmf_err("no auth key mgmt suite\n"); bphy_err(wiphy, "no auth key mgmt suite\n");
goto exit; goto exit;
} }
for (i = 0; i < count; i++) { for (i = 0; i < count; i++) {
if (!brcmf_valid_wpa_oui(&data[offset], is_rsn_ie)) { if (!brcmf_valid_wpa_oui(&data[offset], is_rsn_ie)) {
err = -EINVAL; err = -EINVAL;
brcmf_err("ivalid OUI\n"); bphy_err(wiphy, "ivalid OUI\n");
goto exit; goto exit;
} }
offset += TLV_OUI_LEN; offset += TLV_OUI_LEN;
...@@ -4012,7 +4047,7 @@ brcmf_configure_wpaie(struct brcmf_if *ifp, ...@@ -4012,7 +4047,7 @@ brcmf_configure_wpaie(struct brcmf_if *ifp,
wpa_auth |= WPA2_AUTH_1X_SHA256; wpa_auth |= WPA2_AUTH_1X_SHA256;
break; break;
default: default:
brcmf_err("Invalid key mgmt info\n"); bphy_err(wiphy, "Invalid key mgmt info\n");
} }
offset++; offset++;
} }
...@@ -4054,7 +4089,7 @@ brcmf_configure_wpaie(struct brcmf_if *ifp, ...@@ -4054,7 +4089,7 @@ brcmf_configure_wpaie(struct brcmf_if *ifp,
err = brcmf_fil_bsscfg_int_set(ifp, "wme_bss_disable", err = brcmf_fil_bsscfg_int_set(ifp, "wme_bss_disable",
wme_bss_disable); wme_bss_disable);
if (err < 0) { if (err < 0) {
brcmf_err("wme_bss_disable error %d\n", err); bphy_err(wiphy, "wme_bss_disable error %d\n", err);
goto exit; goto exit;
} }
...@@ -4068,7 +4103,7 @@ brcmf_configure_wpaie(struct brcmf_if *ifp, ...@@ -4068,7 +4103,7 @@ brcmf_configure_wpaie(struct brcmf_if *ifp,
&data[offset], &data[offset],
WPA_IE_MIN_OUI_LEN); WPA_IE_MIN_OUI_LEN);
if (err < 0) { if (err < 0) {
brcmf_err("bip error %d\n", err); bphy_err(wiphy, "bip error %d\n", err);
goto exit; goto exit;
} }
} }
...@@ -4079,13 +4114,13 @@ brcmf_configure_wpaie(struct brcmf_if *ifp, ...@@ -4079,13 +4114,13 @@ brcmf_configure_wpaie(struct brcmf_if *ifp,
/* set auth */ /* set auth */
err = brcmf_fil_bsscfg_int_set(ifp, "auth", auth); err = brcmf_fil_bsscfg_int_set(ifp, "auth", auth);
if (err < 0) { if (err < 0) {
brcmf_err("auth error %d\n", err); bphy_err(wiphy, "auth error %d\n", err);
goto exit; goto exit;
} }
/* set wsec */ /* set wsec */
err = brcmf_fil_bsscfg_int_set(ifp, "wsec", wsec); err = brcmf_fil_bsscfg_int_set(ifp, "wsec", wsec);
if (err < 0) { if (err < 0) {
brcmf_err("wsec error %d\n", err); bphy_err(wiphy, "wsec error %d\n", err);
goto exit; goto exit;
} }
/* Configure MFP, this needs to go after wsec otherwise the wsec command /* Configure MFP, this needs to go after wsec otherwise the wsec command
...@@ -4094,14 +4129,14 @@ brcmf_configure_wpaie(struct brcmf_if *ifp, ...@@ -4094,14 +4129,14 @@ brcmf_configure_wpaie(struct brcmf_if *ifp,
if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_MFP)) { if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_MFP)) {
err = brcmf_fil_bsscfg_int_set(ifp, "mfp", mfp); err = brcmf_fil_bsscfg_int_set(ifp, "mfp", mfp);
if (err < 0) { if (err < 0) {
brcmf_err("mfp error %d\n", err); bphy_err(wiphy, "mfp error %d\n", err);
goto exit; goto exit;
} }
} }
/* set upper-layer auth */ /* set upper-layer auth */
err = brcmf_fil_bsscfg_int_set(ifp, "wpa_auth", wpa_auth); err = brcmf_fil_bsscfg_int_set(ifp, "wpa_auth", wpa_auth);
if (err < 0) { if (err < 0) {
brcmf_err("wpa_auth error %d\n", err); bphy_err(wiphy, "wpa_auth error %d\n", err);
goto exit; goto exit;
} }
...@@ -4188,6 +4223,7 @@ s32 brcmf_vif_set_mgmt_ie(struct brcmf_cfg80211_vif *vif, s32 pktflag, ...@@ -4188,6 +4223,7 @@ s32 brcmf_vif_set_mgmt_ie(struct brcmf_cfg80211_vif *vif, s32 pktflag,
const u8 *vndr_ie_buf, u32 vndr_ie_len) const u8 *vndr_ie_buf, u32 vndr_ie_len)
{ {
struct brcmf_if *ifp; struct brcmf_if *ifp;
struct wiphy *wiphy;
struct vif_saved_ie *saved_ie; struct vif_saved_ie *saved_ie;
s32 err = 0; s32 err = 0;
u8 *iovar_ie_buf; u8 *iovar_ie_buf;
...@@ -4208,6 +4244,7 @@ s32 brcmf_vif_set_mgmt_ie(struct brcmf_cfg80211_vif *vif, s32 pktflag, ...@@ -4208,6 +4244,7 @@ s32 brcmf_vif_set_mgmt_ie(struct brcmf_cfg80211_vif *vif, s32 pktflag,
if (!vif) if (!vif)
return -ENODEV; return -ENODEV;
ifp = vif->ifp; ifp = vif->ifp;
wiphy = ifp->drvr->wiphy;
saved_ie = &vif->saved_ie; saved_ie = &vif->saved_ie;
brcmf_dbg(TRACE, "bsscfgidx %d, pktflag : 0x%02X\n", ifp->bsscfgidx, brcmf_dbg(TRACE, "bsscfgidx %d, pktflag : 0x%02X\n", ifp->bsscfgidx,
...@@ -4239,13 +4276,13 @@ s32 brcmf_vif_set_mgmt_ie(struct brcmf_cfg80211_vif *vif, s32 pktflag, ...@@ -4239,13 +4276,13 @@ s32 brcmf_vif_set_mgmt_ie(struct brcmf_cfg80211_vif *vif, s32 pktflag,
break; break;
default: default:
err = -EPERM; err = -EPERM;
brcmf_err("not suitable type\n"); bphy_err(wiphy, "not suitable type\n");
goto exit; goto exit;
} }
if (vndr_ie_len > mgmt_ie_buf_len) { if (vndr_ie_len > mgmt_ie_buf_len) {
err = -ENOMEM; err = -ENOMEM;
brcmf_err("extra IE size too big\n"); bphy_err(wiphy, "extra IE size too big\n");
goto exit; goto exit;
} }
...@@ -4306,7 +4343,7 @@ s32 brcmf_vif_set_mgmt_ie(struct brcmf_cfg80211_vif *vif, s32 pktflag, ...@@ -4306,7 +4343,7 @@ s32 brcmf_vif_set_mgmt_ie(struct brcmf_cfg80211_vif *vif, s32 pktflag,
/* verify remained buf size before copy data */ /* verify remained buf size before copy data */
if (remained_buf_len < (vndrie_info->vndrie.len + if (remained_buf_len < (vndrie_info->vndrie.len +
VNDR_IE_VSIE_OFFSET)) { VNDR_IE_VSIE_OFFSET)) {
brcmf_err("no space in mgmt_ie_buf: len left %d", bphy_err(wiphy, "no space in mgmt_ie_buf: len left %d",
remained_buf_len); remained_buf_len);
break; break;
} }
...@@ -4338,7 +4375,7 @@ s32 brcmf_vif_set_mgmt_ie(struct brcmf_cfg80211_vif *vif, s32 pktflag, ...@@ -4338,7 +4375,7 @@ s32 brcmf_vif_set_mgmt_ie(struct brcmf_cfg80211_vif *vif, s32 pktflag,
err = brcmf_fil_bsscfg_data_set(ifp, "vndr_ie", iovar_ie_buf, err = brcmf_fil_bsscfg_data_set(ifp, "vndr_ie", iovar_ie_buf,
total_ie_buf_len); total_ie_buf_len);
if (err) if (err)
brcmf_err("vndr ie set error : %d\n", err); bphy_err(wiphy, "vndr ie set error : %d\n", err);
} }
exit: exit:
...@@ -4366,13 +4403,14 @@ static s32 ...@@ -4366,13 +4403,14 @@ static s32
brcmf_config_ap_mgmt_ie(struct brcmf_cfg80211_vif *vif, brcmf_config_ap_mgmt_ie(struct brcmf_cfg80211_vif *vif,
struct cfg80211_beacon_data *beacon) struct cfg80211_beacon_data *beacon)
{ {
struct wiphy *wiphy = vif->ifp->drvr->wiphy;
s32 err; s32 err;
/* Set Beacon IEs to FW */ /* Set Beacon IEs to FW */
err = brcmf_vif_set_mgmt_ie(vif, BRCMF_VNDR_IE_BEACON_FLAG, err = brcmf_vif_set_mgmt_ie(vif, BRCMF_VNDR_IE_BEACON_FLAG,
beacon->tail, beacon->tail_len); beacon->tail, beacon->tail_len);
if (err) { if (err) {
brcmf_err("Set Beacon IE Failed\n"); bphy_err(wiphy, "Set Beacon IE Failed\n");
return err; return err;
} }
brcmf_dbg(TRACE, "Applied Vndr IEs for Beacon\n"); brcmf_dbg(TRACE, "Applied Vndr IEs for Beacon\n");
...@@ -4382,7 +4420,7 @@ brcmf_config_ap_mgmt_ie(struct brcmf_cfg80211_vif *vif, ...@@ -4382,7 +4420,7 @@ brcmf_config_ap_mgmt_ie(struct brcmf_cfg80211_vif *vif,
beacon->proberesp_ies, beacon->proberesp_ies,
beacon->proberesp_ies_len); beacon->proberesp_ies_len);
if (err) if (err)
brcmf_err("Set Probe Resp IE Failed\n"); bphy_err(wiphy, "Set Probe Resp IE Failed\n");
else else
brcmf_dbg(TRACE, "Applied Vndr IEs for Probe Resp\n"); brcmf_dbg(TRACE, "Applied Vndr IEs for Probe Resp\n");
...@@ -4491,7 +4529,8 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev, ...@@ -4491,7 +4529,8 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_REGULATORY, err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_REGULATORY,
is_11d); is_11d);
if (err < 0) { if (err < 0) {
brcmf_err("Regulatory Set Error, %d\n", err); bphy_err(wiphy, "Regulatory Set Error, %d\n",
err);
goto exit; goto exit;
} }
} }
...@@ -4499,7 +4538,7 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev, ...@@ -4499,7 +4538,7 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_BCNPRD, err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_BCNPRD,
settings->beacon_interval); settings->beacon_interval);
if (err < 0) { if (err < 0) {
brcmf_err("Beacon Interval Set Error, %d\n", bphy_err(wiphy, "Beacon Interval Set Error, %d\n",
err); err);
goto exit; goto exit;
} }
...@@ -4508,7 +4547,8 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev, ...@@ -4508,7 +4547,8 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_DTIMPRD, err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_DTIMPRD,
settings->dtim_period); settings->dtim_period);
if (err < 0) { if (err < 0) {
brcmf_err("DTIM Interval Set Error, %d\n", err); bphy_err(wiphy, "DTIM Interval Set Error, %d\n",
err);
goto exit; goto exit;
} }
} }
...@@ -4518,7 +4558,8 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev, ...@@ -4518,7 +4558,8 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev,
!brcmf_feat_is_enabled(ifp, BRCMF_FEAT_RSDB))) { !brcmf_feat_is_enabled(ifp, BRCMF_FEAT_RSDB))) {
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_DOWN, 1); err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_DOWN, 1);
if (err < 0) { if (err < 0) {
brcmf_err("BRCMF_C_DOWN error %d\n", err); bphy_err(wiphy, "BRCMF_C_DOWN error %d\n",
err);
goto exit; goto exit;
} }
brcmf_fil_iovar_int_set(ifp, "apsta", 0); brcmf_fil_iovar_int_set(ifp, "apsta", 0);
...@@ -4526,7 +4567,7 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev, ...@@ -4526,7 +4567,7 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_INFRA, 1); err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_INFRA, 1);
if (err < 0) { if (err < 0) {
brcmf_err("SET INFRA error %d\n", err); bphy_err(wiphy, "SET INFRA error %d\n", err);
goto exit; goto exit;
} }
} else if (WARN_ON(supports_11d && (is_11d != ifp->vif->is_11d))) { } else if (WARN_ON(supports_11d && (is_11d != ifp->vif->is_11d))) {
...@@ -4542,7 +4583,8 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev, ...@@ -4542,7 +4583,8 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_AP, 1); err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_AP, 1);
if (err < 0) { if (err < 0) {
brcmf_err("setting AP mode failed %d\n", err); bphy_err(wiphy, "setting AP mode failed %d\n",
err);
goto exit; goto exit;
} }
if (!mbss) { if (!mbss) {
...@@ -4551,14 +4593,14 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev, ...@@ -4551,14 +4593,14 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev,
*/ */
err = brcmf_fil_iovar_int_set(ifp, "chanspec", chanspec); err = brcmf_fil_iovar_int_set(ifp, "chanspec", chanspec);
if (err < 0) { if (err < 0) {
brcmf_err("Set Channel failed: chspec=%d, %d\n", bphy_err(wiphy, "Set Channel failed: chspec=%d, %d\n",
chanspec, err); chanspec, err);
goto exit; goto exit;
} }
} }
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_UP, 1); err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_UP, 1);
if (err < 0) { if (err < 0) {
brcmf_err("BRCMF_C_UP error (%d)\n", err); bphy_err(wiphy, "BRCMF_C_UP error (%d)\n", err);
goto exit; goto exit;
} }
/* On DOWN the firmware removes the WEP keys, reconfigure /* On DOWN the firmware removes the WEP keys, reconfigure
...@@ -4573,14 +4615,14 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev, ...@@ -4573,14 +4615,14 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_SSID, err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_SSID,
&join_params, sizeof(join_params)); &join_params, sizeof(join_params));
if (err < 0) { if (err < 0) {
brcmf_err("SET SSID error (%d)\n", err); bphy_err(wiphy, "SET SSID error (%d)\n", err);
goto exit; goto exit;
} }
if (settings->hidden_ssid) { if (settings->hidden_ssid) {
err = brcmf_fil_iovar_int_set(ifp, "closednet", 1); err = brcmf_fil_iovar_int_set(ifp, "closednet", 1);
if (err) { if (err) {
brcmf_err("closednet error (%d)\n", err); bphy_err(wiphy, "closednet error (%d)\n", err);
goto exit; goto exit;
} }
} }
...@@ -4589,14 +4631,14 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev, ...@@ -4589,14 +4631,14 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev,
} else if (dev_role == NL80211_IFTYPE_P2P_GO) { } else if (dev_role == NL80211_IFTYPE_P2P_GO) {
err = brcmf_fil_iovar_int_set(ifp, "chanspec", chanspec); err = brcmf_fil_iovar_int_set(ifp, "chanspec", chanspec);
if (err < 0) { if (err < 0) {
brcmf_err("Set Channel failed: chspec=%d, %d\n", bphy_err(wiphy, "Set Channel failed: chspec=%d, %d\n",
chanspec, err); chanspec, err);
goto exit; goto exit;
} }
err = brcmf_fil_bsscfg_data_set(ifp, "ssid", &ssid_le, err = brcmf_fil_bsscfg_data_set(ifp, "ssid", &ssid_le,
sizeof(ssid_le)); sizeof(ssid_le));
if (err < 0) { if (err < 0) {
brcmf_err("setting ssid failed %d\n", err); bphy_err(wiphy, "setting ssid failed %d\n", err);
goto exit; goto exit;
} }
bss_enable.bsscfgidx = cpu_to_le32(ifp->bsscfgidx); bss_enable.bsscfgidx = cpu_to_le32(ifp->bsscfgidx);
...@@ -4604,7 +4646,7 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev, ...@@ -4604,7 +4646,7 @@ brcmf_cfg80211_start_ap(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_iovar_data_set(ifp, "bss", &bss_enable, err = brcmf_fil_iovar_data_set(ifp, "bss", &bss_enable,
sizeof(bss_enable)); sizeof(bss_enable));
if (err < 0) { if (err < 0) {
brcmf_err("bss_enable config failed %d\n", err); bphy_err(wiphy, "bss_enable config failed %d\n", err);
goto exit; goto exit;
} }
...@@ -4652,13 +4694,13 @@ static int brcmf_cfg80211_stop_ap(struct wiphy *wiphy, struct net_device *ndev) ...@@ -4652,13 +4694,13 @@ static int brcmf_cfg80211_stop_ap(struct wiphy *wiphy, struct net_device *ndev)
err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_SSID, err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_SSID,
&join_params, sizeof(join_params)); &join_params, sizeof(join_params));
if (err < 0) if (err < 0)
brcmf_err("SET SSID error (%d)\n", err); bphy_err(wiphy, "SET SSID error (%d)\n", err);
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_DOWN, 1); err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_DOWN, 1);
if (err < 0) if (err < 0)
brcmf_err("BRCMF_C_DOWN error %d\n", err); bphy_err(wiphy, "BRCMF_C_DOWN error %d\n", err);
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_AP, 0); err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_AP, 0);
if (err < 0) if (err < 0)
brcmf_err("setting AP mode failed %d\n", err); bphy_err(wiphy, "setting AP mode failed %d\n", err);
if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_MBSS)) if (brcmf_feat_is_enabled(ifp, BRCMF_FEAT_MBSS))
brcmf_fil_iovar_int_set(ifp, "mbss", 0); brcmf_fil_iovar_int_set(ifp, "mbss", 0);
brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_REGULATORY, brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_REGULATORY,
...@@ -4666,7 +4708,7 @@ static int brcmf_cfg80211_stop_ap(struct wiphy *wiphy, struct net_device *ndev) ...@@ -4666,7 +4708,7 @@ static int brcmf_cfg80211_stop_ap(struct wiphy *wiphy, struct net_device *ndev)
/* Bring device back up so it can be used again */ /* Bring device back up so it can be used again */
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_UP, 1); err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_UP, 1);
if (err < 0) if (err < 0)
brcmf_err("BRCMF_C_UP error %d\n", err); bphy_err(wiphy, "BRCMF_C_UP error %d\n", err);
brcmf_vif_clear_mgmt_ies(ifp->vif); brcmf_vif_clear_mgmt_ies(ifp->vif);
} else { } else {
...@@ -4675,7 +4717,7 @@ static int brcmf_cfg80211_stop_ap(struct wiphy *wiphy, struct net_device *ndev) ...@@ -4675,7 +4717,7 @@ static int brcmf_cfg80211_stop_ap(struct wiphy *wiphy, struct net_device *ndev)
err = brcmf_fil_iovar_data_set(ifp, "bss", &bss_enable, err = brcmf_fil_iovar_data_set(ifp, "bss", &bss_enable,
sizeof(bss_enable)); sizeof(bss_enable));
if (err < 0) if (err < 0)
brcmf_err("bss_enable config failed %d\n", err); bphy_err(wiphy, "bss_enable config failed %d\n", err);
} }
brcmf_set_mpc(ifp, 1); brcmf_set_mpc(ifp, 1);
brcmf_configure_arp_nd_offload(ifp, true); brcmf_configure_arp_nd_offload(ifp, true);
...@@ -4723,7 +4765,8 @@ brcmf_cfg80211_del_station(struct wiphy *wiphy, struct net_device *ndev, ...@@ -4723,7 +4765,8 @@ brcmf_cfg80211_del_station(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SCB_DEAUTHENTICATE_FOR_REASON, err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SCB_DEAUTHENTICATE_FOR_REASON,
&scbval, sizeof(scbval)); &scbval, sizeof(scbval));
if (err) if (err)
brcmf_err("SCB_DEAUTHENTICATE_FOR_REASON failed %d\n", err); bphy_err(wiphy, "SCB_DEAUTHENTICATE_FOR_REASON failed %d\n",
err);
brcmf_dbg(TRACE, "Exit\n"); brcmf_dbg(TRACE, "Exit\n");
return err; return err;
...@@ -4753,7 +4796,7 @@ brcmf_cfg80211_change_station(struct wiphy *wiphy, struct net_device *ndev, ...@@ -4753,7 +4796,7 @@ brcmf_cfg80211_change_station(struct wiphy *wiphy, struct net_device *ndev,
err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_SCB_DEAUTHORIZE, err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_SCB_DEAUTHORIZE,
(void *)mac, ETH_ALEN); (void *)mac, ETH_ALEN);
if (err < 0) if (err < 0)
brcmf_err("Setting SCB (de-)authorize failed, %d\n", err); bphy_err(wiphy, "Setting SCB (de-)authorize failed, %d\n", err);
return err; return err;
} }
...@@ -4803,7 +4846,7 @@ brcmf_cfg80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev, ...@@ -4803,7 +4846,7 @@ brcmf_cfg80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
mgmt = (const struct ieee80211_mgmt *)buf; mgmt = (const struct ieee80211_mgmt *)buf;
if (!ieee80211_is_mgmt(mgmt->frame_control)) { if (!ieee80211_is_mgmt(mgmt->frame_control)) {
brcmf_err("Driver only allows MGMT packet type\n"); bphy_err(wiphy, "Driver only allows MGMT packet type\n");
return -EPERM; return -EPERM;
} }
...@@ -4834,13 +4877,13 @@ brcmf_cfg80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev, ...@@ -4834,13 +4877,13 @@ brcmf_cfg80211_mgmt_tx(struct wiphy *wiphy, struct wireless_dev *wdev,
GFP_KERNEL); GFP_KERNEL);
} else if (ieee80211_is_action(mgmt->frame_control)) { } else if (ieee80211_is_action(mgmt->frame_control)) {
if (len > BRCMF_FIL_ACTION_FRAME_SIZE + DOT11_MGMT_HDR_LEN) { if (len > BRCMF_FIL_ACTION_FRAME_SIZE + DOT11_MGMT_HDR_LEN) {
brcmf_err("invalid action frame length\n"); bphy_err(wiphy, "invalid action frame length\n");
err = -EINVAL; err = -EINVAL;
goto exit; goto exit;
} }
af_params = kzalloc(sizeof(*af_params), GFP_KERNEL); af_params = kzalloc(sizeof(*af_params), GFP_KERNEL);
if (af_params == NULL) { if (af_params == NULL) {
brcmf_err("unable to allocate frame\n"); bphy_err(wiphy, "unable to allocate frame\n");
err = -ENOMEM; err = -ENOMEM;
goto exit; goto exit;
} }
...@@ -4898,7 +4941,7 @@ brcmf_cfg80211_cancel_remain_on_channel(struct wiphy *wiphy, ...@@ -4898,7 +4941,7 @@ brcmf_cfg80211_cancel_remain_on_channel(struct wiphy *wiphy,
vif = cfg->p2p.bss_idx[P2PAPI_BSSCFG_DEVICE].vif; vif = cfg->p2p.bss_idx[P2PAPI_BSSCFG_DEVICE].vif;
if (vif == NULL) { if (vif == NULL) {
brcmf_err("No p2p device available for probe response\n"); bphy_err(wiphy, "No p2p device available for probe response\n");
err = -ENODEV; err = -ENODEV;
goto exit; goto exit;
} }
...@@ -4926,7 +4969,7 @@ static int brcmf_cfg80211_get_channel(struct wiphy *wiphy, ...@@ -4926,7 +4969,7 @@ static int brcmf_cfg80211_get_channel(struct wiphy *wiphy,
err = brcmf_fil_iovar_int_get(ifp, "chanspec", &chanspec); err = brcmf_fil_iovar_int_get(ifp, "chanspec", &chanspec);
if (err) { if (err) {
brcmf_err("chanspec failed (%d)\n", err); bphy_err(wiphy, "chanspec failed (%d)\n", err);
return err; return err;
} }
...@@ -5065,7 +5108,7 @@ static int brcmf_cfg80211_tdls_oper(struct wiphy *wiphy, ...@@ -5065,7 +5108,7 @@ static int brcmf_cfg80211_tdls_oper(struct wiphy *wiphy,
ret = brcmf_fil_iovar_data_set(ifp, "tdls_endpoint", ret = brcmf_fil_iovar_data_set(ifp, "tdls_endpoint",
&info, sizeof(info)); &info, sizeof(info));
if (ret < 0) if (ret < 0)
brcmf_err("tdls_endpoint iovar failed: ret=%d\n", ret); bphy_err(wiphy, "tdls_endpoint iovar failed: ret=%d\n", ret);
return ret; return ret;
} }
...@@ -5086,7 +5129,7 @@ brcmf_cfg80211_update_conn_params(struct wiphy *wiphy, ...@@ -5086,7 +5129,7 @@ brcmf_cfg80211_update_conn_params(struct wiphy *wiphy,
err = brcmf_vif_set_mgmt_ie(ifp->vif, BRCMF_VNDR_IE_ASSOCREQ_FLAG, err = brcmf_vif_set_mgmt_ie(ifp->vif, BRCMF_VNDR_IE_ASSOCREQ_FLAG,
sme->ie, sme->ie_len); sme->ie, sme->ie_len);
if (err) if (err)
brcmf_err("Set Assoc REQ IE Failed\n"); bphy_err(wiphy, "Set Assoc REQ IE Failed\n");
else else
brcmf_dbg(TRACE, "Applied Vndr IEs for Assoc request\n"); brcmf_dbg(TRACE, "Applied Vndr IEs for Assoc request\n");
...@@ -5112,7 +5155,7 @@ brcmf_cfg80211_set_rekey_data(struct wiphy *wiphy, struct net_device *ndev, ...@@ -5112,7 +5155,7 @@ brcmf_cfg80211_set_rekey_data(struct wiphy *wiphy, struct net_device *ndev,
ret = brcmf_fil_iovar_data_set(ifp, "gtk_key_info", &gtk_le, ret = brcmf_fil_iovar_data_set(ifp, "gtk_key_info", &gtk_le,
sizeof(gtk_le)); sizeof(gtk_le));
if (ret < 0) if (ret < 0)
brcmf_err("gtk_key_info iovar failed: ret=%d\n", ret); bphy_err(wiphy, "gtk_key_info iovar failed: ret=%d\n", ret);
return ret; return ret;
} }
...@@ -5344,6 +5387,7 @@ static void brcmf_clear_assoc_ies(struct brcmf_cfg80211_info *cfg) ...@@ -5344,6 +5387,7 @@ static void brcmf_clear_assoc_ies(struct brcmf_cfg80211_info *cfg)
static s32 brcmf_get_assoc_ies(struct brcmf_cfg80211_info *cfg, static s32 brcmf_get_assoc_ies(struct brcmf_cfg80211_info *cfg,
struct brcmf_if *ifp) struct brcmf_if *ifp)
{ {
struct wiphy *wiphy = cfg_to_wiphy(cfg);
struct brcmf_cfg80211_assoc_ielen_le *assoc_info; struct brcmf_cfg80211_assoc_ielen_le *assoc_info;
struct brcmf_cfg80211_connect_info *conn_info = cfg_to_conn(cfg); struct brcmf_cfg80211_connect_info *conn_info = cfg_to_conn(cfg);
u32 req_len; u32 req_len;
...@@ -5355,7 +5399,7 @@ static s32 brcmf_get_assoc_ies(struct brcmf_cfg80211_info *cfg, ...@@ -5355,7 +5399,7 @@ static s32 brcmf_get_assoc_ies(struct brcmf_cfg80211_info *cfg,
err = brcmf_fil_iovar_data_get(ifp, "assoc_info", err = brcmf_fil_iovar_data_get(ifp, "assoc_info",
cfg->extra_buf, WL_ASSOC_INFO_MAX); cfg->extra_buf, WL_ASSOC_INFO_MAX);
if (err) { if (err) {
brcmf_err("could not get assoc info (%d)\n", err); bphy_err(wiphy, "could not get assoc info (%d)\n", err);
return err; return err;
} }
assoc_info = assoc_info =
...@@ -5367,7 +5411,7 @@ static s32 brcmf_get_assoc_ies(struct brcmf_cfg80211_info *cfg, ...@@ -5367,7 +5411,7 @@ static s32 brcmf_get_assoc_ies(struct brcmf_cfg80211_info *cfg,
cfg->extra_buf, cfg->extra_buf,
WL_ASSOC_INFO_MAX); WL_ASSOC_INFO_MAX);
if (err) { if (err) {
brcmf_err("could not get assoc req (%d)\n", err); bphy_err(wiphy, "could not get assoc req (%d)\n", err);
return err; return err;
} }
conn_info->req_ie_len = req_len; conn_info->req_ie_len = req_len;
...@@ -5383,7 +5427,7 @@ static s32 brcmf_get_assoc_ies(struct brcmf_cfg80211_info *cfg, ...@@ -5383,7 +5427,7 @@ static s32 brcmf_get_assoc_ies(struct brcmf_cfg80211_info *cfg,
cfg->extra_buf, cfg->extra_buf,
WL_ASSOC_INFO_MAX); WL_ASSOC_INFO_MAX);
if (err) { if (err) {
brcmf_err("could not get assoc resp (%d)\n", err); bphy_err(wiphy, "could not get assoc resp (%d)\n", err);
return err; return err;
} }
conn_info->resp_ie_len = resp_len; conn_info->resp_ie_len = resp_len;
...@@ -5510,6 +5554,7 @@ brcmf_notify_connect_status_ap(struct brcmf_cfg80211_info *cfg, ...@@ -5510,6 +5554,7 @@ brcmf_notify_connect_status_ap(struct brcmf_cfg80211_info *cfg,
struct net_device *ndev, struct net_device *ndev,
const struct brcmf_event_msg *e, void *data) const struct brcmf_event_msg *e, void *data)
{ {
struct wiphy *wiphy = cfg_to_wiphy(cfg);
static int generation; static int generation;
u32 event = e->event_code; u32 event = e->event_code;
u32 reason = e->reason; u32 reason = e->reason;
...@@ -5527,7 +5572,7 @@ brcmf_notify_connect_status_ap(struct brcmf_cfg80211_info *cfg, ...@@ -5527,7 +5572,7 @@ brcmf_notify_connect_status_ap(struct brcmf_cfg80211_info *cfg,
if (((event == BRCMF_E_ASSOC_IND) || (event == BRCMF_E_REASSOC_IND)) && if (((event == BRCMF_E_ASSOC_IND) || (event == BRCMF_E_REASSOC_IND)) &&
(reason == BRCMF_E_STATUS_SUCCESS)) { (reason == BRCMF_E_STATUS_SUCCESS)) {
if (!data) { if (!data) {
brcmf_err("No IEs present in ASSOC/REASSOC_IND"); bphy_err(wiphy, "No IEs present in ASSOC/REASSOC_IND\n");
return -EINVAL; return -EINVAL;
} }
...@@ -5819,6 +5864,7 @@ static void init_vif_event(struct brcmf_cfg80211_vif_event *event) ...@@ -5819,6 +5864,7 @@ static void init_vif_event(struct brcmf_cfg80211_vif_event *event)
static s32 brcmf_dongle_roam(struct brcmf_if *ifp) static s32 brcmf_dongle_roam(struct brcmf_if *ifp)
{ {
struct wiphy *wiphy = ifp->drvr->wiphy;
s32 err; s32 err;
u32 bcn_timeout; u32 bcn_timeout;
__le32 roamtrigger[2]; __le32 roamtrigger[2];
...@@ -5831,7 +5877,7 @@ static s32 brcmf_dongle_roam(struct brcmf_if *ifp) ...@@ -5831,7 +5877,7 @@ static s32 brcmf_dongle_roam(struct brcmf_if *ifp)
bcn_timeout = BRCMF_DEFAULT_BCN_TIMEOUT_ROAM_ON; bcn_timeout = BRCMF_DEFAULT_BCN_TIMEOUT_ROAM_ON;
err = brcmf_fil_iovar_int_set(ifp, "bcn_timeout", bcn_timeout); err = brcmf_fil_iovar_int_set(ifp, "bcn_timeout", bcn_timeout);
if (err) { if (err) {
brcmf_err("bcn_timeout error (%d)\n", err); bphy_err(wiphy, "bcn_timeout error (%d)\n", err);
goto roam_setup_done; goto roam_setup_done;
} }
...@@ -5843,7 +5889,7 @@ static s32 brcmf_dongle_roam(struct brcmf_if *ifp) ...@@ -5843,7 +5889,7 @@ static s32 brcmf_dongle_roam(struct brcmf_if *ifp)
err = brcmf_fil_iovar_int_set(ifp, "roam_off", err = brcmf_fil_iovar_int_set(ifp, "roam_off",
ifp->drvr->settings->roamoff); ifp->drvr->settings->roamoff);
if (err) { if (err) {
brcmf_err("roam_off error (%d)\n", err); bphy_err(wiphy, "roam_off error (%d)\n", err);
goto roam_setup_done; goto roam_setup_done;
} }
...@@ -5852,7 +5898,7 @@ static s32 brcmf_dongle_roam(struct brcmf_if *ifp) ...@@ -5852,7 +5898,7 @@ static s32 brcmf_dongle_roam(struct brcmf_if *ifp)
err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_ROAM_TRIGGER, err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_ROAM_TRIGGER,
(void *)roamtrigger, sizeof(roamtrigger)); (void *)roamtrigger, sizeof(roamtrigger));
if (err) { if (err) {
brcmf_err("WLC_SET_ROAM_TRIGGER error (%d)\n", err); bphy_err(wiphy, "WLC_SET_ROAM_TRIGGER error (%d)\n", err);
goto roam_setup_done; goto roam_setup_done;
} }
...@@ -5861,7 +5907,7 @@ static s32 brcmf_dongle_roam(struct brcmf_if *ifp) ...@@ -5861,7 +5907,7 @@ static s32 brcmf_dongle_roam(struct brcmf_if *ifp)
err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_ROAM_DELTA, err = brcmf_fil_cmd_data_set(ifp, BRCMF_C_SET_ROAM_DELTA,
(void *)roam_delta, sizeof(roam_delta)); (void *)roam_delta, sizeof(roam_delta));
if (err) { if (err) {
brcmf_err("WLC_SET_ROAM_DELTA error (%d)\n", err); bphy_err(wiphy, "WLC_SET_ROAM_DELTA error (%d)\n", err);
goto roam_setup_done; goto roam_setup_done;
} }
...@@ -5872,25 +5918,26 @@ static s32 brcmf_dongle_roam(struct brcmf_if *ifp) ...@@ -5872,25 +5918,26 @@ static s32 brcmf_dongle_roam(struct brcmf_if *ifp)
static s32 static s32
brcmf_dongle_scantime(struct brcmf_if *ifp) brcmf_dongle_scantime(struct brcmf_if *ifp)
{ {
struct wiphy *wiphy = ifp->drvr->wiphy;
s32 err = 0; s32 err = 0;
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_SCAN_CHANNEL_TIME, err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_SCAN_CHANNEL_TIME,
BRCMF_SCAN_CHANNEL_TIME); BRCMF_SCAN_CHANNEL_TIME);
if (err) { if (err) {
brcmf_err("Scan assoc time error (%d)\n", err); bphy_err(wiphy, "Scan assoc time error (%d)\n", err);
goto dongle_scantime_out; goto dongle_scantime_out;
} }
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_SCAN_UNASSOC_TIME, err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_SCAN_UNASSOC_TIME,
BRCMF_SCAN_UNASSOC_TIME); BRCMF_SCAN_UNASSOC_TIME);
if (err) { if (err) {
brcmf_err("Scan unassoc time error (%d)\n", err); bphy_err(wiphy, "Scan unassoc time error (%d)\n", err);
goto dongle_scantime_out; goto dongle_scantime_out;
} }
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_SCAN_PASSIVE_TIME, err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_SCAN_PASSIVE_TIME,
BRCMF_SCAN_PASSIVE_TIME); BRCMF_SCAN_PASSIVE_TIME);
if (err) { if (err) {
brcmf_err("Scan passive time error (%d)\n", err); bphy_err(wiphy, "Scan passive time error (%d)\n", err);
goto dongle_scantime_out; goto dongle_scantime_out;
} }
...@@ -5922,10 +5969,10 @@ static void brcmf_update_bw40_channel_flag(struct ieee80211_channel *channel, ...@@ -5922,10 +5969,10 @@ static void brcmf_update_bw40_channel_flag(struct ieee80211_channel *channel,
static int brcmf_construct_chaninfo(struct brcmf_cfg80211_info *cfg, static int brcmf_construct_chaninfo(struct brcmf_cfg80211_info *cfg,
u32 bw_cap[]) u32 bw_cap[])
{ {
struct wiphy *wiphy = cfg_to_wiphy(cfg);
struct brcmf_if *ifp = brcmf_get_ifp(cfg->pub, 0); struct brcmf_if *ifp = brcmf_get_ifp(cfg->pub, 0);
struct ieee80211_supported_band *band; struct ieee80211_supported_band *band;
struct ieee80211_channel *channel; struct ieee80211_channel *channel;
struct wiphy *wiphy;
struct brcmf_chanspec_list *list; struct brcmf_chanspec_list *list;
struct brcmu_chan ch; struct brcmu_chan ch;
int err; int err;
...@@ -5944,11 +5991,10 @@ static int brcmf_construct_chaninfo(struct brcmf_cfg80211_info *cfg, ...@@ -5944,11 +5991,10 @@ static int brcmf_construct_chaninfo(struct brcmf_cfg80211_info *cfg,
err = brcmf_fil_iovar_data_get(ifp, "chanspecs", pbuf, err = brcmf_fil_iovar_data_get(ifp, "chanspecs", pbuf,
BRCMF_DCMD_MEDLEN); BRCMF_DCMD_MEDLEN);
if (err) { if (err) {
brcmf_err("get chanspecs error (%d)\n", err); bphy_err(wiphy, "get chanspecs error (%d)\n", err);
goto fail_pbuf; goto fail_pbuf;
} }
wiphy = cfg_to_wiphy(cfg);
band = wiphy->bands[NL80211_BAND_2GHZ]; band = wiphy->bands[NL80211_BAND_2GHZ];
if (band) if (band)
for (i = 0; i < band->n_channels; i++) for (i = 0; i < band->n_channels; i++)
...@@ -5968,7 +6014,8 @@ static int brcmf_construct_chaninfo(struct brcmf_cfg80211_info *cfg, ...@@ -5968,7 +6014,8 @@ static int brcmf_construct_chaninfo(struct brcmf_cfg80211_info *cfg,
} else if (ch.band == BRCMU_CHAN_BAND_5G) { } else if (ch.band == BRCMU_CHAN_BAND_5G) {
band = wiphy->bands[NL80211_BAND_5GHZ]; band = wiphy->bands[NL80211_BAND_5GHZ];
} else { } else {
brcmf_err("Invalid channel Spec. 0x%x.\n", ch.chspec); bphy_err(wiphy, "Invalid channel Spec. 0x%x.\n",
ch.chspec);
continue; continue;
} }
if (!band) if (!band)
...@@ -5991,7 +6038,7 @@ static int brcmf_construct_chaninfo(struct brcmf_cfg80211_info *cfg, ...@@ -5991,7 +6038,7 @@ static int brcmf_construct_chaninfo(struct brcmf_cfg80211_info *cfg,
/* It seems firmware supports some channel we never /* It seems firmware supports some channel we never
* considered. Something new in IEEE standard? * considered. Something new in IEEE standard?
*/ */
brcmf_err("Ignoring unexpected firmware channel %d\n", bphy_err(wiphy, "Ignoring unexpected firmware channel %d\n",
ch.control_ch_num); ch.control_ch_num);
continue; continue;
} }
...@@ -6038,6 +6085,7 @@ static int brcmf_construct_chaninfo(struct brcmf_cfg80211_info *cfg, ...@@ -6038,6 +6085,7 @@ static int brcmf_construct_chaninfo(struct brcmf_cfg80211_info *cfg,
static int brcmf_enable_bw40_2g(struct brcmf_cfg80211_info *cfg) static int brcmf_enable_bw40_2g(struct brcmf_cfg80211_info *cfg)
{ {
struct wiphy *wiphy = cfg_to_wiphy(cfg);
struct brcmf_if *ifp = brcmf_get_ifp(cfg->pub, 0); struct brcmf_if *ifp = brcmf_get_ifp(cfg->pub, 0);
struct ieee80211_supported_band *band; struct ieee80211_supported_band *band;
struct brcmf_fil_bwcap_le band_bwcap; struct brcmf_fil_bwcap_le band_bwcap;
...@@ -6084,7 +6132,7 @@ static int brcmf_enable_bw40_2g(struct brcmf_cfg80211_info *cfg) ...@@ -6084,7 +6132,7 @@ static int brcmf_enable_bw40_2g(struct brcmf_cfg80211_info *cfg)
err = brcmf_fil_iovar_data_get(ifp, "chanspecs", pbuf, err = brcmf_fil_iovar_data_get(ifp, "chanspecs", pbuf,
BRCMF_DCMD_MEDLEN); BRCMF_DCMD_MEDLEN);
if (err) { if (err) {
brcmf_err("get chanspecs error (%d)\n", err); bphy_err(wiphy, "get chanspecs error (%d)\n", err);
kfree(pbuf); kfree(pbuf);
return err; return err;
} }
...@@ -6115,6 +6163,7 @@ static int brcmf_enable_bw40_2g(struct brcmf_cfg80211_info *cfg) ...@@ -6115,6 +6163,7 @@ static int brcmf_enable_bw40_2g(struct brcmf_cfg80211_info *cfg)
static void brcmf_get_bwcap(struct brcmf_if *ifp, u32 bw_cap[]) static void brcmf_get_bwcap(struct brcmf_if *ifp, u32 bw_cap[])
{ {
struct wiphy *wiphy = ifp->drvr->wiphy;
u32 band, mimo_bwcap; u32 band, mimo_bwcap;
int err; int err;
...@@ -6150,7 +6199,7 @@ static void brcmf_get_bwcap(struct brcmf_if *ifp, u32 bw_cap[]) ...@@ -6150,7 +6199,7 @@ static void brcmf_get_bwcap(struct brcmf_if *ifp, u32 bw_cap[])
bw_cap[NL80211_BAND_5GHZ] |= WLC_BW_20MHZ_BIT; bw_cap[NL80211_BAND_5GHZ] |= WLC_BW_20MHZ_BIT;
break; break;
default: default:
brcmf_err("invalid mimo_bw_cap value\n"); bphy_err(wiphy, "invalid mimo_bw_cap value\n");
} }
} }
...@@ -6226,7 +6275,7 @@ static void brcmf_update_vht_cap(struct ieee80211_supported_band *band, ...@@ -6226,7 +6275,7 @@ static void brcmf_update_vht_cap(struct ieee80211_supported_band *band,
static int brcmf_setup_wiphybands(struct brcmf_cfg80211_info *cfg) static int brcmf_setup_wiphybands(struct brcmf_cfg80211_info *cfg)
{ {
struct brcmf_if *ifp = brcmf_get_ifp(cfg->pub, 0); struct brcmf_if *ifp = brcmf_get_ifp(cfg->pub, 0);
struct wiphy *wiphy; struct wiphy *wiphy = cfg_to_wiphy(cfg);
u32 nmode = 0; u32 nmode = 0;
u32 vhtmode = 0; u32 vhtmode = 0;
u32 bw_cap[2] = { WLC_BW_20MHZ_BIT, WLC_BW_20MHZ_BIT }; u32 bw_cap[2] = { WLC_BW_20MHZ_BIT, WLC_BW_20MHZ_BIT };
...@@ -6242,7 +6291,7 @@ static int brcmf_setup_wiphybands(struct brcmf_cfg80211_info *cfg) ...@@ -6242,7 +6291,7 @@ static int brcmf_setup_wiphybands(struct brcmf_cfg80211_info *cfg)
(void)brcmf_fil_iovar_int_get(ifp, "vhtmode", &vhtmode); (void)brcmf_fil_iovar_int_get(ifp, "vhtmode", &vhtmode);
err = brcmf_fil_iovar_int_get(ifp, "nmode", &nmode); err = brcmf_fil_iovar_int_get(ifp, "nmode", &nmode);
if (err) { if (err) {
brcmf_err("nmode error (%d)\n", err); bphy_err(wiphy, "nmode error (%d)\n", err);
} else { } else {
brcmf_get_bwcap(ifp, bw_cap); brcmf_get_bwcap(ifp, bw_cap);
} }
...@@ -6252,7 +6301,7 @@ static int brcmf_setup_wiphybands(struct brcmf_cfg80211_info *cfg) ...@@ -6252,7 +6301,7 @@ static int brcmf_setup_wiphybands(struct brcmf_cfg80211_info *cfg)
err = brcmf_fil_iovar_int_get(ifp, "rxchain", &rxchain); err = brcmf_fil_iovar_int_get(ifp, "rxchain", &rxchain);
if (err) { if (err) {
brcmf_err("rxchain error (%d)\n", err); bphy_err(wiphy, "rxchain error (%d)\n", err);
nchain = 1; nchain = 1;
} else { } else {
for (nchain = 0; rxchain; nchain++) for (nchain = 0; rxchain; nchain++)
...@@ -6262,7 +6311,7 @@ static int brcmf_setup_wiphybands(struct brcmf_cfg80211_info *cfg) ...@@ -6262,7 +6311,7 @@ static int brcmf_setup_wiphybands(struct brcmf_cfg80211_info *cfg)
err = brcmf_construct_chaninfo(cfg, bw_cap); err = brcmf_construct_chaninfo(cfg, bw_cap);
if (err) { if (err) {
brcmf_err("brcmf_construct_chaninfo failed (%d)\n", err); bphy_err(wiphy, "brcmf_construct_chaninfo failed (%d)\n", err);
return err; return err;
} }
...@@ -6274,7 +6323,6 @@ static int brcmf_setup_wiphybands(struct brcmf_cfg80211_info *cfg) ...@@ -6274,7 +6323,6 @@ static int brcmf_setup_wiphybands(struct brcmf_cfg80211_info *cfg)
&txbf_bfr_cap); &txbf_bfr_cap);
} }
wiphy = cfg_to_wiphy(cfg);
for (i = 0; i < ARRAY_SIZE(wiphy->bands); i++) { for (i = 0; i < ARRAY_SIZE(wiphy->bands); i++) {
band = wiphy->bands[i]; band = wiphy->bands[i];
if (band == NULL) if (band == NULL)
...@@ -6475,7 +6523,7 @@ static void brcmf_wiphy_wowl_params(struct wiphy *wiphy, struct brcmf_if *ifp) ...@@ -6475,7 +6523,7 @@ static void brcmf_wiphy_wowl_params(struct wiphy *wiphy, struct brcmf_if *ifp)
wowl = kmemdup(&brcmf_wowlan_support, sizeof(brcmf_wowlan_support), wowl = kmemdup(&brcmf_wowlan_support, sizeof(brcmf_wowlan_support),
GFP_KERNEL); GFP_KERNEL);
if (!wowl) { if (!wowl) {
brcmf_err("only support basic wowlan features\n"); bphy_err(wiphy, "only support basic wowlan features\n");
wiphy->wowlan = &brcmf_wowlan_support; wiphy->wowlan = &brcmf_wowlan_support;
return; return;
} }
...@@ -6572,7 +6620,7 @@ static int brcmf_setup_wiphy(struct wiphy *wiphy, struct brcmf_if *ifp) ...@@ -6572,7 +6620,7 @@ static int brcmf_setup_wiphy(struct wiphy *wiphy, struct brcmf_if *ifp)
err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_BANDLIST, &bandlist, err = brcmf_fil_cmd_data_get(ifp, BRCMF_C_GET_BANDLIST, &bandlist,
sizeof(bandlist)); sizeof(bandlist));
if (err) { if (err) {
brcmf_err("could not obtain band info: err=%d\n", err); bphy_err(wiphy, "could not obtain band info: err=%d\n", err);
return err; return err;
} }
/* first entry in bandlist is number of bands */ /* first entry in bandlist is number of bands */
...@@ -6621,6 +6669,7 @@ static int brcmf_setup_wiphy(struct wiphy *wiphy, struct brcmf_if *ifp) ...@@ -6621,6 +6669,7 @@ static int brcmf_setup_wiphy(struct wiphy *wiphy, struct brcmf_if *ifp)
static s32 brcmf_config_dongle(struct brcmf_cfg80211_info *cfg) static s32 brcmf_config_dongle(struct brcmf_cfg80211_info *cfg)
{ {
struct wiphy *wiphy = cfg_to_wiphy(cfg);
struct net_device *ndev; struct net_device *ndev;
struct wireless_dev *wdev; struct wireless_dev *wdev;
struct brcmf_if *ifp; struct brcmf_if *ifp;
...@@ -6658,7 +6707,7 @@ static s32 brcmf_config_dongle(struct brcmf_cfg80211_info *cfg) ...@@ -6658,7 +6707,7 @@ static s32 brcmf_config_dongle(struct brcmf_cfg80211_info *cfg)
err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_FAKEFRAG, 1); err = brcmf_fil_cmd_int_set(ifp, BRCMF_C_SET_FAKEFRAG, 1);
if (err) { if (err) {
brcmf_err("failed to set frameburst mode\n"); bphy_err(wiphy, "failed to set frameburst mode\n");
goto default_conf_out; goto default_conf_out;
} }
...@@ -6850,7 +6899,7 @@ static void brcmf_cfg80211_reg_notifier(struct wiphy *wiphy, ...@@ -6850,7 +6899,7 @@ static void brcmf_cfg80211_reg_notifier(struct wiphy *wiphy,
/* ignore non-ISO3166 country codes */ /* ignore non-ISO3166 country codes */
for (i = 0; i < 2; i++) for (i = 0; i < 2; i++)
if (req->alpha2[i] < 'A' || req->alpha2[i] > 'Z') { if (req->alpha2[i] < 'A' || req->alpha2[i] > 'Z') {
brcmf_err("not an ISO3166 code (0x%02x 0x%02x)\n", bphy_err(wiphy, "not an ISO3166 code (0x%02x 0x%02x)\n",
req->alpha2[0], req->alpha2[1]); req->alpha2[0], req->alpha2[1]);
return; return;
} }
...@@ -6860,7 +6909,7 @@ static void brcmf_cfg80211_reg_notifier(struct wiphy *wiphy, ...@@ -6860,7 +6909,7 @@ static void brcmf_cfg80211_reg_notifier(struct wiphy *wiphy,
err = brcmf_fil_iovar_data_get(ifp, "country", &ccreq, sizeof(ccreq)); err = brcmf_fil_iovar_data_get(ifp, "country", &ccreq, sizeof(ccreq));
if (err) { if (err) {
brcmf_err("Country code iovar returned err = %d\n", err); bphy_err(wiphy, "Country code iovar returned err = %d\n", err);
return; return;
} }
...@@ -6870,7 +6919,7 @@ static void brcmf_cfg80211_reg_notifier(struct wiphy *wiphy, ...@@ -6870,7 +6919,7 @@ static void brcmf_cfg80211_reg_notifier(struct wiphy *wiphy,
err = brcmf_fil_iovar_data_set(ifp, "country", &ccreq, sizeof(ccreq)); err = brcmf_fil_iovar_data_set(ifp, "country", &ccreq, sizeof(ccreq));
if (err) { if (err) {
brcmf_err("Firmware rejected country setting\n"); bphy_err(wiphy, "Firmware rejected country setting\n");
return; return;
} }
brcmf_setup_wiphybands(cfg); brcmf_setup_wiphybands(cfg);
...@@ -6916,13 +6965,13 @@ struct brcmf_cfg80211_info *brcmf_cfg80211_attach(struct brcmf_pub *drvr, ...@@ -6916,13 +6965,13 @@ struct brcmf_cfg80211_info *brcmf_cfg80211_attach(struct brcmf_pub *drvr,
u16 *cap = NULL; u16 *cap = NULL;
if (!ndev) { if (!ndev) {
brcmf_err("ndev is invalid\n"); bphy_err(wiphy, "ndev is invalid\n");
return NULL; return NULL;
} }
cfg = kzalloc(sizeof(*cfg), GFP_KERNEL); cfg = kzalloc(sizeof(*cfg), GFP_KERNEL);
if (!cfg) { if (!cfg) {
brcmf_err("Could not allocate wiphy device\n"); bphy_err(wiphy, "Could not allocate wiphy device\n");
return NULL; return NULL;
} }
...@@ -6943,7 +6992,7 @@ struct brcmf_cfg80211_info *brcmf_cfg80211_attach(struct brcmf_pub *drvr, ...@@ -6943,7 +6992,7 @@ struct brcmf_cfg80211_info *brcmf_cfg80211_attach(struct brcmf_pub *drvr,
err = wl_init_priv(cfg); err = wl_init_priv(cfg);
if (err) { if (err) {
brcmf_err("Failed to init iwm_priv (%d)\n", err); bphy_err(wiphy, "Failed to init iwm_priv (%d)\n", err);
brcmf_free_vif(vif); brcmf_free_vif(vif);
goto wiphy_out; goto wiphy_out;
} }
...@@ -6952,7 +7001,7 @@ struct brcmf_cfg80211_info *brcmf_cfg80211_attach(struct brcmf_pub *drvr, ...@@ -6952,7 +7001,7 @@ struct brcmf_cfg80211_info *brcmf_cfg80211_attach(struct brcmf_pub *drvr,
/* determine d11 io type before wiphy setup */ /* determine d11 io type before wiphy setup */
err = brcmf_fil_cmd_int_get(ifp, BRCMF_C_GET_VERSION, &io_type); err = brcmf_fil_cmd_int_get(ifp, BRCMF_C_GET_VERSION, &io_type);
if (err) { if (err) {
brcmf_err("Failed to get D11 version (%d)\n", err); bphy_err(wiphy, "Failed to get D11 version (%d)\n", err);
goto priv_out; goto priv_out;
} }
cfg->d11inf.io_type = (u8)io_type; cfg->d11inf.io_type = (u8)io_type;
...@@ -6986,13 +7035,13 @@ struct brcmf_cfg80211_info *brcmf_cfg80211_attach(struct brcmf_pub *drvr, ...@@ -6986,13 +7035,13 @@ struct brcmf_cfg80211_info *brcmf_cfg80211_attach(struct brcmf_pub *drvr,
#endif #endif
err = wiphy_register(wiphy); err = wiphy_register(wiphy);
if (err < 0) { if (err < 0) {
brcmf_err("Could not register wiphy device (%d)\n", err); bphy_err(wiphy, "Could not register wiphy device (%d)\n", err);
goto priv_out; goto priv_out;
} }
err = brcmf_setup_wiphybands(cfg); err = brcmf_setup_wiphybands(cfg);
if (err) { if (err) {
brcmf_err("Setting wiphy bands failed (%d)\n", err); bphy_err(wiphy, "Setting wiphy bands failed (%d)\n", err);
goto wiphy_unreg_out; goto wiphy_unreg_out;
} }
...@@ -7010,24 +7059,24 @@ struct brcmf_cfg80211_info *brcmf_cfg80211_attach(struct brcmf_pub *drvr, ...@@ -7010,24 +7059,24 @@ struct brcmf_cfg80211_info *brcmf_cfg80211_attach(struct brcmf_pub *drvr,
err = brcmf_fweh_activate_events(ifp); err = brcmf_fweh_activate_events(ifp);
if (err) { if (err) {
brcmf_err("FWEH activation failed (%d)\n", err); bphy_err(wiphy, "FWEH activation failed (%d)\n", err);
goto wiphy_unreg_out; goto wiphy_unreg_out;
} }
err = brcmf_p2p_attach(cfg, p2pdev_forced); err = brcmf_p2p_attach(cfg, p2pdev_forced);
if (err) { if (err) {
brcmf_err("P2P initialisation failed (%d)\n", err); bphy_err(wiphy, "P2P initialisation failed (%d)\n", err);
goto wiphy_unreg_out; goto wiphy_unreg_out;
} }
err = brcmf_btcoex_attach(cfg); err = brcmf_btcoex_attach(cfg);
if (err) { if (err) {
brcmf_err("BT-coex initialisation failed (%d)\n", err); bphy_err(wiphy, "BT-coex initialisation failed (%d)\n", err);
brcmf_p2p_detach(&cfg->p2p); brcmf_p2p_detach(&cfg->p2p);
goto wiphy_unreg_out; goto wiphy_unreg_out;
} }
err = brcmf_pno_attach(cfg); err = brcmf_pno_attach(cfg);
if (err) { if (err) {
brcmf_err("PNO initialisation failed (%d)\n", err); bphy_err(wiphy, "PNO initialisation failed (%d)\n", err);
brcmf_btcoex_detach(cfg); brcmf_btcoex_detach(cfg);
brcmf_p2p_detach(&cfg->p2p); brcmf_p2p_detach(&cfg->p2p);
goto wiphy_unreg_out; goto wiphy_unreg_out;
...@@ -7047,7 +7096,7 @@ struct brcmf_cfg80211_info *brcmf_cfg80211_attach(struct brcmf_pub *drvr, ...@@ -7047,7 +7096,7 @@ struct brcmf_cfg80211_info *brcmf_cfg80211_attach(struct brcmf_pub *drvr,
/* (re-) activate FWEH event handling */ /* (re-) activate FWEH event handling */
err = brcmf_fweh_activate_events(ifp); err = brcmf_fweh_activate_events(ifp);
if (err) { if (err) {
brcmf_err("FWEH activation failed (%d)\n", err); bphy_err(wiphy, "FWEH activation failed (%d)\n", err);
goto detach; goto detach;
} }
......
...@@ -62,6 +62,15 @@ void __brcmf_err(struct brcmf_bus *bus, const char *func, const char *fmt, ...); ...@@ -62,6 +62,15 @@ void __brcmf_err(struct brcmf_bus *bus, const char *func, const char *fmt, ...);
} while (0) } while (0)
#endif #endif
#define bphy_err(wiphy, fmt, ...) \
do { \
if (IS_ENABLED(CONFIG_BRCMDBG) || \
IS_ENABLED(CONFIG_BRCM_TRACING) || \
net_ratelimit()) \
wiphy_err(wiphy, "%s: " fmt, __func__, \
##__VA_ARGS__); \
} while (0)
#if defined(DEBUG) || defined(CONFIG_BRCM_TRACING) #if defined(DEBUG) || defined(CONFIG_BRCM_TRACING)
/* For debug/tracing purposes treat info messages as errors */ /* For debug/tracing purposes treat info messages as errors */
......
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