diff options
author | Wolfgang Denk <wd@denx.de> | 2010-06-30 01:04:48 +0200 |
---|---|---|
committer | Wolfgang Denk <wd@denx.de> | 2010-06-30 01:04:48 +0200 |
commit | 55357b7846237d12aa5f07aec657c5dbfaf790ed (patch) | |
tree | d95879d513876d874e320b42c3dd32d6d3d02f35 /include/configs | |
parent | e5ed138a23923ebe61843244748d98d3dbc04777 (diff) | |
parent | bde3892edac99bf974e5b9809a112a6ce530be03 (diff) | |
download | u-boot-imx-55357b7846237d12aa5f07aec657c5dbfaf790ed.zip u-boot-imx-55357b7846237d12aa5f07aec657c5dbfaf790ed.tar.gz u-boot-imx-55357b7846237d12aa5f07aec657c5dbfaf790ed.tar.bz2 |
Merge branch 'master' of ssh://gemini/home/wd/git/u-boot/master
Diffstat (limited to 'include/configs')
-rw-r--r-- | include/configs/P1_P2_RDB.h | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/include/configs/P1_P2_RDB.h b/include/configs/P1_P2_RDB.h index a9b4004..b891730 100644 --- a/include/configs/P1_P2_RDB.h +++ b/include/configs/P1_P2_RDB.h @@ -425,6 +425,15 @@ extern unsigned long get_board_sys_clk(unsigned long dummy); #define CONFIG_ETHPRIME "eTSEC1" #define CONFIG_PHY_GIGE 1 /* Include GbE speed/duplex detection */ + +/* TBI PHY configuration for SGMII mode */ +#define CONFIG_TSEC_TBICR_SETTINGS ( \ + TBICR_PHY_RESET \ + | TBICR_ANEG_ENABLE \ + | TBICR_FULL_DUPLEX \ + | TBICR_SPEED1_SET \ + ) + #endif /* CONFIG_TSEC_ENET */ /* @@ -568,7 +577,6 @@ extern unsigned long get_board_sys_clk(unsigned long dummy); "netdev=eth0\0" \ "uboot=" MK_STR(CONFIG_UBOOTPATH) "\0" \ "loadaddr=1000000\0" \ - "bootfile=uImage\0" \ "tftpflash=tftpboot $loadaddr $uboot; " \ "protect off " MK_STR(TEXT_BASE) " +$filesize; " \ "erase " MK_STR(TEXT_BASE) " +$filesize; " \ |