mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-24 06:05:19 +02:00
revert parts of r27488 to uboot-lantiq
Signed-off-by: Luka Perkov <openwrt@lukaperkov.net> git-svn-id: svn://svn.openwrt.org/openwrt/trunk@27663 3c298f89-4303-0410-b956-a3cf2f4a3e73
This commit is contained in:
parent
f3bcdcf9ed
commit
f152e7bb1c
@ -259,12 +259,12 @@ static int external_switch_init(void)
|
||||
/* earlier no valid response is available, at least on Twinpass & Tantos @ 111MHz, M4530 platform */
|
||||
udelay(100000);
|
||||
|
||||
printf("\nsearching for Samurai switch ... ");
|
||||
debug("\nsearching for Samurai switch ... ");
|
||||
if ( (miiphy_read(name, PHYADDR(SAMURAI_ID_REG0), &chipid0)==0) &&
|
||||
(miiphy_read(name, PHYADDR(SAMURAI_ID_REG1), &chipid1)==0) ) {
|
||||
if (((chipid0 & 0xFFF0) == ID_SAMURAI_0) &&
|
||||
((chipid1 & 0x000F) == ID_SAMURAI_1)) {
|
||||
printf("found");
|
||||
debug("found");
|
||||
|
||||
/* enable "Crossover Auto Detect" + defaults */
|
||||
/* P0 */
|
||||
@ -288,11 +288,10 @@ static int external_switch_init(void)
|
||||
}
|
||||
}
|
||||
|
||||
printf("%04X %04x\n", chipid0, chipid1);
|
||||
printf("\nsearching for TANTOS switch ... ");
|
||||
debug("\nsearching for TANTOS switch ... ");
|
||||
if (miiphy_read(name, PHYADDR(0x101), &chipid0) == 0) {
|
||||
if (chipid0 == ID_TANTOS) {
|
||||
printf("found");
|
||||
debug("found");
|
||||
|
||||
/* P5 Basic Control: Force Link Up */
|
||||
miiphy_write(name, PHYADDR(0xA1), 0x0004);
|
||||
|
Loading…
Reference in New Issue
Block a user