summaryrefslogtreecommitdiffstats
path: root/drivers/tsec.c
Commit message (Collapse)AuthorAgeFilesLines
* drivers/: Augment CONFIG_COMMANDS tests with defined(CONFIG_CMD_*).Jon Loeliger2007-07-041-2/+2
| | | | | | | | | | | | | | This is a compatibility step that allows both the older form and the new form to co-exist for a while until the older can be removed entirely. All transformations are of the form: Before: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) After: #if (CONFIG_COMMANDS & CFG_CMD_AUTOSCRIPT) || defined(CONFIG_CMD_AUTOSCRIPT) Signed-off-by: Jon Loeliger <jdl@freescale.com>
* Reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECxKim Phillips2007-05-171-10/+8
| | | | | | | For all practical u-boot purposes, TSECs don't differ throughout the mpc8[356]xx families; reduce CONFIG_MPC8YXX_TSECx to CONFIG_TSECx. Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
* Add support for BCM5464 Quad PhyJoe Hamman2007-05-151-0/+28
| | | | | | Added support for Broadcom's BCM5464 Quad Phy Signed-off-by: Joe Hamman <joe.hamman@embeddedspecialties.com>
* Coding stylke cleanup; update CHANGELOG.Wolfgang Denk2007-05-051-1/+1
| | | | Signed-off-by: Wolfgang Denk <wd@denx.de>
* Add support for treating unknown PHYs as generic PHYs.David Updegraff2007-05-021-0/+93
| | | | | | | | | | | | | When bringing up u-boot on new boards, PHY support sometimes gets neglected. Most PHYs don't really need any special support, though. By adding a generic entry that always matches if nothing else does, we can provide support for "unsupported" PHYs for the tsec. The generic PHY driver supports most PHYs, including gigabit. Signed-off-by: David Updegraff <dave@cray.com> Signed-off-by: Andy Fleming <afleming@freescale.com>
* Enable 8544 supportAndy Fleming2007-04-231-1/+5
| | | | | | | | | * Add support to the Makefile * Add 8544 configuration support to the tsec driver * Add 8544 SVR numbers to processor.h Signed-off-by: Ed Swarthout <Ed.Swarthout@freescale.com> Signed-off-by: Jon Loeliger <jdl@freescale.com>
* mpc83xx: U-Boot support for Wind River SBC8349Paul Gortmaker2007-03-021-0/+84
| | | | | | | | | | | | | | | | | | | | | | | I've redone the SBC8349 support to match git-current, which incorporates all the MPC834x updates from Freescale since the 1.1.6 release, including the DDR changes. I've kept all the SBC8349 files as parallel as possible to the MPC8349EMDS ones for ease of maintenance and to allow for easy inspection of what was changed to support this board. Hence the SBC8349 U-Boot has FDT support and everything else that the MPC8349EMDS has. Fortunately the Freescale updates added support for boards using CS0, but I had to change spd_sdram.c to allow for board specific settings for the sdram_clk_cntl (it is/was hard coded to zero, and that remains the default if the board doesn't specify a value.) Hopefully this should be mergeable as-is and require no whitespace cleanups or similar, but if something doesn't measure up then let me know and I'll fix it. Thanks, Paul.
* mpc83xx: Add support for the MPC8349E-mITXTimur Tabi2006-11-031-3/+1
| | | | | | | | | | | | | | | | | | | PREREQUISITE PATCHES: * This patch can only be applied after the following patches have been applied: 1) DNX#2006090742000024 "Add support for multiple I2C buses" 2) DNX#2006090742000033 "Multi-bus I2C implementation of MPC834x" 3) DNX#2006091242000041 "Additional MPC8349 support for multibus i2c" 4) DNX#2006091242000078 "Add support for variable flash memory sizes on 83xx systems" 5) DNX#2006091242000069 "Add support for Errata DDR6 on MPC 834x systems" CHANGELOG: * Add support for the Freescale MPC8349E-mITX reference design platform. The second TSEC (Vitesse 7385 switch) is not supported at this time. Signed-off-by: Timur Tabi <timur@freescale.com>
* Added RGMII support to the TSECs and Marvell 881111 PhyNick Spence2006-11-031-4/+4
| | | | | | | Added a phy initialization to adjust the RGMII RX and TX timing Always set the R100 bit in 100 BaseT mode regardless of the TSEC mode Signed-off-by: Nick Spence <nick.spence@freescale.com>
* Fix TSEC driver (now for real): avoid crashes if PHY is not attachedBen Warren2006-10-261-3/+6
| | | | | | | to a TSEC (e.g. a switch is connected via RMII) or if the PHY is defective/incorrectly configured. Signed-off-by: Ben Warren <bwarren@qstreams.com>
* Remove unneeded include files and local variable.Jon Loeliger2006-10-121-3/+0
| | | | Signed-off-by: Jon Loeliger <jdl@freescale.com>
* Ran lindent and cleaned up whitespace issues.Jon Loeliger2006-10-101-441/+455
| | | | Format for 80-columns too.
* Merge branch 'mpc85xx'Jon Loeliger2006-09-191-13/+60
|\ | | | | | | | | | | Conflicts: drivers/tsec.c
| * Add support for eTSEC 3 & 4 on 8548 CDSAndy Fleming2006-09-191-10/+59
| | | | | | | | | | | | | | * Added support for using eTSEC 3 and eTSEC 4 on the 8548 CDS. This will only work on rev 1.3 boards (but doesn't break older boards) * Cleaned up some comments to reflect the expanded role of tsec in other systems
* | Fix Tsec bug when no linkJin Zhengxiong-R641882006-06-271-1/+1
| | | | | | | | | | | | | | | | When tftp a non-exist file from the tftp server, u-boot will check the link of all eth port. The original file will return wrong link state on the no link ports. signed-off-by: Jason Jin <Jason.Jin@freescale.com>
* | Initial support for MPC8641 HPCN board.Jon Loeliger2006-04-261-6/+63
|/
* GCC-4.x fixes: clean up global data pointer initialization for all boards.Wolfgang Denk2006-03-311-1/+2
|
* Add Nat Semi DP83865 PHY support to MPC85xx TSEC driverWolfgang Denk2006-03-121-0/+51
| | | | Patch by Murray Jensen, 08 Jul 2005
* Add support for multiple PHYs.Marian Balakowicz2005-10-281-5/+19
|
* Cleanup for GCC-4.xWolfgang Denk2005-10-131-2/+2
|
* Fix autonegotiation in tsec ethernet driverStefan Roese2005-09-211-10/+56
| | | | Patch by Stefan Roese, 21 Sep 2005
* Fix style issues primarily in 85xx and 83xx boards.Jon Loeliger2005-08-011-5/+5
| | | | | | | | - C++ comments - Trailing white space - Indentation not by TAB - Excessive amount of empty lines - Trailing empty lines
* * Patch by Eran LibertyEran Liberty2005-07-281-12/+11
| | | | Add support for the Freescale MPC8349ADS board.
* * Patch by Jon Loeliger, 2005-07-25Jon Loeliger2005-07-251-0/+1074
Move the TSEC driver out of cpu/mpc85xx as it will be shared by the upcoming mpc83xx family as well.
OpenPOWER on IntegriCloud