summaryrefslogtreecommitdiffstats
path: root/sys/cam
Commit message (Collapse)AuthorAgeFilesLines
* Add quirks to hint 4K physical sector (Advanced Format) for ATA disks notmav2011-05-311-2/+91
| | | | | | | | reporting it properly (none? of known disks now). Hitachi and WDC AF disks seem could be identified more or less formally. For Seagate and Samsung enumerate some found models/series. For other disks it can be forced with kern.cam.ada.X.quirks=1 tunable.
* Change new constant names to ones used by OpenSolaris.mav2011-05-271-2/+2
|
* Add names for few more SES element types according SES-2 specification.mav2011-05-271-0/+4
|
* scsi_cd: silence READ_TOC errors in CDIOREADTOCHEADER ioctlavg2011-05-071-1/+1
| | | | | | | | | An optical disk may not have a TOC (e.g. for blank media) and userland software may legitimately try to use CDIOREADTOCHEADER to find out about the TOC. Silence from: scsi@ MFC after: 10 days
* Do not report legacy unit numbers (do not create legacy aliases) for disksmav2011-05-031-3/+6
| | | | | on port multiplier ports above first two. They don't fit into ATA_STATIC_ID scheme and so can't be mapped properly. No need to pollute dev.
* Make CAM_DEBUG_CDB also dump ATA commands in addition to SCSI.mav2011-04-291-28/+29
|
* - Add shim to simplify migration to the CAM-based ATA. For each new adaXmav2011-04-263-1/+71
| | | | | | | | | device in /dev/ create symbolic link with adY name, trying to mimic old ATA numbering. Imitation is not complete, but should be enough in most cases to mount file systems without touching /etc/fstab. - To know what behavior to mimic, restore ATA_STATIC_ID option in cases where it was present before. - Add some more details to UPDATING.
* Add basic support for DMA-capable ATA disks on DMA-incapable controller.mav2011-04-203-2/+10
| | | | This is really rare situation these days, but still may happen in embedded.
* Remove always false "< 0" check for unsgined int variable. This check ismav2011-04-181-2/+0
| | | | | | also duplicate, as the value was already checked for 0 before decrementing. Reported by: rpaulo
* Remove some used variables.mav2011-04-181-4/+0
| | | | Found with: Clang Static Analyzer
* Remove some used variables.mav2011-04-182-21/+10
| | | | Found with: Clang Static Analyzer
* Move a comment to the right place. The rearrange done in r208928 leftjh2011-04-161-4/+3
| | | | the comment to a wrong place.
* Move TUNABLE_INT_FETCH() out of the SIM lock to avoid sleeping whilejh2011-04-162-30/+32
| | | | | | holding the lock. The fix is analogous to r220618 for ada(4). Reviewed by: mav
* Make ada(4) driver put ATA disks into sleep state on suspend.mav2011-04-151-8/+83
| | | | Submitted by: jkim (original version)
* Make CAM report devices with ATA/SATA transport to devstat(9) as IDE.mav2011-04-149-11/+69
|
* Fix typo in write_cache tunable name and move TUNABLE_INT_FETCH() out ofmav2011-04-141-4/+6
| | | | | | the SIM lock to fix WITNESS warning. Reported by: jh
* Properly log few more ATA commands used by the kernel.mav2011-04-141-0/+4
|
* Improve SATA Asynchronous Notification feature support in CAM:mav2011-04-133-2/+31
| | | | | | | | | | | | | - make SATA SIMs announce capabilities to handle SDB with Notification bit; - make PMP driver honor this SIMs capability; - make SATA XPT to negotiate and enable this feature for ATAPI devices. This feature allows supporting SATA ATAPI devices to inform system about some events happened, that may require attention. In my case this allows LG GH22LS50 SATA DVR-RW drive to report tray open/close events. Events reported to CAM in form of AC_SCSI_AEN async. Further they could be used as a hints for checking device status and reporting media change to upper layers, for example, via spoiling mechanism of GEOM.
* - Add kern.cam.ada.X.write_cache tunables/sysctls to control write cachingmav2011-04-081-6/+92
| | | | | | | on per-device basis. - While adding support for per-device sysctls, merge from graid branch support for ADA_TEST_FAILURE kernel option, which opens few more sysctl, allowing to simulate read and write errors for testing purposes.
* Make ada(4) driver to control device write cache, same as ata(4) does.mav2011-04-071-2/+91
| | | | Add kern.cam.ada.write_cache sysctl/tunable to control it alike hw.ata.wc.
* Don't automatically send a START UNIT to sequential access devices-mjacob2011-03-031-0/+9
| | | | | | | this might cause them to load the tape unintentionally. Reviewed by: gibbs MFC after: 1 month
* Missed a file in r219056: add disk description for da(4).nwhitehorn2011-02-261-0/+6
|
* Add the disk ident and a human-meaningful description (here, the disk modelnwhitehorn2011-02-262-0/+8
| | | | | | | string) to the geom_disk config XML so that they are easily accessible from userland. MFC after: 1 week
* Add some FEATURE macros for various features (AUDIT/CAM/IPC/KTR/MAC/NFS/NTP/netchild2011-02-251-0/+3
| | | | | | | | | | | | | PMC/SYSV/...). No FreeBSD version bump, the userland application to query the features will be committed last and can serve as an indication of the availablility if needed. Sponsored by: Google Summer of Code 2010 Submitted by: kibab Reviewed by: arch@ (parts by rwatson, trasz, jhb) X-MFC after: to be determined in last commit with code from this project
* Fix typos - remove duplicate "the".brucec2011-02-212-3/+3
| | | | | | PR: bin/154928 Submitted by: Eitan Adler <lists at eitanadler.com> MFC after: 3 days
* In addition to r217444 ignore also ATA status errors on DMA Auto-Activationmav2011-01-261-0/+8
| | | | | enabling request. Some HP disks reported to return ABORT error there while declaring support for this feature.
* Make device initialization sequence shorter when possible. Do not enable/mav2011-01-261-3/+9
| | | | disable already enabled/disabled SATA features.
* sysctl(8) should use the CTLTYPE to determine the type of data whenmdf2011-01-191-1/+1
| | | | | | | | | | | reading. (This was already done for writing to a sysctl). This requires all SYSCTL setups to specify a type. Most of them are now checked at compile-time. Remove SYSCTL_*X* sysctl additions as the print being in hex should be controlled by the -x flag to sysctl(8). Succested by: bde
* Some old WD SATA disks report supported and enabled device-initiatedmav2011-01-151-3/+17
| | | | | interface power management, but return ABORT error on attempt to disable it. Make CAM SATA probe sequence ignore this error, as it is not fatal.
* Add a 64-bit hex-printed sysctl(9) since there is at least one place inmdf2011-01-131-2/+2
| | | | | the code that wanted it. It is named X64 rather than XQUAD since the quad name is a historical abomination that should not be perpetuated.
* Fix up a few more sysctl(9) mis-typing found in various LINT builds.mdf2011-01-131-2/+2
|
* Remove unneeded includes of <sys/linker_set.h>. Other headers that usejhb2011-01-111-1/+0
| | | | | | it internally contain nested includes. Reviewed by: bde
* Fix a few issues related to the XPT_GDEV_ADVINFO CCB.ken2010-12-102-4/+14
| | | | | | | | | | | | | | | | | | | | | | | | camcontrol.c: In buildbusdevlist(), don't attempt to get call getdevid() for an unconfigured device, even when the verbose flag is set. The cam_open_btl() call will almost certainly fail. Probe for the buffer size when issuing the XPT_GDEV_ADVINFO CCB. Probing for the buffer size first helps us avoid allocating the maximum buffer size when it really may not be necessary. This also helps avoid errors from cam_periph_mapmem() if we attempt to map more than MAXPHYS. cam_periph.c: In cam_periph_mapmem(), if the XPT_GDEV_ADVINFO CCB shows a bufsiz of 0, we don't have anything to map, so just return. Also, set the maximum mapping size to MAXPHYS instead of DFLTPHYS for XPT_GDEV_ADVINFO CCBs, since they don't actually go down to the hardware. scsi_pass.c: Don't bother mapping the buffer in XPT_GDEV_ADVINFO CCBs if bufsiz is 0.
* Add Serial Management Protocol (SMP) passthrough support to CAM.ken2010-11-3012-53/+1668
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This includes support in the kernel, camcontrol(8), libcam and the mps(4) driver for SMP passthrough. The CAM SCSI probe code has been modified to fetch Inquiry VPD page 0x00 to determine supported pages, and will now fetch page 0x83 in addition to page 0x80 if supported. Add two new CAM CCBs, XPT_SMP_IO, and XPT_GDEV_ADVINFO. The SMP CCB is intended for SMP requests and responses. The ADVINFO is currently used to fetch cached VPD page 0x83 data from the transport layer, but is intended to be extensible to fetch other types of device-specific data. SMP-only devices are not currently represented in the CAM topology, and so the current semantics are that the SIM will route SMP CCBs to either the addressed device, if it contains an SMP target, or its parent, if it contains an SMP target. (This is noted in cam_ccb.h, since it will change later once we have the ability to have SMP-only devices in CAM's topology.) smp_all.c, smp_all.h: New helper routines for SMP. This includes SMP request building routines, response parsing routines, error decoding routines, and structure definitions for a number of SMP commands. libcam/Makefile: Add smp_all.c to libcam, so that SMP functionality is available to userland applications. camcontrol.8, camcontrol.c: Add smp passthrough support to camcontrol. Several new subcommands are now available: 'smpcmd' functions much like 'cmd', except that it allows the user to send generic SMP commands. 'smprg' sends the SMP report general command, and displays the decoded output. It will automatically fetch extended output if it is available. 'smppc' sends the SMP phy control command, with any number of potential options. Among other things, this allows the user to reset a phy on a SAS expander, or disable a phy on an expander. 'smpmaninfo' sends the SMP report manufacturer information and displays the decoded output. 'smpphylist' displays a list of phys on an expander, and the CAM devices attached to those phys, if any. cam.h, cam.c: Add a status value for SMP errors (CAM_SMP_STATUS_ERROR). Add a missing description for CAM_SCSI_IT_NEXUS_LOST. Add support for SMP commands to cam_error_string(). cam_ccb.h: Rename the CAM_DIR_RESV flag to CAM_DIR_BOTH. SMP commands are by nature bi-directional, and we may need to support bi-directional SCSI commands later. Add the XPT_SMP_IO CCB. Since SMP commands are bi-directional, there are pointers for both the request and response. Add a fill routine for SMP CCBs. Add the XPT_GDEV_ADVINFO CCB. This is currently used to fetch cached page 0x83 data from the transport later, but is extensible to fetch many other types of data. cam_periph.c: Add support in cam_periph_mapmem() for XPT_SMP_IO and XPT_GDEV_ADVINFO CCBs. cam_xpt.c: Add support for executing XPT_SMP_IO CCBs. cam_xpt_internal.h: Add fields for VPD pages 0x00 and 0x83 in struct cam_ed. scsi_all.c: Add scsi_get_sas_addr(), a function that parses VPD page 0x83 data and pulls out a SAS address. scsi_all.h: Add VPD page 0x00 and 0x83 structures, and a prototype for scsi_get_sas_addr(). scsi_pass.c: Add support for mapping buffers in XPT_SMP_IO and XPT_GDEV_ADVINFO CCBs. scsi_xpt.c: In the SCSI probe code, first ask the device for VPD page 0x00. If any VPD pages are supported, that page is required to be implemented. Based on the response, we may probe for the serial number (page 0x80) or device id (page 0x83). Add support for the XPT_GDEV_ADVINFO CCB. sys/conf/files: Add smp_all.c. mps.c: Add support for passing in a uio in mps_map_command(), so we can map a S/G list at once. Add support for SMP passthrough commands in mps_data_cb(). SMP is a special case, because the first buffer in the S/G list is outbound and the second buffer is inbound. Add support for warning the user if the busdma code comes back with more buffers than will work for the command. This will, for example, help the user determine why an SMP command failed if busdma comes back with three buffers. mps_pci.c: Add sys/uio.h. mps_sas.c: Add the SAS address and the parent handle to the list of fields we pull from device page 0 and cache in struct mpssas_target. These are needed for SMP passthrough. Add support for the XPT_SMP_IO CCB. For now, this CCB is routed to the addressed device if it supports SMP, or to its parent if it does not and the parent does. This is necessary because CAM does not currently support SMP-only nodes in the topology. Make SMP passthrough support conditional on __FreeBSD_version >= 900026. This will make it easier to MFC this change to the driver without MFCing the CAM changes as well. mps_user.c: Un-staticize mpi_init_sge() so we can use it for the SMP passthrough code. mpsvar.h: Add a uio and iovecs into struct mps_command for SMP passthrough commands. Add a cm_max_segs field to struct mps_command so that we can warn the user if busdma comes back with too many segments. Clear the cm_reply when a command gets freed. If it is not cleared, reply frames will eventually get freed into the pool multiple times and corrupt the pool. (This fix is from scottl.) Add a prototype for mpi_init_sge(). sys/param.h: Bump __FreeBSD_version to 900026 for the for the inclusion of the XPT_GDEV_ADVINFO and XPT_SMP_IO CAM CCBs.
* If HBA doesn't report user-enabled SATA capabilies (like ATA_CAM wrapper) -mav2010-11-181-0/+4
| | | | | | | handle all of them as disabled. This was original cause of the problem, workarounded by r215453. MFC after: 1 week
* When requesting sense data for SIM not doing it automatically (such asmav2010-11-081-2/+3
| | | | | ATAPI or USB), request only as much data as requested by consumer. On the way back -- report how much sense data we have actually received.
* Make da driver to handle some probably broken Android devices, returningmav2010-10-241-1/+4
| | | | | zero media and sector size instead of "Medium not present" error, until some confirmation button is tapped on device.
* Mostly revert r203420, and add similar functionality into ada(4) since thebrucec2010-10-242-94/+63
| | | | | | | | | | | | | | | | | existing code caused problems with some SCSI controllers. A new sysctl kern.cam.ada.spindown_shutdown has been added that controls whether or not to spin-down disks when shutting down. Spinning down the disks unloads/parks the heads - this is much better than removing power when the disk is still spinning because otherwise an Emergency Unload occurs which may cause damage to the actuator. PR: kern/140752 Submitted by: olli Reviewed by: arundel Discussed with: mav MFC after: 2 weeks
* Decrease poll interval from 1000 to 100us. This significantly reducesmav2010-09-221-3/+3
| | | | kernel dump time, especially with minidump.
* Use destroy_dev_sched(9) instead of destroy_dev(9) in passcleanup() asmdf2010-09-201-1/+5
| | | | | | | | it is indirectly a d_close method. Prompted by: kib Reviewed by: mav MFC after: 2 weeks
* Correct bioq_disksort so that bioq_insert_tail() offers barrier semantic.gibbs2010-09-022-7/+17
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | Add the BIO_ORDERED flag for struct bio and update bio clients to use it. The barrier semantics of bioq_insert_tail() were broken in two ways: o In bioq_disksort(), an added bio could be inserted at the head of the queue, even when a barrier was present, if the sort key for the new entry was less than that of the last queued barrier bio. o The last_offset used to generate the sort key for newly queued bios did not stay at the position of the barrier until either the barrier was de-queued, or a new barrier (which updates last_offset) was queued. When a barrier is in effect, we know that the disk will pass through the barrier position just before the "blocked bios" are released, so using the barrier's offset for last_offset is the optimal choice. sys/geom/sched/subr_disk.c: sys/kern/subr_disk.c: o Update last_offset in bioq_insert_tail(). o Only update last_offset in bioq_remove() if the removed bio is at the head of the queue (typically due to a call via bioq_takefirst()) and no barrier is active. o In bioq_disksort(), if we have a barrier (insert_point is non-NULL), set prev to the barrier and cur to it's next element. Now that last_offset is kept at the barrier position, this change isn't strictly necessary, but since we have to take a decision branch anyway, it does avoid one, no-op, loop iteration in the while loop that immediately follows. o In bioq_disksort(), bypass the normal sort for bios with the BIO_ORDERED attribute and instead insert them into the queue with bioq_insert_tail(). bioq_insert_tail() not only gives the desired command order during insertion, but also provides barrier semantics so that commands disksorted in the future cannot pass the just enqueued transaction. sys/sys/bio.h: Add BIO_ORDERED as bit 4 of the bio_flags field in struct bio. sys/cam/ata/ata_da.c: sys/cam/scsi/scsi_da.c Use an ordered command for SCSI/ATA-NCQ commands issued in response to bios with the BIO_ORDERED flag set. sys/cam/scsi/scsi_da.c Use an ordered tag when issuing a synchronize cache command. Wrap some lines to 80 columns. sys/cddl/contrib/opensolaris/uts/common/fs/zfs/vdev_geom.c sys/geom/geom_io.c Mark bios with the BIO_FLUSH command as BIO_ORDERED. Sponsored by: Spectra Logic Corporation MFC after: 1 month
* Revert r211434. Offline discussions have convinced me that this shouldmjacob2010-08-201-18/+2
| | | | be left alone for now.
* Now is as good a time as any to find out if we induce breakagemjacob2010-08-171-2/+18
| | | | | | | by issueing aborts for any pending commands when we're decommssioning a disk. MFC after: 3 months
* Fix two (very common) occurrences of s/sytem/system in comments.bcr2010-08-022-2/+2
| | | | | Approved by: mav MFC after: 3 days
* Export PCI IDs of ATA/SATA controllers through CAM and ata(4) layers tomav2010-07-254-0/+16
| | | | | GEOM. This information needed for proper soft-RAID's on-disk metadata reading and writing.
* ATA device reset starts probe sequence from the beginning. If reset causedmav2010-07-061-4/+19
| | | | | | by timeout/error of one of probe commands, process may continue infinitely. Make CAM ATA more robust to faulty devices and false positive detections, abort probe after two restarts on timeouts or ten on other errors.
* Don't lock buses around a call to xptperiphlistmatch- the buses will bemjacob2010-06-291-2/+0
| | | | | | | locked at appropriate places. MFC after: 1 week X-MFC: 208752
* For the target port groups structures, don't allocate the initial element.ken2010-06-141-3/+4
| | | | | | | | This makes things easier for target implementations to calculate how many elements they need to allocate. Discussed with: mjacob, gibbs MFC after: 1 week
* Rearrange how things are done to avoid dereferencing stale pointers inmjacob2010-06-081-30/+32
| | | | | | | | | | the case of immediate unconfigure after configure. Hold the periph an extra count while we have the task to create sysctl context outstanding so that the periph doesn't go away unexpectedly. Sponsored by: Panasas Reviewed by: scsi@ MFC after: 1 month
* One byte off for scsi_target_group cdb.mjacob2010-06-081-1/+1
| | | | MFC after: 2 weeks
OpenPOWER on IntegriCloud