diff options
author | Gabor Juhos <juhosg@openwrt.org> | 2011-12-23 14:27:16 +0000 |
---|---|---|
committer | Gabor Juhos <juhosg@openwrt.org> | 2011-12-23 14:27:16 +0000 |
commit | c9bc227e9d105728fdd04fa80e81b31370547f60 (patch) | |
tree | 6a41b3171e5967882358d0dd0925e4a97fb495d9 /target/linux/ramips/files/drivers | |
parent | 20b3755c636143ca09bc13929ee30ccb6036b26c (diff) | |
download | upstream-c9bc227e9d105728fdd04fa80e81b31370547f60.tar.gz upstream-c9bc227e9d105728fdd04fa80e81b31370547f60.tar.bz2 upstream-c9bc227e9d105728fdd04fa80e81b31370547f60.zip |
ramips: initial support for Sitecom WL-351 v1 002
This add support for the Sitecom WL-351 v1 002.
In principle the Engenius ESR9850 should also work with this, but I
don't have the hardware to test it.
Since an external gigabit switch (RTL8366RB) is used,
I had to modify the ramips_esw driver to add a 'bypass' mode, which
just configures it to not filter the vlan tags.
Also two initialization words (FCT2 and FPA2) are set to different
values by u-boot than what the driver is using and it only seems to
work correctly when they not overridden by the driver, so I
added them to the platform specific data as reg_initval_fct2 and
reg_initval_fpa2.
With this wired lan works as expected, however I'm still having some
trouble with the wireless lan:
It only works after I rmmod & re-insmod rt2800pci and then
reconfigure it in the webinterface, but not directly after
rebooting.
The symptom of this is wpad saying:
Dec 20 15:45:09 OpenWrt daemon.info hostapd: wlan1: STA <notebookmac> IEEE 802.11: associated (aid 1)
Dec 20 15:45:09 OpenWrt daemon.info hostapd: wlan1: STA <notebookmac> WPA: pairwise key handshake completed (RSN)
Dec 20 15:45:22 OpenWrt daemon.info hostapd: wlan1: STA <notebookmac> IEEE 802.11: authenticated
But wpa_supplicant on the client saying:
Authentication with <wl351mac> timed out.
Signed-off-by: Tobias Diedrich <ranma+openwrt@tdiedrich.de>
git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29604 3c298f89-4303-0410-b956-a3cf2f4a3e73
Diffstat (limited to 'target/linux/ramips/files/drivers')
-rw-r--r-- | target/linux/ramips/files/drivers/net/ramips_esw.c | 16 |
1 files changed, 14 insertions, 2 deletions
diff --git a/target/linux/ramips/files/drivers/net/ramips_esw.c b/target/linux/ramips/files/drivers/net/ramips_esw.c index 027284b084..a2fa579d8b 100644 --- a/target/linux/ramips/files/drivers/net/ramips_esw.c +++ b/target/linux/ramips/files/drivers/net/ramips_esw.c @@ -218,7 +218,7 @@ rt305x_esw_hw_init(struct rt305x_esw *esw) (RT305X_ESW_PORTS_NOCPU << RT305X_ESW_POC3_UNTAG_EN_S)), RT305X_ESW_REG_POC3); - rt305x_esw_wr(esw, 0x00d6500c, RT305X_ESW_REG_FCT2); + rt305x_esw_wr(esw, esw->pdata->reg_initval_fct2, RT305X_ESW_REG_FCT2); rt305x_esw_wr(esw, 0x0008a301, RT305X_ESW_REG_SGC); /* Setup SoC Port control register */ @@ -229,7 +229,7 @@ rt305x_esw_hw_init(struct rt305x_esw *esw) (RT305X_ESW_PORTS_CPU << RT305X_ESW_SOCPC_DISBC2CPU_S)), RT305X_ESW_REG_SOCPC); - rt305x_esw_wr(esw, 0x3f502b28, RT305X_ESW_REG_FPA2); + rt305x_esw_wr(esw, esw->pdata->reg_initval_fpa2, RT305X_ESW_REG_FPA2); rt305x_esw_wr(esw, 0x00000000, RT305X_ESW_REG_FPA); /* Force Link/Activity on ports */ @@ -277,6 +277,18 @@ rt305x_esw_hw_init(struct rt305x_esw *esw) case RT305X_ESW_VLAN_CONFIG_NONE: break; + case RT305X_ESW_VLAN_CONFIG_BYPASS: + /* Pass all vlan tags to all ports */ + for (i = 0; i < RT305X_ESW_NUM_VLANS; i++) { + rt305x_esw_set_vlan_id(esw, i, i+1); + rt305x_esw_set_vmsc(esw, i, RT305X_ESW_PORTS_ALL); + } + /* Disable VLAN TAG removal, keep aging on. */ + rt305x_esw_wr(esw, + RT305X_ESW_PORTS_ALL << RT305X_ESW_POC3_ENAGING_S, + RT305X_ESW_REG_POC3); + break; + case RT305X_ESW_VLAN_CONFIG_LLLLW: rt305x_esw_set_vlan_id(esw, 0, 1); rt305x_esw_set_vlan_id(esw, 1, 2); |