Udayan Kumar
6d4dafdc6e
added netdev_tx_complete to natsemi.c
18 years ago
Udayan Kumar
c6d0ef3478
added endianness to natsemi.
18 years ago
Udayan Kumar
0c324caecf
free_netdev -> netdev_put
18 years ago
Udayan Kumar
623d10c66f
debugging natsemi.c
18 years ago
Udayan Kumar
4a73631106
added eeprom from rtl8139 but not working
18 years ago
Udayan Kumar
9e962c3a01
natsemi now needs eeprom access
18 years ago
Udayan Kumar
99c680f743
same as before, but now compiling natsemi
18 years ago
Udayan Kumar
c8f6207e7e
added polling and transmit. eeprom access still remaining
18 years ago
Udayan Kumar
97efdbe9d7
skel of new natsemi driver (still in developments)
18 years ago
Udayan Kumar
4cea792470
testing if it works
18 years ago
Michael Brown
208ff0d42e
Revert mdc's warnings purge on natsemi.c, to allow for a clean rebase.
18 years ago
Michael Brown
e330db3c74
Dead code removal.
Kill off use of etherboot.h outside drivers/net.
18 years ago
Michael Brown
55d03ccbe3
Added missing "static"
18 years ago
Michael Brown
4c418d2100
Use net_device_operations structure and netdev_nullify() to allow for
safe dropping of the netdev ref by the driver while other refs still
exist.
Add netdev_irq() method. Net device open()/close() methods should no
longer enable or disable IRQs.
Remove rx_quota; it wasn't used anywhere and added too much complexity
to implementing correct interrupt-masking behaviour in pxe_undi.c.
18 years ago
Michael Brown
2823688a92
Revert "Replace natsemi driver with Indolent's updated one that uses the gPXE API"
This reverts commit 3487640397 .
18 years ago
Michael Brown
436adb2890
Revert "convert to zalloc"
This reverts commit 68add6e814 .
18 years ago
Holger Lubitz
68add6e814
convert to zalloc
18 years ago
Michael Brown
ed7eae6005
Use netdev_rx_err() to report receive errors.
18 years ago
Marty Connor
3487640397
Replace natsemi driver with Indolent's updated one that uses the gPXE API
This version uses the gPXE driver API rather than the legacy wrapper API.
18 years ago
Marty Connor
1069a74d20
Warnings purge for via-velocity.[ch]
18 years ago
Marty Connor
8d39559192
Update warnings in depca.c ns8390.c
18 years ago
Marty Connor
13016297ed
Purge warnings from tg3.c
18 years ago
Marty Connor
e5950283ec
Purge warnings from prism2 drivers
18 years ago
Marty Connor
1af1668c95
Warnings purge of drivers (continued)
18 years ago
Michael Brown
ca4bd3e24e
Kill off now-redundant _irq() methods.
18 years ago
Michael Brown
e436b993a9
Avoid double free on I/O buffer when rtl_transmit() returns failure.
Convert printf() to DBG(); printf() is not allowed in drivers.
18 years ago
Michael Brown
71f500ff1b
Enable/disable interrupts in driver open/close.
18 years ago
Michael Brown
290280f90e
Enable/disable interrupts at open/close time.
18 years ago
Michael Brown
a2a0c2eace
Enable/disable interrupts on open/close.
18 years ago
Michael Brown
31fe5b9415
Hack together far enough to support ne2k-pci.
18 years ago
Michael Brown
f33bbd4112
How has the legacy wrapper been working for the past month or so...?
18 years ago
Michael Brown
f77815f2b1
Kill off hotplug.h and just make net devices normal reference-counted
structures.
DHCP still broken and #if 0'd out.
18 years ago
Michael Brown
0316eaf85d
Add missing call to free_iob().
18 years ago
Marty Connor
f97e642d17
Update email addresses in drivers
18 years ago
Marty Connor
8c25ea0970
Updated email mdc's email address
18 years ago
Michael Brown
3e2c6b6736
pkbuff->iobuf changeover
Achieved via Perl using:
perl -pi -e 's/pk_buff/io_buffer/g; s/Packet buffer/I\/O buffer/ig; ' \
-e 's/pkbuff\.h/iobuf.h/g; s/pkb_/iob_/g; s/_pkb/_iob/g; ' \
-e 's/pkb/iobuf/g; s/PKB/IOB/g;'
18 years ago
Michael Brown
13137a4d61
t5x9 code relies on nic->ioaddr being set
18 years ago
Michael Brown
62548c9f0d
Updated 3c509 to current device model
18 years ago
Michael Brown
520d9c36af
Updated ISAPnP, EISA, MCA and ISA buses to current device model.
ISA 3c509 is currently non-functional, although the EISA (3c509-eisa) and
MCA (3c529) variants should build OK.
None of this code is yet tested.
18 years ago
Michael Brown
c63af1ea14
Remove no-longer-used variable
18 years ago
James Harper
e1735d5fc2
Fix some bad pointer arithmatic in the tg3 driver that was causing the dynamic memory pool to be corrupted (or worse)
18 years ago
James Harper
1c971f1234
Fix padding problem - from Michael
18 years ago
Michael Brown
73b09ecba6
Use stdio.h instead of vsprintf.h
18 years ago
Michael Brown
5ff23aa406
Include stdlib.h rather than malloc.h
18 years ago
Michael Brown
48fe701716
Respect the RX quota. This improves poll time by about 0.7us when the
quota is 1.
18 years ago
Michael Brown
03390f0cd6
Use pkb_pad() rather than doing it the dangerous way :)
18 years ago
Michael Brown
a3ed0cbbc7
Extract packet-padding login from rtl8139.c to a separate pkbpad.c file.
18 years ago
Michael Brown
dad5274522
Add "name" field to struct device to allow human-readable hardware device
names.
Add "dev" pointer in struct net_device to tie network interfaces back to a
hardware device.
Force natural alignment of data types in __table() macros. This seems to
prevent gcc from taking the unilateral decision to occasionally increase
their alignment (which screws up the table packing).
18 years ago
Michael Brown
c65fae2475
Add RX quotas to the net device poll() method. This avoids the problem
of alloc_pkb() exhaustion when e.g. an iSCSI-booted DOS session is left
idle for a long time at the C:\ prompt and builds up a huge packet
backlog.
18 years ago
Michael Brown
e822bc2a90
Autopadding was sometimes overwriting the struct list_head at the end
of the packet buffer. Although pkbuffs are guaranteed to be at least
PKB_ZLEN bytes long, there's no guarantee that the data starts at the
start of the packet buffer.
Since we have to align data for rtl8139 anyway, and since the start of
the packet buffer is guaranteed to be aligned to PKB_ALIGN, we may as
well just shuffle the packet down so that it starts at the start of
the packet buffer. This simultaneously aligns the packet and ensures
that there is enough room for the zero-padding.
18 years ago