[ramips] rt5350 switch support fix

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

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

git-svn-id: svn://svn.openwrt.org/openwrt/trunk@34969 3c298f89-4303-0410-b956-a3cf2f4a3e73
master
John Crispin 2013-01-02 11:28:21 +00:00
parent d1c1b7bdd8
commit 7f31bad365
1 changed files with 5 additions and 1 deletions

View File

@ -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);
}