Home | History | Annotate | Download | only in eisa
History log of /src/sys/dev/eisa/bha_eisa.c
RevisionDateAuthorComments
 1.38  27-Jan-2021  thorpej Use eisa_compatible_{match,lookup}().
 1.37  18-Oct-2014  snj branches: 1.37.34;
src is too big these days to tolerate superfluous apostrophes. It's
"its", people!
 1.36  29-Mar-2014  christos make pci_intr_string and eisa_intr_string take a buffer and a length
instead of relying in local static storage.
 1.35  27-Oct-2012  chs branches: 1.35.2;
split device_t/softc for all remaining drivers.
replace "struct device *" with "device_t".
use device_xname(), device_unit(), etc.
 1.34  04-Dec-2009  njoly branches: 1.34.12; 1.34.22;
Cleanup interrupt establish error messages. Do not mix
aprint_error/aprint_normal/printf calls for a single line.
 1.33  12-May-2009  cegger struct device * -> device_t, no functional changes intended.
 1.32  12-May-2009  cegger struct cfdata * -> cfdata_t, no functional changes intended.
 1.31  28-Apr-2008  martin branches: 1.31.14;
Remove clause 3 and 4 from TNF licenses
 1.30  06-Apr-2008  cegger branches: 1.30.2; 1.30.4;
use aprint_*_dev and device_xname
 1.29  19-Oct-2007  ad branches: 1.29.16;
machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h
 1.28  16-Nov-2006  christos branches: 1.28.8; 1.28.22; 1.28.24; 1.28.28;
__unused removal on arguments; approved by core.
 1.27  12-Oct-2006  christos - sprinkle __unused on function decls.
- fix a couple of unused bugs
- no more -Wno-unused for i386
 1.26  29-Mar-2006  thorpej branches: 1.26.8; 1.26.10;
Use device_private().
 1.25  11-Dec-2005  christos branches: 1.25.4; 1.25.6; 1.25.8; 1.25.10; 1.25.12;
merge ktrace-lwp.
 1.24  23-Aug-2004  thorpej branches: 1.24.12;
- Use ANSI function decls and make use of static.
 1.23  02-Oct-2002  thorpej branches: 1.23.6;
Add trailing ; to CFATTACH_DECL.
 1.22  30-Sep-2002  thorpej Use CFATTACH_DECL().
 1.21  27-Sep-2002  thorpej Declare all cfattach structures const.
 1.20  15-Nov-2001  lukem don't need <sys/types.h> when including <sys/param.h>
 1.19  13-Nov-2001  lukem add RCSID
 1.18  03-May-2001  ross branches: 1.18.2;
Split pci and eisa/isa attachment calls, plus misc cleanup.
 1.17  25-Apr-2001  bouyer Pull up the thorpej_scsipi branch to main branch.
This is a completely rewritten scsipi_xfer execution engine, and the
associated changes to HBA drivers. Overview of changes & features:
- All xfers are queued in the mid-layer, rather than doing so in an
ad-hoc fashion in individual adapter drivers.
- Adapter/channel resource management in the mid-layer, avoids even trying
to start running an xfer if the adapter/channel doesn't have the resources.
- Better communication between the mid-layer and the adapters.
- Asynchronous event notification mechanism from adapter to mid-layer and
peripherals.
- Better peripheral queue management: freeze/thaw, sorted requeueing during
recovery, etc.
- Clean separation of peripherals, adapters, and adapter channels (no more
scsipi_link).
- Kernel thread for each scsipi_channel makes error recovery much easier
(no more dealing with interrupt context when recovering from an error).
- Mid-layer support for tagged queueing: commands can have the tag type
set explicitly, tag IDs are allocated in the mid-layer (thus eliminating
the need to use buggy tag ID allocation schemes in many adapter drivers).
- support for QUEUE FULL and CHECK CONDITION status in mid-layer; the command
will be requeued, or a REQUEST SENSE will be sent as appropriate.

Just before the merge syssrc has been tagged with thorpej_scsipi_beforemerge
 1.16  15-Aug-1998  mycroft branches: 1.16.12; 1.16.24;
Assign my copyrights to TNF.
 1.15  15-Aug-1998  mycroft Name some constants consistently between drivers.
 1.14  15-Aug-1998  mycroft Map the EISA registers correctly!
 1.13  15-Aug-1998  thorpej Only map the amount of space the device actually occupies.

Part of PR #5279, Martin Musemann.
 1.12  08-Jun-1998  thorpej Nuke __BROKEN_INDIRECT_CONFIG.
 1.11  09-Jan-1998  mycroft Update copyright.
 1.10  09-Jan-1998  mycroft Map the I/O region correctly, but reading its address from the EISA config
space.
 1.9  27-Aug-1997  bouyer branches: 1.9.4;
Merge scsipi branch in the mainline. This add support for ATAPI devices
(currently only CD-ROM drives on i386). The sys/dev/scsipi system provides 2
busses to which devices can attach (scsibus and atapibus). This needed to
change some include files and structure names in the low level scsi drivers.
 1.8  06-Jun-1997  thorpej branches: 1.8.2; 1.8.4;
Pull thorpej-bus-dma branch into mainline.
 1.7  28-Mar-1997  mycroft branches: 1.7.2;
Use a temporary data structure for holding probe information, rather than a
full softc.
 1.6  13-Mar-1997  cgd make these compile (and hopefully run; they're untested) on the Alpha
 1.5  21-Oct-1996  thorpej New bus.h implementation/interface:
- No more distinction between i/o-mapped and memory-mapped
devices. It's all "bus space" now, and space tags
differentiate the space with finer grain than the
bus chipset tag.
- Add memory barrier methods.
- Implement space alloc/free methods.
- Implement region read/write methods (like memcpy to/from
bus space).
This interface provides a better abstraction for dealing with
machine-independent chipset drivers.
 1.4  13-Oct-1996  christos backout kprintf changes
 1.3  10-Oct-1996  christos printf -> kprintf, sprintf -> ksprintf
 1.2  01-Sep-1996  mycroft Minor changes.
 1.1  31-Aug-1996  mycroft Split the BusLogic driver apart, and rename it to `bha (like BSDi).
 1.7.2.1  13-May-1997  thorpej Stash the bus dma tag and bus-specific DMA flags in the softc.
 1.8.4.1  27-Aug-1997  thorpej Update marc-pcmcia branch from trunk.
 1.8.2.1  01-Jul-1997  bouyer Updates for new scsipi subsystem. Actally known to work on i386 and sparc.
 1.9.4.1  29-Jan-1998  mellon Pull up 1.10 and 1.11 (mycroft)
 1.16.24.4  18-Oct-2002  nathanw Catch up to -current.
 1.16.24.3  08-Jan-2002  nathanw Catch up to -current.
 1.16.24.2  14-Nov-2001  nathanw Catch up to -current.
 1.16.24.1  21-Jun-2001  nathanw Catch up to -current.
 1.16.12.1  27-Mar-2001  bouyer Convert these drivers to thorpej_scsipi (untested).
 1.18.2.2  10-Oct-2002  jdolecek sync kqueue with -current; this includes merge of gehenna-devsw branch,
merge of i386 MP branch, and part of autoconf rototil work
 1.18.2.1  10-Jan-2002  thorpej Sync kqueue branch with -current.
 1.23.6.3  21-Sep-2004  skrll Fix the sync with head I botched.
 1.23.6.2  18-Sep-2004  skrll Sync with HEAD.
 1.23.6.1  25-Aug-2004  skrll Sync with HEAD.
 1.24.12.3  27-Oct-2007  yamt sync with head.
 1.24.12.2  30-Dec-2006  yamt sync with head.
 1.24.12.1  21-Jun-2006  yamt sync with head.
 1.25.12.1  31-Mar-2006  tron Merge 2006-03-31 NetBSD-current into the "peter-altq" branch.
 1.25.10.1  19-Apr-2006  elad sync with head.
 1.25.8.1  01-Apr-2006  yamt sync with head.
 1.25.6.1  22-Apr-2006  simonb Sync with head.
 1.25.4.1  09-Sep-2006  rpaulo sync with head
 1.26.10.2  10-Dec-2006  yamt sync with head.
 1.26.10.1  22-Oct-2006  yamt sync with head
 1.26.8.1  18-Nov-2006  ad Sync with head.
 1.28.28.1  25-Oct-2007  bouyer Sync with HEAD.
 1.28.24.1  06-Nov-2007  matt sync with HEAD
 1.28.22.1  26-Oct-2007  joerg Sync with HEAD.

Follow the merge of pmap.c on i386 and amd64 and move
pmap_init_tmp_pgtbl into arch/x86/x86/pmap.c. Modify the ACPI wakeup
code to restore CR4 before jumping back into kernel space as the large
page option might cover that.
 1.28.8.1  23-Oct-2007  ad Sync with head.
 1.29.16.1  02-Jun-2008  mjf Sync with HEAD.
 1.30.4.3  11-Mar-2010  yamt sync with head
 1.30.4.2  16-May-2009  yamt sync with head
 1.30.4.1  16-May-2008  yamt sync with head.
 1.30.2.1  18-May-2008  yamt sync with head.
 1.31.14.1  13-May-2009  jym Sync with HEAD.

Commit is split, to avoid a "too many arguments" protocol error.
 1.34.22.3  03-Dec-2017  jdolecek update from HEAD
 1.34.22.2  20-Aug-2014  tls Rebase to HEAD as of a few days ago.
 1.34.22.1  20-Nov-2012  tls Resync to 2012-11-19 00:00:00 UTC
 1.34.12.2  22-May-2014  yamt sync with head.

for a reference, the tree before this commit was tagged
as yamt-pagecache-tag8.

this commit was splitted into small chunks to avoid
a limitation of cvs. ("Protocol error: too many arguments")
 1.34.12.1  30-Oct-2012  yamt sync with head
 1.35.2.1  18-May-2014  rmind sync with head
 1.37.34.1  03-Apr-2021  thorpej Sync with HEAD.

RSS XML Feed