svn commit: r300207 - in head: sbin/camcontrol sys/cam/ata sys/cam/scsi sys/dev/ahci sys/geom sys/geom/eli sys/kern sys/sys usr.sbin usr.sbin/diskinfo usr.sbin/zonectl

Kenneth D. Merry ken at FreeBSD.org
Thu May 19 14:08:38 UTC 2016


Author: ken
Date: Thu May 19 14:08:36 2016
New Revision: 300207
URL: https://svnweb.freebsd.org/changeset/base/300207

Log:
  Add support for managing Shingled Magnetic Recording (SMR) drives.
  
  This change includes support for SCSI SMR drives (which conform to the
  Zoned Block Commands or ZBC spec) and ATA SMR drives (which conform to
  the Zoned ATA Command Set or ZAC spec) behind SAS expanders.
  
  This includes full management support through the GEOM BIO interface, and
  through a new userland utility, zonectl(8), and through camcontrol(8).
  
  This is now ready for filesystems to use to detect and manage zoned drives.
  (There is no work in progress that I know of to use this for ZFS or UFS, if
  anyone is interested, let me know and I may have some suggestions.)
  
  Also, improve ATA command passthrough and dispatch support, both via ATA
  and ATA passthrough over SCSI.
  
  Also, add support to camcontrol(8) for the ATA Extended Power Conditions
  feature set.  You can now manage ATA device power states, and set various
  idle time thresholds for a drive to enter lower power states.
  
  Note that this change cannot be MFCed in full, because it depends on
  changes to the struct bio API that break compatilibity.  In order to
  avoid breaking the stable API, only changes that don't touch or depend on
  the struct bio changes can be merged.  For example, the camcontrol(8)
  changes don't depend on the new bio API, but zonectl(8) and the probe
  changes to the da(4) and ada(4) drivers do depend on it.
  
  Also note that the SMR changes have not yet been tested with an actual
  SCSI ZBC device, or a SCSI to ATA translation layer (SAT) that supports
  ZBC to ZAC translation.  I have not yet gotten a suitable drive or SAT
  layer, so any testing help would be appreciated.  These changes have been
  tested with Seagate Host Aware SATA drives attached to both SAS and SATA
  controllers.  Also, I do not have any SATA Host Managed devices, and I
  suspect that it may take additional (hopefully minor) changes to support
  them.
  
  Thanks to Seagate for supplying the test hardware and answering questions.
  
  sbin/camcontrol/Makefile:
  	Add epc.c and zone.c.
  
  sbin/camcontrol/camcontrol.8:
  	Document the zone and epc subcommands.
  
  sbin/camcontrol/camcontrol.c:
  	Add the zone and epc subcommands.
  
  	Add auxiliary register support to build_ata_cmd().  Make sure to
  	set the CAM_ATAIO_NEEDRESULT, CAM_ATAIO_DMA, and CAM_ATAIO_FPDMA
  	flags as appropriate for ATA commands.
  
  	Add a new get_ata_status() function to parse ATA result from SCSI
  	sense descriptors (for ATA passthrough over SCSI) and ATA I/O
  	requests.
  
  sbin/camcontrol/camcontrol.h:
  	Update the build_ata_cmd() prototype
  
  	Add get_ata_status(), zone(), and epc().
  
  sbin/camcontrol/epc.c:
  	Support for ATA Extended Power Conditions features.  This includes
  	support for all features documented in the ACS-4 Revision 12
  	specification from t13.org (dated February 18, 2016).
  
  	The EPC feature set allows putting a drive into a power power mode
  	immediately, or setting timeouts so that the drive will
  	automatically enter progressively lower power states after various
  	idle times.
  
  sbin/camcontrol/fwdownload.c:
  	Update the firmware download code for the new build_ata_cmd()
  	arguments.
  
  sbin/camcontrol/zone.c:
  	Implement support for Shingled Magnetic Recording (SMR) drives
  	via SCSI Zoned Block Commands (ZBC) and ATA Zoned Device ATA
  	Command Set (ZAC).
  
  	These specs were developed in concert, and are functionally
  	identical.  The primary differences are due to SCSI and ATA
  	differences.  (SCSI is big endian, ATA is little endian, for
  	example.)
  
  	This includes support for all commands defined in the ZBC and
  	ZAC specs.
  
  sys/cam/ata/ata_all.c:
  	Decode a number of additional ATA command names in ata_op_string().
  
  	Add a new CCB building function, ata_read_log().
  
  	Add ata_zac_mgmt_in() and ata_zac_mgmt_out() CCB building
  	functions.  These support both DMA and NCQ encapsulation.
  
  sys/cam/ata/ata_all.h:
  	Add prototypes for ata_read_log(), ata_zac_mgmt_out(), and
  	ata_zac_mgmt_in().
  
  sys/cam/ata/ata_da.c:
  	Revamp the ada(4) driver to support zoned devices.
  
  	Add four new probe states to gather information needed for zone
  	support.
  
  	Add a new adasetflags() function to avoid duplication of large
  	blocks of flag setting between the async handler and register
  	functions.
  
  	Add new sysctl variables that describe zone support and paramters.
  
  	Add support for the new BIO_ZONE bio, and all of its subcommands:
  	DISK_ZONE_OPEN, DISK_ZONE_CLOSE, DISK_ZONE_FINISH, DISK_ZONE_RWP,
  	DISK_ZONE_REPORT_ZONES, and DISK_ZONE_GET_PARAMS.
  
  sys/cam/scsi/scsi_all.c:
  	Add command descriptions for the ZBC IN/OUT commands.
  
  	Add descriptions for ZBC Host Managed devices.
  
  	Add a new function, scsi_ata_pass() to do ATA passthrough over
  	SCSI.  This will eventually replace scsi_ata_pass_16() -- it
  	can create the 12, 16, and 32-byte variants of the ATA
  	PASS-THROUGH command, and supports setting all of the
  	registers defined as of SAT-4, Revision 5 (March 11, 2016).
  
  	Change scsi_ata_identify() to use scsi_ata_pass() instead of
  	scsi_ata_pass_16().
  
  	Add a new scsi_ata_read_log() function to facilitate reading
  	ATA logs via SCSI.
  
  sys/cam/scsi/scsi_all.h:
  	Add the new ATA PASS-THROUGH(32) command CDB.  Add extended and
  	variable CDB opcodes.
  
  	Add Zoned Block Device Characteristics VPD page.
  
  	Add ATA Return SCSI sense descriptor.
  
  	Add prototypes for scsi_ata_read_log() and scsi_ata_pass().
  
  sys/cam/scsi/scsi_da.c:
  	Revamp the da(4) driver to support zoned devices.
  
  	Add five new probe states, four of which are needed for ATA
  	devices.
  
  	Add five new sysctl variables that describe zone support and
  	parameters.
  
  	The da(4) driver supports SCSI ZBC devices, as well as ATA ZAC
  	devices when they are attached via a SCSI to ATA Translation (SAT)
  	layer.  Since ZBC -> ZAC translation is a new feature in the T10
  	SAT-4 spec, most SATA drives will be supported via ATA commands
  	sent via the SCSI ATA PASS-THROUGH command.  The da(4) driver will
  	prefer the ZBC interface, if it is available, for performance
  	reasons, but will use the ATA PASS-THROUGH interface to the ZAC
  	command set if the SAT layer doesn't support translation yet.
  	As I mentioned above, ZBC command support is untested.
  
  	Add support for the new BIO_ZONE bio, and all of its subcommands:
  	DISK_ZONE_OPEN, DISK_ZONE_CLOSE, DISK_ZONE_FINISH, DISK_ZONE_RWP,
  	DISK_ZONE_REPORT_ZONES, and DISK_ZONE_GET_PARAMS.
  
  	Add scsi_zbc_in() and scsi_zbc_out() CCB building functions.
  
  	Add scsi_ata_zac_mgmt_out() and scsi_ata_zac_mgmt_in() CCB/CDB
  	building functions.  Note that these have return values, unlike
  	almost all other CCB building functions in CAM.  The reason is
  	that they can fail, depending upon the particular combination
  	of input parameters.  The primary failure case is if the user
  	wants NCQ, but fails to specify additional CDB storage.  NCQ
  	requires using the 32-byte version of the SCSI ATA PASS-THROUGH
  	command, and the current CAM CDB size is 16 bytes.
  
  sys/cam/scsi/scsi_da.h:
  	Add ZBC IN and ZBC OUT CDBs and opcodes.
  
  	Add SCSI Report Zones data structures.
  
  	Add scsi_zbc_in(), scsi_zbc_out(), scsi_ata_zac_mgmt_out(), and
  	scsi_ata_zac_mgmt_in() prototypes.
  
  sys/dev/ahci/ahci.c:
  	Fix SEND / RECEIVE FPDMA QUEUED in the ahci(4) driver.
  
  	ahci_setup_fis() previously set the top bits of the sector count
  	register in the FIS to 0 for FPDMA commands.  This is okay for
  	read and write, because the PRIO field is in the only thing in
  	those bits, and we don't implement that further up the stack.
  
  	But, for SEND and RECEIVE FPDMA QUEUED, the subcommand is in that
  	byte, so it needs to be transmitted to the drive.
  
  	In ahci_setup_fis(), always set the the top 8 bits of the
  	sector count register.  We need it in both the standard
  	and NCQ / FPDMA cases.
  
  sys/geom/eli/g_eli.c:
  	Pass BIO_ZONE commands through the GELI class.
  
  sys/geom/geom.h:
  	Add g_io_zonecmd() prototype.
  
  sys/geom/geom_dev.c:
  	Add new DIOCZONECMD ioctl, which allows sending zone commands to
  	disks.
  
  sys/geom/geom_disk.c:
  	Add support for BIO_ZONE commands.
  
  sys/geom/geom_disk.h:
  	Add a new flag, DISKFLAG_CANZONE, that indicates that a given
  	GEOM disk client can handle BIO_ZONE commands.
  
  sys/geom/geom_io.c:
  	Add a new function, g_io_zonecmd(), that handles execution of
  	BIO_ZONE commands.
  
  	Add permissions check for BIO_ZONE commands.
  
  	Add command decoding for BIO_ZONE commands.
  
  sys/geom/geom_subr.c:
  	Add DDB command decoding for BIO_ZONE commands.
  
  sys/kern/subr_devstat.c:
  	Record statistics for REPORT ZONES commands.  Note that the
  	number of bytes transferred for REPORT ZONES won't quite match
  	what is received from the harware.  This is because we're
  	necessarily counting bytes coming from the da(4) / ada(4) drivers,
  	which are using the disk_zone.h interface to communicate up
  	the stack.  The structure sizes it uses are slightly different
  	than the SCSI and ATA structure sizes.
  
  sys/sys/ata.h:
  	Add many bit and structure definitions for ZAC, NCQ, and EPC
  	command support.
  
  sys/sys/bio.h:
  	Convert the bio_cmd field to a straight enumeration.  This will
  	yield more space for additional commands in the future.  After
  	change r297955 and other related changes, this is now possible.
  	Converting to an enumeration will also prevent use as a bitmask
  	in the future.
  
  sys/sys/disk.h:
  	Define the DIOCZONECMD ioctl.
  
  sys/sys/disk_zone.h:
  	Add a new API for managing zoned disks.  This is very close to
  	the SCSI ZBC and ATA ZAC standards, but uses integers in native
  	byte order instead of big endian (SCSI) or little endian (ATA)
  	byte arrays.
  
  	This is intended to offer to the complete feature set of the ZBC
  	and ZAC disk management without requiring the application developer
  	to include SCSI or ATA headers.  We also use one set of headers
  	for ioctl consumers and kernel bio-level consumers.
  
  sys/sys/param.h:
  	Bump __FreeBSD_version for sys/bio.h command changes, and inclusion
  	of SMR support.
  
  usr.sbin/Makefile:
  	Add the zonectl utility.
  
  usr.sbin/diskinfo/diskinfo.c
  	Add disk zoning capability to the 'diskinfo -v' output.
  
  usr.sbin/zonectl/Makefile:
  	Add zonectl makefile.
  
  usr.sbin/zonectl/zonectl.8
  	zonectl(8) man page.
  
  usr.sbin/zonectl/zonectl.c
  	The zonectl(8) utility.  This allows managing SCSI or ATA zoned
  	disks via the disk_zone.h API.  You can report zones, reset write
  	pointers, get parameters, etc.
  
  Sponsored by:	Spectra Logic
  Differential Revision:	https://reviews.freebsd.org/D6147
  Reviewed by:	wblock (documentation)

Added:
  head/sbin/camcontrol/epc.c   (contents, props changed)
  head/sbin/camcontrol/zone.c   (contents, props changed)
  head/sys/sys/disk_zone.h   (contents, props changed)
  head/usr.sbin/zonectl/
  head/usr.sbin/zonectl/Makefile   (contents, props changed)
  head/usr.sbin/zonectl/zonectl.8   (contents, props changed)
  head/usr.sbin/zonectl/zonectl.c   (contents, props changed)
Modified:
  head/sbin/camcontrol/Makefile
  head/sbin/camcontrol/camcontrol.8
  head/sbin/camcontrol/camcontrol.c
  head/sbin/camcontrol/camcontrol.h
  head/sbin/camcontrol/fwdownload.c
  head/sys/cam/ata/ata_all.c
  head/sys/cam/ata/ata_all.h
  head/sys/cam/ata/ata_da.c
  head/sys/cam/scsi/scsi_all.c
  head/sys/cam/scsi/scsi_all.h
  head/sys/cam/scsi/scsi_da.c
  head/sys/cam/scsi/scsi_da.h
  head/sys/dev/ahci/ahci.c
  head/sys/geom/eli/g_eli.c
  head/sys/geom/geom.h
  head/sys/geom/geom_dev.c
  head/sys/geom/geom_disk.c
  head/sys/geom/geom_disk.h
  head/sys/geom/geom_io.c
  head/sys/geom/geom_subr.c
  head/sys/kern/subr_devstat.c
  head/sys/sys/ata.h
  head/sys/sys/bio.h
  head/sys/sys/disk.h
  head/sys/sys/param.h
  head/usr.sbin/Makefile
  head/usr.sbin/diskinfo/diskinfo.c

Modified: head/sbin/camcontrol/Makefile
==============================================================================
--- head/sbin/camcontrol/Makefile	Thu May 19 14:00:18 2016	(r300206)
+++ head/sbin/camcontrol/Makefile	Thu May 19 14:08:36 2016	(r300207)
@@ -4,7 +4,7 @@ PACKAGE=runtime
 PROG=	camcontrol
 SRCS=	camcontrol.c util.c
 .if !defined(RELEASE_CRUNCH)
-SRCS+=	attrib.c fwdownload.c modeedit.c persist.c progress.c
+SRCS+=	attrib.c epc.c fwdownload.c modeedit.c persist.c progress.c zone.c
 .else
 CFLAGS+= -DMINIMALISTIC
 .endif

Modified: head/sbin/camcontrol/camcontrol.8
==============================================================================
--- head/sbin/camcontrol/camcontrol.8	Thu May 19 14:00:18 2016	(r300206)
+++ head/sbin/camcontrol/camcontrol.8	Thu May 19 14:08:36 2016	(r300207)
@@ -27,7 +27,7 @@
 .\"
 .\" $FreeBSD$
 .\"
-.Dd April 26, 2016
+.Dd May 16, 2016
 .Dt CAMCONTROL 8
 .Os
 .Sh NAME
@@ -323,6 +323,26 @@
 .Op Fl N
 .Op Fl T
 .Nm
+.Ic zone
+.Aq Fl c Ar cmd
+.Op Fl a
+.Op Fl l Ar lba
+.Op Fl o Ar rep_opts
+.Op Fl P Ar print_opts
+.Nm
+.Ic epc
+.Aq Fl c Ar cmd
+.Op Fl d
+.Op Fl D
+.Op Fl e
+.Op Fl H
+.Op Fl p Ar power_cond
+.Op Fl P
+.Op Fl r Ar restore_src
+.Op Fl s
+.Op Fl S Ar power_src
+.Op Fl T Ar timer
+.Nm
 .Ic help
 .Sh DESCRIPTION
 The
@@ -2052,11 +2072,11 @@ Valid types are:
 .Dq portal ,
 and
 .Dq drive .
-.El
 .It Fl V Ar vol_num
 Specify the number of the logical volume to operate on.
 If the media has multiple logical volumes, this will allow displaying
 or writing attributes on the given logical volume.
+.El
 .It Ic opcodes
 Issue the REPORT SUPPORTED OPCODES service action of the
 .Tn SCSI
@@ -2103,6 +2123,300 @@ for the given command or commands.
 The timeout values are in seconds.
 The timeout descriptor also includes a command-specific 
 .El
+.It Ic zone
+Manage
+.Tn SCSI
+and
+.Tn ATA
+Zoned Block devices.
+This allows managing devices that conform to the
+.Tn SCSI
+Zoned Block Commands (ZBC) and
+.Tn ATA
+Zoned ATA Command Set (ZAC)
+specifications.
+Devices using these command sets are usually hard drives using Shingled
+Magnetic Recording (SMR).
+There are three types of SMR drives:
+.Bl -tag -width 13n
+.It Drive Managed
+Drive Managed drives look and act just like a standard random access block
+device, but underneath, the drive reads and writes the bulk of its capacity
+using SMR zones.
+Sequential writes will yield better performance, but writing sequentially
+is not required.
+.It Host Aware
+Host Aware drives expose the underlying zone layout via
+.Tn SCSI
+or
+.Tn ATA
+commands and allow the host to manage the zone conditions.
+The host is not required to manage the zones on the drive, though.
+Sequential writes will yield better performance in Sequential Write
+Preferred zones, but the host can write randomly in those zones.
+.It Host Managed
+Host Managed drives expose the underlying zone layout via
+.Tn SCSI
+or
+.Tn ATA
+commands.
+The host is required to access the zones according to the rules described
+by the zone layout.
+Any commands that violate the rules will be returned with an error.
+.El
+.Pp
+SMR drives are divided into zones (typically in the range of 256MB each)
+that fall into three general categories:
+.Bl -tag -width 20n
+.It Conventional
+These are also known as Non Write Pointer zones.
+These zones can be randomly written without an unexpected performance penalty.
+.It Sequential Preferred
+These zones should be written sequentially starting at the write pointer
+for the zone.
+They may be written randomly.
+Writes that do not conform to the zone layout may be significantly slower
+than expected.
+.It Sequential Required
+These zones must be written sequentially.
+If they are not written sequentially, starting at the write pointer, the
+command will fail.
+.El
+.Pp
+.Bl -tag -width 12n
+.It Fl c Ar cmd
+Specify the zone subcommand:
+.Bl -tag -width 6n
+.It rz
+Issue the Report Zones command.
+All zones are returned by default.
+Specify report options with
+.Fl o
+and printing options with
+.Fl P .
+Specify the starting LBA with
+.Fl l .
+Note that
+.Dq reportzones
+is also accepted as a command argument.
+.It open
+Explicitly open the zone specified by the starting LBA.
+.It close
+Close the zone specified by starting LBA.
+.It finish
+Finish the zone specified by the starting LBA.
+.It rwp
+Reset the write pointer for the zone specified by the starting LBA.
+.El
+.It Fl a
+For the Open, Close, Finish, and Reset Write Pointer operations, apply the
+operation to all zones on the drive.
+.It Fl l Ar lba
+Specify the starting LBA.
+For the Report Zones command, this tells the drive to report starting with
+the zone that starts at the given LBA.
+For the other commands, this allows the user to identify the zone requested
+by its starting LBA.
+The LBA may be specified in decimal, hexadecimal or octal notation.
+.It Fl o Ar rep_opt
+For the Report Zones command, specify a subset of zones to report.
+.Bl -tag -width 8n
+.It all
+Report all zones.
+This is the default.
+.It emtpy
+Report only empty zones.
+.It imp_open
+Report zones that are implicitly open.
+This means that the host has sent a write to the zone without explicitly
+opening the zone.
+.It exp_open
+Report zones that are explicitly open.
+.It closed
+Report zones that have been closed by the host.
+.It full
+Report zones that are full.
+.It ro
+Report zones that are in the read only state.
+Note that
+.Dq readonly
+is also accepted as an argument.
+.It offline
+Report zones that are in the offline state.
+.It reset
+Report zones where the device recommends resetting write pointers.
+.It nonseq
+Report zones that have the Non Sequential Resources Active flag set.
+These are zones that are Sequential Write Preferred, but have been written
+non-sequentially.
+.It nonwp
+Report Non Write Pointer zones, also known as Conventional zones.
+.El
+.It Fl P Ar print_opt
+Specify a printing option for Report Zones:
+.Bl -tag -width 7n
+.It normal
+Normal Report Zones output.
+This is the default.
+The summary and column headings are printed, fields are separated by spaces
+and the fields themselves may contain spaces.
+.It summary
+Just print the summary:  the number of zones, the maximum LBA (LBA of the
+last logical block on the drive), and the value of the 
+.Dq same 
+field.
+The
+.Dq same
+field describes whether the zones on the drive are all identical, all
+different, or whether they are the same except for the last zone, etc.
+.It script
+Print the zones in a script friendly format.
+The summary and column headings are omitted, the fields are separated by
+commas, and the fields do not contain spaces.
+The fields contain underscores where spaces would normally be used.
+.El
+.El
+.It Ic epc
+Issue
+.Tn ATA
+Extended Power Conditions (EPC) feature set commands.
+This only works on
+.Tn ATA
+protocol drives, and will not work on
+.Tn SCSI
+protocol drives.
+It will work on
+.Tn SATA
+drives behind a
+.Tn SCSI
+to
+.Tn ATA
+translation layer (SAT).
+It may be helpful to read the ATA Command Set - 4 (ACS-4) description of
+the Extended Power Conditions feature set, available at t13.org, to
+understand the details of this particular 
+.Nm
+subcommand.
+.Bl -tag -width 6n
+.It Fl c Ar cmd
+Specify the epc subcommand
+.Bl -tag -width 7n
+.It restore
+Restore drive power condition settings.
+.Bl -tag -width 6n
+.It Fl r Ar src
+Specify the source for the restored power settings, either
+.Dq default
+or
+.Dq saved .
+This argument is required.
+.It Fl s
+Save the settings.
+This only makes sense to specify when restoring from defaults.
+.El
+.It goto
+Go to the specified power condition.
+.Bl -tag -width 7n
+.It Fl p Ar cond
+Specify the power condition: Idle_a, Idle_b, Idle_c, Standby_y, Standby_z.
+This argument is required.
+.It Fl D
+Specify delayed entry to the power condition.
+The drive, if it supports this, can enter the power condition after the
+command completes.
+.It Fl H
+Hold the power condition.
+If the drive supports this option, it will hold the power condition and
+reject all commands that would normally cause it to exit that power
+condition.
+.El
+.It timer
+Set the timer value for a power condition and enable or disable the
+condition.
+See the
+.Dq list
+display described below to see what the current timer settings are for each
+Idle and Standby mode supported by the drive.
+.Bl -tag -width 8n
+.It Fl e
+Enable the power condition.
+One of 
+.Fl e
+or
+.Fl d
+is required.
+.It Fl d
+Disable the power condition.
+One of
+.Fl d
+or
+.Fl e
+is required.
+.It Fl T Ar timer
+Specify the timer in seconds.
+The user may specify a timer as a floating point number with a maximum
+supported resolution of tenths of a second.
+Drives may or may not support sub-second timer values.
+.It Fl p Ar cond
+Specify the power condition: Idle_a, Idle_b, Idle_c, Standby_y, Standby_z.
+This argument is required.
+.It Fl s
+Save the timer and power condition enable/disable state.
+By default, if this option is not specified, only the current values for
+this power condition will be affected.
+.El
+.It state
+Enable or disable a particular power condition.
+.Bl -tag -width 7n
+.It Fl p Ar cond
+Specify the power condition: Idle_a, Idle_b, Idle_c, Standby_y, Standby_z.
+This argument is required.
+.It Fl s
+Save the power condition enable/disable state.
+By default, if this option is not specified, only the current values for
+this power condition will be affected.
+.El
+.It enable
+Enable the Extended Power Condition (EPC) feature set.
+.It disable
+Disable the Extended Power Condition (EPC) feature set.
+.It source
+Specify the EPC power source.
+.Bl -tag -width 6n
+.It Fl S Ar src
+Specify the power source, either
+.Dq battery
+or
+.Dq nonbattery .
+.El
+.It status
+Get the current status of several parameters related to the Extended Power
+Condition (EPC) feature set, including whether APM and EPC are supported
+and enabled, whether Low Power Standby is supported, whether setting the
+EPC power source is supported, whether Low Power Standby is supported and
+the current power condition.
+.Bl -tag -width 3n
+.It Fl P
+Only report the current power condition.
+Some drives will exit their current power condition if a command other than
+the
+.Tn ATA
+CHECK POWER MODE command is received.
+If this flag is specified,
+.Nm
+will only issue the
+.Tn ATA
+CHECK POWER MODE command to the drive.
+.El
+.It list
+Display the
+.Tn ATA
+Power Conditions log (Log Address 0x08).
+This shows the list of Idle and Standby power conditions the drive
+supports, and a number of parameters about each condition, including
+whether it is enabled and what the timer value is.
+.El
+.El
 .It Ic help
 Print out verbose usage information.
 .El
@@ -2336,6 +2650,86 @@ This will read and decode the attribute 
 in tape drive sa0, and will display any
 .Tn SCSI
 errors that result.
+.Pp
+.Bd -literal -offset indent
+camcontrol zone da0 -v -c rz -P summary
+.Ed
+.Pp
+This will request the SMR zone list from disk da0, and print out a
+summary of the zone parameters, and display any
+.Tn SCSI
+or
+.Tn ATA
+errors that result.
+.Pp
+.Bd -literal -offset indent
+camcontrol zone da0 -v -c rz -o reset
+.Ed
+.Pp
+This will request the list of SMR zones that should have their write
+pointer reset from the disk da0, and display any
+.Tn SCSI
+or
+.Tn ATA
+errors that result.
+.Pp
+.Bd -literal -offset indent
+camcontrol zone da0 -v -c rwp -l 0x2c80000
+.Ed
+.Pp
+This will issue the Reset Write Pointer command to disk da0 for the zone
+that starts at LBA 0x2c80000 and display any
+.Tn SCSI
+or
+.Tn ATA
+errors that result.
+.Pp
+.Bd -literal -offset indent
+camcontrol epc ada0 -c timer -T 60.1 -p Idle_a -e -s
+.Ed
+.Pp
+Set the timer for the Idle_a power condition on drive
+.Pa ada0
+to 60.1 seconds, enable that particular power condition, and save the timer
+value and the enabled state of the power condition.
+.Pp
+.Bd -literal -offset indent
+camcontrol epc da4 -c goto -p Standby_z -H
+.Ed
+.Pp
+Tell drive
+.Pa da4
+to go to the Standby_z power state (which is
+the drive's lowest power state) and hold in that state until it is 
+explicitly released by another
+.Cm goto
+command.
+.Pp
+.Bd -literal -offset indent
+camcontrol epc da2 -c status -P
+.Ed
+.Pp
+Report only the power state of
+drive
+.Pa da2 .
+Some drives will power up in response to the commands sent by the 
+.Pa status
+subcommand, and the
+.Fl P
+option causes
+.Nm
+to only send the
+.Tn ATA 
+CHECK POWER MODE command, which should not trigger a change in the drive's
+power state.
+.Pp
+.Bd -literal -offset indent
+camcontrol epc ada0 -c list
+.Ed
+.Pp
+Display the ATA Power Conditions log (Log Address 0x08) for
+drive
+.Pa ada0 .
 .Sh SEE ALSO
 .Xr cam 3 ,
 .Xr cam_cdbparse 3 ,

Modified: head/sbin/camcontrol/camcontrol.c
==============================================================================
--- head/sbin/camcontrol/camcontrol.c	Thu May 19 14:00:18 2016	(r300206)
+++ head/sbin/camcontrol/camcontrol.c	Thu May 19 14:08:36 2016	(r300207)
@@ -101,7 +101,9 @@ typedef enum {
 	CAM_CMD_AAM		= 0x00000022,
 	CAM_CMD_ATTRIB		= 0x00000023,
 	CAM_CMD_OPCODES		= 0x00000024,
-	CAM_CMD_REPROBE		= 0x00000025
+	CAM_CMD_REPROBE		= 0x00000025,
+	CAM_CMD_ZONE		= 0x00000026,
+	CAM_CMD_EPC		= 0x00000027
 } cam_cmdmask;
 
 typedef enum {
@@ -230,6 +232,8 @@ static struct camcontrol_opts option_tab
 	{"persist", CAM_CMD_PERSIST, CAM_ARG_NONE, "ai:I:k:K:o:ps:ST:U"},
 	{"attrib", CAM_CMD_ATTRIB, CAM_ARG_NONE, "a:ce:F:p:r:s:T:w:V:"},
 	{"opcodes", CAM_CMD_OPCODES, CAM_ARG_NONE, "No:s:T"},
+	{"zone", CAM_CMD_ZONE, CAM_ARG_NONE, "ac:l:No:P:"},
+	{"epc", CAM_CMD_EPC, CAM_ARG_NONE, "c:dDeHp:Pr:sS:T:"},
 #endif /* MINIMALISTIC */
 	{"help", CAM_CMD_USAGE, CAM_ARG_NONE, NULL},
 	{"-?", CAM_CMD_USAGE, CAM_ARG_NONE, NULL},
@@ -5071,13 +5075,16 @@ bailout:
 	return (retval);
 }
 
-void
+int
 build_ata_cmd(union ccb *ccb, uint32_t retry_count, uint32_t flags,
     uint8_t tag_action, uint8_t protocol, uint8_t ata_flags, uint16_t features,
-    uint16_t sector_count, uint64_t lba, uint8_t command, uint8_t *data_ptr,
-    uint16_t dxfer_len, uint8_t sense_len, uint32_t timeout,
+    uint16_t sector_count, uint64_t lba, uint8_t command, uint32_t auxiliary,
+    uint8_t *data_ptr, uint32_t dxfer_len, uint8_t *cdb_storage,
+    size_t cdb_storage_len, uint8_t sense_len, uint32_t timeout,
     int is48bit, camcontrol_devtype devtype)
 {
+	int retval = 0;
+
 	if (devtype == CC_DT_ATA) {
 		cam_fill_ataio(&ccb->ataio,
 		    /*retries*/ retry_count,
@@ -5093,11 +5100,24 @@ build_ata_cmd(union ccb *ccb, uint32_t r
 		else
 			ata_28bit_cmd(&ccb->ataio, command, features, lba,
 			    sector_count);
+
+		if (auxiliary != 0) {
+			ccb->ataio.ata_flags |= ATA_FLAG_AUX;
+			ccb->ataio.aux = auxiliary;
+		}
+
+		if (ata_flags & AP_FLAG_CHK_COND)
+			ccb->ataio.cmd.flags |= CAM_ATAIO_NEEDRESULT;
+
+		if ((protocol & AP_PROTO_MASK) == AP_PROTO_DMA)
+			ccb->ataio.cmd.flags |= CAM_ATAIO_DMA;
+		else if ((protocol & AP_PROTO_MASK) == AP_PROTO_FPDMA)
+			ccb->ataio.cmd.flags |= CAM_ATAIO_FPDMA;
 	} else {
 		if (is48bit || lba > ATA_MAX_28BIT_LBA)
 			protocol |= AP_EXTEND;
 
-		scsi_ata_pass_16(&ccb->csio,
+		retval = scsi_ata_pass(&ccb->csio,
 		    /*retries*/ retry_count,
 		    /*cbfcnp*/ NULL,
 		    /*flags*/ flags,
@@ -5108,14 +5128,158 @@ build_ata_cmd(union ccb *ccb, uint32_t r
 		    /*sector_count*/ sector_count, 
 		    /*lba*/ lba,
 		    /*command*/ command,
+		    /*device*/ 0,
+		    /*icc*/ 0,
+		    /*auxiliary*/ auxiliary,
 		    /*control*/ 0,
 		    /*data_ptr*/ data_ptr,
 		    /*dxfer_len*/ dxfer_len,
+		    /*cdb_storage*/ cdb_storage,
+		    /*cdb_storage_len*/ cdb_storage_len,
+		    /*minimum_cmd_size*/ 0,
 		    /*sense_len*/ sense_len,
 		    /*timeout*/ timeout);
 	}
+
+	return (retval);
 }
 
+int
+get_ata_status(struct cam_device *dev, union ccb *ccb, uint8_t *error,
+	       uint16_t *count, uint64_t *lba, uint8_t *device, uint8_t *status)
+{
+	int retval = 0;
+
+	switch (ccb->ccb_h.func_code) {
+	case XPT_SCSI_IO: {
+		uint8_t opcode;
+		int error_code = 0, sense_key = 0, asc = 0, ascq = 0;
+
+		/*
+		 * In this case, we have SCSI ATA PASS-THROUGH command, 12
+		 * or 16 byte, and need to see what 
+		 */
+		if (ccb->ccb_h.flags & CAM_CDB_POINTER)
+			opcode = ccb->csio.cdb_io.cdb_ptr[0];
+		else
+			opcode = ccb->csio.cdb_io.cdb_bytes[0];
+		if ((opcode != ATA_PASS_12)
+		 && (opcode != ATA_PASS_16)) {
+			retval = 1;
+			warnx("%s: unsupported opcode %02x", __func__, opcode);
+			goto bailout;
+		}
+
+		retval = scsi_extract_sense_ccb(ccb, &error_code, &sense_key,
+						&asc, &ascq);
+		/* Note: the _ccb() variant returns 0 for an error */
+		if (retval == 0) {
+			retval = 1;
+			goto bailout;
+		} else
+			retval = 0;
+
+		switch (error_code) {
+		case SSD_DESC_CURRENT_ERROR:
+		case SSD_DESC_DEFERRED_ERROR: {
+			struct scsi_sense_data_desc *sense;
+			struct scsi_sense_ata_ret_desc *desc;
+			uint8_t *desc_ptr;
+
+			sense = (struct scsi_sense_data_desc *)
+			    &ccb->csio.sense_data;
+
+			desc_ptr = scsi_find_desc(sense, ccb->csio.sense_len -
+			    ccb->csio.sense_resid, SSD_DESC_ATA);
+			if (desc_ptr == NULL) {
+				cam_error_print(dev, ccb, CAM_ESF_ALL,
+				    CAM_EPF_ALL, stderr);
+				retval = 1;
+				goto bailout;
+			}
+			desc = (struct scsi_sense_ata_ret_desc *)desc_ptr;
+
+			*error = desc->error;
+			*count = (desc->count_15_8 << 8) |
+				  desc->count_7_0;
+			*lba = ((uint64_t)desc->lba_47_40 << 40) |
+			       ((uint64_t)desc->lba_39_32 << 32) |
+			       (desc->lba_31_24 << 24) |
+			       (desc->lba_23_16 << 16) |
+			       (desc->lba_15_8  <<  8) |
+			        desc->lba_7_0;
+			*device = desc->device;
+			*status = desc->status;
+
+			/*
+			 * If the extend bit isn't set, the result is for a
+			 * 12-byte ATA PASS-THROUGH command or a 16 or 32 byte
+			 * command without the extend bit set.  This means
+			 * that the device is supposed to return 28-bit
+			 * status.  The count field is only 8 bits, and the
+			 * LBA field is only 8 bits.
+			 */
+			if ((desc->flags & SSD_DESC_ATA_FLAG_EXTEND) == 0){
+				*count &= 0xff;
+				*lba &= 0x0fffffff;
+			}
+			break;
+		}
+		case SSD_CURRENT_ERROR:
+		case SSD_DEFERRED_ERROR: {
+#if 0
+			struct scsi_sense_data_fixed *sense;
+#endif
+			/*
+			 * XXX KDM need to support fixed sense data.
+			 */
+			warnx("%s: Fixed sense data not supported yet",
+			    __func__);
+			retval = 1;
+			goto bailout;
+			break; /*NOTREACHED*/
+		}
+		default:
+			retval = 1;
+			goto bailout;
+			break;
+		}
+
+		break;
+	}
+	case XPT_ATA_IO: {
+		struct ata_res *res;
+
+		/*
+		 * In this case, we have an ATA command, and we need to
+		 * fill in the requested values from the result register
+		 * set.
+		 */
+		res = &ccb->ataio.res;
+		*error = res->error;
+		*status = res->status;
+		*device = res->device; 
+		*count = res->sector_count;
+		*lba = (res->lba_high << 16) |
+		       (res->lba_mid << 8) |
+		       (res->lba_low);
+		if (res->flags & CAM_ATAIO_48BIT) {
+			*count |= (res->sector_count_exp << 8);
+			*lba |= (res->lba_low_exp << 24) |
+				((uint64_t)res->lba_mid_exp << 32) |
+				((uint64_t)res->lba_high_exp << 40);
+		} else {
+			*lba |= (res->device & 0xf) << 24;
+		}
+		break;
+	}
+	default:
+		retval = 1;
+		break;
+	}
+bailout:
+	return (retval);
+}
 
 static void
 cpi_print(struct ccb_pathinq *cpi)
@@ -8774,6 +8938,11 @@ usage(int printlong)
 "                              [-p part][-s start][-T type][-V vol]\n"
 "        camcontrol opcodes    [dev_id][generic args][-o opcode][-s SA]\n"
 "                              [-N][-T]\n"
+"        camcontrol zone       [dev_id][generic args]<-c cmd> [-a] [-l LBA]\n"
+"                              [-o rep_opts] [-P print_opts]\n"
+"        camcontrol epc        [dev_id][generic_args]<-c cmd> [-d] [-D] [-e]\n"
+"                              [-H] [-p power_cond] [-P] [-r rst_src] [-s]\n"
+"                              [-S power_src] [-T timer]\n"
 #endif /* MINIMALISTIC */
 "        camcontrol help\n");
 	if (!printlong)
@@ -8816,6 +8985,8 @@ usage(int printlong)
 "persist     send the SCSI PERSISTENT RESERVE IN or OUT commands\n"
 "attrib      send the SCSI READ or WRITE ATTRIBUTE commands\n"
 "opcodes     send the SCSI REPORT SUPPORTED OPCODES command\n"
+"zone        manage Zoned Block (Shingled) devices\n"
+"epc         send ATA Extended Power Conditions commands\n"
 "help        this message\n"
 "Device Identifiers:\n"
 "bus:target        specify the bus and target, lun defaults to 0\n"
@@ -8986,6 +9157,27 @@ usage(int printlong)
 "-s service_action specify the service action for the opcode\n"
 "-N                do not return SCSI error for unsupported SA\n"
 "-T                request nominal and recommended timeout values\n"
+"zone arguments:\n"
+"-c cmd            required: rz, open, close, finish, or rwp\n"
+"-a                apply the action to all zones\n"
+"-l LBA            specify the zone starting LBA\n"
+"-o rep_opts       report zones options: all, empty, imp_open, exp_open,\n"
+"                  closed, full, ro, offline, reset, nonseq, nonwp\n"
+"-P print_opt      report zones printing:  normal, summary, script\n"
+"epc arguments:\n"
+"-c cmd            required: restore, goto, timer, state, enable, disable,\n"
+"                  source, status, list\n"
+"-d                disable power mode (timer, state)\n"
+"-D                delayed entry (goto)\n"
+"-e                enable power mode (timer, state)\n"
+"-H                hold power mode (goto)\n"
+"-p power_cond     Idle_a, Idle_b, Idle_c, Standby_y, Standby_z (timer,\n"
+"                  state, goto)\n"
+"-P                only display power mode (status)\n"
+"-r rst_src        restore settings from: default, saved (restore)\n"
+"-s                save mode (timer, state, restore)\n"
+"-S power_src      set power source: battery, nonbattery (source)\n"
+"-T timer          set timer, seconds, .1 sec resolution (timer)\n"
 );
 #endif /* MINIMALISTIC */
 }
@@ -9341,7 +9533,14 @@ main(int argc, char **argv)
 		case CAM_CMD_REPROBE:
 			error = scsireprobe(cam_dev);
 			break;
-
+		case CAM_CMD_ZONE:
+			error = zone(cam_dev, argc, argv, combinedopt,
+			    retry_count, timeout, arglist & CAM_ARG_VERBOSE);
+			break;
+		case CAM_CMD_EPC:
+			error = epc(cam_dev, argc, argv, combinedopt,
+			    retry_count, timeout, arglist & CAM_ARG_VERBOSE);
+			break;
 #endif /* MINIMALISTIC */
 		case CAM_CMD_USAGE:
 			usage(1);

Modified: head/sbin/camcontrol/camcontrol.h
==============================================================================
--- head/sbin/camcontrol/camcontrol.h	Thu May 19 14:00:18 2016	(r300206)
+++ head/sbin/camcontrol/camcontrol.h	Thu May 19 14:08:36 2016	(r300207)
@@ -63,16 +63,24 @@ int dev_has_vpd_page(struct cam_device *
 		     int timeout, int verbosemode);
 int get_device_type(struct cam_device *dev, int retry_count, int timeout,
 		    int verbosemode, camcontrol_devtype *devtype);
-void build_ata_cmd(union ccb *ccb, uint32_t retry_count, uint32_t flags,
-		   uint8_t tag_action, uint8_t protocol, uint8_t ata_flags,
-		   uint16_t features, uint16_t sector_count, uint64_t lba,
-		   uint8_t command, uint8_t *data_ptr, uint16_t dxfer_len,
-		   uint8_t sense_len, uint32_t timeout, int is48bit,
-		   camcontrol_devtype devtype);
+int build_ata_cmd(union ccb *ccb, uint32_t retry_count, uint32_t flags,
+		  uint8_t tag_action, uint8_t protocol, uint8_t ata_flags,
+		  uint16_t features, uint16_t sector_count, uint64_t lba,
+		  uint8_t command, uint32_t auxiliary, uint8_t *data_ptr,
+		  uint32_t dxfer_len, uint8_t *cdb_storage,
+		  size_t cdb_storage_len, uint8_t sense_len, uint32_t timeout,
+		  int is48bit, camcontrol_devtype devtype);
+int get_ata_status(struct cam_device *dev, union ccb *ccb, uint8_t *error,
+		   uint16_t *count, uint64_t *lba, uint8_t *device,
+		   uint8_t *status);
 int camxferrate(struct cam_device *device);
 int fwdownload(struct cam_device *device, int argc, char **argv,
 	       char *combinedopt, int printerrors, int retry_count,
 	       int timeout);
+int zone(struct cam_device *device, int argc, char **argv, char *combinedopt,
+	 int retry_count, int timeout, int verbosemode);
+int epc(struct cam_device *device, int argc, char **argv, char *combinedopt,
+	int retry_count, int timeout, int verbosemode);
 void mode_sense(struct cam_device *device, int mode_page, int page_control,
 		int dbd, int retry_count, int timeout, u_int8_t *data,
 		int datalen);

Added: head/sbin/camcontrol/epc.c
==============================================================================
--- /dev/null	00:00:00 1970	(empty, because file is newly added)
+++ head/sbin/camcontrol/epc.c	Thu May 19 14:08:36 2016	(r300207)
@@ -0,0 +1,857 @@
+/*-
+ * Copyright (c) 2016 Spectra Logic Corporation
+ * All rights reserved.
+ *
+ * Redistribution and use in source and binary forms, with or without
+ * modification, are permitted provided that the following conditions
+ * are met:
+ * 1. Redistributions of source code must retain the above copyright
+ *    notice, this list of conditions, and the following disclaimer,
+ *    without modification.
+ * 2. Redistributions in binary form must reproduce at minimum a disclaimer
+ *    substantially similar to the "NO WARRANTY" disclaimer below
+ *    ("Disclaimer") and any redistribution must be conditioned upon
+ *    including a substantially similar Disclaimer requirement for further
+ *    binary redistribution.
+ *
+ * NO WARRANTY
+ * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+ * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+ * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTIBILITY AND FITNESS FOR
+ * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+ * HOLDERS OR CONTRIBUTORS BE LIABLE FOR SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
+ * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
+ * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
+ * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
+ * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING
+ * IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
+ * POSSIBILITY OF SUCH DAMAGES.
+ *
+ * Authors: Ken Merry           (Spectra Logic Corporation)
+ */
+/*
+ * ATA Extended Power Conditions (EPC) support
+ */
+
+#include <sys/cdefs.h>
+__FBSDID("$FreeBSD$");
+
+#include <sys/ioctl.h>
+#include <sys/stdint.h>
+#include <sys/types.h>
+#include <sys/endian.h>
+#include <sys/sbuf.h>
+#include <sys/queue.h>
+#include <sys/ata.h>
+
+#include <stdio.h>
+#include <stdlib.h>
+#include <inttypes.h>
+#include <unistd.h>
+#include <string.h>
+#include <strings.h>
+#include <fcntl.h>
+#include <ctype.h>
+#include <limits.h>
+#include <err.h>
+#include <locale.h>
+
+#include <cam/cam.h>
+#include <cam/cam_debug.h>
+#include <cam/cam_ccb.h>
+#include <cam/scsi/scsi_all.h>
+#include <cam/scsi/scsi_da.h>
+#include <cam/scsi/scsi_pass.h>
+#include <cam/scsi/scsi_message.h>
+#include <camlib.h>
+#include "camcontrol.h"
+
+typedef enum {
+	EPC_ACTION_NONE		= 0x00,
+	EPC_ACTION_LIST		= 0x01,
+	EPC_ACTION_TIMER_SET	= 0x02,
+	EPC_ACTION_IMMEDIATE	= 0x03,
+	EPC_ACTION_GETMODE	= 0x04
+} epc_action;
+
+static struct scsi_nv epc_flags[] = {
+	{ "Supported", ATA_PCL_COND_SUPPORTED },
+	{ "Saveable", ATA_PCL_COND_SUPPORTED },
+	{ "Changeable", ATA_PCL_COND_CHANGEABLE },
+	{ "Default Timer Enabled", ATA_PCL_DEFAULT_TIMER_EN },
+	{ "Saved Timer Enabled", ATA_PCL_SAVED_TIMER_EN },
+	{ "Current Timer Enabled", ATA_PCL_CURRENT_TIMER_EN },
+	{ "Hold Power Condition Not Supported", ATA_PCL_HOLD_PC_NOT_SUP }
+};
+
+static struct scsi_nv epc_power_cond_map[] = {
+	{ "Standby_z", ATA_EPC_STANDBY_Z },
+	{ "z", ATA_EPC_STANDBY_Z },
+	{ "Standby_y", ATA_EPC_STANDBY_Y },
+	{ "y", ATA_EPC_STANDBY_Y },
+	{ "Idle_a", ATA_EPC_IDLE_A },
+	{ "a", ATA_EPC_IDLE_A },
+	{ "Idle_b", ATA_EPC_IDLE_B },
+	{ "b", ATA_EPC_IDLE_B },
+	{ "Idle_c", ATA_EPC_IDLE_C },
+	{ "c", ATA_EPC_IDLE_C }
+};
+
+static struct scsi_nv epc_rst_val[] = {
+	{ "default", ATA_SF_EPC_RST_DFLT },
+	{ "saved", 0}
+};
+
+static struct scsi_nv epc_ps_map[] = {
+	{ "unknown", ATA_SF_EPC_SRC_UNKNOWN },
+	{ "battery", ATA_SF_EPC_SRC_BAT },
+	{ "notbattery", ATA_SF_EPC_SRC_NOT_BAT }
+};
+
+/*
+ * These aren't subcommands of the EPC SET FEATURES subcommand, but rather
+ * commands that determine the current capabilities and status of the drive.
+ * The EPC subcommands are limited to 4 bits, so we won't collide with any
+ * future values.
+ */
+#define	CCTL_EPC_GET_STATUS	0x8001
+#define	CCTL_EPC_LIST		0x8002
+
+static struct scsi_nv epc_cmd_map[] = {
+	{ "restore", ATA_SF_EPC_RESTORE },
+	{ "goto", ATA_SF_EPC_GOTO },
+	{ "timer", ATA_SF_EPC_SET_TIMER },
+	{ "state", ATA_SF_EPC_SET_STATE },
+	{ "enable", ATA_SF_EPC_ENABLE },
+	{ "disable", ATA_SF_EPC_DISABLE },
+	{ "source", ATA_SF_EPC_SET_SOURCE },
+	{ "status", CCTL_EPC_GET_STATUS },
+	{ "list", CCTL_EPC_LIST }
+};
+
+static int epc_list(struct cam_device *device, camcontrol_devtype devtype,
+		    union ccb *ccb, int retry_count, int timeout);
+static void epc_print_pcl_desc(struct ata_power_cond_log_desc *desc,
+			       const char *prefix);
+static int epc_getmode(struct cam_device *device, camcontrol_devtype devtype,
+		       union ccb *ccb, int retry_count, int timeout,
+		       int power_only);
+static int epc_set_features(struct cam_device *device,
+			    camcontrol_devtype devtype, union ccb *ccb,
+			    int retry_count, int timeout, int action,
+			    int power_cond, int timer, int enable, int save,
+			    int delayed_entry, int hold, int power_src,
+			    int restore_src);
+
+static void
+epc_print_pcl_desc(struct ata_power_cond_log_desc *desc, const char *prefix)
+{
+	int first;
+	unsigned int i,	num_printed, max_chars;
+
+	first = 1;
+	max_chars = 75;
+
+	num_printed = printf("%sFlags: ", prefix);
+	for (i = 0; i < (sizeof(epc_flags) / sizeof(epc_flags[0])); i++) {
+		if ((desc->flags & epc_flags[i].value) == 0)
+			continue;
+		if (first == 0) {
+			num_printed += printf(", ");
+		}
+		if ((num_printed + strlen(epc_flags[i].name)) > max_chars) {
+			printf("\n");
+			num_printed = printf("%s       ", prefix);
+		}
+		num_printed += printf("%s", epc_flags[i].name);
+		first = 0;
+	}
+	if (first != 0)
+		printf("None");
+	printf("\n");
+
+	printf("%sDefault timer setting: %.1f sec\n", prefix,
+	    (double)(le32dec(desc->default_timer) / 10));
+	printf("%sSaved timer setting: %.1f sec\n", prefix,
+	    (double)(le32dec(desc->saved_timer) / 10));
+	printf("%sCurrent timer setting: %.1f sec\n", prefix,
+	    (double)(le32dec(desc->current_timer) / 10));
+	printf("%sNominal time to active: %.1f sec\n", prefix,
+	    (double)(le32dec(desc->nom_time_to_active) / 10));
+	printf("%sMinimum timer: %.1f sec\n", prefix,
+	    (double)(le32dec(desc->min_timer) / 10));
+	printf("%sMaximum timer: %.1f sec\n", prefix,
+	    (double)(le32dec(desc->max_timer) / 10));
+	printf("%sNumber of transitions to power condition: %u\n", prefix,
+	    le32dec(desc->num_transitions_to_pc));
+	printf("%sHours in power condition: %u\n", prefix,
+	    le32dec(desc->hours_in_pc));
+}
+
+static int
+epc_list(struct cam_device *device, camcontrol_devtype devtype, union ccb *ccb,
+	 int retry_count, int timeout)
+{
+	struct ata_power_cond_log_idle *idle_log;
+	struct ata_power_cond_log_standby *standby_log;
+	uint8_t log_buf[sizeof(*idle_log) + sizeof(*standby_log)];
+	uint16_t log_addr = ATA_POWER_COND_LOG;
+	uint16_t page_number = ATA_PCL_IDLE;
+	uint64_t lba;
+	int error = 0;
+
+	lba = (((uint64_t)page_number & 0xff00) << 32) |
+	      ((page_number & 0x00ff) << 8) |
+	      (log_addr & 0xff);
+
+	error = build_ata_cmd(ccb,
+	    /*retry_count*/ retry_count,
+	    /*flags*/ CAM_DIR_IN | CAM_DEV_QFRZDIS,
+	    /*tag_action*/ MSG_SIMPLE_Q_TAG,
+	    /*protocol*/ AP_PROTO_DMA | AP_EXTEND,
+	    /*ata_flags*/ AP_FLAG_BYT_BLOK_BLOCKS |
+			  AP_FLAG_TLEN_SECT_CNT |
+			  AP_FLAG_TDIR_FROM_DEV,
+	    /*features*/ 0,
+	    /*sector_count*/ 2,
+	    /*lba*/ lba,
+	    /*command*/ ATA_READ_LOG_DMA_EXT,
+	    /*auxiliary*/ 0,
+	    /*data_ptr*/ log_buf,
+	    /*dxfer_len*/ sizeof(log_buf),
+	    /*cdb_storage*/ NULL,

*** DIFF OUTPUT TRUNCATED AT 1000 LINES ***


More information about the svn-src-all mailing list