History log of /src/sys/dev/pci/dpt_pci.c |
Revision | | Date | Author | Comments |
1.28 |
| 09-Dec-2018 |
jdolecek | use pci_intr_establish_xname() everywhere
|
1.27 |
| 29-Mar-2014 |
christos | branches: 1.27.28; 1.27.30; make pci_intr_string and eisa_intr_string take a buffer and a length instead of relying in local static storage.
|
1.26 |
| 27-Oct-2012 |
chs | branches: 1.26.2; split device_t/softc for all remaining drivers. replace "struct device *" with "device_t". use device_xname(), device_unit(), etc.
|
1.25 |
| 26-Nov-2009 |
njoly | branches: 1.25.12; 1.25.22; Cleanup interrupt establish error messages. Do not mix aprint_error/aprint_normal/printf calls for a single line.
|
1.24 |
| 12-May-2009 |
cegger | use device_private(). "looks good" ad@ XXX for the device_t/softc split, please check the driver that no cases have been missed.
|
1.23 |
| 06-May-2009 |
cegger | struct device * -> device_t, no functional changes intended.
|
1.22 |
| 06-May-2009 |
cegger | struct cfdata * -> cfdata_t, no functional changes intended.
|
1.21 |
| 10-Apr-2008 |
cegger | branches: 1.21.4; 1.21.18; use aprint_*_dev and device_xname
|
1.20 |
| 19-Oct-2007 |
ad | branches: 1.20.16; machine/{bus,cpu,intr}.h -> sys/{bus,cpu,intr}.h
|
1.19 |
| 16-Nov-2006 |
christos | branches: 1.19.8; 1.19.22; 1.19.24; 1.19.28; __unused removal on arguments; approved by core.
|
1.18 |
| 12-Oct-2006 |
christos | - sprinkle __unused on function decls. - fix a couple of unused bugs - no more -Wno-unused for i386
|
1.17 |
| 11-Dec-2005 |
christos | branches: 1.17.20; 1.17.22; merge ktrace-lwp.
|
1.16 |
| 27-Feb-2005 |
perry | branches: 1.16.4; nuke trailing whitespace
|
1.15 |
| 04-Dec-2003 |
keihan | branches: 1.15.8; 1.15.10; netbsd.org -> NetBSD.org
This was the last commit of this kind to src/sys, which is now totally "NetBSD.org clean". Thanks for the patiance, and sorry for all the commits.
|
1.14 |
| 31-Jan-2003 |
thorpej | branches: 1.14.2; Use aprint_*().
|
1.13 |
| 07-Dec-2002 |
ad | Implement the DPT EATA ioctl() interface.
|
1.12 |
| 02-Oct-2002 |
thorpej | Add trailing ; to CFATTACH_DECL.
|
1.11 |
| 30-Sep-2002 |
thorpej | Use CFATTACH_DECL().
|
1.10 |
| 27-Sep-2002 |
thorpej | Declare all cfattach structures const.
|
1.9 |
| 13-Nov-2001 |
lukem | branches: 1.9.10; add RCSID
|
1.8 |
| 25-Apr-2001 |
bouyer | branches: 1.8.2; 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.7 |
| 28-Dec-2000 |
sommerfeld | branches: 1.7.2; Change pci_intr_map to get interrupt source information from a "struct pci_attach_args *" instead of from four separate parameters which in all cases were extracted from the same "struct pci_attach_args".
This both simplifies the driver api, and allows for alternate PCI interrupt mapping schemes, such as one using the tables described in the Intel Multiprocessor Spec which describe interrupt wirings for devices behind pci-pci bridges based on the device's location rather the bridge's location.
Tested on alpha and i386; welcome to 1.5Q
|
1.6 |
| 13-Jun-2000 |
ad | Use my proper name.
|
1.5 |
| 25-Feb-2000 |
ad | branches: 1.5.2; Cosmetic change.
|
1.4 |
| 18-Jan-2000 |
ad | Fix register offset problem. This should make EISA boards work correctly, and is also needed for the ISA frontend (some time this week).
|
1.3 |
| 05-Jan-2000 |
ad | branches: 1.3.2; Spelling.
|
1.2 |
| 29-Sep-1999 |
ad | branches: 1.2.2; - Move initial reset code into dpt_readcfg() - Bus specific front-end is now responsible for reading EATA configuration - EATA configuration data is now saved in the softc - Make synchronous writes work properly - Don't ignore HBA timeouts in dpt_cmd() - Prefix eata_cfg's members with `ec_', not `dc_'
|
1.1 |
| 27-Sep-1999 |
ad | A driver for DPT EATA SCSI adapters. dpt.c contains a brief TODO list.
|
1.2.2.3 |
| 01-Apr-2001 |
ad | - Make this work. - Restructure a bit. - KNF, const.
|
1.2.2.2 |
| 05-Jan-2001 |
bouyer | Sync with HEAD
|
1.2.2.1 |
| 20-Nov-2000 |
bouyer | Update thorpej_scsipi to -current as of a month ago A i386 GENERIC kernel compiles without the siop, ahc and bha drivers (will be updated later). i386 IDE/ATAPI and ncr work, as well as sparc/esp_sbus. alpha should work as well (untested yet). siop, ahc and bha will be updated once I've updated the branch to current -current, as well as machine-dependant code.
|
1.3.2.3 |
| 18-Jan-2000 |
he | Pull up revision 1.4 (requested by ad): Fix register offset problem to make EISA boards work correctly.
|
1.3.2.2 |
| 17-Jan-2000 |
he | Pull up revisions 1.1-1.3 (requested by ad): Add driver for DPT SmartCache and SmartRAID III or IV SCSI adapters.
|
1.3.2.1 |
| 05-Jan-2000 |
he | file dpt_pci.c was added on branch netbsd-1-4 on 2000-01-17 18:35:41 +0000
|
1.5.2.1 |
| 22-Jun-2000 |
minoura | Sync w/ netbsd-1-5-base.
|
1.7.2.4 |
| 11-Dec-2002 |
thorpej | Sync with HEAD.
|
1.7.2.3 |
| 18-Oct-2002 |
nathanw | Catch up to -current.
|
1.7.2.2 |
| 14-Nov-2001 |
nathanw | Catch up to -current.
|
1.7.2.1 |
| 21-Jun-2001 |
nathanw | Catch up to -current.
|
1.8.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.8.2.1 |
| 10-Jan-2002 |
thorpej | Sync kqueue branch with -current.
|
1.9.10.1 |
| 12-Dec-2002 |
he | Pull up revision 1.13 (requested by ad in ticket #1031): Implement DPT EATA ioctl interface.
|
1.14.2.4 |
| 04-Mar-2005 |
skrll | Sync with HEAD.
Hi Perry!
|
1.14.2.3 |
| 21-Sep-2004 |
skrll | Fix the sync with head I botched.
|
1.14.2.2 |
| 18-Sep-2004 |
skrll | Sync with HEAD.
|
1.14.2.1 |
| 03-Aug-2004 |
skrll | Sync with HEAD
|
1.15.10.1 |
| 19-Mar-2005 |
yamt | sync with head. xen and whitespace. xen part is not finished.
|
1.15.8.1 |
| 29-Apr-2005 |
kent | sync with -current
|
1.16.4.2 |
| 27-Oct-2007 |
yamt | sync with head.
|
1.16.4.1 |
| 30-Dec-2006 |
yamt | sync with head.
|
1.17.22.2 |
| 10-Dec-2006 |
yamt | sync with head.
|
1.17.22.1 |
| 22-Oct-2006 |
yamt | sync with head
|
1.17.20.1 |
| 18-Nov-2006 |
ad | Sync with head.
|
1.19.28.1 |
| 25-Oct-2007 |
bouyer | Sync with HEAD.
|
1.19.24.1 |
| 06-Nov-2007 |
matt | sync with HEAD
|
1.19.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.19.8.1 |
| 23-Oct-2007 |
ad | Sync with head.
|
1.20.16.1 |
| 02-Jun-2008 |
mjf | Sync with HEAD.
|
1.21.18.1 |
| 13-May-2009 |
jym | Sync with HEAD.
Commit is split, to avoid a "too many arguments" protocol error.
|
1.21.4.2 |
| 11-Mar-2010 |
yamt | sync with head
|
1.21.4.1 |
| 16-May-2009 |
yamt | sync with head
|
1.25.22.2 |
| 20-Aug-2014 |
tls | Rebase to HEAD as of a few days ago.
|
1.25.22.1 |
| 20-Nov-2012 |
tls | Resync to 2012-11-19 00:00:00 UTC
|
1.25.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.25.12.1 |
| 30-Oct-2012 |
yamt | sync with head
|
1.26.2.1 |
| 18-May-2014 |
rmind | sync with head
|
1.27.30.1 |
| 10-Jun-2019 |
christos | Sync with HEAD
|
1.27.28.1 |
| 26-Dec-2018 |
pgoyette | Sync with HEAD, resolve a few conflicts
|