Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Sign in / Register
Toggle navigation
Menu
Open sidebar
Librem5
uboot-imx
Commits
cd5b2b99
Commit
cd5b2b99
authored
Jul 05, 2005
by
stroese
Browse files
* Patch by Stefan Roese, 5 Jul 2005:
Update uc100 board PHY setup
parent
88804d19
Changes
2
Hide whitespace changes
Inline
Side-by-side
CHANGELOG
View file @
cd5b2b99
...
...
@@ -2,6 +2,9 @@
Changes for U-Boot 1.1.3:
======================================================================
* Patch by Stefan Roese, 5 Jul 2005:
Update uc100 board PHY setup
* Patch by Stefan Roese, 1 Jul 2005:
Fix PHY address for CATcenter board (now correct!)
...
...
board/uc100/uc100.c
View file @
cd5b2b99
...
...
@@ -28,6 +28,7 @@
#include <common.h>
#include <mpc8xx.h>
#include <i2c.h>
#include <miiphy.h>
/*********************************************************************/
...
...
@@ -252,6 +253,14 @@ int misc_init_r (void)
val
|=
0x80
;
i2c_reg_write
(
CFG_I2C_RTC_ADDR
,
0x0D
,
val
);
/*
* Configure PHY to setup LED's correctly and use 100MBit, FD
*/
mii_init
();
miiphy_write
(
0
,
PHY_BMCR
,
0x2100
);
/* disable auto-negotiation, 100mbit, full-duplex */
miiphy_write
(
0
,
PHY_FCSCR
,
0x4122
);
/* set LED's to Link, Transmit, Receive */
return
0
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment