123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145 |
- /******************** (C) COPYRIGHT 2009 STMicroelectronics ********************
- * File Name : scsi_data.c
- * Author : MCD Application Team
- * Version : V3.0.1
- * Date : 04/27/2009
- * Description : Initialization of the SCSI data
- ********************************************************************************
- * THE PRESENT FIRMWARE WHICH IS FOR GUIDANCE ONLY AIMS AT PROVIDING CUSTOMERS
- * WITH CODING INFORMATION REGARDING THEIR PRODUCTS IN ORDER FOR THEM TO SAVE TIME.
- * AS A RESULT, STMICROELECTRONICS SHALL NOT BE HELD LIABLE FOR ANY DIRECT,
- * INDIRECT OR CONSEQUENTIAL DAMAGES WITH RESPECT TO ANY CLAIMS ARISING FROM THE
- * CONTENT OF SUCH FIRMWARE AND/OR THE USE MADE BY CUSTOMERS OF THE CODING
- * INFORMATION CONTAINED HEREIN IN CONNECTION WITH THEIR PRODUCTS.
- *******************************************************************************/
- /* Includes ------------------------------------------------------------------*/
- #include "usb_scsi.h"
- #include "memory.h"
- uint8_t Page00_Inquiry_Data[] =
- {
- 0x00, /* PERIPHERAL QUALIFIER & PERIPHERAL DEVICE TYPE*/
- 0x00,
- 0x00,
- 0x00,
- 0x00 /* Supported Pages 00*/
- };
- uint8_t Standard_Inquiry_Data[] =
- {
- 0x00, /* Direct Access Device */
- 0x80, /* RMB = 1: Removable Medium */
- 0x02, /* Version: No conformance claim to standard */
- 0x02,
- 36 - 4, /* Additional Length */
- 0x00, /* SCCS = 1: Storage Controller Component */
- 0x00,
- 0x00,
- /* Vendor Identification */
- 'S', 'T', 'M', ' ', 'C', 'M', '-', '3',
- /* Product Identification */
- 'S', 'D', ' ', 'F', 'l', 'a', 's', 'h', ' ',
- 'D', 'i', 's', 'k', ' ', ' ', ' ',
- /* Product Revision Level */
- '1', '.', '0', ' '
- };
- uint8_t Standard_Inquiry_Data2[] =
- {
- 0x00, /* Direct Access Device *///磁盘设备
- //其中最高位D7为RMB。RMB=0,表示不可移除设备。如果RMB=1,则为可移除设备。
- 0x80, /* RMB = 1: Removable Medium */
- 0x02, /* Version: No conformance claim to standard */
- 0x02, //数据响应格式
- 36 - 4, //附加数据长度,为31字节
- 0x00, /* SCCS = 1: Storage Controller Component */
- 0x00,
- 0x00,
- /* Vendor Identification */
- 'S', 'T', 'M', ' ', ' ', ' ', ' ', ' ',
- /* Product Identification */
- 'N', 'A', 'N', 'D', ' ', 'F', 'l', 'a', 's', 'h', ' ',
- 'D', 'i', 's', 'k', ' ',
- /* Product Revision Level */
- '1', '.', '0', ' '
- };
- /*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
- uint8_t Mode_Sense6_data[] =
- {
- 0x03,
- 0x00,
- 0x00,
- 0x00,
- };
- /*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
- uint8_t Mode_Sense10_data[] =
- {
- 0x00,
- 0x06,
- 0x00,
- 0x00,
- 0x00,
- 0x00,
- 0x00,
- 0x00
- };
- uint8_t Scsi_Sense_Data[] =
- {
- 0x70, /*RespCode*/
- 0x00, /*SegmentNumber*/
- NO_SENSE, /* Sens_Key*/
- 0x00,
- 0x00,
- 0x00,
- 0x00, /*Information*/
- 0x0A, /*AdditionalSenseLength*/
- 0x00,
- 0x00,
- 0x00,
- 0x00, /*CmdInformation*/
- NO_SENSE, /*Asc*/
- 0x00, /*ASCQ*/
- 0x00, /*FRUC*/
- 0x00, /*TBD*/
- 0x00,
- 0x00 /*SenseKeySpecific*/
- };
- uint8_t ReadCapacity10_Data[] =
- {
- /* Last Logical Block */
- 0,
- 0,
- 0,
- 0,
- /* Block Length */
- 0,
- 0,
- 0,
- 0
- };
- uint8_t ReadFormatCapacity_Data [] =
- {
- 0x00,
- 0x00,
- 0x00,
- 0x08, /* Capacity List Length */
- /* Block Count */
- 0,
- 0,
- 0,
- 0,
- /* Block Length */
- 0x02,/* Descriptor Code: Formatted Media */
- 0,
- 0,
- 0
- };
- /******************* (C) COPYRIGHT 2009 STMicroelectronics *****END OF FILE****/
|