NetBSD/sys/dev/ic
dyoung de87fe677d *** Summary ***
When a link-layer address changes (e.g., ifconfig ex0 link
02🇩🇪ad:be:ef:02 active), send a gratuitous ARP and/or a Neighbor
Advertisement to update the network-/link-layer address bindings
on our LAN peers.

Refuse a change of ethernet address to the address 00:00:00:00:00:00
or to any multicast/broadcast address.  (Thanks matt@.)

Reorder ifnet ioctl operations so that driver ioctls may inherit
the functions of their "class"---ether_ioctl(), fddi_ioctl(), et
cetera---and the class ioctls may inherit from the generic ioctl,
ifioctl_common(), but both driver- and class-ioctls may override
the generic behavior.  Make network drivers share more code.

Distinguish a "factory" link-layer address from others for the
purposes of both protecting that address from deletion and computing
EUI64.

Return consistent, appropriate error codes from network drivers.

Improve readability.  KNF.

*** Details ***

In if_attach(), always initialize the interface ioctl routine,
ifnet->if_ioctl, if the driver has not already initialized it.
Delete if_ioctl == NULL tests everywhere else, because it cannot
happen.

In the ioctl routines of network interfaces, inherit common ioctl
behaviors by calling either ifioctl_common() or whichever ioctl
routine is appropriate for the class of interface---e.g., ether_ioctl()
for ethernets.

Stop (ab)using SIOCSIFADDR and start to use SIOCINITIFADDR.  In
the user->kernel interface, SIOCSIFADDR's argument was an ifreq,
but on the protocol->ifnet interface, SIOCSIFADDR's argument was
an ifaddr.  That was confusing, and it would work against me as I
make it possible for a network interface to overload most ioctls.
On the protocol->ifnet interface, replace SIOCSIFADDR with
SIOCINITIFADDR.  In ifioctl(), return EPERM if userland tries to
invoke SIOCINITIFADDR.

In ifioctl(), give the interface the first shot at handling most
interface ioctls, and give the protocol the second shot, instead
of the other way around. Finally, let compatibility code (COMPAT_OSOCK)
take a shot.

Pull device initialization out of switch statements under
SIOCINITIFADDR.  For example, pull ..._init() out of any switch
statement that looks like this:

        switch (...->sa_family) {
        case ...:
                ..._init();
                ...
                break;
        ...
        default:
                ..._init();
                ...
                break;
        }

Rewrite many if-else clauses that handle all permutations of IFF_UP
and IFF_RUNNING to use a switch statement,

        switch (x & (IFF_UP|IFF_RUNNING)) {
        case 0:
                ...
                break;
        case IFF_RUNNING:
                ...
                break;
        case IFF_UP:
                ...
                break;
        case IFF_UP|IFF_RUNNING:
                ...
                break;
        }

unifdef lots of code containing #ifdef FreeBSD, #ifdef NetBSD, and
#ifdef SIOCSIFMTU, especially in fwip(4) and in ndis(4).

In ipw(4), remove an if_set_sadl() call that is out of place.

In nfe(4), reuse the jumbo MTU logic in ether_ioctl().

Let ethernets register a callback for setting h/w state such as
promiscuous mode and the multicast filter in accord with a change
in the if_flags: ether_set_ifflags_cb() registers a callback that
returns ENETRESET if the caller should reset the ethernet by calling
if_init(), 0 on success, != 0 on failure.  Pull common code from
ex(4), gem(4), nfe(4), sip(4), tlp(4), vge(4) into ether_ioctl(),
and register if_flags callbacks for those drivers.

Return ENOTTY instead of EINVAL for inappropriate ioctls.  In
zyd(4), use ENXIO instead of ENOTTY to indicate that the device is
not any longer attached.

Add to if_set_sadl() a boolean 'factory' argument that indicates
whether a link-layer address was assigned by the factory or some
other source.  In a comment, recommend using the factory address
for generating an EUI64, and update in6_get_hw_ifid() to prefer a
factory address to any other link-layer address.

Add a routing message, RTM_LLINFO_UPD, that tells protocols to
update the binding of network-layer addresses to link-layer addresses.
Implement this message in IPv4 and IPv6 by sending a gratuitous
ARP or a neighbor advertisement, respectively.  Generate RTM_LLINFO_UPD
messages on a change of an interface's link-layer address.

In ether_ioctl(), do not let SIOCALIFADDR set a link-layer address
that is broadcast/multicast or equal to 00:00:00:00:00:00.

Make ether_ioctl() call ifioctl_common() to handle ioctls that it
does not understand.

In gif(4), initialize if_softc and use it, instead of assuming that
the gif_softc and ifp overlap.

Let ifioctl_common() handle SIOCGIFADDR.

Sprinkle rtcache_invariants(), which checks on DIAGNOSTIC kernels
that certain invariants on a struct route are satisfied.

In agr(4), rewrite agr_ioctl_filter() to be a bit more explicit
about the ioctls that we do not allow on an agr(4) member interface.

bzero -> memset.  Delete unnecessary casts to void *.  Use
sockaddr_in_init() and sockaddr_in6_init().  Compare pointers with
NULL instead of "testing truth".  Replace some instances of (type
*)0 with NULL.  Change some K&R prototypes to ANSI C, and join
lines.
2008-11-07 00:20:01 +00:00
..
Makefile
README.ncr5380sbc
aac.c Add support for >2TB arrays and implement raw I/O mode which is a 2008-10-02 08:21:57 +00:00
aac_tables.h
aacreg.h Add support for >2TB arrays and implement raw I/O mode which is a 2008-10-02 08:21:57 +00:00
aacvar.h Add support for >2TB arrays and implement raw I/O mode which is a 2008-10-02 08:21:57 +00:00
ac97.c Array range designated initializers are a gcc extension. Replace with 2008-06-24 10:57:45 +00:00
ac97reg.h
ac97var.h
acpipmtimer.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
acpipmtimer.h
ad1843reg.h
ad1848.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ad1848reg.h
ad1848var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
adv.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
adv.h
advlib.c machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
advlib.h
advmcode.c
advmcode.h
adw.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
adw.h
adwlib.c machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
adwlib.h
adwmcode.c machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
adwmcode.h
aha.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ahareg.h Years in license are four digits 2008-05-10 11:52:20 +00:00
ahavar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ahcisata_core.c Make sure the adapter is ready to accept FISs before bringing the PHY up. 2008-10-03 13:02:08 +00:00
ahcisatareg.h Make it print the correct version for AHCI 1.2 controllers. 2008-01-25 21:41:48 +00:00
ahcisatavar.h Split device_t and softc for ATA devices, as well as wd(4). Other 2008-03-18 20:46:35 +00:00
aic7xxx.c Constify ahc_set_name(), ahc_name(). Do not free(9) memory that 2008-02-11 21:43:46 +00:00
aic7xxx_cam.h
aic7xxx_inline.h Constify ahc_set_name(), ahc_name(). Do not free(9) memory that 2008-02-11 21:43:46 +00:00
aic7xxx_osm.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
aic7xxx_osm.h use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
aic7xxx_seeprom.c machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
aic7xxxvar.h Constify ahc_set_name(), ahc_name(). Do not free(9) memory that 2008-02-11 21:43:46 +00:00
aic77xx.c machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
aic77xxreg.h
aic77xxvar.h
aic79xx.c Use aprint_*_dev(), and device_xname(). Constify a bit. 2008-03-21 08:17:30 +00:00
aic79xx_inline.h Use aprint_*_dev(), and device_xname(). Constify a bit. 2008-03-21 08:17:30 +00:00
aic79xx_osm.c Fix prototype of ahd_send_async(). Pull in dev/ic/aic7xxx_cam.h to get ac_code. 2008-06-24 10:07:40 +00:00
aic79xx_osm.h Fix prototype of ahd_send_async(). Pull in dev/ic/aic7xxx_cam.h to get ac_code. 2008-06-24 10:07:40 +00:00
aic79xxvar.h Use aprint_*_dev(), and device_xname(). Constify a bit. 2008-03-21 08:17:30 +00:00
aic6360.c don't use cfdriver_t->cd_devs directly 2008-06-11 16:09:16 +00:00
aic6360reg.h
aic6360var.h use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
aic6915.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
aic6915reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
aic6915var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
al2210reg.h
am79c930.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
am79c930reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
am79c930var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
am7930.c machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
am7930reg.h
am7930var.h
am7990.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
am7990reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
am7990var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
am9513reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
am79900.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
am79900reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
am79900var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
an.c *** Summary *** 2008-11-07 00:20:01 +00:00
anreg.h Convert many of the uses of __attribute__ to equivalent 2007-12-25 18:33:32 +00:00
anvar.h split device/softc (tested with an@pcmcia) 2008-07-03 18:10:07 +00:00
apcdmareg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ath.c *** Summary *** 2008-11-07 00:20:01 +00:00
ath_netbsd.c - device/softc split for ath(4) 2008-07-09 19:47:23 +00:00
ath_netbsd.h Eliminate redundant check for read-only mbuf data, since 2007-11-26 23:52:40 +00:00
athioctl.h
athrate-amrr.c Start detangling lock.h from intr.h. This is likely to cause short term 2008-01-04 21:17:40 +00:00
athrate-amrr.h
athrate-onoe.c Start detangling lock.h from intr.h. This is likely to cause short term 2008-01-04 21:17:40 +00:00
athrate-onoe.h
athrate-sample.c - device/softc split for ath(4) 2008-07-09 19:47:23 +00:00
athrate-sample.h
athrate.h
athvar.h - device/softc split for ath(4) 2008-07-09 19:47:23 +00:00
atppc.c Fix panics at boot and some other misc bugs. From Hans Rosenfeld. 2008-04-18 14:56:40 +00:00
atppcreg.h
atppcvar.h compile-fix with MULTIPROCESSOR. From Hans Rosenfeld. 2008-05-01 12:06:28 +00:00
attimer.c use device_lookup_private to get softc 2008-06-12 22:30:30 +00:00
attimervar.h Convert to new 2 clause license 2008-04-29 06:53:00 +00:00
atw.c *** Summary *** 2008-11-07 00:20:01 +00:00
atwreg.h Replace most gcc-specific __attribute__ uses with BSD-style sys/cdef.h 2008-09-08 23:36:53 +00:00
atwvar.h - device/softc split 2008-07-09 20:07:19 +00:00
awi.c *** Summary *** 2008-11-07 00:20:01 +00:00
awireg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
awivar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ax88190.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ax88190reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ax88190var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
bha.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
bhareg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
bhavar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
bt8xx.h Don't assume that sizeof(long) == sizeof(int); makes bktr work on amd64. 2008-01-16 13:08:54 +00:00
bt431reg.h
bt459reg.h
bt463.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
bt463reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
bt463var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
bt485.c
bt485reg.h
bt485var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
cac.c Replace device_lookup() with device_lookup_private() on getting softc 2008-06-08 12:43:51 +00:00
cacreg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
cacvar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
cd18xx.c use device_lookup_private to get softc 2008-06-12 22:30:30 +00:00
cd18xxreg.h remove clause #3 from my license where there are no other 2008-05-29 14:51:25 +00:00
cd18xxvar.h remove clause #3 from my license where there are no other 2008-05-29 14:51:25 +00:00
cd1190reg.h change licence of my old code to two-clause BSD licence 2008-07-02 10:16:20 +00:00
cd1400reg.h
ciss.c Adopt a fix from OpenBSD, revision 1.30 in their CVS repository. 2008-09-04 19:03:14 +00:00
cissreg.h kern/39757 from mishka@: 2008-10-18 18:53:20 +00:00
cissvar.h Add bio(4) support, heavily from OpenBSD. The driver doesn't know which 2008-05-25 20:08:34 +00:00
clmpcc.c Typo correction to restore buildability. 2008-06-17 16:27:30 +00:00
clmpccreg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
clmpccvar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
com.c Simplify NOERS case. Revert most changes back to 1.283. 2008-10-25 17:50:29 +00:00
com_cpcbus.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
com_upc.c Split device_t and softc for all com(4) devices (well, everything that 2008-03-14 15:09:09 +00:00
comreg.h More forgotten changes from matt-armv6. 2008-04-28 22:00:01 +00:00
comvar.h Add support for 16550 chips without an Enhanced Register Set. 2008-10-24 04:43:08 +00:00
cpc700.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
cpc700reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
cpc700uic.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
cpc700var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
cs89x0.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
cs89x0reg.h
cs89x0var.h
cs4215reg.h Use 2-clause license. 2008-05-05 00:12:49 +00:00
cs4215var.h Use 2-clause license. 2008-05-05 00:12:49 +00:00
cs4231.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
cs4231reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
cs4231var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
cs4237reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
cy.c Properly fix the "hanging in tty" bug that was worked around with cv_wakeup() 2008-05-25 19:22:21 +00:00
cyreg.h
cyvar.h split device_t/softc. Use aprint_*_dev and device_xname. 2008-03-26 17:50:32 +00:00
daic.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
daicreg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
daicvar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
dc21040reg.h
decmonitors.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
depca.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
depcareg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
depcavar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
dl10019.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
dl10019reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
dl10019var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
dp8390.c *** Summary *** 2008-11-07 00:20:01 +00:00
dp8390reg.h
dp8390var.h Split device_t and softc for the NE2000 Ethernet chip and all its variants 2008-03-12 14:31:11 +00:00
dp83905.c machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
dp83905reg.h
dp83905var.h
dp83932.c Fix typo in comment. 2008-08-23 15:46:47 +00:00
dp83932reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
dp83932var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
dpt.c Replace device_lookup() with device_lookup_private() on getting softc 2008-06-08 12:43:51 +00:00
dptreg.h Replace most gcc-specific __attribute__ uses with BSD-style sys/cdef.h 2008-09-08 23:36:53 +00:00
dptvar.h
ds.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ds1286reg.h
ds1687reg.h Move to standard TNF 2 clause license 2008-05-04 12:50:38 +00:00
elink3.c device_t changes, pmf, minor knf. 2008-08-27 05:33:47 +00:00
elink3reg.h
elink3var.h device_t changes, pmf, minor knf. 2008-08-27 05:33:47 +00:00
elinkxl.c *** Summary *** 2008-11-07 00:20:01 +00:00
elinkxlreg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
elinkxlvar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
esiop.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
esiopvar.h Convert many of the uses of __attribute__ to equivalent 2007-12-25 18:33:32 +00:00
fmv.c Split device_t/softc for MI mb86960, with misc cosmetics. 2008-04-12 06:27:01 +00:00
fmvreg.h
fmvvar.h
gem.c *** Summary *** 2008-11-07 00:20:01 +00:00
gemreg.h Minor corrections to the SBus definitions, from the `Sbus GEM Specification': 2008-09-15 19:43:24 +00:00
gemvar.h Add GEM_IS_SUN macro, and chip revision to the softc. 2008-02-01 10:53:25 +00:00
hayespreg.h
hd44780_subr.c Remove a now-spurious & so that this builds again (for cobalt). 2008-04-10 09:05:53 +00:00
hd44780reg.h
hd44780var.h
hd64570.c *** Summary *** 2008-11-07 00:20:01 +00:00
hd64570reg.h
hd64570var.h
hfa3861areg.h Define some more registers. 2007-11-16 04:52:36 +00:00
hme.c *** Summary *** 2008-11-07 00:20:01 +00:00
hmereg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
hmevar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
hpet.c Split device_t/softc for ichlpcib(4) and all hpet consumers, plus 2008-03-21 13:25:27 +00:00
hpetreg.h Add missing register definitions. 2008-02-15 22:14:10 +00:00
hpetvar.h Split device_t/softc for ichlpcib(4) and all hpet consumers, plus 2008-03-21 13:25:27 +00:00
hscx.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
hscx.h
i128.c Convert to new 2 clause license 2008-04-29 06:53:00 +00:00
i128reg.h Convert to new 2 clause license 2008-04-29 06:53:00 +00:00
i128var.h Convert to new 2 clause license 2008-04-29 06:53:00 +00:00
i8042reg.h
i8237reg.h
i8253reg.h
i8259reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
i82365.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
i82365reg.h
i82365var.h lockmgr -> mutex 2007-12-05 07:58:29 +00:00
i82557.c Calling fxp_init within the interrupt handler results in 2008-07-31 12:28:28 +00:00
i82557reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
i82557var.h - device/softc split for fxp(4) 2008-07-09 17:07:28 +00:00
i82586.c *** Summary *** 2008-11-07 00:20:01 +00:00
i82586reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
i82586var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
i82595reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
i82596.c Split device_t/softc for iee(4), with misc cosmetic changes. 2008-04-04 17:03:42 +00:00
i82596reg.h Typo in comment. 2008-04-05 08:42:35 +00:00
i82596var.h Split device_t/softc for iee(4), with misc cosmetic changes. 2008-04-04 17:03:42 +00:00
i82801lpcreg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
iavc.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
iavcreg.h
iavcvar.h
ibm561.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ibm561reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ibm561var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ibm82660reg.h Automatically detect the amount of installed RAM by reading the memory 2008-06-14 12:01:28 +00:00
icp.c Make various bits of debug code compile again. 2008-04-30 14:07:13 +00:00
icp_ioctl.c Replace device_lookup() with device_lookup_private() on getting softc 2008-06-08 12:43:51 +00:00
icp_ioctl.h Convert many of the uses of __attribute__ to equivalent 2007-12-25 18:33:32 +00:00
icpreg.h Replace most gcc-specific __attribute__ uses with BSD-style sys/cdef.h 2008-09-08 23:36:53 +00:00
icpsp.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
icpvar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ics2101reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
igsfb.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
igsfb_subr.c machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
igsfbreg.h
igsfbvar.h
iha.c Normalize my licenses. 2008-05-14 13:29:27 +00:00
ihareg.h Change my mail address to netbsd.org one. 2008-05-03 05:21:25 +00:00
ihavar.h Normalize my licenses. 2008-05-14 13:29:27 +00:00
iic_cpcbus.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ims332reg.h
intersil7170.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
intersil7170reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
intersil7170var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
interwave.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
interwavereg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
interwavevar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ipac.h
isac.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
isac.h
isacsx.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
isacsx.h Replace most gcc-specific __attribute__ uses with BSD-style sys/cdef.h 2008-09-08 23:36:53 +00:00
isic.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
isic_bchan.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
isic_l1.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
isic_l1.h
isic_l1fsm.c machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
isp.c Make fc scratch acquisition something that can fail. Remove in_intr flag. 2008-05-11 02:08:11 +00:00
isp_ioctl.h Checkpoint of some fairly major isp(4) rototilling. 2008-03-11 05:33:30 +00:00
isp_library.c Checkpoint of some fairly major isp(4) rototilling. 2008-03-11 05:33:30 +00:00
isp_library.h Checkpoint of some fairly major isp(4) rototilling. 2008-03-11 05:33:30 +00:00
isp_netbsd.c Use more timespecs internally. From Alexander Shishkin and me. 2008-07-15 16:18:08 +00:00
isp_netbsd.h Make fc scratch acquisition something that can fail. Remove in_intr flag. 2008-05-11 02:08:11 +00:00
isp_stds.h Checkpoint of some fairly major isp(4) rototilling. 2008-03-11 05:33:30 +00:00
isp_target.c __FUNCTION__ -> __func__ 2008-06-30 00:46:41 +00:00
isp_target.h Checkpoint of some fairly major isp(4) rototilling. 2008-03-11 05:33:30 +00:00
isp_tpublic.h Make fc scratch acquisition something that can fail. Remove in_intr flag. 2008-05-11 02:08:11 +00:00
ispmbox.h Make fc scratch acquisition something that can fail. Remove in_intr flag. 2008-05-11 02:08:11 +00:00
ispreg.h Checkpoint of some fairly major isp(4) rototilling. 2008-03-11 05:33:30 +00:00
ispvar.h Make fc scratch acquisition something that can fail. Remove in_intr flag. 2008-05-11 02:08:11 +00:00
joy.c Split device_t/softc for joy(4) and all its attachments. Also 2008-03-26 18:27:07 +00:00
joyvar.h Split device_t/softc for joy(4) and all its attachments. Also 2008-03-26 18:27:07 +00:00
lance.c *** Summary *** 2008-11-07 00:20:01 +00:00
lancereg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
lancevar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
lcdkp_subr.c machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
lcdkp_subr.h
ld_aac.c Add support for >2TB arrays and implement raw I/O mode which is a 2008-10-02 08:21:57 +00:00
ld_cac.c Complete device_t/softc split for the ld(4) attachments. This should 2008-09-09 12:45:39 +00:00
ld_icp.c Complete device_t/softc split for the ld(4) attachments. This should 2008-09-09 12:45:39 +00:00
ld_mlx.c Complete device_t/softc split for the ld(4) attachments. This should 2008-09-09 12:45:39 +00:00
lemac.c *** Summary *** 2008-11-07 00:20:01 +00:00
lemacreg.h
lemacvar.h
lm700x.c
lm700x.h machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
lpt.c device_private(device_lookup()) -> device_lookup_private() 2008-06-10 22:53:08 +00:00
lpt_upc.c Split the softc from the device_t for all lpt(4) variants and attachments 2008-03-07 17:15:51 +00:00
lptreg.h
lptvar.h Split the softc from the device_t for all lpt(4) variants and attachments 2008-03-07 17:15:51 +00:00
lsi64854.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
lsi64854reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
lsi64854var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
matrixkp_subr.c machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
matrixkpvar.h
max2820reg.h
mb86950.c *** Summary *** 2008-11-07 00:20:01 +00:00
mb86950reg.h
mb86950var.h
mb86960.c *** Summary *** 2008-11-07 00:20:01 +00:00
mb86960reg.h
mb86960var.h Split device_t/softc for MI mb86960, with misc cosmetics. 2008-04-12 06:37:51 +00:00
mb89352.c use device_lookup_private to get softc 2008-06-12 22:30:30 +00:00
mb89352reg.h
mb89352var.h Move to standard TNF 2 clause license 2008-05-04 12:59:38 +00:00
mc6845reg.h
mc6854reg.h
mc68450reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
mc146818.c Normalize my licenses. 2008-05-14 13:29:27 +00:00
mc146818reg.h
mc146818var.h Normalize my licenses. 2008-05-14 13:29:27 +00:00
mfi.c Change mfi_mgmt() to take a mfi_ccb and scsipi_xfer as argument, as 2008-10-23 21:00:06 +00:00
mfireg.h Added support for the mfi(4) controllers with powerpc IOPs such as 2008-02-25 10:46:02 +00:00
mfivar.h Change gcc variadic macros to c99 variadic macros. 2008-06-24 10:09:24 +00:00
midway.c *** Summary *** 2008-11-07 00:20:01 +00:00
midwayreg.h
midwayvar.h
mk48txx.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
mk48txxreg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
mk48txxvar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
mlx.c Complete device_t/softc split for the ld(4) attachments. This should 2008-09-09 12:45:39 +00:00
mlxio.h
mlxreg.h Replace most gcc-specific __attribute__ uses with BSD-style sys/cdef.h 2008-09-08 23:36:53 +00:00
mlxvar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
mm58167.c Split device_t/softc with misc cosmetic changes. 2008-07-06 13:29:50 +00:00
mm58167var.h Split device_t/softc with misc cosmetic changes. 2008-07-06 13:29:50 +00:00
monitors.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
mpc105reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
mpc106reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
mpt.c
mpt.h
mpt_debug.c
mpt_mpilib.h
mpt_netbsd.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
mpt_netbsd.h Don't rely on others being kind enough to pull in sys/device.h 2007-11-20 14:33:58 +00:00
mpu.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
mpuvar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
msm6258.c
msm6258var.h
mtd803.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
mtd803reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
mtd803var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
mx98905.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
mx98905var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ncr53c9x.c don't play with timevals directly, use the macros. From OpenBSD 2008-05-13 22:16:27 +00:00
ncr53c9xreg.h
ncr53c9xvar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ncr53c400reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ncr5380.doc
ncr5380reg.h
ncr5380sbc.c Split devict_t/softc for ncr5380sbc SCSI, and misc cosmetic changes. 2008-04-04 16:00:57 +00:00
ncr5380var.h Split devict_t/softc for ncr5380sbc SCSI, and misc cosmetic changes. 2008-04-04 16:00:57 +00:00
ne2000.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ne2000reg.h
ne2000var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
nec765reg.h
nec7210reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
nec71071reg.h
ninjaata32.c Split device_t and softc for ATA devices, as well as wd(4). Other 2008-03-18 20:46:35 +00:00
ninjaata32reg.h
ninjaata32var.h Split device_t and softc for ATA devices, as well as wd(4). Other 2008-03-18 20:46:35 +00:00
ninjascsi32.c - device/softc split 2008-07-09 19:08:44 +00:00
ninjascsi32reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ninjascsi32var.h - device/softc split 2008-07-09 19:08:44 +00:00
ns8477reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ns16450reg.h
ns16550reg.h
nslm7x.c Fix up the bus-independant probe code. Patch from njoly@ 2008-10-13 12:44:46 +00:00
nslm7xvar.h Add an i2c attachment for the LM78 family of temp sensor/fan control 2008-10-12 13:17:28 +00:00
oosiop.c Split softc/device_t for oosiop(4) and osiop(4), with misc cosmetic changes. 2008-03-29 09:11:35 +00:00
oosiopreg.h
oosiopvar.h Split softc/device_t for oosiop(4) and osiop(4), with misc cosmetic changes. 2008-03-29 09:11:35 +00:00
opl.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
opl3sa3reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
oplinstrs.c machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
oplreg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
oplvar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
osiop.c Normalize my licenses. 2008-05-14 13:29:27 +00:00
osiopreg.h
osiopvar.h Normalize my licenses. 2008-05-14 13:29:27 +00:00
pcdisplay.h
pcdisplay_chars.c machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
pcdisplay_subr.c machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
pcdisplayvar.h
pcf8584.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
pcf8584reg.h
pcf8584var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
pckbc.c Reduce polling of the keyboard controller status by a factor of 1000. 2008-06-04 16:29:14 +00:00
pckbcvar.h Split device_t and softc for pckbc(4) and its attachments. 2008-03-15 13:23:24 +00:00
pdq.c
pdq_ifsubr.c *** Summary *** 2008-11-07 00:20:01 +00:00
pdqreg.h Rearrange pdq_boolean_t, pdq_type_t and pdq_state_t so that enums are defined 2008-06-24 10:12:06 +00:00
pdqvar.h Rearrange pdq_boolean_t, pdq_type_t and pdq_state_t so that enums are defined 2008-06-24 10:12:06 +00:00
ramdac.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
rf3000reg.h
rrunner.c *** Summary *** 2008-11-07 00:20:01 +00:00
rrunnerreg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
rrunnervar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
rs5c313.c Move TNF licenses to 2 clause form 2008-05-04 19:43:05 +00:00
rs5c313reg.h Move TNF licenses to 2 clause form 2008-05-04 19:43:05 +00:00
rs5c313var.h Split device_t and softc. 2008-03-27 02:15:29 +00:00
rt2560.c *** Summary *** 2008-11-07 00:20:01 +00:00
rt2560reg.h
rt2560var.h Merge jmcneill-pm branch. 2007-12-09 20:27:42 +00:00
rt2661.c *** Summary *** 2008-11-07 00:20:01 +00:00
rt2661reg.h Pull in some more changes from OpenBSD: 2008-04-29 22:21:45 +00:00
rt2661var.h Pull in some more changes from OpenBSD: 2008-04-29 22:21:45 +00:00
rtl80x9.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
rtl80x9reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
rtl80x9var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
rtl81x9.c Split device_t/softc for re(4) and rtk(4). 2008-04-25 11:27:19 +00:00
rtl81x9reg.h Add support for the Realtek 8102E/8102EL PCIe 10/100 Ethernet devices. 2008-08-23 14:27:45 +00:00
rtl81x9var.h Split device_t/softc for re(4) and rtk(4). 2008-04-25 11:27:19 +00:00
rtl8169.c Add support for the Realtek 8102E/8102EL PCIe 10/100 Ethernet devices. 2008-08-23 14:27:45 +00:00
rtl8169var.h
rtw.c *** Summary *** 2008-11-07 00:20:01 +00:00
rtwphy.c Explicitly include <sys/device.h> for device_t. 2008-03-03 12:30:57 +00:00
rtwphy.h
rtwphyio.c Explicitly include <sys/device.h> for device_t. 2008-03-03 12:30:57 +00:00
rtwphyio.h
rtwreg.h Replace most gcc-specific __attribute__ uses with BSD-style sys/cdef.h 2008-09-08 23:36:53 +00:00
rtwvar.h Use device_t and its accessors throughout. Use aprint_*_dev(). 2008-03-12 18:02:21 +00:00
sa2400reg.h
seeq8003reg.h
seeq8005.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
seeq8005reg.h
seeq8005var.h
sgec.c *** Summary *** 2008-11-07 00:20:01 +00:00
sgecreg.h
sgecvar.h Rototill the vax code. Switch to devicet/PRIV_ALLOC. Cleanup vax autoconf 2008-03-11 05:34:01 +00:00
si4136reg.h
siisata.c A few cleanups for siisata(4) 2008-09-14 21:53:49 +00:00
siisatareg.h Replace most gcc-specific __attribute__ uses with BSD-style sys/cdef.h 2008-09-08 23:36:53 +00:00
siisatavar.h A few cleanups for siisata(4) 2008-09-14 21:53:49 +00:00
siop.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
siop_common.c Support use PCI Clock(SF_CHIP_USEPCIC). We can set the value "use_pciclock" 2008-06-11 02:09:16 +00:00
siopreg.h Support use PCI Clock(SF_CHIP_USEPCIC). We can set the value "use_pciclock" 2008-06-11 02:09:16 +00:00
siopvar.h Convert many of the uses of __attribute__ to equivalent 2007-12-25 18:33:32 +00:00
siopvar_common.h Support use PCI Clock(SF_CHIP_USEPCIC). We can set the value "use_pciclock" 2008-06-11 02:09:16 +00:00
sl811hs.c split device/softc for USB host controllers and the usb (control) 2008-03-28 17:14:45 +00:00
sl811hsreg.h
sl811hsvar.h use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
smc83c170.c Split device_t/softc with misc cosmetic changes. 2008-07-06 14:32:56 +00:00
smc83c170reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
smc83c170var.h Split device_t/softc with misc cosmetic changes. 2008-07-06 14:32:56 +00:00
smc90cx6.c *** Summary *** 2008-11-07 00:20:01 +00:00
smc90cx6reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
smc90cx6var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
smc91cxx.c *** Summary *** 2008-11-07 00:20:01 +00:00
smc91cxxreg.h
smc91cxxvar.h More forgotten changes from matt-armv6. 2008-04-28 22:00:01 +00:00
smc93cx6.c machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
smc93cx6var.h
spic.c device_t/softc split for spic(4) and other related cosmetic changes. 2008-05-04 16:13:35 +00:00
spicvar.h device_t/softc split for spic(4) and other related cosmetic changes. 2008-05-04 16:13:35 +00:00
st16650reg.h
sti.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
stireg.h
stivar.h
sunscpal.c Split device_t/softc with misc cosmetic changes. 2008-07-06 13:29:50 +00:00
sunscpalreg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
sunscpalvar.h Split device_t/softc with misc cosmetic changes. 2008-07-06 13:29:50 +00:00
tcic2.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
tcic2reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
tcic2var.h
tea5757.c
tea5757.h machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
timer_cpcbus.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
tms320av110.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
tms320av110reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
tms320av110var.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
tms9914reg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
tropic.c *** Summary *** 2008-11-07 00:20:01 +00:00
tropicreg.h
tropicvar.h
tulip.c *** Summary *** 2008-11-07 00:20:01 +00:00
tulipreg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
tulipvar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
ug.c Split device_t/softc for ug(4) and other related cosmetic changes. 2008-03-26 16:09:37 +00:00
ugreg.h
ugvar.h Split device_t/softc for ug(4) and other related cosmetic changes. 2008-03-26 16:09:37 +00:00
uha.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
uhareg.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
uhavar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
universereg.h
upc.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
upcreg.h
upcvar.h machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h 2007-10-19 11:59:34 +00:00
vga.c Always deviter_release(). 2008-03-16 19:57:39 +00:00
vga_common.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
vga_raster.c Calculate maxdispoffset rather than hard-coding it. Fixes scrolling in 2008-10-19 17:47:38 +00:00
vga_subr.c Merge jmcneill-pm branch. 2007-12-09 20:27:42 +00:00
vgareg.h
vgavar.h Split device_t and softc for all attachments of vga(4). 2008-03-14 22:12:08 +00:00
videomode.h
wd33c93.c use aprint_*_dev and device_xname 2008-04-08 12:07:25 +00:00
wd33c93reg.h
wd33c93var.h
wdc.c Kill ATACH_TH_RUN and use cpu_intr_p() instead. 2008-10-02 21:05:17 +00:00
wdc_upc.c Split device_t and softc for ATA devices, as well as wd(4). Other 2008-03-18 20:46:35 +00:00
wdcreg.h
wdcvar.h Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
we.c Remove clause 3 and 4 from TNF licenses 2008-04-28 20:22:51 +00:00
wereg.h
wevar.h
wi.c *** Summary *** 2008-11-07 00:20:01 +00:00
wi_ieee.h
wireg.h Convert many of the uses of __attribute__ to equivalent 2007-12-25 18:33:32 +00:00
wivar.h Convert many of the uses of __attribute__ to equivalent 2007-12-25 18:33:32 +00:00
z8530reg.h
z8530sc.c Split softc and device_t for zsc(4) and its children. 2008-03-29 19:15:34 +00:00
z8530sc.h - use uint8_t instead of u_char for unsigned byte values 2008-04-20 15:42:47 +00:00
z8530tty.c Make ntp, pmc, reboot, sysarch, time syscalls MPSAFE. 2008-04-21 12:56:30 +00:00
z8536reg.h Fix NetBSD version tag. 2008-05-23 10:46:10 +00:00

README.ncr5380sbc

NCR 53C80/53C400 driver

BACKGROUND
----------
The NCR 53C80 SCSI Bus Controller (SBC) is an early single-chip solution
which formed the basis of many early SCSI host adapters for both the
i386 and m68k platforms. The NCR 53C400 is a slightly more advanced
chip which retains backward compatibility with the 53C80.

On the PC, the NCR 53C80 was most commonly used to implement simple, cheap
SCSI host adapters that were bundled with tape and CD-ROM drives. Since
these controllers were not bus-mastering (and in some cases were not even
interrupt-driven), they (like IDE adapters) required the CPU to perform
much of the actual processing. These days, these controllers are cheap
and plentiful since many are not supported by Windows 95.

Similarly, NetBSD, although it has had an MI 53C80 driver (used by the
Sun3 and Mac68k ports) for some time, has not had a i386 driver.

Until now, that is...

OVERVIEW
--------
The NCR 53C80/53C400 driver (the 'nca' device) consists of two pieces:

	1) Patches for the 53C80 MI driver to make it use bus_space()
	   functions. (This requires an optional define. By default,
	   the driver will compile in "legacy" memory-mapped mode.

	2) A machine-dependent driver (nca) containing probe and
	   attachment routines.

This driver has bene tested with the following adapters:

	NCS-250 (Chinon)	53C80, port-mapped, polled-mode
				(This is used in my primary development
				box to drive an external Zip drive.)
	Sumo SCSI-AT		53C80, port-mapped, interrupt driven
				(Note: This is an odd card in that its
				own firmware seems to have trouble detecting
				attached drives. Under NetBSD, however,
				it operates with no problems.)
	Trantor T-160		53C400, port-mapped, interrupt driven
				This card was often bundled with NEC
				CD-ROM drives. (My standalone test box
				is using this as its primary adapter.)
	DTC 3150V		53C400, memory-mapped, interrupt driven
				This a simple card designed to drive
				a CD-ROM.

CONFIGURATION
-------------
To setup the nca driver, the configuration file must contain the following:

	options	NCR5380_USE_BUS_SPACE

This line is required to add bus_space() compatibility to the MI driver.

Next you need to add one or more configuration lines for the nca devices:

	nca0	at isa? port 0x360 irq 15
	nca1	at isa? iomem 0xd8000 irq 5

The first is for a port-mapped controller at 0x360, IRQ 15. The second line
is for a memory-mapped controller (Trantor T128 or equivalent) at
0xd800-0xdff, IRQ 5.

You can also set up the driver in "polled" mode (i.e., no interrupts) by
leaving off the "irq" portion of the line:

	nca0	at isa? port 0x360
	nca1	at isa? iomem 0xd8000

Lastly, you need to add a scsibus attachment line for the nca device:

	scsibus* at nca?

The following is the probe output from my test system:

	Copyright (c) 1996, 1997, 1998
	    The NetBSD Foundation, Inc.  All rights reserved.
	Copyright (c) 1982, 1986, 1989, 1991, 1993
	    The Regents of the University of California.  All rights reserved.

	NetBSD 1.3.2 (GENERIC) #2: Sun Oct  4 17:11:43 EDT 1998
	    root@hefalump:/usr/src/sys/arch/i386/compile/GENERIC
	cpu0: Intel 486DX (486-class)
	real mem  = 7995392
	avail mem = 5349376
	using 123 buffers containing 503808 bytes of memory
	mainbus0 (root)
	isa0 at mainbus0
	com1 at isa0 port 0x2f8-0x2ff irq 3: ns8250 or ns16450, no fifo
	com2 at isa0 port 0x3e8-0x3ef irq 5: ns8250 or ns16450, no fifo
	lpt0 at isa0 port 0x378-0x37b irq 7
	nca0 at isa0 port 0x360-0x36f irq 15
	nca0: NCR 53C400 detected
	scsibus0 at nca0: 8 targets
	sd0 at scsibus0 targ 0 lun 0: <HP, C2235, 0B11> SCSI2 0/direct fixed
	sd0: 402MB, 1574 cyl, 9 head, 58 sec, 512 bytes/sect x 825012 sectors
	cd0 at scsibus0 targ 6 lun 0: <CHINON, CD-ROM CDS-535, Q20> SCSI2 5/cdrom removable
	nca1 at isa0 iomem 0xdb878-0xdb887 irq 5
	nca1: NCR 53C400 detected
	scsibus1 at nca1: 8 targets
	sd1 at scsibus1 targ 5 lun 0: <IOMEGA, ZIP 100, J.02> SCSI2 0/direct removable
	sd1: 96MB, 96 cyl, 64 head, 32 sec, 512 bytes/sect x 196608 sectors
	npx0 at isa0 port 0xf0-0xff: using exception 16
	pc0 at isa0 port 0x60-0x6f irq 1: color
	pc0: console
	fdc0 at isa0 port 0x3f0-0x3f7 irq 6 drq 2
	fd0 at fdc0 drive 0: 1.44MB, 80 cyl, 2 head, 18 sec
	biomask 8060 netmask 8460 ttymask 84e2
	boot device: sd0
	root on sd0a dumps on sd0b
	root file system type: ffs

In this output, nca0 is a Trantor T-160 and nca1 is a DTC 3150V. Both happen
to be 53C400-based controllers.

LIMITATIONS
-----------
As of this writing, the nca driver has two known limitations:

1) No DMA or pseudo-DMA support

This is unfortunate, but may be remedied in a later release. I would welcome
any help by someone more familiar with DMA, particularly in relation to
bus_space().

As it is, however, performance of the nca driver is acceptable, though some
of that may depend on one's definition of "acceptable". Remember that these
were not high speed controller under the best conditions, so much of it is
really the nature of the beast. It should be adequate for tapes, CD-ROMS,
and low-usage disk devices (e.g., Zip drives). If you want to drive a CD-R
drive, then invest in an Adaptec 154X or a PCI controller.

2) No support for the SCSI port of the Pro AudioStudio 16.

This is also unfortunate and may not be able to be remedied withing the
current framework of the bus_space() functions and the nca driver.

The problem is this: In most adapters, the eight 53C80 registers are mapped
to eight sequential locations, either ports or memory addresses. On the
PAS-16, however, the registers are mapped to two sets of ports- four
sequential ports at the base address and four sequential ports located
0x2000 higher. As I currently understand it, this is not supportable by
the current bus_space() implementation nor is it possible for the driver
to allocate a second bus_space_tag and _handle itself to accommodate the
second set of ports. Without either, it is very difficult to imagine how
a portable linkage to the MI driver could be made.

Again, I welcome suggestions.

HISTORY
-------
An nca driver first appeared in FreeBSD.

This particular one borrows a little code from it and some from the i386
'esp' and sun3 'si' drivers. It, like many things in the free unix world,
was written because it solved a problem- mine! In my case, it was a need
of a SCSI card and a lack of IRQs. The good news was that I had one
(NCS-250); the bad news was that it was not supported under NetBSD. The
rest is history.

DISCLAIMER
----------
Like most things, you should take this code with a grain of salt. I have
tried to test it sufficiently, but it is always possible that it is not
compatible with some aspect of your system. If you end up suffering
massive data loss and destruction, you have my sympathies, but I do not
and will not allow myself to be held responsible.

CREDITS
-------
My thanks to Jason Thorpe and the rest of the NetBSD team for making it
so easy to write this driver. My thanks also to the authors of the
FreeBSD nca driver for inspiration and 53C400 support.

In the end, I hope that someone else can find this driver as useful as I
have. If so, please drop me a line at jruschme@exit109.com and let me
know about it.

Share and enjoy

John Ruschmeyer (jruschme@exit109.com)
11 October 1998