freebsd-nq/sys/dev
Justin T. Gibbs 22dbd4c64c aic79xx.c:
Allow 500us between pauses in ahd_pause_and_flushwork().
	The maximum we will wait is now 500ms.

	In the same routine, remove any attempt to clear ENSELO.
	Let the firmware do it once the current selection has
	completed.  This avoids some race conditions having to
	do with non-packetized completions and the auto-clearing
	of ENSELO on packetized completions.

	Also avoid attempts to clear critical sections when
	interrups are pending.  We are going to loop again
	anyway, so clearing critical sections is a waste of
	time.  It also may not be possible to clear a critical
	section if the source of the interrupt was a SEQINT.

aic79xx_pci.c:
	Use the Generic 9005 mask when looking for generic 7901B
	parts.  This allows the driver to attach to 7901B parts
	on motherboards using a non-Adaptec subvendor ID.

aic79xx_inline.h:
	Test for the SCBRAM_RD_BUG against the bugs
	field, not the flags field in the softc.

aic79xx.c:
	Cancel pending transactions on devices that
	respond with a selection timeout.  This decreases
	the duration of timeout recovery when a device
	disappears.

aic79xx.c:
	Don't bother forcing renegotiation on a selection
	timeout now that we use the device reset handler
	to abort any pending commands on the target.
	The device reset handler already takes us down
	to async narrow and forces a renegotiation.

	In the device reset handlers, only send a
	BDR sent async event if the status is not
	CAM_SEL_TIMEOUT.  This avoids sending this
	event in the selection timeout case

aic79xx.c:
	Modify the Core timeout handler to verify that another
	command has the potential to timeout before passing off
	a command timeout as due to some other command.  This
	safety measure is added in response to a timeout recovery
	failure on H2B where it appears that incoming reselection
	status was lost during a drive pull test.  In that case,
	the recovery handler continued to wait for the command
	that was active on the bus indefinetly.  While the root
	cause of the above issue is still being determined seems
	a prudent safeguard.

aic79xx_pci.c:
	Add a specific probe entry for the Dell OEM 39320(B).

aic79xx.c:
aic79xx.h:
aic79xx.reg:
aic79xx.seq:
	Modify the aic79xx firmware to never cross a cacheline or
	ADB boundary when DMA'ing completion entries to the host.
	In PCI mode, at least in 32/33 configurations, the SCB
	DMA engine may lose its place in the data-stream should
	the target force a retry on something other than an
	8byte aligned boundary. In PCI-X mode, we do this to
	avoid split transactions since many chipsets seem to be
	unable to format proper split completions to continue
	the data transfer.

	The above change allows us to drop our completion entries
	from 8 bytes to 4.  We were using 8 byte entries to ensure
	that PCI retries could only occur on an 8byte aligned
	boundary.  Now that the sequencer guarantees this by splitting
	up completions, we can safely drop the size to 4 bytes (2
	byte tag, one byte SG_RESID, one byte pad).

	Both the split-completion and PCI retry problems only show
	up under high tag load when interrupt coalescing is being
	especially effective.  The switch from a 2byte completion
	entry to an 8 byte entry to solve the PCI problem increased
	the chance of incurring a split in PCI-X mode when multiple
	transactions were completed at once.  Dropping the completion
	size to 4 bytes also means that we can complete more commands
	in a single DMA (128byte FIFO -> 32 commands instead of 16).

aic79xx.c:
	Modify the SCSIINT handler to defer clearing
	sequencer critical sections to the individual
	interrupt handlers.  This allows us to
	immediately disable any outgoing selections in
	the case of an unexpected busfree so we don't
	inadvertantly clear ENSELO *after* a new selection
	has started.  Doing so may cause the sequencer
	to miss a successful selection.

	In ahd_update_pending_scbs(), only clear ENSELO if
	the bus is currently busy and a selection is not
	already in progress or the sequencer has yet to
	handle a pending selection.  While we want to ensure
	that the selection for the SCB at the head of the
	selection queue is restarted so that any change in
	negotiation request can take effect, we can't clobber
	pending selection state without confusing the sequencer
	into missing a selection.
2004-05-11 20:46:05 +00:00
..
aac Remove the 'timeout' argument from aac_wait_command() as it isn't used and 2004-04-14 19:11:29 +00:00
acpi_support Enable the led-toggling magic. Compiling files which are in the kernel into 2004-04-23 17:41:05 +00:00
acpica If an ACPI PCI-PCI bridge doesn't have a _PRT object, fall back to using 2004-05-10 18:26:22 +00:00
adlink Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
advansys Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
agp Push down the responsibility for zeroing a physical page from the 2004-04-24 20:53:55 +00:00
aha Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
ahb Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
aic Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
aic7xxx aic79xx.c: 2004-05-11 20:46:05 +00:00
amd Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
amr Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
an It turns out that the module dependency on pccard is in error. Since 2004-05-08 06:04:06 +00:00
ar Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
arl Add 354k and 512k support. 2004-04-17 20:30:05 +00:00
asr Update the version history in the driver to note everything that has happened 2004-05-05 14:19:43 +00:00
ata Fix Sii3114 support. 2004-05-10 20:23:25 +00:00
ath use correct malloc type to allocate struct ieee80211_node's 2004-04-05 04:42:42 +00:00
atkbdc Don't check for device_get_softc() returning NULL, it can't happen. 2004-04-17 10:25:04 +00:00
awi It turns out that the module dependency on pccard is in error. Since 2004-05-08 06:04:06 +00:00
bfe Added BSD license, as requested by author. 2004-04-04 06:13:56 +00:00
bge Enable the memory arbiter before turning off the PXE restart. This 2004-04-06 18:28:15 +00:00
bktr Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
buslogic Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
cardbus Add note about why we're ignoring the below 1MB bit. 2004-04-11 19:22:25 +00:00
ciss make this compile/work with CISS_DEBUG defined. 2004-04-26 19:28:08 +00:00
cm Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
cnw Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
cp Add support for Cronyx Tau-PCI adapters. 2004-05-05 16:11:45 +00:00
cs We don't need the dependency on the pccard module here. 2004-05-08 06:06:13 +00:00
ct Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
ctau Use better way of closing fr support before current sppp get it. 2004-05-07 11:59:54 +00:00
cx Use better way of closing fr support before current sppp doesn't have it. 2004-05-07 11:45:25 +00:00
cy Reduce differences with cy_isa.c: fixed an unsorted include. 2004-05-01 18:43:00 +00:00
dc Correct the phy_service() routine case MII_TICK to correctly track 2004-05-03 13:01:34 +00:00
dcons Device megapatch 4/6: 2004-02-21 21:10:55 +00:00
de Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
dec Use __FBSDID(). 2003-08-24 17:55:58 +00:00
digi Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
dpt Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
drm Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
ed It turns out that the module dependency on pccard is in error. Since 2004-05-08 06:04:06 +00:00
eisa Use __FBSDID(). 2003-08-24 17:55:58 +00:00
em Implemented per-interface polling(4) control. 2004-04-11 21:01:12 +00:00
en Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
ep Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
ex Remove improper use of if_addrhead in device drivers to check 2004-04-15 20:31:10 +00:00
exca Card type stuff was backwards, so assume io for the moment. mem needs 2003-10-07 04:29:04 +00:00
fatm Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
fb Remove advertising clause from University of California Regent's 2004-04-07 20:46:16 +00:00
fdc Fixed breakage of the formatting operation in rev.1.266. The wrong 2004-04-25 04:33:56 +00:00
fe Remove improper use of if_addrhead in device drivers to check 2004-04-15 20:31:10 +00:00
firewire MFp4: FireWire 2004-03-26 23:17:10 +00:00
fxp Implemented per-interface polling(4) control. 2004-04-11 15:35:49 +00:00
gem Clean up two printf()s that were on a line by themselves unintendedly 2004-04-23 19:43:35 +00:00
gfb Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
gx Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
harp Make sure that the first mbuf in the chain passed to atm_intr 2004-02-21 13:01:54 +00:00
hatm Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
hfa Delete an unused file which no longer compiles anyway. 2004-04-20 15:33:24 +00:00
hifn Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
hme The Sun hme hardware supposedly supports Tx frames up to 65535 octets, 2004-05-06 13:38:19 +00:00
ic Remove advertising clause from University of California Regent's 2004-04-07 20:46:16 +00:00
ichsmb Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
ichwd Add a driver for the watchdog timer function present on the LPC interface 2004-05-11 18:21:38 +00:00
ida Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
idt Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
ie Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
if_ndis Link state change notification of ethernet media to the routing socket. 2004-05-06 13:17:02 +00:00
iicbus Device megapatch 4/6: 2004-02-21 21:10:55 +00:00
iir Fix the ioctl types for two ioctls. I'm not sure if the switch was my 2004-03-20 19:02:46 +00:00
ips Fix typo in the device id for the new cards. 2004-03-27 15:56:34 +00:00
isp Correct the boundary parameter to the bus_dma_tag_create() calls (it was 2004-03-23 23:41:39 +00:00
ispfw Fix $FreeBSD$. 2004-03-21 18:16:49 +00:00
joy Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
kbd style(9): return foo -> return (foo) 2004-04-02 16:41:16 +00:00
led - Remove the __FBSDID and put the $FreeBSD$ tag in the comment above, 2004-05-10 11:50:21 +00:00
lge Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
lnc Remove improper use of if_addrhead in device drivers to check 2004-04-15 20:31:10 +00:00
matcd Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
mc146818
mca Use __FBSDID(). 2003-08-24 17:55:58 +00:00
mcd Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
md Ooops, removed this acknowledgement bogusly. 2004-04-09 05:12:47 +00:00
mii Link state change notification of ethernet media to the routing socket. 2004-05-03 13:48:35 +00:00
mk48txx Use __FBSDID(). 2003-08-24 17:55:58 +00:00
mlx Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
mly Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
mpt Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
mse Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
musycc Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
my Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
ncv Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
nge Implemented per-interface polling(4) control. 2004-04-11 19:25:56 +00:00
nmdm Remove advertising clause from University of California Regent's 2004-04-07 20:46:16 +00:00
nsp Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
null Device megapatch 4/6: 2004-02-21 21:10:55 +00:00
ofw Remove advertising clause from University of California Regent's 2004-04-07 20:46:16 +00:00
owi Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
patm Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
pccard Resync 2004-05-10 02:26:49 +00:00
pccbb Need to mark the interrupt from cbb as being MP safe on resume too. 2004-05-04 02:25:00 +00:00
pcf Remove isa compat stuff. 2004-03-14 23:03:57 +00:00
pci Remove the EBus stopgap of r1.248; a proper fix is in place now. 2004-04-28 13:43:11 +00:00
pcic Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
pdq Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
ppbus Prevent the strange situation that after each load/unload of a ppbus 2004-03-18 21:10:11 +00:00
ppc Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
pst Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
puc Add IC Book Labs Gunboat x2 and x4 series of serial adapters. 2004-04-24 13:04:00 +00:00
random Add a Davies-Meyer style hash to the output. This is still pure 2004-04-17 19:26:53 +00:00
ray Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
rc Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
re Implemented per-interface polling(4) control. 2004-04-11 20:34:08 +00:00
rndtest Use __FBSDID(). 2003-08-24 17:55:58 +00:00
rp Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
sab Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
safe Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
sbni Remove improper use of if_addrhead in device drivers to check 2004-04-15 20:31:10 +00:00
sbsh Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
scd Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
sf Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
si Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
sio Remove new options and my prevention of system freeze when the sio probe 2004-05-03 22:35:28 +00:00
sk Use BSD spelling, no SysV. 2004-04-19 18:44:04 +00:00
smbus Device megapatch 4/6: 2004-02-21 21:10:55 +00:00
sn It turns out that the module dependency on pccard is in error. Since 2004-05-08 06:04:06 +00:00
snc It turns out that the module dependency on pccard is in error. Since 2004-05-08 06:04:06 +00:00
snp Add clone_setup() function rather than rely on lazy initialization. 2004-03-11 12:58:55 +00:00
sound Add support CS4294 2004-05-08 03:41:40 +00:00
speaker Device megapatch 4/6: 2004-02-21 21:10:55 +00:00
sr Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
stg Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
streams Device megapatch 4/6: 2004-02-21 21:10:55 +00:00
sx Prefer uint16_t to ushort. 2004-04-14 02:20:01 +00:00
sym Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
syscons Rearrangements needed for syscons(4) to be used as a console device 2004-04-02 15:02:44 +00:00
tdfx Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
tga Device megapatch 4/6: 2004-02-21 21:10:55 +00:00
ti Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
trm Call trm_Interrupt() in trm_poll(). This fixes the lock at reboot time some 2004-04-10 15:38:49 +00:00
twa Unbreak LINT on 64-bit platforms. Note that this code is not style(9)- 2004-04-02 15:09:57 +00:00
twe 1. Better handle a return value of EINPROGRESS from bus_dmamap_load. 2004-03-25 19:30:35 +00:00
tx Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
txp Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
uart Fix hangs caused by z8530_bus_ipend() returning UART_IPEND_TXIDLE 2004-05-04 06:58:10 +00:00
ubsec Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
usb fix SONY_CLIE_41 (as PEG-SJ33/U) 2004-05-06 13:33:59 +00:00
utopia kthread_exit() no longer requires Giant, so don't force callers to acquire 2004-03-05 22:42:17 +00:00
vinum Plug a mem leak in vinum_scandisk(). 2004-04-24 23:41:21 +00:00
vr Implemented per-interface polling(4) control. 2004-04-11 15:18:09 +00:00
vx Convert callers to the new bus_alloc_resource_any(9) API. 2004-03-17 17:50:55 +00:00
watchdog Add a generic watchdog facility which through a single device entry 2004-02-28 20:06:59 +00:00
wds Use __FBSDID(). 2003-08-24 17:55:58 +00:00
wi It turns out that the module dependency on pccard is in error. Since 2004-05-08 06:04:06 +00:00
wl Remove unused WL_IRQS macro. 2004-05-11 20:06:12 +00:00
xe Remove improper use of if_addrhead in device drivers to check 2004-04-15 20:31:10 +00:00
zs Remove advertising clause from University of California Regent's 2004-04-07 20:46:16 +00:00