1 /*
   2  * CDDL HEADER START
   3  *
   4  * The contents of this file are subject to the terms of the
   5  * Common Development and Distribution License (the "License").
   6  * You may not use this file except in compliance with the License.
   7  *
   8  * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
   9  * or http://www.opensolaris.org/os/licensing.
  10  * See the License for the specific language governing permissions
  11  * and limitations under the License.
  12  *
  13  * When distributing Covered Code, include this CDDL HEADER in each
  14  * file and include the License file at usr/src/OPENSOLARIS.LICENSE.
  15  * If applicable, add the following below this CDDL HEADER, with the
  16  * fields enclosed by brackets "[]" replaced with your own identifying
  17  * information: Portions Copyright [yyyy] [name of copyright owner]
  18  *
  19  * CDDL HEADER END
  20  */
  21 /*
  22  * Copyright 2010 Sun Microsystems, Inc.  All rights reserved.
  23  * Use is subject to license terms.
  24  */
  25 
  26 /*
  27  * SCSI device structure.
  28  *
  29  * All SCSI target drivers will have one of these per target/lun/sfunc.
  30  * It is allocated and initialized by the framework SCSA HBA nexus code
  31  * for each SCSI target dev_info_t node during HBA nexus DDI_CTLOPS_INITCHILD
  32  * processing of a child device node just prior to tran_tgt_init(9E).  A
  33  * pointer the the scsi_device(9S) structure is stored in the
  34  * driver-private data field of the target device's dev_info_t node (in
  35  * 'devi_driver_data') and can be retrieved by ddi_get_driver_private(9F).
  36  */
  37 #ifndef _SYS_SCSI_CONF_DEVICE_H
  38 #define _SYS_SCSI_CONF_DEVICE_H
  39 
  40 #include <sys/scsi/scsi_types.h>
  41 
  42 #ifdef  __cplusplus
  43 extern "C" {
  44 #endif
  45 
  46 struct scsi_device {
  47         /*
  48          * Routing information for a SCSI device (target/lun/sfunc).
  49          *
  50          * The scsi_address(9S) structure contains a pointer to the
  51          * scsi_hba_tran(9S) of the transport.
  52          *
  53          * For devices below an HBA that uses SCSI_HBA_ADDR_SPI
  54          * unit-addressing, the scsi_address(9S) information contains
  55          * decoded target/lun addressing information.
  56          *
  57          * For devices below an HBA that uses SCSI_HBA_ADDR_COMPLEX
  58          * unit-addressing, the scsi_address(9S) information contains a
  59          * pointer to the scsi_device(9S) structure and the HBA can maintain
  60          * its private per-unit-address/per-scsi_device information using
  61          * scsi_address_device(9F) and scsi_device_hba_private_[gs]et(9F).
  62          *
  63          * NOTE: The scsi_address(9S) structure gets structure-copied into
  64          * the scsi_pkt(9S) 'pkt_address' field. Having a pointer to the
  65          * scsi_device(9S) structure within the scsi_address(9S) allows
  66          * the SCSA framework to reflect generic changes in device state
  67          * at scsi_pkt_comp(9F) time (given just a scsi_pkt(9S) pointer).
  68          *
  69          * NOTE: The older SCSI_HBA_TRAN_CLONE method of supporting
  70          * SCSI-3 devices is still supported, but use is discouraged.
  71          */
  72         struct scsi_address     sd_address;
  73 
  74         /* Cross-reference to target device's dev_info_t. */
  75         dev_info_t              *sd_dev;
  76 
  77         /*
  78          * Target driver mutex for this device. Initialized by SCSA HBA
  79          * framework code prior to probe(9E) or attach(9E) of scsi_device.
  80          */
  81         kmutex_t                sd_mutex;
  82 
  83         /*
  84          * SCSA private: use is associated with implementation of
  85          * SCSI_HBA_ADDR_COMPLEX scsi_device_hba_private_[gs]et(9F).
  86          * The HBA driver can store a pointer to per-scsi_device(9S)
  87          * HBA private data during its tran_tgt_init(9E) implementation
  88          * by calling scsi_device_hba_private_set(9F), and free that
  89          * pointer during tran_tgt_fini(9E). At tran_send(9E) time, the
  90          * HBA driver can use scsi_address_device(9F) to obtain a pointer
  91          * to the scsi_device(9S) structure, and then gain access to
  92          * its per-scsi_device(9S) hba private data by calling
  93          * scsi_device_hba_private_get(9F).
  94          */
  95         void                    *sd_hba_private;
  96 
  97         /*
  98          * If scsi_slave is used to probe out this device, a scsi_inquiry data
  99          * structure will be allocated and an INQUIRY command will be run to
 100          * fill it in.
 101          *
 102          * The inquiry data is allocated/refreshed by scsi_probe/scsi_slave
 103          * and freed by uninitchild (inquiry data is no longer freed by
 104          * scsi_unprobe/scsi_unslave).
 105          *
 106          * NOTE: Additional device identity information may be available
 107          * as properties of sd_dev.
 108          */
 109         struct scsi_inquiry     *sd_inq;
 110 
 111         /*
 112          * Place to point to an extended request sense buffer.
 113          * The target driver is responsible for managing this.
 114          */
 115         struct scsi_extended_sense      *sd_sense;
 116 
 117         /*
 118          * Target driver 'private' information. Typically a pointer to target
 119          * driver private ddi_soft_state(9F) information for the device.  This
 120          * information is typically established in target driver attach(9E),
 121          * and freed in the target driver detach(9E).
 122          *
 123          * LEGACY: For a scsi_device structure allocated by scsi_vhci during
 124          * online of a path, this was set by scsi_vhci to point to the
 125          * pathinfo node. Please use sd_pathinfo instead.
 126          */
 127         void                    *sd_private;
 128 
 129         /*
 130          * FMA capabilities of scsi_device.
 131          */
 132         int                     sd_fm_capable;
 133 
 134         /*
 135          * mdi_pathinfo_t pointer to pathinfo node for scsi_device structure
 136          * allocated by the scsi_vhci for transport to a specific pHCI path.
 137          */
 138         void                    *sd_pathinfo;
 139 
 140         /*
 141          * sd_uninit_prevent - Counter that prevents demotion of
 142          * DS_INITIALIZED node (esp loss of devi_addr) by causing
 143          * DDI_CTLOPS_UNINITCHILD failure - devi_ref will not protect
 144          * demotion of DS_INITIALIZED node.
 145          *
 146          * sd_tran_tgt_free_done - in some cases SCSA will call
 147          * tran_tgt_free(9E) independent of devinfo node state, this means
 148          * that uninitchild code should not call tran_tgt_free(9E).
 149          */
 150         int                     sd_uninit_prevent:16,
 151                                 sd_tran_tgt_free_done:1,
 152                                 sd_flags_pad:15;
 153 
 154         /*
 155          * The 'sd_tran_safe' field is a grotty hack that allows direct-access
 156          * (non-scsa) drivers (like chs, ata, and mlx - which all make cmdk
 157          * children) to *illegally* put their own vector in the scsi_address(9S)
 158          * 'a_hba_tran' field. When all the drivers that overwrite
 159          * 'a_hba_tran' are fixed, we can remove sd_tran_safe (and make
 160          * scsi_hba.c code trust that the 'sd_address.a_hba_tran' established
 161          * during initchild is still valid when uninitchild occurs).
 162          *
 163          * NOTE: This hack is also shows up in the DEVP_TO_TRAN implementation
 164          * in scsi_confsubr.c.
 165          *
 166          * NOTE: The 'sd_tran_safe' field is only referenced by SCSA framework
 167          * code, so always keeping it at the end of the scsi_device structure
 168          * (until it can be removed) is OK.  It use to be called 'sd_reserved'.
 169          */
 170         struct scsi_hba_tran    *sd_tran_safe;
 171 
 172 #ifdef  SCSI_SIZE_CLEAN_VERIFY
 173         /*
 174          * Must be last: Building a driver with-and-without
 175          * -DSCSI_SIZE_CLEAN_VERIFY, and checking driver modules for
 176          * differences with a tools like 'wsdiff' allows a developer to verify
 177          * that their driver has no dependencies on scsi*(9S) size.
 178          */
 179         int                     _pad[8];
 180 #endif  /* SCSI_SIZE_CLEAN_VERIFY */
 181 };
 182 
 183 #ifdef  _KERNEL
 184 
 185 /* ==== The following interfaces are public ==== */
 186 
 187 int     scsi_probe(struct scsi_device *sd, int (*callback)(void));
 188 void    scsi_unprobe(struct scsi_device *sd);
 189 
 190 /* ==== The following interfaces are private (currently) ==== */
 191 
 192 char    *scsi_device_unit_address(struct scsi_device *sd);
 193 
 194 /*
 195  * scsi_device_prop_*() property interfaces: flags
 196  *
 197  *   SCSI_DEVICE_PROP_PATH: property of path-to-device.
 198  *      The property is associated with the sd_pathinfo pathinfo node
 199  *      as established by scsi_vhci. If sd_pathinfo is NULL then the
 200  *      property is associated with the sd_dev devinfo node.
 201  *      Implementation uses mdi_prop_*() interfaces applied to
 202  *      mdi_pathinfo_t (sd_pathinfo) nodes.
 203  *
 204  *   SCSI_DEVICE_PROP_DEVICE: property of device.
 205  *      The property is always associated with the sd_dev devinfo
 206  *      node.  Implementation uses ndi_prop_*() interfaces applied
 207  *      dev_info_t (sd_dev) nodes.
 208  */
 209 #define SCSI_DEVICE_PROP_PATH           0x1     /* type is property-of-path */
 210 #define SCSI_DEVICE_PROP_DEVICE         0x2     /* type is property-of-device */
 211 #define SCSI_DEVICE_PROP_TYPE_MSK       0xF
 212 
 213 int     scsi_device_prop_get_int(struct scsi_device *sd,
 214             uint_t flags, char *name, int defvalue);
 215 int64_t scsi_device_prop_get_int64(struct scsi_device *,
 216             uint_t flags, char *name, int64_t defvalue);
 217 
 218 int     scsi_device_prop_lookup_byte_array(struct scsi_device *sd,
 219             uint_t flags, char *name, uchar_t **, uint_t *);
 220 int     scsi_device_prop_lookup_int_array(struct scsi_device *sd,
 221             uint_t flags, char *name, int **, uint_t *);
 222 int     scsi_device_prop_lookup_string(struct scsi_device *sd,
 223             uint_t flags, char *name, char **);
 224 int     scsi_device_prop_lookup_string_array(struct scsi_device *sd,
 225             uint_t flags, char *name, char ***, uint_t *);
 226 
 227 int     scsi_device_prop_update_byte_array(struct scsi_device *sd,
 228             uint_t flags, char *name, uchar_t *, uint_t);
 229 int     scsi_device_prop_update_int(struct scsi_device *sd,
 230             uint_t flags, char *name, int);
 231 int     scsi_device_prop_update_int64(struct scsi_device *sd,
 232             uint_t flags, char *name, int64_t);
 233 int     scsi_device_prop_update_int_array(struct scsi_device *sd,
 234             uint_t flags, char *name, int *, uint_t);
 235 int     scsi_device_prop_update_string(struct scsi_device *sd,
 236             uint_t flags, char *name, char *);
 237 int     scsi_device_prop_update_string_array(struct scsi_device *sd,
 238             uint_t flags, char *name, char **, uint_t);
 239 
 240 int     scsi_device_prop_remove(struct scsi_device *sd,
 241             uint_t flags, char *name);
 242 void    scsi_device_prop_free(struct scsi_device *sd,
 243             uint_t flags, void *data);
 244 
 245 /* SCSI_HBA_ADDR_COMPLEX interfaces */
 246 struct scsi_device      *scsi_address_device(struct scsi_address *sa);
 247 void    scsi_device_hba_private_set(struct scsi_device *sd, void *data);
 248 void    *scsi_device_hba_private_get(struct scsi_device *sd);
 249 
 250 /* ==== The following interfaces are private ==== */
 251 
 252 size_t  scsi_device_size();
 253 
 254 /* ==== The following interfaces are obsolete ==== */
 255 
 256 int     scsi_slave(struct scsi_device *sd, int (*callback)(void));
 257 void    scsi_unslave(struct scsi_device *sd);
 258 
 259 #endif  /* _KERNEL */
 260 
 261 #ifdef  __cplusplus
 262 }
 263 #endif
 264 
 265 #endif  /* _SYS_SCSI_CONF_DEVICE_H */