mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 15:14:43 +00:00
* Patch by Jon Loeliger, 2005-Feb-10
Add config option CONFIG_HAS_FEC calling out 8540 FEC features.
This commit is contained in:
parent
7202d43dde
commit
288693abe1
2 changed files with 10 additions and 0 deletions
|
@ -1,6 +1,9 @@
|
|||
======================================================================
|
||||
Changes for U-Boot 1.1.3:
|
||||
======================================================================
|
||||
* Patch by Jon Loeliger, 2005-Feb-10
|
||||
Add config option CONFIG_HAS_FEC calling out 8540 FEC features.
|
||||
|
||||
* Patch by Jon Loeliger, Kumar Gala, 2005-02-08
|
||||
For MPC85xxCDS:
|
||||
Adds Relaxed Timing TRLX bit to FLASH ORx regs to allow
|
||||
|
|
|
@ -41,6 +41,10 @@
|
|||
#define CONFIG_MPC8540 1 /* MPC8540 specific */
|
||||
#define CONFIG_MPC8540ADS 1 /* MPC8540ADS board specific */
|
||||
|
||||
#ifndef CONFIG_HAS_FEC
|
||||
#define CONFIG_HAS_FEC 1 /* 8540 has FEC */
|
||||
#endif
|
||||
|
||||
#define CONFIG_PCI
|
||||
#define CONFIG_TSEC_ENET /* tsec ethernet support */
|
||||
#define CONFIG_ENV_OVERWRITE
|
||||
|
@ -344,9 +348,12 @@
|
|||
#define TSEC1_PHYIDX 0
|
||||
#define TSEC2_PHYIDX 0
|
||||
|
||||
|
||||
#if CONFIG_HAS_FEC
|
||||
#define CONFIG_MPC85XX_FEC 1
|
||||
#define FEC_PHY_ADDR 3
|
||||
#define FEC_PHYIDX 0
|
||||
#endif
|
||||
|
||||
#define CONFIG_ETHPRIME "MOTO ENET0"
|
||||
|
||||
|
|
Loading…
Reference in a new issue