⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 scsi_decoder.c

📁 Contiki是一个开源
💻 C
📖 第 1 页 / 共 2 页
字号:
/* This file has been prepared for Doxygen automatic documentation generation.*//*! \file scsi_decoder.c ******************************************************* * * \brief *      This file is the scsi decoder * * \addtogroup usbstick * * \author *      Atmel Corporation: http://www.atmel.com \n *      Support email: avr@atmel.com ******************************************************************************//*    Copyright (c) 2004  ATMEL 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:   * Redistributions of source code must retain the above copyright     notice, this list of conditions and the following disclaimer.   * Redistributions in binary form must reproduce the above copyright     notice, this list of conditions and the following disclaimer in     the documentation and/or other materials provided with the     distribution.   * Neither the name of the copyright holders nor the names of     contributors may be used to endorse or promote products derived     from this software without specific prior written permission.  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 MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE  ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR CONTRIBUTORS BE  LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, 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 DAMAGE.*//** \addtogroup usbstorage @{*///_____  I N C L U D E S ___________________________________________________#include "config.h"#include "storage/scsi_decoder.h"#include "conf_usb.h"#include "usb_drv.h"                   #include "storage/ctrl_status.h"#include "storage/ctrl_access.h"//_____ M A C R O S ________________________________________________________//_____ D E F I N I T I O N S ______________________________________________U8  g_scsi_command[16];U8  g_scsi_status;U32 g_scsi_data_remaining;FLASH U8    g_sbc_vendor_id[8]   = SBC_VENDOR_ID;FLASH U8    g_sbc_product_id[16] = SBC_PRODUCT_ID;FLASH U8    g_sbc_revision_id[4] = SBC_REVISION_ID;extern  U8  usb_LUN; s_scsi_sense  g_scsi_sense;FLASH struct sbc_st_std_inquiry_data sbc_std_inquiry_data ={   /* Byte 0 : 0x00 */   0x00,        /* DeviceType: Direct-access device */   0,           /* PeripheralQualifier : Currently connected */   /* Byte 1 : 0x80 */   0,           /* Reserved1 */   1,           /* RMB : Medium is removable (this bit must be at 1, else the medium isn't see on Windows) */ //  /* Byte 2 : 0x02 */ //  0x02,        /* Version: Device compliant to ANSI X3.131:1994 */   /* Byte 2 : 0x00 */   0x00,        /* Version: Device not compliant to any standard */   /* Byte 3 : 0x02 */   2,           /* Response data format */   0,           /* NormACA */   0,           /* Obsolete0 */   0,           /* AERC */   /* Byte 4 : 0x1F */   /* Byte 5 : 0x00 */   /* Byte 6 : 0x00 */                /* Reserved4[3] */   {      0x1F,     /* Additional Length (n-4) */      0,        /* SCCS : SCC supported */      0   },   /* Byte 7 : 0x00 */   0,          /* SoftReset */   0,          /* CommandQueue */   0,          /* Reserved5 */   0,          /* LinkedCommands */   0,          /* Synchronous */   0,          /* Wide16Bit */   0,          /* Wide32Bit */   0,          /* RelativeAddressing */};static  void  send_informational_exceptions_page (void);static  void  send_read_write_error_recovery_page (U8);static  void sbc_header_mode_sense( Bool b_sense_10 , U8 u8_data_length );//_____ D E C L A R A T I O N S ____________________________________________/** * @brief SCSI decoder function * * This function read the SCSI command and launches the appropriate function * * @warning Code:.. bytes (function FLASH length) * * @return  FALSE: result KO, *          TRUE:  result OK * */Bool scsi_decode_command(void){Bool status;   if (g_scsi_command[0] == SBC_CMD_WRITE_10)   {      Scsi_start_write_action();      status = sbc_write_10();	  Scsi_stop_write_action();      return status;   }   if (g_scsi_command[0] == SBC_CMD_READ_10 )   {      Scsi_start_read_action();      status = sbc_read_10();      Scsi_stop_read_action();      return status;   }   switch (g_scsi_command[0])                /* check other command received */   {      case SBC_CMD_REQUEST_SENSE:             /* 0x03 - Mandatory */           return sbc_request_sense();           break;      case SBC_CMD_INQUIRY:                   /* 0x12 - Mandatory */           return sbc_inquiry();           break;      case SBC_CMD_TEST_UNIT_READY:           /* 0x00 - Mandatory */           return sbc_test_unit_ready();           break;      case SBC_CMD_READ_CAPACITY:             /* 0x25 - Mandatory */           return sbc_read_capacity();           break;      case SBC_CMD_MODE_SENSE_6:              /* 0x1A - Optional */           return sbc_mode_sense( FALSE );           break;      case SBC_CMD_PREVENT_ALLOW_MEDIUM_REMOVAL:/* 0x1E */           return sbc_prevent_allow_medium_removal();           break;      case SBC_CMD_VERIFY_10:                 /* 0x2F - Optional */           sbc_lun_status_is_good();           break;      case SBC_CMD_MODE_SENSE_10:             /* 0x5A - Optional */           return sbc_mode_sense( TRUE );           break;      case SBC_CMD_FORMAT_UNIT:               /* 0x04 - Mandatory */      case SBC_CMD_MODE_SELECT_6:             /* 0x15 - Optional */      case SBC_CMD_START_STOP_UNIT:           /* 0x1B - Optional */      case SBC_CMD_SEND_DIAGNOSTIC:           /* 0x1D -  */      case SBC_CMD_READ_LONG:                 /* 0x23 - Optional */      case SBC_CMD_SYNCHRONIZE_CACHE:         /* 0x35 - Optional */      case SBC_CMD_WRITE_BUFFER:              /* 0x3B - Optional */      case SBC_CMD_RESERVE_10:                /* 0x56 - Mandatory */      case SBC_CMD_RELEASE_10:                /* 0x57 - Mandatory - see chapter 7.16 - SPC 2 */      default:           { /* Command not supported */              Sbc_send_failed();              Sbc_build_sense(SBC_SENSE_KEY_ILLEGAL_REQUEST, SBC_ASC_INVALID_COMMAND_OPERATION_CODE, 0x00);              return FALSE;              break;           }   }   return TRUE;}/** * @brief This function manages the SCSI REQUEST SENSE command (0x03) * * The SCSI Sense contains the status of the last command * This status is composed of 3 Bytes : * - sense key  (g_scsi_sense.key) * - additional sense code  (g_scsi_sense.asc) * - additional sense code qualifier  (g_scsi_sense.ascq) * * @warning Code:.. bytes (function code length) * * @return  FALSE: result KO, *          TRUE:  result OK * */Bool sbc_request_sense (void){  U8  allocation_length, i;  U8  request_sens_output[18];   /* the maximum size of request is 17 */  allocation_length = g_scsi_command[4];  /* Allocation length */  /* Initialize the request sense data */  request_sens_output[0] = SBC_RESPONSE_CODE_SENSE; /* 70h */  request_sens_output[1] = 0x00;                    /* Obsolete */  request_sens_output[2] = g_scsi_sense.key;  request_sens_output[3] = 0x00;   /* For direct access media, Information field */  request_sens_output[4] = 0x00;   /* give the unsigned logical block */  request_sens_output[5] = 0x00;   /* address associated with the sense key */  request_sens_output[6] = 0x00;  request_sens_output[7] = SBC_ADDITIONAL_SENSE_LENGTH; /* !! UFI device shall not adjust the Additional sense length to reflect truncation */  request_sens_output[8] = SBC_COMMAND_SPECIFIC_INFORMATION_3;  request_sens_output[9] = SBC_COMMAND_SPECIFIC_INFORMATION_2;  request_sens_output[10] = SBC_COMMAND_SPECIFIC_INFORMATION_1;  request_sens_output[11] = SBC_COMMAND_SPECIFIC_INFORMATION_0;  request_sens_output[12] = g_scsi_sense.asc;  request_sens_output[13] = g_scsi_sense.ascq;  request_sens_output[14] = SBC_FIELD_REPLACEABLE_UNIT_CODE;  request_sens_output[15] = SBC_SENSE_KEY_SPECIFIC_2;  request_sens_output[16] = SBC_SENSE_KEY_SPECIFIC_1;  request_sens_output[17] = SBC_SENSE_KEY_SPECIFIC_0;  /* Send the request data */  for( i=0 ; i<allocation_length ; i++ )  {    Usb_write_byte( request_sens_output[i] );  }  Sbc_valid_write_usb( allocation_length );  sbc_lun_status_is_good();  return TRUE;}/** * @brief This function manages the SCSI INQUIRY command (0x12) * * The SCSI Inquiry field contains information regarding parameters * of the target. For example: * - vendor identification * - product identification * - peripheral qualifier * - peripheral device type * - etc * * @warning Code:.. bytes (function code length) * * @return  FALSE: result KO, *          TRUE:  result OK * */Bool sbc_inquiry (void){   U8 allocation_length, i;#ifdef AVRGCC   PGM_VOID_P ptr;#else   U8 FLASH *ptr;#endif   if( (0 == (g_scsi_command[1] & 0x03) )    // CMDT and EPVD bits are 0   &&  (0 ==  g_scsi_command[2]         ) )  // PAGE or OPERATION CODE fields = 0x00?   {      //** send standard inquiry data      // Check the size of inquiry data      allocation_length = g_scsi_command[4];      if (allocation_length > SBC_MAX_INQUIRY_DATA)      {         allocation_length = SBC_MAX_INQUIRY_DATA;      }      // send first inquiry data (0 to 8)      ptr = (FLASH U8*) &sbc_std_inquiry_data;      for ( i=0 ; ((i != 36) && (allocation_length > i)); i++)      {         if( 8 == i )         {  // send vendor id (8 to 16)              ptr = (FLASH U8 *) &g_sbc_vendor_id;         }         if( 16 == i )         {  // send product id (16 to 32)            ptr = (FLASH U8 *) &g_sbc_product_id;         }         if( 32 == i )         {  // send revision id (32 to 36)            ptr = (FLASH U8 *) &g_sbc_revision_id;         }#ifndef AVRGCC         Usb_write_byte((U8)(*ptr++));     // send tab#else    // AVRGCC does not support point to PGM space#warning with avrgcc assumes devices descriptors are stored in the lower 64Kbytes of on-chip flash memory         Usb_write_byte(pgm_read_byte_near((unsigned int)ptr++));#endif      }      //  send data (36 to SBC_MAX_INQUIRY_DATA), and can be tranmitted by Bulk      //  Description of next bytes (this bytes is always egal to 0) :      //  VendorSpecific    : 20 Bytes      //  Next byte         : 1 byte      //       - InfoUnitSupport   : 1 bit      //       - QuickArbitSupport : 1 bit      //       - Clocking          : 2 bits      //       - Reserved6         : 4 bits      //  Reserved7         : 1 byte      //  VersionDescriptor : 8 bytes      //  Reserved8         : 22 bytes      //  ...      while( allocation_length > i )      {         if (64 == i)         {  // for each 64 bytes, send USB packet            Sbc_valid_write_usb(64);            allocation_length -= 64;            i = 0;         }         Usb_write_byte(0);       // write value of last bytes of inquiry data         i++;      }      // send last USB packet      Sbc_valid_write_usb(allocation_length);      sbc_lun_status_is_good();      return TRUE;   }   else   {  // (CMDT=EVPD <> 0) or (PAGE CODE <> 0x00)      Sbc_send_failed();      Sbc_build_sense(SBC_SENSE_KEY_ILLEGAL_REQUEST, SBC_ASC_INVALID_FIELD_IN_CDB, 0x00);      return FALSE;   }}Bool sbc_test_unit_ready(void){   switch ( mem_test_unit_ready(usb_LUN) )   {   case CTRL_GOOD :      sbc_lun_status_is_good();      break;   case CTRL_NO_PRESENT :      sbc_lun_status_is_not_present();      break;   case CTRL_BUSY :      sbc_lun_status_is_busy_or_change();      break;   case CTRL_FAIL :   default :      sbc_lun_status_is_fail();

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -