Hello Martijn,

* Martijn Verschoor <versch...@nlcsl.com> [2016-09-30 14:09:04 +0200]:
> I’m trying to setup the wifi driver in Turmvilla like scenario’s but
> with little success. The driver spits out a fair amount of warnings
> and errors which obfuscates my view of what could be the main issue;
> thus I would like to reach out for help.
> 
> A log of the turmvilla scenario
> (https://github.com/nfeske/genode/tree/turmvilla-16.05) running on a
> Lenovo x201 is attached. I get very similar results on x250’s.
> 
> Can anyone point out to me what might be the problem?

The important piece of information in your LOG output is this line:

  [init -> wifi_drv] dev_error: Invalid 11n configuration

When your 6200 ABG card is initialized it indicates that it supports the
11n mode but judging by looking into Linux driver it is not supposed to
be configured this way. I vaguely remember that Norman has the same
problem with his 6200 ABG card. The “quick-fix” is to forcefully disable
11n support (see the attached patch).


Regards,
Josef

-- 
Josef Söntgen
Genode Labs

http://www.genode-labs.com/ · http://genode.org/
--- iwl-eeprom-parse.c.orig	2016-10-03 10:27:46.811965133 +0200
+++ iwl-eeprom-parse.c	2016-10-03 10:27:54.447965352 +0200
@@ -900,7 +900,7 @@
 	data->sku_cap_band_24GHz_enable = sku & EEPROM_SKU_CAP_BAND_24GHZ;
 	data->sku_cap_band_52GHz_enable = sku & EEPROM_SKU_CAP_BAND_52GHZ;
 	data->sku_cap_ipan_enable = sku & EEPROM_SKU_CAP_IPAN_ENABLE;
-	if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_ALL)
+	// if (iwlwifi_mod_params.disable_11n & IWL_DISABLE_HT_ALL)
 		data->sku_cap_11n_enable = false;
 
 	data->nvm_version = iwl_eeprom_query16(eeprom, eeprom_size,

Attachment: signature.asc
Description: Digital signature

------------------------------------------------------------------------------
Check out the vibrant tech community on one of the world's most 
engaging tech sites, SlashDot.org! http://sdm.link/slashdot
_______________________________________________
genode-main mailing list
genode-main@lists.sourceforge.net
https://lists.sourceforge.net/lists/listinfo/genode-main

Reply via email to