From 569bbe49700b2cf0b6c3b1e6a6ecf70aad3d6b81 Mon Sep 17 00:00:00 2001
From: John Crispin <john@openwrt.org>
Date: Wed, 2 Jan 2013 11:28:21 +0000
Subject: [PATCH] rt5350 switch support fix

RT5350 frame engine need reset frame engine and embedded switch together.

Signed-off-by: Serge Vasilugin <vasilugin@yandex.ru>

SVN-Revision: 34969
---
 target/linux/ramips/files/arch/mips/ralink/rt305x/devices.c | 6 +++++-
 1 file changed, 5 insertions(+), 1 deletion(-)

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 557eb10c18d..42429b791e9 100644
--- a/target/linux/ramips/files/arch/mips/ralink/rt305x/devices.c
+++ b/target/linux/ramips/files/arch/mips/ralink/rt305x/devices.c
@@ -116,7 +116,11 @@ void __init rt305x_register_flash(unsigned int id)
 
 static void rt305x_fe_reset(void)
 {
-	rt305x_sysc_wr(RT305X_RESET_FE, SYSC_REG_RESET_CTRL);
+	u32 reset_bits = RT305X_RESET_FE;
+
+	if (soc_is_rt5350())
+		reset_bits |= RT305X_RESET_ESW;
+	rt305x_sysc_wr(reset_bits, SYSC_REG_RESET_CTRL);
 	rt305x_sysc_wr(0, SYSC_REG_RESET_CTRL);
 }
 
-- 
GitLab