wifi: wilc1000: read MAC address from fuse at probe

The default netdev interface exposed by WILC1000 is registered at probe,
but the chip mac address is not known until ndo_open, which will load and
start chip firmware and then retrieve stored MAC address from it. As a
consequence, the interface has uninitialized value (00:00:00:00:00) until a
user brings up the interface.

Fix MAC address at probe by setting the following steps:
- at probe, read MAC address directly from fuse
- whenever a new netdevice is created, apply saved mac address (which can
  be a user-provided address, or the eFuse Mac address if no address has
  been passed by user)
- whenever an interface is brought up for the first time (and so the
  firmware is loaded and started), enforce netdevice mac address to the
  chip (in case user has changed it)

Reported-by: Heiko Thiery <heiko.thiery@gmail.com>
Closes: https://lore.kernel.org/netdev/CAEyMn7aV-B4OEhHR4Ad0LM3sKCz1-nDqSb9uZNmRWR-hMZ=z+A@mail.gmail.com/T/
Signed-off-by: Ajay Singh <ajay.kathat@microchip.com>
Co-developed-by: Alexis Lothoré <alexis.lothore@bootlin.com>
Signed-off-by: Alexis Lothoré <alexis.lothore@bootlin.com>
Tested-by: Heiko Thiery <heiko.thiery@gmail.com>
Signed-off-by: Kalle Valo <kvalo@kernel.org>
Link: https://msgid.link/20240514-mac_addr_at_probe-v2-6-afef09f1cd10@bootlin.com
This commit is contained in:
Ajay Singh 2024-05-14 17:51:24 +02:00 committed by Kalle Valo
parent a5d6b1d453
commit 83d9b54ee5
3 changed files with 43 additions and 17 deletions

View file

@ -588,7 +588,6 @@ static int wilc_mac_open(struct net_device *ndev)
struct wilc *wl = vif->wilc; struct wilc *wl = vif->wilc;
int ret = 0; int ret = 0;
struct mgmt_frame_regs mgmt_regs = {}; struct mgmt_frame_regs mgmt_regs = {};
u8 addr[ETH_ALEN] __aligned(2);
if (!wl || !wl->dev) { if (!wl || !wl->dev) {
netdev_err(ndev, "device not ready\n"); netdev_err(ndev, "device not ready\n");
@ -607,25 +606,19 @@ static int wilc_mac_open(struct net_device *ndev)
return ret; return ret;
} }
netdev_dbg(ndev, "Mac address: %pM\n", ndev->dev_addr);
ret = wilc_set_mac_address(vif, ndev->dev_addr);
if (ret) {
netdev_err(ndev, "Failed to enforce MAC address in chip");
wilc_deinit_host_int(ndev);
if (!wl->open_ifcs)
wilc_wlan_deinitialize(ndev);
return ret;
}
wilc_set_operation_mode(vif, wilc_get_vif_idx(vif), vif->iftype, wilc_set_operation_mode(vif, wilc_get_vif_idx(vif), vif->iftype,
vif->idx); vif->idx);
if (is_valid_ether_addr(ndev->dev_addr)) {
ether_addr_copy(addr, ndev->dev_addr);
wilc_set_mac_address(vif, addr);
} else {
wilc_get_mac_address(vif, addr);
eth_hw_addr_set(ndev, addr);
}
netdev_dbg(ndev, "Mac address: %pM\n", ndev->dev_addr);
if (!is_valid_ether_addr(ndev->dev_addr)) {
netdev_err(ndev, "Wrong MAC address\n");
wilc_deinit_host_int(ndev);
wilc_wlan_deinitialize(ndev);
return -EINVAL;
}
mgmt_regs.interface_stypes = vif->mgmt_reg_stypes; mgmt_regs.interface_stypes = vif->mgmt_reg_stypes;
/* so we detect a change */ /* so we detect a change */
vif->mgmt_reg_stypes = 0; vif->mgmt_reg_stypes = 0;
@ -941,6 +934,7 @@ struct wilc_vif *wilc_netdev_ifc_init(struct wilc *wl, const char *name,
int vif_type, enum nl80211_iftype type, int vif_type, enum nl80211_iftype type,
bool rtnl_locked) bool rtnl_locked)
{ {
u8 mac_address[ETH_ALEN];
struct net_device *ndev; struct net_device *ndev;
struct wilc_vif *vif; struct wilc_vif *vif;
int ret; int ret;
@ -969,6 +963,18 @@ struct wilc_vif *wilc_netdev_ifc_init(struct wilc *wl, const char *name,
vif->iftype = vif_type; vif->iftype = vif_type;
vif->idx = wilc_get_available_idx(wl); vif->idx = wilc_get_available_idx(wl);
vif->mac_opened = 0; vif->mac_opened = 0;
memcpy(mac_address, wl->nv_mac_address, ETH_ALEN);
/* WILC firmware uses locally administered MAC address for the
* second virtual interface (bit 1 of first byte set), but
* since it is possibly not loaded/running yet, reproduce this behavior
* in the driver during interface creation.
*/
if (vif->idx)
mac_address[0] |= 0x2;
eth_hw_addr_set(vif->ndev, mac_address);
mutex_lock(&wl->vif_mutex); mutex_lock(&wl->vif_mutex);
list_add_tail_rcu(&vif->list, &wl->vif_list); list_add_tail_rcu(&vif->list, &wl->vif_list);
wl->vif_num += 1; wl->vif_num += 1;

View file

@ -24,6 +24,9 @@ MODULE_DEVICE_TABLE(sdio, wilc_sdio_ids);
#define WILC_SDIO_BLOCK_SIZE 512 #define WILC_SDIO_BLOCK_SIZE 512
static int wilc_sdio_init(struct wilc *wilc, bool resume);
static int wilc_sdio_deinit(struct wilc *wilc);
struct wilc_sdio { struct wilc_sdio {
bool irq_gpio; bool irq_gpio;
u32 block_size; u32 block_size;
@ -178,6 +181,16 @@ static int wilc_sdio_probe(struct sdio_func *func,
} }
clk_prepare_enable(wilc->rtc_clk); clk_prepare_enable(wilc->rtc_clk);
wilc_sdio_init(wilc, false);
ret = wilc_load_mac_from_nv(wilc);
if (ret) {
pr_err("Can not retrieve MAC address from chip\n");
goto clk_disable_unprepare;
}
wilc_sdio_deinit(wilc);
vif = wilc_netdev_ifc_init(wilc, "wlan%d", WILC_STATION_MODE, vif = wilc_netdev_ifc_init(wilc, "wlan%d", WILC_STATION_MODE,
NL80211_IFTYPE_STATION, false); NL80211_IFTYPE_STATION, false);
if (IS_ERR(vif)) { if (IS_ERR(vif)) {
@ -187,6 +200,7 @@ static int wilc_sdio_probe(struct sdio_func *func,
dev_info(&func->dev, "Driver Initializing success\n"); dev_info(&func->dev, "Driver Initializing success\n");
return 0; return 0;
clk_disable_unprepare: clk_disable_unprepare:
clk_disable_unprepare(wilc->rtc_clk); clk_disable_unprepare(wilc->rtc_clk);
dispose_irq: dispose_irq:

View file

@ -250,6 +250,12 @@ static int wilc_bus_probe(struct spi_device *spi)
if (ret) if (ret)
goto power_down; goto power_down;
ret = wilc_load_mac_from_nv(wilc);
if (ret) {
pr_err("Can not retrieve MAC address from chip\n");
goto power_down;
}
wilc_wlan_power(wilc, false); wilc_wlan_power(wilc, false);
vif = wilc_netdev_ifc_init(wilc, "wlan%d", WILC_STATION_MODE, vif = wilc_netdev_ifc_init(wilc, "wlan%d", WILC_STATION_MODE,
NL80211_IFTYPE_STATION, false); NL80211_IFTYPE_STATION, false);