From c9bc227e9d105728fdd04fa80e81b31370547f60 Mon Sep 17 00:00:00 2001 From: Gabor Juhos Date: Fri, 23 Dec 2011 14:27:16 +0000 Subject: 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 IEEE 802.11: associated (aid 1) Dec 20 15:45:09 OpenWrt daemon.info hostapd: wlan1: STA WPA: pairwise key handshake completed (RSN) Dec 20 15:45:22 OpenWrt daemon.info hostapd: wlan1: STA IEEE 802.11: authenticated But wpa_supplicant on the client saying: Authentication with timed out. Signed-off-by: Tobias Diedrich git-svn-id: svn://svn.openwrt.org/openwrt/trunk@29604 3c298f89-4303-0410-b956-a3cf2f4a3e73 --- target/linux/ramips/files/arch/mips/ralink/rt305x/devices.c | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) (limited to 'target/linux/ramips/files/arch/mips/ralink/rt305x/devices.c') diff --git a/target/linux/ramips/files/arch/mips/ralink/rt305x/devices.c b/target/linux/ramips/files/arch/mips/ralink/rt305x/devices.c index 5dfbddbf2b..615f32dacc 100644 --- a/target/linux/ramips/files/arch/mips/ralink/rt305x/devices.c +++ b/target/linux/ramips/files/arch/mips/ralink/rt305x/devices.c @@ -24,6 +24,7 @@ #include "devices.h" #include +#include static struct resource rt305x_flash0_resources[] = { { @@ -142,7 +143,12 @@ static struct resource rt305x_esw_resources[] = { }, }; -struct rt305x_esw_platform_data rt305x_esw_data; +struct rt305x_esw_platform_data rt305x_esw_data = { + .vlan_config = RT305X_ESW_VLAN_CONFIG_NONE, + .reg_initval_fct2 = 0x00d6500c, + .reg_initval_fpa2 = 0x3f502b28, +}; + static struct platform_device rt305x_esw_device = { .name = "rt305x-esw", .resource = rt305x_esw_resources, -- cgit v1.2.3