All of lore.kernel.org
 help / color / mirror / Atom feed
* [v4] wlcore: add missing nvs file name info for wilink8
@ 2017-07-31  8:42 Eyal Reizer
  2017-07-31  8:45   ` Reizer, Eyal
  0 siblings, 1 reply; 7+ messages in thread
From: Eyal Reizer @ 2017-07-31  8:42 UTC (permalink / raw)
  To: eyalr; +Cc: stable

The following commits:
c815fde wlcore: spi: Populate config firmware data
d776fc8 wlcore: sdio: Populate config firmware data

Populated the nvs entry for wilink6 and wilink7 only while it is
still needed for wilink8 as well.
This broke user space backward compatibility when upgrading from older
kernels, as the alternate mac address would not be read from the nvs that
is present in the file system (lib/firmware/ti-connectivity/wl1271-nvs.bin)
causing mac address change of the wlan interface.

This patch fix this and update the structure field with the same default
nvs file name that has been used before.

In addition, some distros hold a default wl1271-nvs.bin in the file
system with a bogus mac address (deadbeef...) that for a wl18xx device
also overrides the mac address that is stored inside the device.
Warn users about this bogus mac address and use a random mac instead

Cc: stable <stable@vger.kernel.org>
Signed-off-by: Eyal Reizer <eyalr@ti.com>
---
v2->v3: add a check for default deadbeef... mac address and warn about it
v3->v4: use a random TI mac address instead of the bogus one

---
 drivers/net/wireless/ti/wlcore/main.c | 16 ++++++++++++++++
 drivers/net/wireless/ti/wlcore/sdio.c |  1 +
 drivers/net/wireless/ti/wlcore/spi.c  |  1 +
 3 files changed, 18 insertions(+)

diff --git a/drivers/net/wireless/ti/wlcore/main.c b/drivers/net/wireless/ti/wlcore/main.c
index 60aaa85..7ce4221 100644
--- a/drivers/net/wireless/ti/wlcore/main.c
+++ b/drivers/net/wireless/ti/wlcore/main.c
@@ -5961,6 +5961,22 @@ static void wl12xx_derive_mac_addresses(struct wl1271 *wl, u32 oui, u32 nic)
 	if (nic + WLCORE_NUM_MAC_ADDRESSES - wl->num_mac_addr > 0xffffff)
 		wl1271_warning("NIC part of the MAC address wraps around!");
 
+	if (oui == 0xdeadbe && nic == 0xef0000) {
+		wl1271_warning("Detected unconfigured mac address in nvs.\n"
+				"Using a random TI mac address instead.\n"
+				"in case of using a wl12xx device, your "
+				"device performance may not be optimized.\n"
+				"Please use the calibrator tool to configure "
+				"your device.\n"
+				"When using a wl18xx device the nvs file can "
+				"be removed as a default mac address is "
+				"stored internally.\n");
+
+		/* Use TI oui and a random nic */
+		oui = 0x080028;
+		nic = get_random_int();
+	}
+
 	for (i = 0; i < wl->num_mac_addr; i++) {
 		wl->addresses[i].addr[0] = (u8)(oui >> 16);
 		wl->addresses[i].addr[1] = (u8)(oui >> 8);
diff --git a/drivers/net/wireless/ti/wlcore/sdio.c b/drivers/net/wireless/ti/wlcore/sdio.c
index 2fb3871..f8a1fea 100644
--- a/drivers/net/wireless/ti/wlcore/sdio.c
+++ b/drivers/net/wireless/ti/wlcore/sdio.c
@@ -230,6 +230,7 @@ static const struct wilink_family_data wl128x_data = {
 static const struct wilink_family_data wl18xx_data = {
 	.name = "wl18xx",
 	.cfg_name = "ti-connectivity/wl18xx-conf.bin",
+	.nvs_name = "ti-connectivity/wl1271-nvs.bin",
 };
 
 static const struct of_device_id wlcore_sdio_of_match_table[] = {
diff --git a/drivers/net/wireless/ti/wlcore/spi.c b/drivers/net/wireless/ti/wlcore/spi.c
index fdabb92..62ce54a 100644
--- a/drivers/net/wireless/ti/wlcore/spi.c
+++ b/drivers/net/wireless/ti/wlcore/spi.c
@@ -92,6 +92,7 @@ static const struct wilink_family_data wl128x_data = {
 static const struct wilink_family_data wl18xx_data = {
 	.name = "wl18xx",
 	.cfg_name = "ti-connectivity/wl18xx-conf.bin",
+	.nvs_name = "ti-connectivity/wl1271-nvs.bin",
 };
 
 struct wl12xx_spi_glue {
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [v4] wlcore: add missing nvs file name info for wilink8
  2017-07-31  8:42 [v4] wlcore: add missing nvs file name info for wilink8 Eyal Reizer
@ 2017-07-31  8:45   ` Reizer, Eyal
  0 siblings, 0 replies; 7+ messages in thread
From: Reizer, Eyal @ 2017-07-31  8:45 UTC (permalink / raw)
  To: Kalle Valo, ,Tony Lindgren, linux-wireless, linux-kernel
  Cc: sebastian.reichel

The following commits:
c815fde wlcore: spi: Populate config firmware data
d776fc8 wlcore: sdio: Populate config firmware data

Populated the nvs entry for wilink6 and wilink7 only while it is
still needed for wilink8 as well.
This broke user space backward compatibility when upgrading from older
kernels, as the alternate mac address would not be read from the nvs that
is present in the file system (lib/firmware/ti-connectivity/wl1271-nvs.bin)
causing mac address change of the wlan interface.

This patch fix this and update the structure field with the same default
nvs file name that has been used before.

In addition, some distros hold a default wl1271-nvs.bin in the file
system with a bogus mac address (deadbeef...) that for a wl18xx device
also overrides the mac address that is stored inside the device.
Warn users about this bogus mac address and use a random mac instead

Cc: stable <stable@vger.kernel.org>
Signed-off-by: Eyal Reizer <eyalr@ti.com>
---
v2->v3: add a check for default deadbeef... mac address and warn about it
v3->v4: use a random TI mac address instead of the bogus one

---
 drivers/net/wireless/ti/wlcore/main.c | 16 ++++++++++++++++
 drivers/net/wireless/ti/wlcore/sdio.c |  1 +
 drivers/net/wireless/ti/wlcore/spi.c  |  1 +
 3 files changed, 18 insertions(+)

diff --git a/drivers/net/wireless/ti/wlcore/main.c b/drivers/net/wireless/t=
i/wlcore/main.c
index 60aaa85..7ce4221 100644
--- a/drivers/net/wireless/ti/wlcore/main.c
+++ b/drivers/net/wireless/ti/wlcore/main.c
@@ -5961,6 +5961,22 @@ static void wl12xx_derive_mac_addresses(struct wl127=
1 *wl, u32 oui, u32 nic)
 	if (nic + WLCORE_NUM_MAC_ADDRESSES - wl->num_mac_addr > 0xffffff)
 		wl1271_warning("NIC part of the MAC address wraps around!");
=20
+	if (oui =3D=3D 0xdeadbe && nic =3D=3D 0xef0000) {
+		wl1271_warning("Detected unconfigured mac address in nvs.\n"
+				"Using a random TI mac address instead.\n"
+				"in case of using a wl12xx device, your "
+				"device performance may not be optimized.\n"
+				"Please use the calibrator tool to configure "
+				"your device.\n"
+				"When using a wl18xx device the nvs file can "
+				"be removed as a default mac address is "
+				"stored internally.\n");
+
+		/* Use TI oui and a random nic */
+		oui =3D 0x080028;
+		nic =3D get_random_int();
+	}
+
 	for (i =3D 0; i < wl->num_mac_addr; i++) {
 		wl->addresses[i].addr[0] =3D (u8)(oui >> 16);
 		wl->addresses[i].addr[1] =3D (u8)(oui >> 8);
diff --git a/drivers/net/wireless/ti/wlcore/sdio.c b/drivers/net/wireless/t=
i/wlcore/sdio.c
index 2fb3871..f8a1fea 100644
--- a/drivers/net/wireless/ti/wlcore/sdio.c
+++ b/drivers/net/wireless/ti/wlcore/sdio.c
@@ -230,6 +230,7 @@ static const struct wilink_family_data wl128x_data =3D =
{
 static const struct wilink_family_data wl18xx_data =3D {
 	.name =3D "wl18xx",
 	.cfg_name =3D "ti-connectivity/wl18xx-conf.bin",
+	.nvs_name =3D "ti-connectivity/wl1271-nvs.bin",
 };
=20
 static const struct of_device_id wlcore_sdio_of_match_table[] =3D {
diff --git a/drivers/net/wireless/ti/wlcore/spi.c b/drivers/net/wireless/ti=
/wlcore/spi.c
index fdabb92..62ce54a 100644
--- a/drivers/net/wireless/ti/wlcore/spi.c
+++ b/drivers/net/wireless/ti/wlcore/spi.c
@@ -92,6 +92,7 @@ static const struct wilink_family_data wl128x_data =3D {
 static const struct wilink_family_data wl18xx_data =3D {
 	.name =3D "wl18xx",
 	.cfg_name =3D "ti-connectivity/wl18xx-conf.bin",
+	.nvs_name =3D "ti-connectivity/wl1271-nvs.bin",
 };
=20
 struct wl12xx_spi_glue {
--=20
2.7.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* [v4] wlcore: add missing nvs file name info for wilink8
@ 2017-07-31  8:45   ` Reizer, Eyal
  0 siblings, 0 replies; 7+ messages in thread
From: Reizer, Eyal @ 2017-07-31  8:45 UTC (permalink / raw)
  To: Kalle Valo, ,Tony Lindgren, linux-wireless, linux-kernel
  Cc: sebastian.reichel

The following commits:
c815fde wlcore: spi: Populate config firmware data
d776fc8 wlcore: sdio: Populate config firmware data

Populated the nvs entry for wilink6 and wilink7 only while it is
still needed for wilink8 as well.
This broke user space backward compatibility when upgrading from older
kernels, as the alternate mac address would not be read from the nvs that
is present in the file system (lib/firmware/ti-connectivity/wl1271-nvs.bin)
causing mac address change of the wlan interface.

This patch fix this and update the structure field with the same default
nvs file name that has been used before.

In addition, some distros hold a default wl1271-nvs.bin in the file
system with a bogus mac address (deadbeef...) that for a wl18xx device
also overrides the mac address that is stored inside the device.
Warn users about this bogus mac address and use a random mac instead

Cc: stable <stable@vger.kernel.org>
Signed-off-by: Eyal Reizer <eyalr@ti.com>
---
v2->v3: add a check for default deadbeef... mac address and warn about it
v3->v4: use a random TI mac address instead of the bogus one

---
 drivers/net/wireless/ti/wlcore/main.c | 16 ++++++++++++++++
 drivers/net/wireless/ti/wlcore/sdio.c |  1 +
 drivers/net/wireless/ti/wlcore/spi.c  |  1 +
 3 files changed, 18 insertions(+)

diff --git a/drivers/net/wireless/ti/wlcore/main.c b/drivers/net/wireless/ti/wlcore/main.c
index 60aaa85..7ce4221 100644
--- a/drivers/net/wireless/ti/wlcore/main.c
+++ b/drivers/net/wireless/ti/wlcore/main.c
@@ -5961,6 +5961,22 @@ static void wl12xx_derive_mac_addresses(struct wl1271 *wl, u32 oui, u32 nic)
 	if (nic + WLCORE_NUM_MAC_ADDRESSES - wl->num_mac_addr > 0xffffff)
 		wl1271_warning("NIC part of the MAC address wraps around!");
 
+	if (oui == 0xdeadbe && nic == 0xef0000) {
+		wl1271_warning("Detected unconfigured mac address in nvs.\n"
+				"Using a random TI mac address instead.\n"
+				"in case of using a wl12xx device, your "
+				"device performance may not be optimized.\n"
+				"Please use the calibrator tool to configure "
+				"your device.\n"
+				"When using a wl18xx device the nvs file can "
+				"be removed as a default mac address is "
+				"stored internally.\n");
+
+		/* Use TI oui and a random nic */
+		oui = 0x080028;
+		nic = get_random_int();
+	}
+
 	for (i = 0; i < wl->num_mac_addr; i++) {
 		wl->addresses[i].addr[0] = (u8)(oui >> 16);
 		wl->addresses[i].addr[1] = (u8)(oui >> 8);
diff --git a/drivers/net/wireless/ti/wlcore/sdio.c b/drivers/net/wireless/ti/wlcore/sdio.c
index 2fb3871..f8a1fea 100644
--- a/drivers/net/wireless/ti/wlcore/sdio.c
+++ b/drivers/net/wireless/ti/wlcore/sdio.c
@@ -230,6 +230,7 @@ static const struct wilink_family_data wl128x_data = {
 static const struct wilink_family_data wl18xx_data = {
 	.name = "wl18xx",
 	.cfg_name = "ti-connectivity/wl18xx-conf.bin",
+	.nvs_name = "ti-connectivity/wl1271-nvs.bin",
 };
 
 static const struct of_device_id wlcore_sdio_of_match_table[] = {
diff --git a/drivers/net/wireless/ti/wlcore/spi.c b/drivers/net/wireless/ti/wlcore/spi.c
index fdabb92..62ce54a 100644
--- a/drivers/net/wireless/ti/wlcore/spi.c
+++ b/drivers/net/wireless/ti/wlcore/spi.c
@@ -92,6 +92,7 @@ static const struct wilink_family_data wl128x_data = {
 static const struct wilink_family_data wl18xx_data = {
 	.name = "wl18xx",
 	.cfg_name = "ti-connectivity/wl18xx-conf.bin",
+	.nvs_name = "ti-connectivity/wl1271-nvs.bin",
 };
 
 struct wl12xx_spi_glue {
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 7+ messages in thread

* Re: [v4] wlcore: add missing nvs file name info for wilink8
  2017-07-31  8:45   ` Reizer, Eyal
@ 2017-08-05  5:50     ` Julian Calaby
  -1 siblings, 0 replies; 7+ messages in thread
From: Julian Calaby @ 2017-08-05  5:50 UTC (permalink / raw)
  To: Reizer, Eyal
  Cc: Kalle Valo, ,Tony Lindgren, linux-wireless, linux-kernel,
	sebastian.reichel

Hi Eyal,

On Mon, Jul 31, 2017 at 6:45 PM, Reizer, Eyal <eyalr@ti.com> wrote:
> The following commits:
> c815fde wlcore: spi: Populate config firmware data
> d776fc8 wlcore: sdio: Populate config firmware data
>
> Populated the nvs entry for wilink6 and wilink7 only while it is
> still needed for wilink8 as well.
> This broke user space backward compatibility when upgrading from older
> kernels, as the alternate mac address would not be read from the nvs that
> is present in the file system (lib/firmware/ti-connectivity/wl1271-nvs.bin)
> causing mac address change of the wlan interface.
>
> This patch fix this and update the structure field with the same default
> nvs file name that has been used before.
>
> In addition, some distros hold a default wl1271-nvs.bin in the file
> system with a bogus mac address (deadbeef...) that for a wl18xx device
> also overrides the mac address that is stored inside the device.
> Warn users about this bogus mac address and use a random mac instead
>
> Cc: stable <stable@vger.kernel.org>
> Signed-off-by: Eyal Reizer <eyalr@ti.com>
> ---
>
> diff --git a/drivers/net/wireless/ti/wlcore/main.c b/drivers/net/wireless/ti/wlcore/main.c
> index 60aaa85..7ce4221 100644
> --- a/drivers/net/wireless/ti/wlcore/main.c
> +++ b/drivers/net/wireless/ti/wlcore/main.c
> @@ -5961,6 +5961,22 @@ static void wl12xx_derive_mac_addresses(struct wl1271 *wl, u32 oui, u32 nic)
>         if (nic + WLCORE_NUM_MAC_ADDRESSES - wl->num_mac_addr > 0xffffff)
>                 wl1271_warning("NIC part of the MAC address wraps around!");
>
> +       if (oui == 0xdeadbe && nic == 0xef0000) {
> +               wl1271_warning("Detected unconfigured mac address in nvs.\n"
> +                               "Using a random TI mac address instead.\n"
> +                               "in case of using a wl12xx device, your "
> +                               "device performance may not be optimized.\n"
> +                               "Please use the calibrator tool to configure "
> +                               "your device.\n"
> +                               "When using a wl18xx device the nvs file can "
> +                               "be removed as a default mac address is "
> +                               "stored internally.\n");
> +
> +               /* Use TI oui and a random nic */
> +               oui = 0x080028;

Is there (or should there be) a constant for this?

Thanks,

-- 
Julian Calaby

Email: julian.calaby@gmail.com
Profile: http://www.google.com/profiles/julian.calaby/

^ permalink raw reply	[flat|nested] 7+ messages in thread

* Re: [v4] wlcore: add missing nvs file name info for wilink8
@ 2017-08-05  5:50     ` Julian Calaby
  0 siblings, 0 replies; 7+ messages in thread
From: Julian Calaby @ 2017-08-05  5:50 UTC (permalink / raw)
  To: Reizer, Eyal
  Cc: Kalle Valo, ,Tony Lindgren, linux-wireless, linux-kernel,
	sebastian.reichel

Hi Eyal,

On Mon, Jul 31, 2017 at 6:45 PM, Reizer, Eyal <eyalr@ti.com> wrote:
> The following commits:
> c815fde wlcore: spi: Populate config firmware data
> d776fc8 wlcore: sdio: Populate config firmware data
>
> Populated the nvs entry for wilink6 and wilink7 only while it is
> still needed for wilink8 as well.
> This broke user space backward compatibility when upgrading from older
> kernels, as the alternate mac address would not be read from the nvs that
> is present in the file system (lib/firmware/ti-connectivity/wl1271-nvs.bin)
> causing mac address change of the wlan interface.
>
> This patch fix this and update the structure field with the same default
> nvs file name that has been used before.
>
> In addition, some distros hold a default wl1271-nvs.bin in the file
> system with a bogus mac address (deadbeef...) that for a wl18xx device
> also overrides the mac address that is stored inside the device.
> Warn users about this bogus mac address and use a random mac instead
>
> Cc: stable <stable@vger.kernel.org>
> Signed-off-by: Eyal Reizer <eyalr@ti.com>
> ---
>
> diff --git a/drivers/net/wireless/ti/wlcore/main.c b/drivers/net/wireless/ti/wlcore/main.c
> index 60aaa85..7ce4221 100644
> --- a/drivers/net/wireless/ti/wlcore/main.c
> +++ b/drivers/net/wireless/ti/wlcore/main.c
> @@ -5961,6 +5961,22 @@ static void wl12xx_derive_mac_addresses(struct wl1271 *wl, u32 oui, u32 nic)
>         if (nic + WLCORE_NUM_MAC_ADDRESSES - wl->num_mac_addr > 0xffffff)
>                 wl1271_warning("NIC part of the MAC address wraps around!");
>
> +       if (oui == 0xdeadbe && nic == 0xef0000) {
> +               wl1271_warning("Detected unconfigured mac address in nvs.\n"
> +                               "Using a random TI mac address instead.\n"
> +                               "in case of using a wl12xx device, your "
> +                               "device performance may not be optimized.\n"
> +                               "Please use the calibrator tool to configure "
> +                               "your device.\n"
> +                               "When using a wl18xx device the nvs file can "
> +                               "be removed as a default mac address is "
> +                               "stored internally.\n");
> +
> +               /* Use TI oui and a random nic */
> +               oui = 0x080028;

Is there (or should there be) a constant for this?

Thanks,

-- 
Julian Calaby

Email: julian.calaby@gmail.com
Profile: http://www.google.com/profiles/julian.calaby/

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: [v4] wlcore: add missing nvs file name info for wilink8
  2017-08-05  5:50     ` Julian Calaby
@ 2017-08-07  7:31       ` Reizer, Eyal
  -1 siblings, 0 replies; 7+ messages in thread
From: Reizer, Eyal @ 2017-08-07  7:31 UTC (permalink / raw)
  To: Julian Calaby
  Cc: Kalle Valo, ,Tony Lindgren, linux-wireless, linux-kernel,
	sebastian.reichel

DQoNCj4gLS0tLS1PcmlnaW5hbCBNZXNzYWdlLS0tLS0NCj4gRnJvbTogSnVsaWFuIENhbGFieSBb
bWFpbHRvOmp1bGlhbi5jYWxhYnlAZ21haWwuY29tXQ0KPiBTZW50OiBTYXR1cmRheSwgQXVndXN0
IDUsIDIwMTcgODo1MSBBTQ0KPiBUbzogUmVpemVyLCBFeWFsDQo+IENjOiBLYWxsZSBWYWxvOyAs
VG9ueSBMaW5kZ3JlbjsgbGludXgtd2lyZWxlc3NAdmdlci5rZXJuZWwub3JnOyBsaW51eC0NCj4g
a2VybmVsQHZnZXIua2VybmVsLm9yZzsgc2ViYXN0aWFuLnJlaWNoZWxAY29sbGFib3JhLmNvLnVr
DQo+IFN1YmplY3Q6IFJlOiBbdjRdIHdsY29yZTogYWRkIG1pc3NpbmcgbnZzIGZpbGUgbmFtZSBp
bmZvIGZvciB3aWxpbms4DQo+IA0KPiBIaSBFeWFsLA0KPiANCj4gT24gTW9uLCBKdWwgMzEsIDIw
MTcgYXQgNjo0NSBQTSwgUmVpemVyLCBFeWFsIDxleWFsckB0aS5jb20+IHdyb3RlOg0KPiA+IFRo
ZSBmb2xsb3dpbmcgY29tbWl0czoNCj4gPiBjODE1ZmRlIHdsY29yZTogc3BpOiBQb3B1bGF0ZSBj
b25maWcgZmlybXdhcmUgZGF0YQ0KPiA+IGQ3NzZmYzggd2xjb3JlOiBzZGlvOiBQb3B1bGF0ZSBj
b25maWcgZmlybXdhcmUgZGF0YQ0KPiA+DQo+ID4gUG9wdWxhdGVkIHRoZSBudnMgZW50cnkgZm9y
IHdpbGluazYgYW5kIHdpbGluazcgb25seSB3aGlsZSBpdCBpcw0KPiA+IHN0aWxsIG5lZWRlZCBm
b3Igd2lsaW5rOCBhcyB3ZWxsLg0KPiA+IFRoaXMgYnJva2UgdXNlciBzcGFjZSBiYWNrd2FyZCBj
b21wYXRpYmlsaXR5IHdoZW4gdXBncmFkaW5nIGZyb20gb2xkZXINCj4gPiBrZXJuZWxzLCBhcyB0
aGUgYWx0ZXJuYXRlIG1hYyBhZGRyZXNzIHdvdWxkIG5vdCBiZSByZWFkIGZyb20gdGhlIG52cyB0
aGF0DQo+ID4gaXMgcHJlc2VudCBpbiB0aGUgZmlsZSBzeXN0ZW0gKGxpYi9maXJtd2FyZS90aS1j
b25uZWN0aXZpdHkvd2wxMjcxLW52cy5iaW4pDQo+ID4gY2F1c2luZyBtYWMgYWRkcmVzcyBjaGFu
Z2Ugb2YgdGhlIHdsYW4gaW50ZXJmYWNlLg0KPiA+DQo+ID4gVGhpcyBwYXRjaCBmaXggdGhpcyBh
bmQgdXBkYXRlIHRoZSBzdHJ1Y3R1cmUgZmllbGQgd2l0aCB0aGUgc2FtZSBkZWZhdWx0DQo+ID4g
bnZzIGZpbGUgbmFtZSB0aGF0IGhhcyBiZWVuIHVzZWQgYmVmb3JlLg0KPiA+DQo+ID4gSW4gYWRk
aXRpb24sIHNvbWUgZGlzdHJvcyBob2xkIGEgZGVmYXVsdCB3bDEyNzEtbnZzLmJpbiBpbiB0aGUg
ZmlsZQ0KPiA+IHN5c3RlbSB3aXRoIGEgYm9ndXMgbWFjIGFkZHJlc3MgKGRlYWRiZWVmLi4uKSB0
aGF0IGZvciBhIHdsMTh4eCBkZXZpY2UNCj4gPiBhbHNvIG92ZXJyaWRlcyB0aGUgbWFjIGFkZHJl
c3MgdGhhdCBpcyBzdG9yZWQgaW5zaWRlIHRoZSBkZXZpY2UuDQo+ID4gV2FybiB1c2VycyBhYm91
dCB0aGlzIGJvZ3VzIG1hYyBhZGRyZXNzIGFuZCB1c2UgYSByYW5kb20gbWFjIGluc3RlYWQNCj4g
Pg0KPiA+IENjOiBzdGFibGUgPHN0YWJsZUB2Z2VyLmtlcm5lbC5vcmc+DQo+ID4gU2lnbmVkLW9m
Zi1ieTogRXlhbCBSZWl6ZXIgPGV5YWxyQHRpLmNvbT4NCj4gPiAtLS0NCj4gPg0KPiA+IGRpZmYg
LS1naXQgYS9kcml2ZXJzL25ldC93aXJlbGVzcy90aS93bGNvcmUvbWFpbi5jDQo+IGIvZHJpdmVy
cy9uZXQvd2lyZWxlc3MvdGkvd2xjb3JlL21haW4uYw0KPiA+IGluZGV4IDYwYWFhODUuLjdjZTQy
MjEgMTAwNjQ0DQo+ID4gLS0tIGEvZHJpdmVycy9uZXQvd2lyZWxlc3MvdGkvd2xjb3JlL21haW4u
Yw0KPiA+ICsrKyBiL2RyaXZlcnMvbmV0L3dpcmVsZXNzL3RpL3dsY29yZS9tYWluLmMNCj4gPiBA
QCAtNTk2MSw2ICs1OTYxLDIyIEBAIHN0YXRpYyB2b2lkIHdsMTJ4eF9kZXJpdmVfbWFjX2FkZHJl
c3NlcyhzdHJ1Y3QNCj4gd2wxMjcxICp3bCwgdTMyIG91aSwgdTMyIG5pYykNCj4gPiAgICAgICAg
IGlmIChuaWMgKyBXTENPUkVfTlVNX01BQ19BRERSRVNTRVMgLSB3bC0+bnVtX21hY19hZGRyID4N
Cj4gMHhmZmZmZmYpDQo+ID4gICAgICAgICAgICAgICAgIHdsMTI3MV93YXJuaW5nKCJOSUMgcGFy
dCBvZiB0aGUgTUFDIGFkZHJlc3Mgd3JhcHMgYXJvdW5kISIpOw0KPiA+DQo+ID4gKyAgICAgICBp
ZiAob3VpID09IDB4ZGVhZGJlICYmIG5pYyA9PSAweGVmMDAwMCkgew0KPiA+ICsgICAgICAgICAg
ICAgICB3bDEyNzFfd2FybmluZygiRGV0ZWN0ZWQgdW5jb25maWd1cmVkIG1hYyBhZGRyZXNzIGlu
IG52cy5cbiINCj4gPiArICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJVc2luZyBhIHJh
bmRvbSBUSSBtYWMgYWRkcmVzcyBpbnN0ZWFkLlxuIg0KPiA+ICsgICAgICAgICAgICAgICAgICAg
ICAgICAgICAgICAgImluIGNhc2Ugb2YgdXNpbmcgYSB3bDEyeHggZGV2aWNlLCB5b3VyICINCj4g
PiArICAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICJkZXZpY2UgcGVyZm9ybWFuY2UgbWF5
IG5vdCBiZSBvcHRpbWl6ZWQuXG4iDQo+ID4gKyAgICAgICAgICAgICAgICAgICAgICAgICAgICAg
ICAiUGxlYXNlIHVzZSB0aGUgY2FsaWJyYXRvciB0b29sIHRvIGNvbmZpZ3VyZSAiDQo+ID4gKyAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAgICAieW91ciBkZXZpY2UuXG4iDQo+ID4gKyAgICAg
ICAgICAgICAgICAgICAgICAgICAgICAgICAiV2hlbiB1c2luZyBhIHdsMTh4eCBkZXZpY2UgdGhl
IG52cyBmaWxlIGNhbiAiDQo+ID4gKyAgICAgICAgICAgICAgICAgICAgICAgICAgICAgICAiYmUg
cmVtb3ZlZCBhcyBhIGRlZmF1bHQgbWFjIGFkZHJlc3MgaXMgIg0KPiA+ICsgICAgICAgICAgICAg
ICAgICAgICAgICAgICAgICAgInN0b3JlZCBpbnRlcm5hbGx5LlxuIik7DQo+ID4gKw0KPiA+ICsg
ICAgICAgICAgICAgICAvKiBVc2UgVEkgb3VpIGFuZCBhIHJhbmRvbSBuaWMgKi8NCj4gPiArICAg
ICAgICAgICAgICAgb3VpID0gMHgwODAwMjg7DQo+IA0KPiBJcyB0aGVyZSAob3Igc2hvdWxkIHRo
ZXJlIGJlKSBhIGNvbnN0YW50IGZvciB0aGlzPw0KDQpUaGFua3MgZm9yIHRoZSBjb21tZW50LiBT
dWJtaXR0aW5nIHY1IGZpeGluZyB0aGlzLg0KDQpCZXN0IFJlZ2FyZHMsDQpFeWFsDQo=

^ permalink raw reply	[flat|nested] 7+ messages in thread

* RE: [v4] wlcore: add missing nvs file name info for wilink8
@ 2017-08-07  7:31       ` Reizer, Eyal
  0 siblings, 0 replies; 7+ messages in thread
From: Reizer, Eyal @ 2017-08-07  7:31 UTC (permalink / raw)
  To: Julian Calaby
  Cc: Kalle Valo, ,Tony Lindgren, linux-wireless, linux-kernel,
	sebastian.reichel



> -----Original Message-----
> From: Julian Calaby [mailto:julian.calaby@gmail.com]
> Sent: Saturday, August 5, 2017 8:51 AM
> To: Reizer, Eyal
> Cc: Kalle Valo; ,Tony Lindgren; linux-wireless@vger.kernel.org; linux-
> kernel@vger.kernel.org; sebastian.reichel@collabora.co.uk
> Subject: Re: [v4] wlcore: add missing nvs file name info for wilink8
> 
> Hi Eyal,
> 
> On Mon, Jul 31, 2017 at 6:45 PM, Reizer, Eyal <eyalr@ti.com> wrote:
> > The following commits:
> > c815fde wlcore: spi: Populate config firmware data
> > d776fc8 wlcore: sdio: Populate config firmware data
> >
> > Populated the nvs entry for wilink6 and wilink7 only while it is
> > still needed for wilink8 as well.
> > This broke user space backward compatibility when upgrading from older
> > kernels, as the alternate mac address would not be read from the nvs that
> > is present in the file system (lib/firmware/ti-connectivity/wl1271-nvs.bin)
> > causing mac address change of the wlan interface.
> >
> > This patch fix this and update the structure field with the same default
> > nvs file name that has been used before.
> >
> > In addition, some distros hold a default wl1271-nvs.bin in the file
> > system with a bogus mac address (deadbeef...) that for a wl18xx device
> > also overrides the mac address that is stored inside the device.
> > Warn users about this bogus mac address and use a random mac instead
> >
> > Cc: stable <stable@vger.kernel.org>
> > Signed-off-by: Eyal Reizer <eyalr@ti.com>
> > ---
> >
> > diff --git a/drivers/net/wireless/ti/wlcore/main.c
> b/drivers/net/wireless/ti/wlcore/main.c
> > index 60aaa85..7ce4221 100644
> > --- a/drivers/net/wireless/ti/wlcore/main.c
> > +++ b/drivers/net/wireless/ti/wlcore/main.c
> > @@ -5961,6 +5961,22 @@ static void wl12xx_derive_mac_addresses(struct
> wl1271 *wl, u32 oui, u32 nic)
> >         if (nic + WLCORE_NUM_MAC_ADDRESSES - wl->num_mac_addr >
> 0xffffff)
> >                 wl1271_warning("NIC part of the MAC address wraps around!");
> >
> > +       if (oui == 0xdeadbe && nic == 0xef0000) {
> > +               wl1271_warning("Detected unconfigured mac address in nvs.\n"
> > +                               "Using a random TI mac address instead.\n"
> > +                               "in case of using a wl12xx device, your "
> > +                               "device performance may not be optimized.\n"
> > +                               "Please use the calibrator tool to configure "
> > +                               "your device.\n"
> > +                               "When using a wl18xx device the nvs file can "
> > +                               "be removed as a default mac address is "
> > +                               "stored internally.\n");
> > +
> > +               /* Use TI oui and a random nic */
> > +               oui = 0x080028;
> 
> Is there (or should there be) a constant for this?

Thanks for the comment. Submitting v5 fixing this.

Best Regards,
Eyal

^ permalink raw reply	[flat|nested] 7+ messages in thread

end of thread, other threads:[~2017-08-07  7:31 UTC | newest]

Thread overview: 7+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-07-31  8:42 [v4] wlcore: add missing nvs file name info for wilink8 Eyal Reizer
2017-07-31  8:45 ` Reizer, Eyal
2017-07-31  8:45   ` Reizer, Eyal
2017-08-05  5:50   ` Julian Calaby
2017-08-05  5:50     ` Julian Calaby
2017-08-07  7:31     ` Reizer, Eyal
2017-08-07  7:31       ` Reizer, Eyal

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.