NetBSD/sys/dev/ic
thorpej e88c8722b7 Apply the following change checked in 2003/05/04 00:20:07 by gibbs
to the FreeBSD ahd driver:

Correct spelling errors.

Switch to handling bad SCSI status as a sequencer interrupt
instead of having the kernel proccess these failures via
the completion queue.  This is done because:

 o The old scheme required us to pause the sequencer and clear
   critical sections for each SCB.  It seems that these pause
   actions, if coincident with a sequencer FIFO interrupt, would
   result in a FIFO interrupt getting lost or directing to the
   wrong FIFO.  This caused hangs when the driver was stressed
   under high "queue full" loads.
 o The completion code assumed that it was always called with
   the sequencer running.  This may not be the case in timeout
   processing where completions occur manually via
   ahd_pause_and_flushwork().
 o With this scheme, the extra expense of clearing critical
   sections is avoided since the sequencer will only self pause
   once all pending selections have cleared and it is not in
   a critical section.

  aic79xx.c
        Add code to handle the new BAD_SCB_STATUS sequencer
        interrupt code.  This just redirects the SCB through
        the already existing ahd_complete_scb() code path.
        Remove code in ahd_handle_scsi_status() that paused
        the sequencer, made sure that no selections where
        pending, and cleared critical sections.  Bad
        status SCBs are now only processed when all of these
        conditions are true.

  aic79xx.reg:
        Add the BAD_SCB_STATUS sequencer interrupt code.

  aic79xx.seq:
        When completing an SCB upload to the host, if
        we are doing this because the SCB contains non-zero
        SCSI status, defer completing the SCB until there
        are no pending selection events.  When completing
        these SCBs, use the new BAD_SCB_STATUS sequencer
        interrupt.  For all other uploaded SCBs (currently
        only for underruns), the SCB is completed via the
        normal done queue.  Additionally, keep the SCB that
        is currently being uploaded on the COMPLETE_DMA_SCB
        list until the dma is completed, not just until the
        DMA is started.  This ensures that the DMA is restarted
        properly should the host disable the DMA transfer for
        some reason.

        In our RevA workaround for Maxtor drives, guard against
        the host pausing us while trying to pause I/O until the
        first data-valid REQ by clearing the current snapshot
        so that we can tell if the transfer has completed prior
        to us noticing the REQINIT status.

        In cfg4data_intr, shave off an instruction before getting
        the data path running by adding an entrypoint to the
        overrun handler to also increment the FIFO use count.

        In the overrun handler, be sure to clear our LONGJMP
        address in both exit paths.

Perform a few sequencer optimizations.

  aic79xx.c:
        Print the full path from the SCB when a packetized
        status overrun occurs.

        Remove references to LONGJMP_SCB which is being
        removed from firmware usage.

        Print the new SCB_FIFO_USE_COUNT field in the
        per-SCB section of ahd_dump_card_state().  The
        SCB_TAG field is now re-used by the sequencer,
        so it no longer makes sense to reference this
        field in the kernel driver.

  aic79xx.h:
        Re-arrange fields in the hardware SCB from largest
        size type to smallest.  This makes it easier to
        move fields without changing field alignment.

        The hardware scb tag field is now down near the
        "spare" portion of the SCB to facilitate reuse
        by the sequencer.

  aic79xx.reg:
        Remove LONGJMP_ADDR.

        Rearrange SCB fields to match aic79xx.h.
        Add SCB_FIFO_USE_COUNT as the first byte
        of the SCB_TAG field.

  aic79xx.seq:
        Add a per-SCB "Fifos in use count" field and use
        it to determine when it is safe (all data posted)
        to deliver status back to the host.  The old method
        involved polling one or both FIFOs to verify that
        the current task did not have pending data.  This
        makes running down the GSFIFO very cheap, so we
        will empty the GSFIFO in one idle loop pass in
        all cases.

        Use this simplification of the completion process
        to prune down the data FIFO teardown sequencer for
        packetized transfers.  Much more code is now shared
        between the data residual and transfer complete cases.

        Correct some issues in the packetized status handler.
        It used to be possible to CLRCHN our FIFO before status
        had fully transferred to the host.  We also failed to
        handle NONPACKREQ phases that could occur should a CRC
        error occur during transmission of the status data packet.

Correct a few big endian issues:

  aic79xx.c:
  aic79xx_inline.h:
  aic79xx_pci.c:
  aic79xx_osm.c:
        o Always get the SCB's tag via the SCB_GET_TAG acccessor
        o Add missing use of byte swapping macros when touching
          hscb fields.
        o Don't double swap SEEPROM data when it is printed.
          Correct a big-endian bug.  We cannot assign a
        o When assigning a 32bit LE variable to a 64bit LE
          variable, we must be explict about how the words
          of the 64bit LE variable are initialized.  Cast to
          (uint32_t*) to do this.

aic79xx.c:
        In ahd_clear_critical_section(), hit CRLSCSIINT
        after restoring the interrupt masks to avoid what
        appears to be a glitch on SCSIINT.  Any real SCSIINT
        status will be persistent and will immidiately
        reset SCSIINT.  This clear should only get rid of
        spurious SCSIINTs.

        This glitch was the cause of the "Unexpected PKT busfree"
        status that occurred under high queue full loads

        Call ahd_fini_scbdata() after shutdown so that
        any ahd_chip_init() routine that might access
        SCB data will not access free'd memory.

        Reset the bus on an IOERR since the chip doesn't
        seem to reset to the new voltage level without
        this.
        Change offset calculation for scatter gather maps
        so that the calculation is correct if an integral
        multiple of sg lists does not fit in the allocation
        size.

        Adjust bus dma tag for data buffers based on 39BIT
        addressing flag in our softc.

        Use the QFREEZE count to simplify ahd_pause_and_flushworkd().
        We can thus rely on the sequencer eventually clearing ENSELO.

        In ahd_abort_scbs(), fix a bug that could potentially
        corrupt sequencer state.  The saved SCB was being
        restored in the SCSI mode instead of the saved mode.
        It turns out that the SCB did not need to be saved at all
        as the scbptr is already restored by all subroutines
        called during this function that modify that register.

aic79xx.c:
aic79xx.h:
aic79xx_pci.c:
        Add support for parsing the seeprom vital product
        data.  The VPD data are currently unused.

aic79xx.h:
aic79xx.seq:
aic79xx_pci.c:
        Add a firmware workaround to make the LED blink
        brighter during packetized operations on the H2A.

aic79xx_inline.h:
        The host does not use timer interrupts, so don't
        gate our decision on whether or not to unpause
        the sequencer on whether or not a timer interrupt
        is pending.
2003-08-29 00:09:59 +00:00
..
aac_tables.h
aac.c DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
aacreg.h
aacvar.h
ac97.c Add AD1981-specific initialization. 2003-06-13 05:31:29 +00:00
ac97reg.h
ac97var.h function prototype must not have variable name 2003-07-08 10:06:28 +00:00
ad1848.c hz -> Hz 2003-02-21 17:14:04 +00:00
ad1848reg.h Respect the law: Use A-law and mu-law as spellings as far as easily possible. 2003-04-06 18:20:07 +00:00
ad1848var.h
adv.c DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
adv.h function prototype must not have variable name 2003-07-08 10:06:28 +00:00
advlib.c
advlib.h
advmcode.c
advmcode.h
adw.c DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
adw.h function prototype must not have variable name 2003-07-08 10:06:28 +00:00
adwlib.c hz -> Hz 2003-02-21 17:14:04 +00:00
adwlib.h
adwmcode.c
adwmcode.h hz -> Hz 2003-02-21 17:14:04 +00:00
aha.c DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
ahareg.h
ahavar.h
aic7xxx_cam.h Get rid of AHC_LUN_WILDCARD, making differences with FreeBSD smaller. 2003-04-20 11:17:20 +00:00
aic7xxx_inline.h DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
aic7xxx_osm.c add missing __KERNEL_RCSID() 2003-07-14 15:47:00 +00:00
aic7xxx_osm.h function prototype must not have variable name 2003-07-08 10:06:28 +00:00
aic7xxx_seeprom.c Adapt SMC 93cx6 library so that it will work with both 8- and 32-bit 2003-05-02 19:12:19 +00:00
aic7xxx.c add missing __KERNEL_RCSID() 2003-07-14 15:47:00 +00:00
aic7xxxvar.h function prototype must not have variable name 2003-07-08 10:06:28 +00:00
aic77xx.c Newer adaptec 7xxx driver. Written by Justin Gibbs for FreeBSD. Ported to 2003-04-19 19:33:29 +00:00
aic77xxreg.h
aic77xxvar.h
aic79xx_inline.h Apply the following change checked in 2003/05/04 00:20:07 by gibbs 2003-08-29 00:09:59 +00:00
aic79xx_osm.c Apply the following change checked in 2003/05/04 00:20:07 by gibbs 2003-08-29 00:09:59 +00:00
aic79xx_osm.h function prototype must not have variable name 2003-07-08 10:06:28 +00:00
aic79xx.c Apply the following change checked in 2003/05/04 00:20:07 by gibbs 2003-08-29 00:09:59 +00:00
aic79xxvar.h Apply the following change checked in 2003/05/04 00:20:07 by gibbs 2003-08-29 00:09:59 +00:00
aic6360.c hz -> Hz 2003-02-21 17:14:04 +00:00
aic6360reg.h
aic6360var.h
aic6915.c
aic6915reg.h
aic6915var.h
am79c930.c
am79c930reg.h
am79c930var.h
am7930.c
am7930reg.h
am7930var.h
am7990.c Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
am7990reg.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
am7990var.h
am9513reg.h
am79900.c Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
am79900reg.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
am79900var.h
an.c Prepare to consolidate 802.11 media handling (which is handled in 2003-07-06 07:54:43 +00:00
anreg.h
anvar.h
apcdmareg.h
atw.c Oops. Add the atw(4) sources, too. 2003-07-06 22:57:23 +00:00
atwreg.h Oops. Add the atw(4) sources, too. 2003-07-06 22:57:23 +00:00
atwvar.h Oops. Add the atw(4) sources, too. 2003-07-06 22:57:23 +00:00
awi.c Still more consolidation of 802.11 media-handling, moving moving 2003-07-06 20:01:17 +00:00
awireg.h
awivar.h Still more consolidation of 802.11 media-handling, moving moving 2003-07-06 20:01:17 +00:00
ax88190.c
ax88190reg.h
ax88190var.h
bha.c DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
bhareg.h
bhavar.h
bt8xx.h DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
bt431reg.h
bt459reg.h
bt463.c
bt463reg.h
bt463var.h
bt485.c
bt485reg.h
bt485var.h
cac.c Use aprint_*(). 2003-01-31 00:26:25 +00:00
cacreg.h
cacvar.h
cd18xx.c Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
cd18xxreg.h
cd18xxvar.h
cd1190reg.h
cd1400reg.h
clmpcc.c
clmpccreg.h
clmpccvar.h
com_cpcbus.c add missing __KERNEL_RCSID() 2003-07-14 15:47:00 +00:00
com_upc.c
com.c Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
comreg.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
comvar.h Also pass a type argument to comcnattach() and com_kgdb_attach(). 2003-06-14 17:01:06 +00:00
cpc700.c add missing __KERNEL_RCSID() 2003-07-14 15:47:00 +00:00
cpc700reg.h
cpc700uic.h function prototype must not have variable name 2003-07-08 10:06:28 +00:00
cpc700var.h
cs89x0.c DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
cs89x0reg.h
cs89x0var.h function prototype must not have variable name 2003-07-08 10:06:28 +00:00
cs4231.c DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
cs4231reg.h
cs4231var.h Clenup malloc signature change fallout. 2003-02-01 13:23:28 +00:00
cs4237reg.h
cy.c Back out the lwp/ktrace changes. They contained a lot of colateral damage, 2003-06-29 22:28:00 +00:00
cyreg.h
cyvar.h
daic.c Respect the law: Use A-law and mu-law as spellings as far as easily possible. 2003-04-06 18:20:07 +00:00
daicreg.h
daicvar.h
dc21040reg.h
decmonitors.c
depca.c Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
depcareg.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
depcavar.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
dl10019.c
dl10019reg.h
dl10019var.h
dp8390.c
dp8390reg.h
dp8390var.h
dp83905.c
dp83905reg.h
dp83905var.h
dp83932.c
dp83932reg.h
dp83932var.h
dpt.c Back out the lwp/ktrace changes. They contained a lot of colateral damage, 2003-06-29 22:28:00 +00:00
dptreg.h Also save status info in the user command packet. 2003-01-27 23:31:19 +00:00
dptvar.h
ds1286reg.h function prototype must not have variable name 2003-07-08 10:06:28 +00:00
ds1687reg.h function prototype must not have variable name 2003-07-08 10:06:28 +00:00
ds.h
elink3.c Use aprint_*(). 2003-01-31 00:26:25 +00:00
elink3reg.h
elink3var.h function prototype must not have variable name 2003-07-08 10:06:28 +00:00
elinkxl.c actually do gather some randomness (if it's enabled) 2003-07-06 09:12:59 +00:00
elinkxlreg.h
elinkxlvar.h Some models of the 556B don't turn on the transmitter without magic 2003-06-05 22:11:21 +00:00
esiop.c Remove unused esiop_scsicmd() prototype. 2003-08-04 19:50:11 +00:00
esiopvar.h
fmv.c
fmvreg.h
fmvvar.h
gem.c make this build with GEM_DEBUG. fix rxhist counters. 2003-08-24 18:07:03 +00:00
gemreg.h
gemvar.h
hayespreg.h
hd44780_subr.c
hd44780_subr.h
hd44780reg.h
hd64570.c DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
hd64570reg.h
hd64570var.h function prototype must not have variable name 2003-07-08 10:06:28 +00:00
hme.c DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
hmereg.h Fix the previous patch of me. 2003-06-02 22:52:36 +00:00
hmevar.h Preserve the current PHY select bit in the MIF configuration register 2003-02-13 12:10:20 +00:00
hscx.c
hscx.h
i8042reg.h
i8237reg.h
i8253reg.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
i8259reg.h
i82365.c Use aprint_*(). 2003-01-31 00:26:25 +00:00
i82365reg.h
i82365var.h
i82557.c In fxp_intr(), bail early without touching any registers if sc_enabled is 2003-08-01 14:54:12 +00:00
i82557reg.h ip/tcp/udp checksum offloading support for i82550. 2003-05-26 16:14:49 +00:00
i82557var.h ip/tcp/udp checksum offloading support for i82550. 2003-05-26 16:14:49 +00:00
i82586.c Ops, initialise len before using it. 2003-01-27 10:35:08 +00:00
i82586reg.h
i82586var.h function prototype must not have variable name 2003-07-08 10:06:28 +00:00
i82595reg.h
ibm561.c add missing __KERNEL_RCSID() 2003-07-14 15:47:00 +00:00
ibm561reg.h
ibm561var.h
icp_ioctl.c Back out the lwp/ktrace changes. They contained a lot of colateral damage, 2003-06-29 22:28:00 +00:00
icp_ioctl.h Correct the R-W'ness of GDT_IOCTL_DRVERS and GDT_IOCTL_CTRTYPE. 2003-06-29 01:28:23 +00:00
icp.c Add support for dynamic rescan of cache service logical drives, using 2003-06-13 05:57:30 +00:00
icpreg.h Add support for dynamic rescan of cache service logical drives, using 2003-06-13 05:57:30 +00:00
icpsp.c Add support for dynamic rescan of cache service logical drives, using 2003-06-13 05:57:30 +00:00
icpvar.h Add support for dynamic rescan of cache service logical drives, using 2003-06-13 05:57:30 +00:00
ics2101reg.h
igsfb_subr.c Oops, do not disable coprocessor in igsfb_init_ext. 2003-05-30 22:41:52 +00:00
igsfb.c Only install accelerated rasops for CyberPro, we don't know yet how to 2003-06-24 00:13:29 +00:00
igsfbreg.h Correct coprocessor registers base. 2003-05-31 18:25:40 +00:00
igsfbvar.h Implement accelerated text ops using graphic coprocessor. 2003-05-31 23:22:26 +00:00
iha.c DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
ihareg.h
ihavar.h
iic_cpcbus.c add missing __KERNEL_RCSID() 2003-07-14 15:47:00 +00:00
ims332reg.h
intersil7170.c
intersil7170.h
interwave.c DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
interwavereg.h DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
interwavevar.h Add extensible malloc types, adapted from FreeBSD. This turns 2003-02-01 06:23:35 +00:00
ipac.h
isac.c
isac.h
isacsx.c Add missing include. 2003-05-08 21:16:19 +00:00
isacsx.h
isic_bchan.c
isic_l1.c
isic_l1.h fixed botched prototype, 2003-07-11 10:15:56 +00:00
isic_l1fsm.c
isic.c
isp_inline.h Clean out the 'fw' variable part of a CTIO2- the f/w doesn't actually 2003-08-07 01:09:02 +00:00
isp_ioctl.h
isp_netbsd.c Note both active and nvram WWNN/WWPNs 2003-08-07 01:10:53 +00:00
isp_netbsd.h
isp_target.c Various updates to sync with mainline code. Nothing of great significance 2003-08-07 01:12:15 +00:00
isp_target.h Various updates to sync with mainline code. Nothing of great significance 2003-08-07 01:12:15 +00:00
isp_tpublic.h Various updates to sync with mainline code. Nothing of great significance 2003-08-07 01:12:15 +00:00
isp.c Update from mainline: add ISP_NO_ZIO option. constify a few items. 2003-08-07 01:08:10 +00:00
ispmbox.h Fix even stupider fix. It was, in fact, right the first time. Add 2003-03-25 06:25:35 +00:00
ispreg.h
ispvar.h DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
joy.c Back out the lwp/ktrace changes. They contained a lot of colateral damage, 2003-06-29 22:28:00 +00:00
joyvar.h
lance.c Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
lancereg.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
lancevar.h Back out the lwp/ktrace changes. They contained a lot of colateral damage, 2003-06-29 22:28:00 +00:00
lcdkp_subr.c
lcdkp_subr.h Make sure to include opt_foo.h if a defflag option FOO is used. 2003-06-23 11:00:59 +00:00
ld_aac.c
ld_cac.c
ld_icp.c Add support for dynamic rescan of cache service logical drives, using 2003-06-13 05:57:30 +00:00
ld_mlx.c
lemac.c
lemacreg.h
lemacvar.h function prototype must not have variable name 2003-07-08 10:06:28 +00:00
lm700x.c add missing __KERNEL_RCSID() 2003-07-14 15:47:00 +00:00
lm700x.h
lpt_upc.c
lpt.c Back out the lwp/ktrace changes. They contained a lot of colateral damage, 2003-06-29 22:28:00 +00:00
lptreg.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
lptvar.h
lsi64854.c DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
lsi64854reg.h
lsi64854var.h DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
Makefile Add support for the user-generated command interface and event logging 2003-05-13 15:42:33 +00:00
mb86960.c It seems the LAN Adapter on dreamcast actually uses slow 150ns SRAM, 2003-02-05 12:03:54 +00:00
mb86960reg.h
mb86960var.h It seems the LAN Adapter on dreamcast actually uses slow 150ns SRAM, 2003-02-05 12:03:54 +00:00
mb89352.c - Add hooks for MD DMA transfers. 2003-08-01 00:38:38 +00:00
mb89352reg.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
mb89352var.h TAB/space cosmetics 2003-08-02 12:48:09 +00:00
mc6845reg.h - Use u_int8_t instead of char for register structure. 2003-01-27 14:53:33 +00:00
mc6854reg.h
mc68450reg.h
mc146818reg.h function prototype must not have variable name 2003-07-08 10:06:28 +00:00
midway.c Make sure to include opt_foo.h if a defflag option FOO is used. 2003-06-23 11:00:59 +00:00
midwayreg.h DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
midwayvar.h DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
mk48txx.c
mk48txxreg.h
mlx.c Back out the lwp/ktrace changes. They contained a lot of colateral damage, 2003-06-29 22:28:00 +00:00
mlxio.h
mlxreg.h
mlxvar.h
mm58167.c
mm58167var.h
monitors.h
mpc105reg.h
mpt_debug.c add missing __KERNEL_RCSID() 2003-07-14 15:47:00 +00:00
mpt_mpilib.h Use the standard fixed-sized types on NetBSD. 2003-04-16 23:24:01 +00:00
mpt_netbsd.c add missing __KERNEL_RCSID() 2003-07-14 15:47:00 +00:00
mpt_netbsd.h Correctly sync the MPT request buffers, and remove BUS_DMA_COHERENT 2003-04-16 23:02:14 +00:00
mpt.c add missing __KERNEL_RCSID() 2003-07-14 15:47:00 +00:00
mpt.h function prototype must not have variable name 2003-07-08 10:06:28 +00:00
mpu.c
mpuvar.h
msm6258.c
msm6258var.h
mtd803.c add missing __KERNEL_RCSID() 2003-07-14 15:47:00 +00:00
mtd803reg.h
mtd803var.h
mx98905.c DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
mx98905var.h
ncr53c9x.c Print more diagnostic info on the occassions `unexpected disconnect' and 2003-07-25 06:40:29 +00:00
ncr53c9xreg.h DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
ncr53c9xvar.h #include <sys/lock.h> 2003-03-24 14:46:00 +00:00
ncr53c400reg.h
ncr5380.doc
ncr5380reg.h DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
ncr5380sbc.c DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
ncr5380var.h
ne2000.c
ne2000reg.h
ne2000var.h
nec765reg.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
nec7210reg.h Register definitions for NEC uPD7210 GPIB controller. 2003-06-02 03:54:31 +00:00
ns8477reg.h
ns16450reg.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
ns16550reg.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
nslm7x.c
nslm7xvar.h
oosiop.c add missing __KERNEL_RCSID() 2003-07-14 15:47:00 +00:00
oosiopreg.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
oosiopvar.h DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
opl3sa3reg.h
opl.c - init panpot at reset 2003-02-09 09:28:21 +00:00
oplinstrs.c
oplreg.h
oplvar.h
osiop.c Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
osiopreg.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
osiopvar.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
pcdisplay_chars.c
pcdisplay_subr.c
pcdisplay.h
pcdisplayvar.h
pckbc.c Request KBC_SELFTEST in pckbc_cnattach(), hidden under #ifdef 2003-06-12 03:34:12 +00:00
pckbcvar.h
pdq_ifsubr.c Add MBUFTRACE kernel option. 2003-02-26 06:31:08 +00:00
pdq.c
pdqreg.h
pdqvar.h function prototype must not have variable name 2003-07-08 10:06:28 +00:00
ramdac.h
README.ncr5380sbc
rrunner.c Back out the lwp/ktrace changes. They contained a lot of colateral damage, 2003-06-29 22:28:00 +00:00
rrunnerreg.h
rrunnervar.h
rtl80x9.c
rtl80x9reg.h
rtl80x9var.h
rtl81x9.c hz -> Hz 2003-02-21 17:14:04 +00:00
rtl81x9reg.h
rtl81x9var.h
seeq8003reg.h
seeq8005.c
seeq8005reg.h
seeq8005var.h
sgec.c Add MBUFTRACE kernel option. 2003-02-26 06:31:08 +00:00
sgecreg.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
sgecvar.h
siop_common.c Use aprint_*(). 2003-01-31 00:26:25 +00:00
siop.c DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
siopreg.h hz -> Hz 2003-02-21 17:14:04 +00:00
siopvar_common.h Use PAGE_SIZE rather than NBPG. 2003-04-09 00:28:28 +00:00
siopvar.h
sl811hs.c make this compile with SLHCI_DEBUG 2003-03-13 06:50:23 +00:00
sl811hsreg.h
sl811hsvar.h
smc83c170.c Use aprint_*(). 2003-01-31 00:26:25 +00:00
smc83c170reg.h
smc83c170var.h
smc90cx6.c
smc90cx6reg.h
smc90cx6var.h
smc91cxx.c Add support for the SMC91C111 chip, with its internal PHY. 2003-04-29 08:47:29 +00:00
smc91cxxreg.h Add support for the SMC91C111 chip, with its internal PHY. 2003-04-29 08:47:29 +00:00
smc91cxxvar.h Add support for the SMC91C111 chip, with its internal PHY. 2003-04-29 08:47:29 +00:00
smc93cx6.c Adapt SMC 93cx6 library so that it will work with both 8- and 32-bit 2003-05-02 19:12:19 +00:00
smc93cx6var.h Adapt SMC 93cx6 library so that it will work with both 8- and 32-bit 2003-05-02 19:12:19 +00:00
spic.c
spicvar.h
st16650reg.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
sunscpal.c DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
sunscpalreg.h
sunscpalvar.h
tcic2.c
tcic2reg.h
tcic2var.h
tea5757.c add missing __KERNEL_RCSID() 2003-07-14 15:47:00 +00:00
tea5757.h
timer_cpcbus.c add missing __KERNEL_RCSID() 2003-07-14 15:47:00 +00:00
tms320av110.c
tms320av110reg.h
tms320av110var.h
tms9914reg.h Register definitions for TMS 9914 GPIB controller. 2003-06-02 03:55:04 +00:00
tropic.c
tropicreg.h
tropicvar.h
tulip.c Add MBUFTRACE kernel option. 2003-02-26 06:31:08 +00:00
tulipreg.h
tulipvar.h
uha.c
uhareg.h DMA, not dma nor Dma. 2003-05-03 18:10:37 +00:00
uhavar.h
universereg.h
upc.c Add support for the 82C710, the original Universal Peripheral Controller. 2003-03-02 00:21:47 +00:00
upcreg.h Add support for the 82C710, the original Universal Peripheral Controller. 2003-03-02 00:21:47 +00:00
upcvar.h Add support for the 82C710, the original Universal Peripheral Controller. 2003-03-02 00:21:47 +00:00
vga_common.c add missing __KERNEL_RCSID() 2003-07-14 15:47:00 +00:00
vga_raster.c add missing __KERNEL_RCSID() 2003-07-14 15:47:00 +00:00
vga_subr.c make 'name' and 'data' of struct wsdisplay_font const, mark data arrays 2003-02-09 10:29:35 +00:00
vga.c Back out the lwp/ktrace changes. They contained a lot of colateral damage, 2003-06-29 22:28:00 +00:00
vgareg.h Changes to allow machines which don't use text mode at the boot time 2003-01-31 21:57:23 +00:00
vgavar.h Back out the lwp/ktrace changes. They contained a lot of colateral damage, 2003-06-29 22:28:00 +00:00
videomode.h
wdc_upc.c
wdc.c * Use aprint*(). 2003-05-17 21:52:03 +00:00
wdcreg.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
wdcvar.h Make DMA mode works on Promise Ultra66/100 with 48-bit LBA drives. 2003-04-28 05:20:29 +00:00
we.c
wereg.h
wevar.h
wi_ieee.h Host AP power saving support. The Host AP notices that the power 2003-04-08 04:31:23 +00:00
wi.c Still more consolidation of 802.11 media-handling, moving moving 2003-07-06 20:01:17 +00:00
wireg.h Begin synchronization with FreeBSD: 2003-05-13 08:35:58 +00:00
wivar.h Still more consolidation of 802.11 media-handling, moving moving 2003-07-06 20:01:17 +00:00
z8530reg.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
z8530sc.c Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
z8530sc.h Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00
z8530tty.c Move UCB-licensed code from 4-clause to 3-clause licence. 2003-08-07 16:26:28 +00:00

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 accomodate 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