History log of /src/sys/dev/pci/cmdide.c |
Revision | | Date | Author | Comments |
1.47 |
| 26-Dec-2021 |
andvar | fix various typos, mainly in comments.
|
1.46 |
| 17-Jul-2020 |
jdolecek | remove explicit irqack() call for unexpected interrupt; this happens normally during boot when running identify for the drive as polled command, and fixes hard hang caused by the irqack() on a sun machine
the unexpected interrupt happens because cmdide doesn't respect WDCTL_IDS bit and triggers interrupt also for polled commands
also reclassify the "bogus intr" as aprint_verbose() to avoid noise on boot
discussed and tested by Martin Husemann
|
1.45 |
| 01-Jul-2020 |
jdolecek | revert, not working
|
1.44 |
| 01-Jul-2020 |
jdolecek | ignore interrupt when not expecting one, particularly don't invoke the irqack in this case
seems cmdide doesn't honour WDCTL_IDS when executing polled commands, and there is a race where the irqack call interferes with polled command and causes a lockup
reported by Martin Husemann
|
1.43 |
| 22-Oct-2017 |
jdolecek | branches: 1.43.10; do not share queue between the non-indepedant channels; instead make sure only one of the channels is ever active on the same controller
fixes PR kern/52606 by Martin Husemann, thanks for report and testing
|
1.42 |
| 20-Oct-2017 |
jdolecek | actually 0680 uses different chip map func, which doesn't call the function handing non-independant channels, so don't set IDE_SHARED_CHANNELS for it
|
1.41 |
| 20-Oct-2017 |
jdolecek | move ata_queue_alloc(1) and ata_queue_free() calls to ata_channel_init() and ata_channel_destroy() respectively, to make attachment code simpler, and to make it easier to spot special queue manipulation like cmdide(4)
on topic of PR kern/52606
|
1.40 |
| 19-Oct-2017 |
jdolecek | replace the chek for the shared channel of cmdide(4) a flag of the product array, rather than switch inside attach routine
XXX judging from product name, Silicon Image 0680 might be newer than 0649 XXX and hence have actually independant channels, but I don't have the hw XXX so keeping as-is
no functional change, just to improve visibility in course of fixing PR kern/52606
|
1.39 |
| 07-Oct-2017 |
jdolecek | Merge support for SATA NCQ (Native Command Queueing) from jdolecek-ncq branch
ATA subsystem was changed to support several outstanding commands, and use NCQ xfers if supported by both the controller and the disk, including NCQ error recovery. Set NCQ high priority for BPRIO_TIMECRITICAL xfers if supported. Added FUA support.
Done some work towards MP-safe, all ATA code tsleep()/wakeup() replaced by condvars, and switched most code from spl* to mutexes (separate wd(4) and ata channel lock).
Introduced new option WD_CHAOS_MONKEY to facilitate testing of error handling, fixed several uncovered issues. Also fixed several problems with kernel dump to wd(4) disk.
Tested with ahcisata(4), mvsata(4), siisata(4), piixide(4) on amd64, with and without port multiplier, both disk and ATAPI devices; other drivers and archs mechanically adjusted and compile-tested. NCQ is supported for ahcisata(4) and siisata(4) for any controller, for mvsata(4) only Gen IIe ones for now. Also enabled ATAPI support in mvsata(4).
Thanks to Matt Thomas for initial ATA infrastructure patch, and Jonathan A.Kollasch for siisata(4) NCQ changes and general testing.
Also fixes PR kern/43169 (wd(4)); and PR kern/11811, PR kern/47041, PR kern/51979 (kernel dump)
|
1.38 |
| 03-Sep-2012 |
kiyohara | branches: 1.38.2; 1.38.28; Fix no wd on cmd680. Also move setting wdc_maxdrives into cmd*_chip_map().
|
1.37 |
| 31-Jul-2012 |
bouyer | Apply back changes that were reverted on Jul 24 and Jul 26 (general ata/wdc cleanup and SATA PMP support), now that I'm back to fix the fallouts.
|
1.36 |
| 26-Jul-2012 |
jakllsch | Revert, with intention of restoring in a less invasive way, the SATA Port Multiplier code.
ok christos@
|
1.35 |
| 24-Jul-2012 |
jakllsch | Revert dsl@'s changes of Sun, 15 Jul 2012 10:55:35 +0000 and Sun, 15 Jul 2012 10:56:50 +0000, excepting the kernel version bump. First step in reverting regressions to ata(4) subsystem during the addition of port multiplier support.
|
1.34 |
| 15-Jul-2012 |
dsl | Some namespace protection (and add greppablity). Prefix the DRIVE_ and DRIVET_ constants from atavar.h with ATA_. Don't use an enum for drive_type - you don't know how big it will be. Move driver_type to avoid implicit structure padding (esp on arm). This change is purely lexical and mechanical.
Update to 6.99.9 - this wasn't done when the SATA PMP changes were made - I'm sure they warranted a bump.
|
1.33 |
| 02-Jul-2012 |
bouyer | Add sata Port MultiPlier (PMP) support to the ata bus layer, as described in http://mail-index.netbsd.org/tech-kern/2012/06/23/msg013442.html PMP support in integrated to the atabus layer. struct ata_channel's ch_drive[] is not dynamically allocated, and ch_ndrive (renamed to ch_ndrives) closely reflects the size of the ch_drive[] array. Add helper functions atabus_alloc_drives() and atabus_free_drives() to manage ch_drive[]/ch_ndrives. Add wdc_maxdrives to struct wdc_softc so that bus front-end can specify how much drive they really support (master/slave or single). ata_reset_drive() callback gains a uint32_t *sigp argument which, when not NULL, will contain the signature of the device being reset. While there, some cosmetic changes: - added a drive_type enum to ata_drive_datas, and stop encoding the probed drive type in drive_flags (we were out of drive flags anyway). - rename DRIVE_ATAPIST to DRIVE_ATAPIDSCW to better reflect what this really is - remove ata_channel->ata_drives, it's redundant with the pointer in ata_drive_datas - factor out the interpretation of SATA signatures in sata_interpet_sig()
propagate these changes to the ATA HBA drivers, and add support for PMP to ahcisata(4) and siisata(4).
Thanks to: - Protocase (http://www.protocase.com/) which provided a system with lots of controllers, SATA PMP and drive slots - Conservation Genomics Laboratory, Department of Biology, New Mexico State University for hosting the above system - Brook Milligan, who set up remote access and has been very responsive when SATA cable move was needed
|
1.32 |
| 04-Apr-2011 |
dyoung | branches: 1.32.4; Neither pci_dma64_available(), pci_probe_device(), pci_mapreg_map(9), pci_find_rom(), pci_intr_map(9), pci_enumerate_bus(), nor the match predicate passed to pciide_compat_intr_establish() should ever modify their pci_attach_args argument, so make their pci_attach_args arguments const and deal with the fallout throughout the kernel.
For the most part, these changes add a 'const' where there was no 'const' before, however, some drivers and MD code used to modify pci_attach_args. Now those drivers either copy their pci_attach_args and modify the copy, or refrain from modifying pci_attach_args:
Xen: according to Manuel Bouyer, writing to pci_attach_args in pci_intr_map() was a leftover from Xen 2. Probably a bug. I stopped writing it. I have not tested this change.
siside(4): sis_hostbr_match() needlessly wrote to pci_attach_args. Probably a bug. I use a temporary variable. I have not tested this change.
slide(4): sl82c105_chip_map() overwrote the caller's pci_attach_args. Probably a bug. Use a local pci_attach_args. I have not tested this change.
viaide(4): via_sata_chip_map() and via_sata_chip_map_new() overwrote the caller's pci_attach_args. Probably a bug. Make a local copy of the caller's pci_attach_args and modify the copy. I have not tested this change.
While I'm here, make pci_mapreg_submap() static.
With these changes in place, I have tested the compilation of these kernels:
alpha GENERIC amd64 GENERIC XEN3_DOM0 arc GENERIC atari HADES MILAN-PCIIDE bebox GENERIC cats GENERIC cobalt GENERIC evbarm-eb NSLU2 evbarm-el ADI_BRH ARMADILLO9 CP3100 GEMINI GEMINI_MASTER GEMINI_SLAVE GUMSTIX HDL_G IMX31LITE INTEGRATOR IQ31244 IQ80310 IQ80321 IXDP425 IXM1200 KUROBOX_PRO LUBBOCK MARVELL_NAS NAPPI SHEEVAPLUG SMDK2800 TEAMASA_NPWR TEAMASA_NPWR_FC TS7200 TWINTAIL ZAO425 evbmips-el AP30 DBAU1500 DBAU1550 MALTA MERAKI MTX-1 OMSAL400 RB153 WGT624V3 evbmips64-el XLSATX evbppc EV64260 MPC8536DS MPC8548CDS OPENBLOCKS200 OPENBLOCKS266 OPENBLOCKS266_OPT P2020RDB PMPPC RB800 WALNUT hp700 GENERIC i386 ALL XEN3_DOM0 XEN3_DOMU ibmnws GENERIC macppc GENERIC mvmeppc GENERIC netwinder GENERIC ofppc GENERIC prep GENERIC sandpoint GENERIC sgimips GENERIC32_IP2x sparc GENERIC_SUN4U KRUPS sparc64 GENERIC
As of Sun Apr 3 15:26:26 CDT 2011, I could not compile these kernels with or without my patches in place:
### evbmips-el GDIUM
nbmake: nbmake: don't know how to make /home/dyoung/pristine-nbsd/src/sys/arch/mips/mips/softintr.c. Stop
### evbarm-el MPCSA_GENERIC src/sys/arch/evbarm/conf/MPCSA_GENERIC:318: ds1672rtc*: unknown device `ds1672rtc'
### ia64 GENERIC
/tmp/genassym.28085/assym.c: In function 'f111': /tmp/genassym.28085/assym.c:67: error: invalid application of 'sizeof' to incomplete type 'struct pcb' /tmp/genassym.28085/assym.c:76: error: dereferencing pointer to incomplete type
### sgimips GENERIC32_IP3x
crmfb.o: In function `crmfb_attach': crmfb.c:(.text+0x2304): undefined reference to `ddc_read_edid' crmfb.c:(.text+0x2304): relocation truncated to fit: R_MIPS_26 against `ddc_read_edid' crmfb.c:(.text+0x234c): undefined reference to `edid_parse' crmfb.c:(.text+0x234c): relocation truncated to fit: R_MIPS_26 against `edid_parse' crmfb.c:(.text+0x2354): undefined reference to `edid_print' crmfb.c:(.text+0x2354): relocation truncated to fit: R_MIPS_26 against `edid_print'
|
1.31 |
| 06-Nov-2010 |
jakllsch | branches: 1.31.2; Enable detachment.
Tested on SiI 0680 (native mapped).
|
1.30 |
| 05-Nov-2010 |
jakllsch | Pave the way for detachment of pciide(4)-family ATA controllers.
|
1.29 |
| 19-Oct-2009 |
bouyer | branches: 1.29.2; 1.29.4; Remove closes 3 & 4 from my licence. Lots of thanks to Soren Jacobsen for the booring work !
|
1.28 |
| 18-Mar-2008 |
cube | branches: 1.28.4; Split device_t and softc for ATA devices, as well as wd(4). Other cosmetic changes where appropriate.
|
1.27 |
| 09-Feb-2007 |
ad | branches: 1.27.20; 1.27.36; 1.27.40; Merge newlock2 to head.
|
1.26 |
| 24-Nov-2006 |
wiz | s/independant/independent/, from Zafer.
|
1.25 |
| 16-Nov-2006 |
christos | __unused removal on arguments; approved by core.
|
1.24 |
| 12-Oct-2006 |
christos | - sprinkle __unused on function decls. - fix a couple of unused bugs - no more -Wno-unused for i386
|
1.23 |
| 07-Feb-2006 |
bouyer | branches: 1.23.14; 1.23.16; Add another missing ch_ndrive initialization.
|
1.22 |
| 17-Jan-2006 |
bouyer | branches: 1.22.2; 1.22.4; Add missing ch_ndrive initialisations. Pointed out by Juan RP.
|
1.21 |
| 11-Dec-2005 |
christos | branches: 1.21.2; merge ktrace-lwp.
|
1.20 |
| 21-Sep-2005 |
christos | PR/31364: Douglas Fraser: cmd680 IDE controller not configured properly.
|
1.19 |
| 24-May-2005 |
lukem | branches: 1.19.2; add __KERNEL_RCSID
|
1.18 |
| 27-Feb-2005 |
perry | nuke trailing whitespace
|
1.17 |
| 21-Aug-2004 |
thorpej | branches: 1.17.4; 1.17.6; atastart() (called only at splbio(), and from interrupts) can change drive_flags, to make sure all drive_flags manipulations are done at splbio().
|
1.16 |
| 20-Aug-2004 |
thorpej | Move most of wdc_softc into a new atac_softc structure that contains info common to all types of ATA controllers.
|
1.15 |
| 19-Aug-2004 |
thorpej | - Add and use a CHAN_TO_WDC() macro to get the wdc_softc from an ata_channel. - Add and use a CHAN_TO_WDC_REGS() macro to get the wdc_regs from an ata_channel. - Add and use a CHAN_TO_PCIIDE() macro to get the pciide_softc from an ata_channel. - Add and use a CHAN_TO_PCHAN() macro to get the pciide_channel from an ata_channel. (This one just hides a cast, and is really just for consistency with the others.)
|
1.14 |
| 14-Aug-2004 |
thorpej | - Split the register handles out of struct wdc_channel into a separate wdc_regs structure, and array of which (indexed per channel) is pointed to by struct wdc_softc. - Move the resulting wdc_channel structure to atavar.h and rename it to ata_channel. Rename the corresponding flags. - Add a "ch_ndrive" member to struct ata_channel, which indicates the maximum number of drives that can be present on the channel. For now, this is always 2. Add an ATA_MAXDRIVES constant that places an upper limit on this value, also currently 2.
|
1.13 |
| 13-Aug-2004 |
thorpej | WDCDEBUG -> ATADEBUG.
|
1.12 |
| 13-Aug-2004 |
thorpej | Don't bother with bits that tell of the presence of optional callbacks; just check the function pointers for NULL.
|
1.11 |
| 02-Aug-2004 |
bouyer | branches: 1.11.2; If acknowledge "bogus" interrupts (that is, interrupts that have happened according to the controller-dependant registers while wdc was not waiting for an interrupt). A reset can generate spurious interrupts (or even a flow of spurious interrupts on the promise) that needs to be properly acknowledged.
|
1.10 |
| 03-Jan-2004 |
thorpej | More wdc_channel structure member namespace cleanup: - channel -> ch_channel - wdc -> ch_wdc
|
1.9 |
| 03-Jan-2004 |
thorpej | Rename "struct channel_softc" to "struct wdc_channel".
|
1.8 |
| 01-Jan-2004 |
thorpej | Rename: - wdc_xfer to ata_xfer - channel_queue to ata_queue and move them to <dev/ata/atavar.h> so they can be used by non-wdc ATA controllers. Clean up the member names of these structures while at it.
|
1.7 |
| 13-Dec-2003 |
thorpej | Split out the Silicon Image SATALink support into its own driver, "satalink".
|
1.6 |
| 27-Nov-2003 |
fvdl | There are some cards that map the ATA control and IDE DMA registers in a different fashion. Individually, they have the same functionality, but their layout is different. An example of such a chipset is the Promise 203xx.
To be able to deal with this, transform the cmd and dma bus_space handles into an array of handles, each seperately created with bus_space_subregion. The code generated by using the extra indirection shouldn't change much, since the extra indirection is negated by having the offset calculation already done in bus_space_subregion. E.g.
bus_space_write_4(tag, handle, offset, value)
becomes
bus_space_write_4(tag, handles[offset], 0, value)
Reviewed by Manuel Bouyer. Tested on wdc_isa, wdc_pcmcia, viaide, piixide (i386) and on cmdide (sparc64).
|
1.5 |
| 10-Nov-2003 |
wiz | Spell address with two d's. Inspired by similar changes in OpenBSD, originating from Jonathon Gray and forwarded by jmc@openbsd.
|
1.4 |
| 30-Oct-2003 |
simonb | Remove some assigned-to but otherwise unused variables.
|
1.3 |
| 24-Oct-2003 |
mycroft | Remove IDE_PCI_CLASS_OVERRIDE -- it wasn't actually used anywhere. In lieu of it, add a class/subclass check to drivers that do not (appear) to have a unique ID for the IDE controller. This includes aceride, cypide and optiide.
|
1.2 |
| 11-Oct-2003 |
thorpej | Cosmetic changes: - Use static to unexport symbols that don't need to be exported. - ANSI'ify. - Some whitespace nits.
|
1.1 |
| 08-Oct-2003 |
bouyer | Split pciide in per-chip family driver, as proposed in http://mail-index.netbsd.org/tech-kern/2003/09/25/0007.html We now have: acardide* at pci? dev ? function ? # Acard IDE controllers aceride* at pci? dev ? function ? # Acer Lab IDE controllers cmdide* at pci? dev ? function ? # CMD tech IDE controllers cypide* at pci? dev ? function ? # Cypress IDE controllers hptide* at pci? dev ? function ? # Triones/HighPoint IDE controllers optiide* at pci? dev ? function ? # Opti IDE controllers piixide* at pci? dev ? function ? # Intel IDE controllers pdcide* at pci? dev ? function ? # Promise IDE controllers siside* at pci? dev ? function ? # SiS IDE controllers slide* at pci? dev ? function ? # Symphony Labs IDE controllers viaide* at pci? dev ? function ? # VIA/AMD/Nvidia IDE controllers pciide* at pci? dev ? function ? flags 0x0000 # GENERIC pciide driver
serverworks driver not commited yet; there are still copyright issues about it.
|
1.11.2.7 |
| 10-Nov-2005 |
skrll | Sync with HEAD. Here we go again...
|
1.11.2.6 |
| 04-Mar-2005 |
skrll | Sync with HEAD.
Hi Perry!
|
1.11.2.5 |
| 21-Sep-2004 |
skrll | Fix the sync with head I botched.
|
1.11.2.4 |
| 18-Sep-2004 |
skrll | Sync with HEAD.
|
1.11.2.3 |
| 25-Aug-2004 |
skrll | Sync with HEAD.
|
1.11.2.2 |
| 03-Aug-2004 |
skrll | Sync with HEAD
|
1.11.2.1 |
| 02-Aug-2004 |
skrll | file cmdide.c was added on branch ktrace-lwp on 2004-08-03 10:49:06 +0000
|
1.17.6.1 |
| 19-Mar-2005 |
yamt | sync with head. xen and whitespace. xen part is not finished.
|
1.17.4.1 |
| 29-Apr-2005 |
kent | sync with -current
|
1.19.2.4 |
| 24-Mar-2008 |
yamt | sync with head.
|
1.19.2.3 |
| 26-Feb-2007 |
yamt | sync with head.
|
1.19.2.2 |
| 30-Dec-2006 |
yamt | sync with head.
|
1.19.2.1 |
| 21-Jun-2006 |
yamt | sync with head.
|
1.21.2.2 |
| 18-Feb-2006 |
yamt | sync with head.
|
1.21.2.1 |
| 01-Feb-2006 |
yamt | sync with head.
|
1.22.4.1 |
| 22-Apr-2006 |
simonb | Sync with head.
|
1.22.2.1 |
| 09-Sep-2006 |
rpaulo | sync with head
|
1.23.16.2 |
| 10-Dec-2006 |
yamt | sync with head.
|
1.23.16.1 |
| 22-Oct-2006 |
yamt | sync with head
|
1.23.14.3 |
| 06-Feb-2007 |
ad | Quiten noisy boot messages.
|
1.23.14.2 |
| 12-Jan-2007 |
ad | Sync with head.
|
1.23.14.1 |
| 18-Nov-2006 |
ad | Sync with head.
|
1.27.40.1 |
| 03-Apr-2008 |
mjf | Sync with HEAD.
|
1.27.36.1 |
| 24-Mar-2008 |
keiichi | sync with head.
|
1.27.20.1 |
| 23-Mar-2008 |
matt | sync with HEAD
|
1.28.4.1 |
| 11-Mar-2010 |
yamt | sync with head
|
1.29.4.2 |
| 21-Apr-2011 |
rmind | sync with head
|
1.29.4.1 |
| 05-Mar-2011 |
rmind | sync with head
|
1.29.2.1 |
| 06-Nov-2010 |
uebayasi | Sync with HEAD.
|
1.31.2.1 |
| 06-Jun-2011 |
jruoho | Sync with HEAD.
|
1.32.4.1 |
| 30-Oct-2012 |
yamt | sync with head
|
1.38.28.1 |
| 10-Apr-2017 |
jdolecek | ATA infrastructure improvements to eventually support more outstanding commands
patch by Matt Thomas
|
1.38.2.2 |
| 03-Dec-2017 |
jdolecek | update from HEAD
|
1.38.2.1 |
| 09-Oct-2012 |
bouyer | Support transfers of up to MACHINE_MAXPHYS in all pciide variants, and ahci. wd(4) limits its maxphys depending on the drives's capability (64k sectors for LBA48, 256 sectors for LBA and 128 sectors for older devices).
I assumed all pciide controllers could do MACHINE_MAXPHYS transfers, but this may not be true. The capabilities of each controller variants should be looked at more closely.
|
1.43.10.1 |
| 17-Aug-2020 |
martin | Pull up following revision(s) (requested by jdolecek in ticket #1054):
sys/dev/pci/cmdide.c: revision 1.46
remove explicit irqack() call for unexpected interrupt; this happens normally during boot when running identify for the drive as polled command, and fixes hard hang caused by the irqack() on a sun machine the unexpected interrupt happens because cmdide doesn't respect WDCTL_IDS bit and triggers interrupt also for polled commands
also reclassify the "bogus intr" as aprint_verbose() to avoid noise on boot
discussed and tested by Martin Husemann
|