mirror of
https://bitbucket.org/librepilot/librepilot.git
synced 2024-11-30 08:24:11 +01:00
df6b2e4ddc
git-svn-id: svn://svn.openpilot.org/OpenPilot/trunk@240 ebee16cc-31ac-478f-84a7-5cbb03baadba
145 lines
3.7 KiB
C
145 lines
3.7 KiB
C
/******************** (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 "msd_scsi.h"
|
|
#include "msd_memory.h"
|
|
uint8_t MSD_Page00_Inquiry_Data[] =
|
|
{
|
|
0x00, /* PERIPHERAL QUALIFIER & PERIPHERAL DEVICE TYPE*/
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
0x00 /* Supported Pages 00*/
|
|
};
|
|
uint8_t MSD_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 */
|
|
'G', 'e', 'n', 'e', 'r', 'i', 'c', ' ',
|
|
/* Product Identification */
|
|
'S', 'D', ' ', 'C', 'a', 'r', 'd', ' ',
|
|
'R', 'e', 'a', 'd', 'e', 'r', ' ', ' ',
|
|
/* Product Revision Level */
|
|
'1', '.', '0', ' '
|
|
};
|
|
uint8_t MSD_Standard_Inquiry_Data2[] =
|
|
{
|
|
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', ' ', ' ', ' ', ' ', ' ',
|
|
/* Product Identification */
|
|
'N', 'A', 'N', 'D', ' ', 'F', 'l', 'a', 's', 'h', ' ',
|
|
'D', 'i', 's', 'k', ' ',
|
|
/* Product Revision Level */
|
|
'1', '.', '0', ' '
|
|
};
|
|
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
|
|
uint8_t MSD_Mode_Sense6_data[] =
|
|
{
|
|
0x03,
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
};
|
|
|
|
/*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*-*/
|
|
|
|
uint8_t MSD_Mode_Sense10_data[] =
|
|
{
|
|
0x00,
|
|
0x06,
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
0x00,
|
|
0x00
|
|
};
|
|
uint8_t MSD_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 MSD_ReadCapacity10_Data[] =
|
|
{
|
|
/* Last Logical Block */
|
|
0,
|
|
0,
|
|
0,
|
|
0,
|
|
|
|
/* Block Length */
|
|
0,
|
|
0,
|
|
0,
|
|
0
|
|
};
|
|
|
|
uint8_t MSD_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****/
|
|
|