| Age | Commit message (Collapse) | Author | Files | Lines |
|
Move the Atmel driver into drivers/net/ethernet/cadence/ and
make the necessary Kconfig and Makefile changes.
CC: Nicolas Ferre <[email protected]>
CC: Jamie Iles <[email protected]>
Signed-off-by: Jeff Kirsher <[email protected]>
Acked-by: Jamie Iles <[email protected]>
Acked-by: Nicolas Ferre <[email protected]>
|
|
Move the Nuvoton driver into drivers/net/ethernet/nuvoton/ and
make the necessary Kconfig and Makefile changes.
CC: Wan ZongShun <[email protected]>
Signed-off-by: Jeff Kirsher <[email protected]>
|
|
Move the Cirrus Ethernet driver into drivers/net/ethernet/cirrus/
and make the necessary Kconfig and Makefile changes
CC: Hartley Sweeten <[email protected]>
Signed-off-by: Jeff Kirsher <[email protected]>
|
|
Move the Micrel drivers into drivers/net/ethernet/micrel/ and
make the necessary Kconfig and Makefile changes.
CC: Ben Dooks <[email protected]>
CC: Tristram Ha <[email protected]>
Signed-off-by: Jeff Kirsher <[email protected]>
|
|
Move the drivers that use SEEQ chipset into drivers/net/ethernet/seeq
and make the necessary Kconfig and Makefile changes.
CC: Russell King <[email protected]>
CC: Hamish Coleman <[email protected]>
Signed-off-by: Jeff Kirsher <[email protected]>
|
|
Move the Intel XScale IXP drivers into drivers/net/ethernet/xscale/
and make the necessary Kconfig and Makefile changes.
CC: Krzysztof Halasa <[email protected]>
CC: Lennert Buytenhek <[email protected]>
Signed-off-by: Jeff Kirsher <[email protected]>
|
|
Move the drivers that use the i82586/i82593/i82596 chipsets into
drivers/net/ethernet/i825xx/ and make the necessary Kconfig and
Makefile changes. There were 4 3Com drivers which were initially
moved into 3com/, which now reside in i825xx since they all used
the i82586 chip.
CC: Philip Blundell <[email protected]>
CC: Russell King <[email protected]>
CC: <[email protected]>
CC: Donald Becker <[email protected]>
CC: Chris Beauregard <[email protected]>
CC: Richard Procter <[email protected]>
CC: Andries Brouwer <[email protected]>
CC: "M.Hipp" <[email protected]>
CC: Richard Hirst <[email protected]>
CC: Sam Creasey <[email protected]>
CC: Thomas Bogendoerfer <[email protected]>
Signed-off-by: Jeff Kirsher <[email protected]>
|
|
Moves the drivers for the National Semi-conductor 8390 chipset into
drivers/net/ethernet/8390/ and the necessary Kconfig and Makefile
changes.
CC: Donald Becker <[email protected]>
CC: Paul Gortmaker <[email protected]>
CC: Alain Malek <[email protected]>
CC: Peter De Schrijver <[email protected]>
CC: "David Huggins-Daines" <[email protected]>
CC: Wim Dumon <[email protected]>
CC: Yoshinori Sato <[email protected]>
CC: David Hinds <[email protected]>
CC: Russell King <[email protected]>
Signed-off-by: Jeff Kirsher <[email protected]>
|
|
Moves the drivers for the AMD chipsets into drivers/net/ethernet/amd/
and the necessary Kconfig and Makfile changes.
The au1000 (Alchemy) driver was also moved into the same directory
even though it is not a "Lance" driver.
CC: Peter Maydell <[email protected]>
CC: Roman Hodek <[email protected]>
CC: "Maciej W. Rozycki" <[email protected]>
CC: Donald Becker <[email protected]>
CC: Sam Creasey <[email protected]>
CC: Miguel de Icaza <[email protected]>
CC: Thomas Bogendoerfer <[email protected]>
CC: Don Fry <[email protected]>
CC: Geert Uytterhoeven <[email protected]>
CC: Russell King <[email protected]>
CC: David Davies <[email protected]>
CC: "M.Hipp" <[email protected]>
CC: Pete Popov <[email protected]>
CC: David Hinds <[email protected]>
CC: "Roger C. Pao" <[email protected]>
Signed-off-by: Jeff Kirsher <[email protected]>
|
|
Add mac driver support for evaluation board based on w90p910.
Signed-off-by: Wan ZongShun <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
|
|
The 8390 driver was structured by Al Viro to allow the flexibility
required by platforms. lib8390.c contains the core code which drivers
explicitly include:
- 8390.c includes lib8390.c to provide the standard ISA based driver.
- etherh.c includes it with the accessors defined for RiscPC platforms,
where it is addressed via the MMIO accessors with a device dependent
register spacing.
Other platform drivers do something similar.
However, b9a9b4b caused the kernel to contain not only the etherh
private build of lib8390 (included in etherh.c) but also lib8390.c
itself, and referred the new net_device_ops methods to the ISA version.
The result of this is is not pretty:
Unable to handle kernel paging request at virtual address 12032030
pgd = c8330000
[12032030] *pgd=00000000
Internal error: Oops: 18331805 [#1]
Modules linked in: ipv6
CPU: 0 Not tainted (2.6.29-rc3 #167)
PC is at do_set_multicast_list+0xd0/0x190
LR is at bitrev32+0x28/0x34
pc : [<c017aab4>] lr : [<c0139120>] psr: a0000093
sp : c8321d9c ip : c8321d84 fp : c8321dbc
r10: c80c6800 r9 : 00000000 r8 : c80c6b60
r7 : c80c6b80 r6 : cc80c800 r5 : c80c6800 r4 : 00000000
r3 : cc80c80c r2 : 00000004 r1 : 00000007 r0 : e0000000
Flags: NzCv IRQs off FIQs on Mode SVC_32 ISA ARM Segment user
...
Fix up b9a9b4b by making etherh's net_device_ops refer to the internal
lib8390 functions, and remove the build of the ISA 8390.c driver.
Acked-by: David S. Miller <[email protected]>
Signed-off-by: Russell King <[email protected]>
|
|
Implements the KS8695 ethernet device (ks8695net).
This driver is only of use on the KS8695 which is an ARM9 based SoC. The
documentation on this SoC is sparse and poor, with barely a register
description and a rough outline of how the ethernet works, this driver was
therefore written with strong reference to the Micrel supplied Linux 2.6.9
port, and to Andrew Victor's ks8695eth driver.
Signed-off-by: Daniel Silverstone <[email protected]>
Signed-off-by: Vincent Sanders <[email protected]>
Acked-by: Ben Dooks <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
|
|
Fix build of ARM etherh driver with new net_device_ops.
Signed-off-by: Stephen Hemminger <[email protected]>
Signed-off-by: David S. Miller <[email protected]>
|
|
Adds a driver for built-in IXP4xx Ethernet ports.
Signed-off-by: Krzysztof HaĆasa <[email protected]>
Signed-off-by: Jeff Garzik <[email protected]>
|
|
The Cirrus Logic ep93xx is an ARM SoC that includes an ethernet MAC
-- this patch adds a driver for that ethernet MAC.
Signed-off-by: Lennert Buytenhek <[email protected]>
Signed-off-by: Jeff Garzik <[email protected]>
|
|
This patch adds support for the Ethernet controller integrated in the
Atmel AT91RM9200 SoC processor.
Changes since the previous submission (01/02/2006) are:
- Make use of the clk.h clock infrastructure.
- The multicast hash function is not crc32. [Patch by Pedro Perez]
Signed-off-by: Andrew Victor <[email protected]>
Signed-off-by: Jeff Garzik <[email protected]>
|
|
EPXA10DB seems to be uncared for:
- the "PLD" code has never been merged
- no one has reported that this platform has been broken since
at least 2.6.10
- interest seems to have dried up around March 2003.
Therefore, remove EPXA10DB support.
Signed-off-by: Russell King <[email protected]>
|
|
Initial git repository build. I'm not bothering with the full history,
even though we have it. We can create a separate "historical" git
archive of that later if we want to, and in the meantime it's about
3.2GB when imported into git - space that would just make the early
git days unnecessarily complicated, when we don't have a lot of good
infrastructure for it.
Let it rip!
|