The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/cam/scsi/scsi_enc.h

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 /* $FreeBSD$ */
    2 /*-
    3  * SPDX-License-Identifier: (BSD-2-Clause-FreeBSD OR GPL-2.0)
    4  *
    5  * Copyright (c) 2000 by Matthew Jacob
    6  * All rights reserved.
    7  *
    8  * Redistribution and use in source and binary forms, with or without
    9  * modification, are permitted provided that the following conditions
   10  * are met:
   11  * 1. Redistributions of source code must retain the above copyright
   12  *    notice, this list of conditions, and the following disclaimer,
   13  *    without modification, immediately at the beginning of the file.
   14  * 2. The name of the author may not be used to endorse or promote products
   15  *    derived from this software without specific prior written permission.
   16  *
   17  * Alternatively, this software may be distributed under the terms of the
   18  * the GNU Public License ("GPL").
   19  *
   20  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
   21  * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
   22  * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
   23  * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE FOR
   24  * ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
   25  * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
   26  * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
   27  * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
   28  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
   29  * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
   30  * SUCH DAMAGE.
   31  *
   32  */
   33 #ifndef _SCSI_ENC_H_
   34 #define _SCSI_ENC_H_
   35 
   36 #include <cam/scsi/scsi_ses.h>
   37 
   38 #define ENCIOC                  ('s' - 040)
   39 #define ENCIOC_GETNELM          _IO(ENCIOC, 1)
   40 #define ENCIOC_GETELMMAP        _IO(ENCIOC, 2)
   41 #define ENCIOC_GETENCSTAT       _IO(ENCIOC, 3)
   42 #define ENCIOC_SETENCSTAT       _IO(ENCIOC, 4)
   43 #define ENCIOC_GETELMSTAT       _IO(ENCIOC, 5)
   44 #define ENCIOC_SETELMSTAT       _IO(ENCIOC, 6)
   45 #define ENCIOC_GETTEXT          _IO(ENCIOC, 7)
   46 #define ENCIOC_INIT             _IO(ENCIOC, 8)
   47 #define ENCIOC_GETELMDESC       _IO(ENCIOC, 9)
   48 #define ENCIOC_GETELMDEVNAMES   _IO(ENCIOC, 10)
   49 #define ENCIOC_GETSTRING        _IO(ENCIOC, 11)
   50 #define ENCIOC_SETSTRING        _IO(ENCIOC, 12)
   51 #define ENCIOC_GETENCNAME       _IO(ENCIOC, 13)
   52 #define ENCIOC_GETENCID         _IO(ENCIOC, 14)
   53 
   54 /*
   55  * Platform Independent Definitions for enclosure devices.
   56  */
   57 /*
   58  * SCSI Based Environmental Services Application Defines
   59  *
   60  * Based almost entirely on SCSI-3 ENC Revision 8A specification,
   61  * but slightly abstracted as the underlying device may in fact
   62  * be a SAF-TE or vendor unique device.
   63  */
   64 /*
   65  * ENC Driver Operations:
   66  * (The defines themselves are platform and access method specific)
   67  *
   68  * ENCIOC_GETNELM
   69  * ENCIOC_GETELMMAP
   70  * ENCIOC_GETENCSTAT
   71  * ENCIOC_SETENCSTAT
   72  * ENCIOC_GETELMSTAT
   73  * ENCIOC_SETELMSTAT
   74  * ENCIOC_INIT
   75  *
   76  *
   77  * An application finds out how many elements an enclosure instance
   78  * is managing by performing a ENCIOC_GETNELM operation. It then
   79  * performs a ENCIOC_GETELMMAP to get the map that contains the
   80  * elment identifiers for all elements (see encioc_element_t below).
   81  * This information is static.
   82  * 
   83  * The application may perform ENCIOC_GETELMSTAT operations to retrieve
   84  * status on an element (see the enc_elm_status_t structure below),
   85  * ENCIOC_SETELMSTAT operations to set status for an element.
   86  *
   87  * Similarly, overall enclosure status me be fetched or set via
   88  * ENCIOC_GETENCSTAT or  ENCIOC_SETENCSTAT operations (see encioc_enc_status_t
   89  * below).
   90  *
   91  * Readers should note that there is nothing that requires either a set
   92  * or a clear operation to actually latch and do anything in the target.
   93  *
   94  * A ENCIOC_INIT operation causes the enclosure to be initialized.
   95  */
   96 
   97 /* Element Types */
   98 typedef enum {
   99         ELMTYP_UNSPECIFIED      = 0x00,
  100         ELMTYP_DEVICE           = 0x01,
  101         ELMTYP_POWER            = 0x02,
  102         ELMTYP_FAN              = 0x03,
  103         ELMTYP_THERM            = 0x04,
  104         ELMTYP_DOORLOCK         = 0x05,
  105         ELMTYP_ALARM            = 0x06,
  106         ELMTYP_ESCC             = 0x07, /* Enclosure SCC */
  107         ELMTYP_SCC              = 0x08, /* SCC */
  108         ELMTYP_NVRAM            = 0x09,
  109         ELMTYP_INV_OP_REASON    = 0x0a,
  110         ELMTYP_UPS              = 0x0b,
  111         ELMTYP_DISPLAY          = 0x0c,
  112         ELMTYP_KEYPAD           = 0x0d,
  113         ELMTYP_ENCLOSURE        = 0x0e,
  114         ELMTYP_SCSIXVR          = 0x0f,
  115         ELMTYP_LANGUAGE         = 0x10,
  116         ELMTYP_COMPORT          = 0x11,
  117         ELMTYP_VOM              = 0x12,
  118         ELMTYP_AMMETER          = 0x13,
  119         ELMTYP_SCSI_TGT         = 0x14,
  120         ELMTYP_SCSI_INI         = 0x15,
  121         ELMTYP_SUBENC           = 0x16,
  122         ELMTYP_ARRAY_DEV        = 0x17,
  123         ELMTYP_SAS_EXP          = 0x18, /* SAS Expander */
  124         ELMTYP_SAS_CONN         = 0x19, /* SAS Connector */
  125         ELMTYP_LAST             = ELMTYP_SAS_CONN
  126 } elm_type_t;
  127 
  128 #define ELM_TYPE_NAMES  {                               \
  129         "Unspecified",                                  \
  130         "Device Slot",                                  \
  131         "Power Supply",                                 \
  132         "Cooling",                                      \
  133         "Temperature Sensor",                           \
  134         "Door",                                         \
  135         "Audible alarm",                                \
  136         "Enclosure Services Controller Electronics",    \
  137         "SCC Controller Electronics",                   \
  138         "Nonvolatile Cache",                            \
  139         "Invalid Operation Reason",                     \
  140         "Uninterruptible Power Supply",                 \
  141         "Display",                                      \
  142         "Key Pad Entry",                                \
  143         "Enclosure",                                    \
  144         "SCSI Port/Transceiver",                        \
  145         "Language",                                     \
  146         "Communication Port",                           \
  147         "Voltage Sensor",                               \
  148         "Current Sensor",                               \
  149         "SCSI Target Port",                             \
  150         "SCSI Initiator Port",                          \
  151         "Simple Subenclosure",                          \
  152         "Array Device Slot",                            \
  153         "SAS Expander",                                 \
  154         "SAS Connector"                                 \
  155 }
  156 
  157 #ifdef _KERNEL
  158 extern const char *elm_type_names[];
  159 #endif
  160 
  161 typedef struct encioc_element {
  162         /* Element Index */
  163         unsigned int    elm_idx;        
  164 
  165         /* ID of SubEnclosure containing Element*/
  166         unsigned int    elm_subenc_id;
  167 
  168         /* Element Type */
  169         elm_type_t      elm_type;
  170 } encioc_element_t;
  171 
  172 /*
  173  * Overall Enclosure Status
  174  */
  175 typedef unsigned char encioc_enc_status_t;
  176 
  177 /*
  178  * Element Status
  179  */
  180 typedef struct encioc_elm_status {
  181         unsigned int    elm_idx;
  182         unsigned char   cstat[4];
  183 } encioc_elm_status_t;
  184 
  185 /*
  186  * ENC String structure, for StringIn and StringOut commands; use this with
  187  * the ENCIOC_GETSTRING and ENCIOC_SETSTRING ioctls.
  188  */
  189 typedef struct encioc_string {
  190         size_t bufsiz;          /* IN/OUT: length of string provided/returned */
  191 #define ENC_STRING_MAX  0xffff
  192         uint8_t *buf;           /* IN/OUT: string */
  193 } encioc_string_t;
  194 
  195 /*============================================================================*/
  196 
  197 /* 
  198  * SES v2 r20 6.1.10 (pg 39) - Element Descriptor diagnostic page
  199  * Tables 21, 22, and 23
  200  */
  201 typedef struct encioc_elm_desc {
  202         unsigned int     elm_idx;       /* IN: elment requested */
  203         uint16_t         elm_desc_len; /* IN: buffer size; OUT: bytes written */
  204         char            *elm_desc_str; /* IN/OUT: buffer for descriptor data */
  205 } encioc_elm_desc_t;
  206 
  207 /*
  208  * ENCIOC_GETELMDEVNAMES:
  209  * ioctl structure to get an element's device names, if available
  210  */
  211 typedef struct  encioc_elm_devnames {
  212         unsigned int     elm_idx;       /* IN: element index */
  213         size_t           elm_names_size;/* IN: size of elm_devnames */
  214         size_t           elm_names_len; /* OUT: actual size returned */
  215         /*
  216          * IN/OUT: comma separated list of peripheral driver
  217          * instances servicing this element.
  218          */
  219         char            *elm_devnames;
  220 } encioc_elm_devnames_t;
  221 
  222 /* ioctl structure for requesting FC info for a port */
  223 typedef struct encioc_elm_fc_port {
  224         unsigned int            elm_idx;
  225         unsigned int            port_idx;
  226         struct ses_elm_fc_port  port_data;
  227 } encioc_elm_fc_port_t;
  228 
  229 /* ioctl structure for requesting SAS info for element phys */
  230 typedef struct encioc_elm_sas_device_phy {
  231         unsigned int                    elm_idx;
  232         unsigned int                    phy_idx;
  233         struct ses_elm_sas_device_phy   phy_data;
  234 } enioc_elm_sas_phy_t;
  235 
  236 /* ioctl structure for requesting SAS info for an expander phy */
  237 typedef struct encioc_elm_sas_expander_phy {
  238         unsigned int                    elm_idx;
  239         unsigned int                    phy_idx;
  240         struct ses_elm_sas_expander_phy phy_data;
  241 } encioc_elm_sas_expander_phy_t;
  242 
  243 /* ioctl structure for requesting SAS info for a port phy */
  244 typedef struct encioc_elm_sas_port_phy {
  245         unsigned int                    elm_idx;
  246         unsigned int                    phy_idx;
  247         struct ses_elm_sas_port_phy     phy_data;
  248 } enioc_elm_sas_port_phy_t;
  249 
  250 /* ioctl structure for requesting additional status for an element */
  251 typedef struct encioc_addl_status {
  252         unsigned int                       elm_idx;
  253         union ses_elm_addlstatus_descr_hdr addl_hdr;
  254         union ses_elm_addlstatus_proto_hdr proto_hdr;
  255 } enioc_addl_status_t;
  256 
  257 #endif /* _SCSI_ENC_H_ */

Cache object: 2ba6f3be99a24ee9f703c87e31707713


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.