summaryrefslogtreecommitdiffstats
path: root/drivers/net
Commit message (Collapse)AuthorAgeFilesLines
* svn_rev_526Sascha Hauer2007-07-051-4/+4
| | | | CFG_CACHELINESIZE -> CONFIG_CACHELINE_SIZE
* svn_rev_508Sascha Hauer2007-07-051-20/+14
| | | | put driver back into business
* svn_rev_450Sascha Hauer2007-07-051-22/+24
| | | | | | | do autongotiation on probe and not on open, so this is done when we actually need the phy. We do not disable the phy now, that's not good. But at least networking is much more responsive now.
* svn_rev_430Sascha Hauer2007-07-051-7/+8
|
* svn_rev_426Sascha Hauer2007-07-051-1/+0
|
* svn_rev_402Sascha Hauer2007-07-051-5/+1
| | | | oh man
* svn_rev_376Sascha Hauer2007-07-051-1/+0
| | | | remove unnecessary include
* svn_rev_311Sascha Hauer2007-07-052-0/+5
|
* svn_rev_310Sascha Hauer2007-07-053-10/+10
| | | | use type_data instead of pric for edev
* svn_rev_309Sascha Hauer2007-07-051-0/+104
| | | | add tap driver for arch=linux
* svn_rev_251Sascha Hauer2007-07-051-70/+75
| | | | make it work again
* svn_rev_201Sascha Hauer2007-07-052-1/+5
| | | | add mpc5200 fec driver
* svn_rev_190Sascha Hauer2007-07-051-17/+0
| | | | remove gpio pin init, board code should do this
* svn_rev_188Sascha Hauer2007-07-052-120/+65
| | | | WIP
* svn_rev_179Sascha Hauer2007-07-051-33/+36
| | | | refacture, remove static eth_device because it does not work with more than one device
* svn_rev_175Sascha Hauer2007-07-052-0/+1334
| | | | moved to drivers/net
* svn_rev_129Sascha Hauer2007-07-051-3/+19
| | | | make it work again
* svn_rev_120Sascha Hauer2007-07-051-5/+23
| | | | implement initcalls
* svn_rev_116Sascha Hauer2007-07-052-1/+11
| | | | add dm9000 network driver
* svn_rev_113Sascha Hauer2007-07-052-271/+112
| | | | new api, cleanup
* svn_rev_111Sascha Hauer2007-07-051-0/+0
| | | | rename
* svn_rev_110Sascha Hauer2007-07-051-0/+0
| | | | rename
* svn_rev_109Sascha Hauer2007-07-051-0/+1
| | | | do not know anymore
* svn_rev_107Sascha Hauer2007-07-051-8/+8
| | | | removed ifdefs
* svn_rev_095Sascha Hauer2007-07-052-698/+270
| | | | | | | | | | | | | | | | | | | | | | Currently U-Boot uses globally defined eth_* functions. This is horribly unflexible. This patch replaces the global functions with pointers from structs. We could also use CONFIG_NET_MULTI, but this has other implications, though we should merge this some day. Also, U-Boot has no unique way to handle MAC addresses. Each and every board and network driver uses it's own mechanism to set the MAC address. There are several problems which I've for too often. For example everything goes well if we boot from network, but when we boot from flash U-Boot forgets to set the MAC address and the linux network driver has none. This patch adds [gs]et_mac_address to the eth_device struct and handles it as follows: - First try to get a valid MAC address from the EEPROM and set 'ethaddr' accordingly. - If no valid MAC address is found in the EEPROM (or no EEPROM is connected), we set the devices MAC address from 'ethaddr' This is done in eth_initialize which is called on startup for every board.
* svn_rev_064Sascha Hauer2007-07-051-0/+17
|
* svn_rev_062Sascha Hauer2007-07-051-0/+2
|
* svn_rev_061Sascha Hauer2007-07-051-0/+0
| | | | rename
* svn_rev_057Sascha Hauer2007-07-0533-0/+23053
move all ethernet drivers to drivers/net