]> Zhao Yanbai Git Server - minix.git/commit
libnetdriver: rewrite 76/3476/2
authorDavid van Moolenbroek <david@minix3.org>
Wed, 12 Oct 2016 04:41:08 +0000 (04:41 +0000)
committerDavid van Moolenbroek <david@minix3.org>
Sun, 30 Apr 2017 13:15:28 +0000 (13:15 +0000)
commitf7df02e7476731c31f12548e38bcadbaf0233f6a
tree25dfbb6b9d9580e5f3bd9e387f8a1ee759a06b46
parent686761dbbce7cc1bcf150ce26b1c3f0eed7d17c6
libnetdriver: rewrite

This is a driver-breaking update to the netdriver library, which is
used by all network drivers.  The aim of this change is to make the
library more compatible with NetBSD, and in particular with various
features that are expected to be supported by the NetBSD userland.
The main changes made by this patch are the following:

- each network driver now has a NetBSD-style short device name;
- drivers are not expected to receive packets right after startup;
- extended support for receipt modes, including multicast lists;
- support for multiple parallel send, receive requests;
- embedding of I/O vectors in send and receive requests;
- support for capabilities, including checksum offloading;
- support for reporting link status updates to the TCP/IP stack;
- support for setting and retrieving media status;
- support for changing the hardware (MAC) address;
- support for NetBSD interface flags IFF_DEBUG, IFF_LINK[0-2];
- support for NetBSD error statistics;
- support for regular time-based ("tick") callbacks.

IMPORTANT: this patch applies a minimal update to the existing drivers
in order to make them work at all with the new netdriver library.  It
however does *not* change all drivers to make use of the new features.
In fact, strictly speaking, all drivers are now violating requirements
imposed by the new library in one way or another, most notably by
enabling packet receipt when starting the driver.  Changing all the
drivers to be compliant, and to support the newly added options, is
left to future patches.  The existing drivers should currently *not*
be taken as examples of how to implement a new network driver!

With that said, a few drivers have already been changed to make use of
some of the new features: fxp, e1000, rtl8139, and rtl8169 now report
link and media status, and the last three of those now support setting
the hardware MAC address on the fly.  In addition, dp8390 has been
changed to default to PCI autoconfiguration if no configuration is
specified through environment variables.

Change-Id: I4b3ea9c0b9bc25d5b0609c6ff256fb0db71cdc42
63 files changed:
minix/drivers/net/3c90x/3c90x.c
minix/drivers/net/3c90x/3c90x.h
minix/drivers/net/3c90x/Makefile
minix/drivers/net/atl2/Makefile
minix/drivers/net/atl2/atl2.c
minix/drivers/net/atl2/atl2.h
minix/drivers/net/dec21140A/Makefile
minix/drivers/net/dec21140A/README.txt
minix/drivers/net/dec21140A/dec21140A.c
minix/drivers/net/dec21140A/dec21140A.h
minix/drivers/net/dp8390/3c503.c
minix/drivers/net/dp8390/Makefile
minix/drivers/net/dp8390/dp8390.c
minix/drivers/net/dp8390/dp8390.h
minix/drivers/net/dp8390/ne2000.c
minix/drivers/net/dp8390/rtl8029.c
minix/drivers/net/dp8390/wdeth.c
minix/drivers/net/dpeth/3c501.c
minix/drivers/net/dpeth/3c503.c
minix/drivers/net/dpeth/3c509.c
minix/drivers/net/dpeth/8390.c
minix/drivers/net/dpeth/Makefile
minix/drivers/net/dpeth/devio.c
minix/drivers/net/dpeth/dp.c
minix/drivers/net/dpeth/dp.h
minix/drivers/net/dpeth/ne.c
minix/drivers/net/dpeth/netbuff.c
minix/drivers/net/dpeth/wd.c
minix/drivers/net/e1000/Makefile
minix/drivers/net/e1000/e1000.c
minix/drivers/net/e1000/e1000.h
minix/drivers/net/e1000/e1000_reg.h
minix/drivers/net/fxp/Makefile
minix/drivers/net/fxp/fxp.c
minix/drivers/net/fxp/fxp.h
minix/drivers/net/ip1000/ip1000.c
minix/drivers/net/ip1000/ip1000.h
minix/drivers/net/lan8710a/Makefile
minix/drivers/net/lan8710a/lan8710a.c
minix/drivers/net/lan8710a/lan8710a.h
minix/drivers/net/lance/Makefile
minix/drivers/net/lance/lance.c
minix/drivers/net/lance/lance.h
minix/drivers/net/rtl8139/Makefile
minix/drivers/net/rtl8139/rtl8139.c
minix/drivers/net/rtl8139/rtl8139.h
minix/drivers/net/rtl8169/Makefile
minix/drivers/net/rtl8169/rtl8169.c
minix/drivers/net/virtio_net/Makefile
minix/drivers/net/virtio_net/virtio_net.c
minix/drivers/net/vt6105/vt6105.c
minix/drivers/net/vt6105/vt6105.h
minix/include/minix/com.h
minix/include/minix/config.h
minix/include/minix/const.h
minix/include/minix/ipc.h
minix/include/minix/netdriver.h
minix/include/minix/sysutil.h
minix/lib/libnetdriver/Makefile
minix/lib/libnetdriver/netdriver.c
minix/lib/libnetdriver/netdriver.h
minix/lib/libsys/Makefile
minix/lib/libsys/env_prefix.c [deleted file]