APM:Libraries
usbd_msc_bot.c
Go to the documentation of this file.
1 
28 /* Includes ------------------------------------------------------------------*/
29 #include "usbd_msc_bot.h"
30 #include "usbd_msc_scsi.h"
31 #include "usbd_ioreq.h"
32 #include "usbd_msc_mem.h"
33 
72 uint16_t MSC_BOT_DataLen;
73 uint8_t MSC_BOT_State;
75 
76 #ifdef USB_OTG_HS_INTERNAL_DMA_ENABLED
77  #if defined ( __ICCARM__ )
78  #pragma data_alignment=4
79  #endif
80 #endif /* USB_OTG_HS_INTERNAL_DMA_ENABLED */
82 
83 #ifdef USB_OTG_HS_INTERNAL_DMA_ENABLED
84  #if defined ( __ICCARM__ )
85  #pragma data_alignment=4
86  #endif
87 #endif /* USB_OTG_HS_INTERNAL_DMA_ENABLED */
89 
90 #ifdef USB_OTG_HS_INTERNAL_DMA_ENABLED
91  #if defined ( __ICCARM__ )
92  #pragma data_alignment=4
93  #endif
94 #endif /* USB_OTG_HS_INTERNAL_DMA_ENABLED */
104 static void MSC_BOT_CBW_Decode (USB_OTG_CORE_HANDLE *pdev);
105 
106 static void MSC_BOT_SendData (USB_OTG_CORE_HANDLE *pdev,
107  uint8_t* pbuf,
108  uint16_t len);
109 
110 static void MSC_BOT_Abort(USB_OTG_CORE_HANDLE *pdev);
129 {
133 
134  DCD_EP_Flush(pdev, MSC_OUT_EP);
135  DCD_EP_Flush(pdev, MSC_IN_EP);
136  /* Prapare EP to Receive First BOT Cmd */
137  DCD_EP_PrepareRx (pdev,
138  MSC_OUT_EP,
139  (uint8_t *)&MSC_BOT_cbw,
140  BOT_CBW_LENGTH);
141 }
142 
150 {
153  /* Prapare EP to Receive First BOT Cmd */
154  DCD_EP_PrepareRx (pdev,
155  MSC_OUT_EP,
156  (uint8_t *)&MSC_BOT_cbw,
157  BOT_CBW_LENGTH);
158 }
159 
167 {
169 }
170 
179  uint8_t epnum)
180 {
181 
182  switch (MSC_BOT_State)
183  {
184  case BOT_DATA_IN:
185  if(SCSI_ProcessCmd(pdev,
187  &MSC_BOT_cbw.CB[0]) < 0)
188  {
190  }
191  break;
192 
193  case BOT_SEND_DATA:
194  case BOT_LAST_DATA_IN:
196 
197  break;
198 
199  default:
200  break;
201  }
202 }
211  uint8_t epnum)
212 {
213  switch (MSC_BOT_State)
214  {
215  case BOT_IDLE:
216  MSC_BOT_CBW_Decode(pdev);
217  break;
218 
219  case BOT_DATA_OUT:
220 
221  if(SCSI_ProcessCmd(pdev,
223  &MSC_BOT_cbw.CB[0]) < 0)
224  {
226  }
227 
228  break;
229 
230  default:
231  break;
232  }
233 
234 }
235 
245 {
246 
249 
250  if ((USBD_GetRxCount (pdev ,MSC_OUT_EP) != BOT_CBW_LENGTH) ||
252  (MSC_BOT_cbw.bLUN > 1) ||
253  (MSC_BOT_cbw.bCBLength < 1) ||
254  (MSC_BOT_cbw.bCBLength > 16))
255  {
256 
259  INVALID_CDB);
261  MSC_BOT_Abort(pdev);
262  return;
263  }
264 
266  &MSC_BOT_cbw.CB[0]) < 0){
267  MSC_BOT_Abort(pdev);
268 
269  return;
270  }
271 
272  // MSC_BOT_CBW_finish(); moved out to SCSI task
273 
274 }
275 
276 
278  /*Burst xfer handled internally*/
279  if ((MSC_BOT_State != BOT_DATA_IN) &&
280  (MSC_BOT_State != BOT_DATA_OUT) &&
281  (MSC_BOT_State != BOT_LAST_DATA_IN)) // idle or BOT_SEND_DATA
282  {
283  if (MSC_BOT_DataLen > 0) {
284  MSC_BOT_SendData(pdev,
285  MSC_BOT_Data,
287  MSC_BOT_DataLen=0;
288  } else if (MSC_BOT_DataLen == 0) {
289  MSC_BOT_SendCSW (pdev,
291  }
292  }
293 }
294 
295 
305  uint8_t* buf,
306  uint16_t len)
307 {
308 
309  len = MIN (MSC_BOT_cbw.dDataLength, len);
310  MSC_BOT_csw.dDataResidue -= len;
313 
314  DCD_EP_Tx (pdev, MSC_IN_EP, buf, len);
315 }
316 
325  uint8_t CSW_Status)
326 {
328  MSC_BOT_csw.bStatus = CSW_Status;
330 
331  DCD_EP_Tx (pdev,
332  MSC_IN_EP,
333  (uint8_t *)&MSC_BOT_csw,
335 
336  /* Prapare EP to Receive next Cmd */
337  DCD_EP_PrepareRx (pdev,
338  MSC_OUT_EP,
339  (uint8_t *)&MSC_BOT_cbw,
340  BOT_CBW_LENGTH);
341 
342 }
343 
352 {
353 
354  if ((MSC_BOT_cbw.bmFlags == 0) &&
355  (MSC_BOT_cbw.dDataLength != 0) &&
357  {
358  DCD_EP_Stall(pdev, MSC_OUT_EP );
359  }
360  DCD_EP_Stall(pdev, MSC_IN_EP);
361 
363  {
364  DCD_EP_PrepareRx (pdev,
365  MSC_OUT_EP,
366  (uint8_t *)&MSC_BOT_cbw,
367  BOT_CBW_LENGTH);
368  }
369 }
370 
379 void MSC_BOT_CplClrFeature (USB_OTG_CORE_HANDLE *pdev, uint8_t epnum)
380 {
381  if(MSC_BOT_Status == BOT_STATE_ERROR )/* Bad CBW Signature */
382  {
383  DCD_EP_Stall(pdev, MSC_IN_EP);
385  }
386  else if(((epnum & 0x80) == 0x80) && ( MSC_BOT_Status != BOT_STATE_RECOVERY))
387  {
389  }
390 
391 }
406 /************************ (C) COPYRIGHT STMicroelectronics *****END OF FILE****/
uint32_t dDataResidue
Definition: usbd_msc_bot.h:102
uint32_t DCD_EP_Flush(USB_OTG_CORE_HANDLE *pdev, uint8_t epnum)
This Function flushes the FIFOs.
Definition: usb_dcd.c:350
#define MSC_IN_EP
Definition: usbd_conf.h:84
uint32_t dSignature
Definition: usbd_msc_bot.h:87
uint8_t MSC_BOT_Data[]
void MSC_BOT_CplClrFeature(USB_OTG_CORE_HANDLE *pdev, uint8_t epnum)
MSC_BOT_CplClrFeature Complete the clear feature request.
Definition: usbd_msc_bot.c:379
void MSC_BOT_Reset(USB_OTG_CORE_HANDLE *pdev)
MSC_BOT_Reset Reset the BOT Machine.
Definition: usbd_msc_bot.c:149
#define BOT_STATE_NORMAL
Definition: usbd_msc_bot.h:68
uint8_t bmFlags
Definition: usbd_msc_bot.h:90
static void MSC_BOT_SendData(USB_OTG_CORE_HANDLE *pdev, uint8_t *pbuf, uint16_t len)
MSC_BOT_SendData Send the requested data.
Definition: usbd_msc_bot.c:304
void MSC_BOT_DataOut(USB_OTG_CORE_HANDLE *pdev, uint8_t epnum)
MSC_BOT_DataOut Proccess MSC OUT data.
Definition: usbd_msc_bot.c:210
uint32_t DCD_EP_Tx(USB_OTG_CORE_HANDLE *pdev, uint8_t ep_addr, uint8_t *pbuf, uint32_t buf_len)
Transmit data over USB.
Definition: usb_dcd.c:261
uint16_t MSC_BOT_DataLen
Definition: usbd_msc_bot.c:72
header for the STORAGE DISK file file
#define BOT_CSW_SIGNATURE
Definition: usbd_msc_bot.h:58
uint32_t dTag
Definition: usbd_msc_bot.h:88
void MSC_BOT_CBW_finish(USB_OTG_CORE_HANDLE *pdev)
Definition: usbd_msc_bot.c:277
#define MIN(a, b)
Definition: usb_conf.h:215
void MSC_BOT_DataIn(USB_OTG_CORE_HANDLE *pdev, uint8_t epnum)
MSC_BOT_DataIn Handle BOT IN data stage.
Definition: usbd_msc_bot.c:178
#define BOT_CSW_LENGTH
Definition: usbd_msc_bot.h:60
uint32_t dDataLength
Definition: usbd_msc_bot.h:89
int8_t SCSI_ProcessCmd(USB_OTG_CORE_HANDLE *pdev, uint8_t lun, uint8_t *params)
SCSI_ProcessCmd Process SCSI commands.
uint32_t dTag
Definition: usbd_msc_bot.h:101
#define __ALIGN_BEGIN
Definition: usb_conf.h:198
const USBD_STORAGE_cb_TypeDef *const USBD_STORAGE_fops
uint8_t MSC_BOT_Status
Definition: usbd_msc_bot.c:74
#define BOT_STATE_RECOVERY
Definition: usbd_msc_bot.h:69
uint8_t CB[16]
Definition: usbd_msc_bot.h:93
#define MSC_MEDIA_PACKET
Definition: usbd_conf.h:97
#define BOT_CBW_SIGNATURE
Definition: usbd_msc_bot.h:57
header for the usbd_msc_scsi.c file
uint8_t MSC_BOT_State
Definition: usbd_msc_bot.c:73
__ALIGN_BEGIN uint8_t MSC_BOT_Data [MSC_MEDIA_PACKET] __ALIGN_END
Definition: usbd_msc_bot.c:81
uint32_t DCD_EP_Stall(USB_OTG_CORE_HANDLE *pdev, uint8_t epnum)
Stall an endpoint.
Definition: usb_dcd.c:296
header file for the usbd_ioreq.c file
#define BOT_CBW_LENGTH
Definition: usbd_msc_bot.h:59
#define MSC_OUT_EP
Definition: usbd_conf.h:85
void MSC_BOT_DeInit(USB_OTG_CORE_HANDLE *pdev)
MSC_BOT_DeInit Uninitialize the BOT Machine.
Definition: usbd_msc_bot.c:166
static void MSC_BOT_CBW_Decode(USB_OTG_CORE_HANDLE *pdev)
MSC_BOT_CBW_Decode Decode the CBW command and set the BOT state machine accordingtly.
Definition: usbd_msc_bot.c:244
MSC_BOT_CBW_TypeDef MSC_BOT_cbw
#define CSW_CMD_PASSED
Definition: usbd_msc_bot.h:63
void SCSI_SenseCode(uint8_t lun, uint8_t sKey, uint8_t ASC)
SCSI_SenseCode Load the last error code in the error list.
MSC_BOT_CSW_TypeDef MSC_BOT_csw
uint8_t bLUN
Definition: usbd_msc_bot.h:91
uint8_t bCBLength
Definition: usbd_msc_bot.h:92
void MSC_BOT_SendCSW(USB_OTG_CORE_HANDLE *pdev, uint8_t CSW_Status)
MSC_BOT_SendCSW Send the Command Status Wrapper.
Definition: usbd_msc_bot.c:324
uint16_t USBD_GetRxCount(USB_OTG_CORE_HANDLE *pdev, uint8_t epnum)
USBD_GetRxCount returns the received data length.
Definition: usbd_ioreq.c:225
uint8_t bStatus
Definition: usbd_msc_bot.h:103
uint32_t dSignature
Definition: usbd_msc_bot.h:100
#define CSW_CMD_FAILED
Definition: usbd_msc_bot.h:64
int8_t(* Init)(uint8_t lun)
Definition: usbd_msc_mem.h:60
header for the usbd_msc_bot.c file
uint32_t DCD_EP_PrepareRx(USB_OTG_CORE_HANDLE *pdev, uint8_t ep_addr, uint8_t *pbuf, uint16_t buf_len)
DCD_EP_PrepareRx.
Definition: usb_dcd.c:221
void MSC_BOT_Init(USB_OTG_CORE_HANDLE *pdev)
MSC_BOT_Init Initialize the BOT Process.
Definition: usbd_msc_bot.c:128
#define BOT_STATE_ERROR
Definition: usbd_msc_bot.h:70
static void MSC_BOT_Abort(USB_OTG_CORE_HANDLE *pdev)
MSC_BOT_Abort Abort the current transfer.
Definition: usbd_msc_bot.c:351