storage_task.c File Reference

#include "config.h"
#include "conf_usb.h"
#include "storage_task.h"
#include "lib_mcu/usb/usb_drv.h"
#include "usb_descriptors.h"
#include "modules/usb/device_chap9/usb_standard_request.h"
#include "usb_specific_request.h"
#include "modules/scsi_decoder/scsi_decoder.h"
#include "modules/control_access/ctrl_access.h"

Include dependency graph for storage_task.c:

Go to the source code of this file.

Functions

void usb_mass_storage_cbw (void)
void usb_mass_storage_csw (void)
void storage_task_init (void)
void storage_task (void)

Variables

bit ms_data_direction
static _MEM_TYPE_SLOW_ U8 dCBWTag [4]
_MEM_TYPE_SLOW_ U8 g_scsi_status
_MEM_TYPE_FAST_ U32 g_scsi_data_remaining
bit ms_multiple_drive
_MEM_TYPE_SLOW_ U8 g_scsi_command [16]
U8 endpoint_status [MAX_EP_NB]
_MEM_TYPE_SLOW_ U8 usb_LUN


Detailed Description

This file manages the mass storage task.

Author:
Atmel Corporation: http://www.atmel.com
Support and FAQ: http://support.atmel.no/

Definition in file storage_task.c.


Function Documentation

void usb_mass_storage_cbw ( void   ) 

USB Command Block Wrapper (CBW) management This function decodes the CBW command and stores the SCSI command

Warning:
Code:?? bytes (function code length)
Parameters:
none 
Returns:
none

check if dCBWSignature is correct

'U'

'S'

'B'

'C'

Store CBW Tag to be repeated in CSW

if (bmCBWFlags.bit7 == 1) {direction = IN}

Definition at line 125 of file storage_task.c.

References c, dCBWTag, endpoint_status, EP_MS_IN, EP_MS_OUT, FALSE, g_scsi_command, g_scsi_data_remaining, get_cur_lun(), Is_usb_ms_data_direction_in, LSB0, LSB1, LSB2, LSB3, ms_multiple_drive, MSK_EP_DIR, scsi_decode_command(), TRUE, Usb_ack_receive_out, Usb_enable_stall_handshake, usb_LUN, Usb_read_byte, Usb_select_endpoint, Usb_set_ms_data_direction_in, and Usb_set_ms_data_direction_out.

Referenced by storage_task().

00126 {
00127 bit cbw_error;
00128 U8  c;
00129 U8  dummy;
00130 
00131    cbw_error = FALSE;
00132    Usb_select_endpoint(EP_MS_OUT);           
00133    if (0x55 != Usb_read_byte())
00134       { cbw_error = TRUE; } 
00135    if (0x53 != Usb_read_byte())
00136       { cbw_error = TRUE; } 
00137    if (0x42 != Usb_read_byte())
00138       { cbw_error = TRUE; } 
00139    if (0x43 != Usb_read_byte())
00140       { cbw_error = TRUE; } 
00141    if (cbw_error)
00142    {
00143       Usb_ack_receive_out();
00144       Usb_select_endpoint(EP_MS_IN);
00145       Usb_enable_stall_handshake();
00146       endpoint_status[(EP_MS_IN & MSK_EP_DIR)] = 0x01;
00147       return;
00148    }
00149 
00150    dCBWTag[0] = Usb_read_byte();             
00151    dCBWTag[1] = Usb_read_byte();
00152    dCBWTag[2] = Usb_read_byte();
00153    dCBWTag[3] = Usb_read_byte();
00154    
00155    LSB0(g_scsi_data_remaining) = Usb_read_byte();
00156    LSB1(g_scsi_data_remaining) = Usb_read_byte();
00157    LSB2(g_scsi_data_remaining) = Usb_read_byte();
00158    LSB3(g_scsi_data_remaining) = Usb_read_byte();
00159 
00160    if (Usb_read_byte() != 0x00)              
00161    {
00162       Usb_set_ms_data_direction_in();
00163    }
00164    else
00165    {
00166       Usb_set_ms_data_direction_out();
00167    }
00168 
00169    usb_LUN = Usb_read_byte();
00170 
00171    if (!ms_multiple_drive)
00172    {
00173       usb_LUN = get_cur_lun();
00174    }
00175 
00176    dummy      = Usb_read_byte();                // dummy CBWCBLength read
00177 
00178 
00179    for (c=0; c<16; c++)                         // store scsi_command
00180    {
00181       g_scsi_command[c] = Usb_read_byte();
00182    }
00183    Usb_ack_receive_out();
00184 
00185    if (Is_usb_ms_data_direction_in())
00186    {
00187       Usb_select_endpoint(EP_MS_IN);
00188    }
00189 
00190    if (TRUE != scsi_decode_command())
00191    {
00192       U8 ep;
00193       Usb_enable_stall_handshake();
00194       if (Is_usb_ms_data_direction_in())
00195       {
00196          ep = (EP_MS_IN & MSK_EP_DIR);
00197       }else{
00198          ep = (EP_MS_OUT & MSK_EP_DIR);
00199       }
00200       endpoint_status[ep] = 0x01;
00201    }
00202 }

Here is the call graph for this function:

Here is the caller graph for this function:

void usb_mass_storage_csw ( void   ) 

USB Command Status Wrapper (CSW) management This function sends the status in relation with the last CBW

Parameters:
none 
Returns:
none

write CSW Signature

'U'

'S'

'B'

'S' write stored CBW Tag

write data residue value

write command status

0 -> PASS, 1 -> FAIL

Definition at line 213 of file storage_task.c.

References dCBWTag, EP_CONTROL, EP_MS_IN, EP_MS_OUT, g_scsi_data_remaining, g_scsi_status, Is_usb_endpoint_enabled, Is_usb_endpoint_stall_requested, Is_usb_receive_setup, Is_usb_write_enabled, LSB0, LSB1, LSB2, LSB3, usb_process_request(), Usb_select_endpoint, Usb_send_in, and Usb_write_byte.

Referenced by storage_task().

00214 {
00215    Usb_select_endpoint(EP_MS_IN);
00216    while (Is_usb_endpoint_stall_requested())
00217    {
00218       Usb_select_endpoint(EP_CONTROL);
00219       if (Is_usb_receive_setup())       { usb_process_request(); }
00220       Usb_select_endpoint(EP_MS_IN);
00221    }
00222 
00223    Usb_select_endpoint(EP_MS_OUT);
00224    while (Is_usb_endpoint_stall_requested())
00225    {
00226       Usb_select_endpoint(EP_CONTROL);
00227       if (Is_usb_receive_setup())       { usb_process_request(); }
00228       Usb_select_endpoint(EP_MS_OUT);
00229    }
00230 
00231 
00232    Usb_select_endpoint(EP_MS_IN);
00233    while(!Is_usb_write_enabled())
00234    {
00235       if(!Is_usb_endpoint_enabled())   return; // USB Reset
00236    }
00238    Usb_write_byte(0x55);                                 
00239    Usb_write_byte(0x53);                                 
00240    Usb_write_byte(0x42);                                 
00241    Usb_write_byte(0x53);                                 
00242 
00243    Usb_write_byte(dCBWTag[0]);
00244    Usb_write_byte(dCBWTag[1]);
00245    Usb_write_byte(dCBWTag[2]);
00246    Usb_write_byte(dCBWTag[3]);
00248    Usb_write_byte( LSB0(g_scsi_data_remaining) );
00249    Usb_write_byte( LSB1(g_scsi_data_remaining) );
00250    Usb_write_byte( LSB2(g_scsi_data_remaining) );
00251    Usb_write_byte( LSB3(g_scsi_data_remaining) );
00252 
00254    Usb_write_byte(g_scsi_status);                        
00255 
00256    Usb_send_in();
00257 }

Here is the call graph for this function:

Here is the caller graph for this function:

void storage_task_init ( void   ) 

This function initializes the hardware/software ressources required for storage task.

Parameters:
none 
Returns:
none
/

Definition at line 86 of file storage_task.c.

References df_mem_init(), Leds_init, and Usb_enable_sof_interrupt.

00087 {
00088    Leds_init();
00089    Usb_enable_sof_interrupt();
00090    df_mem_init();    // Init the hw/sw ressources required to drive the DF.
00091 }

Here is the call graph for this function:

void storage_task ( void   ) 

Entry point of the mass storage task management This function links the mass storage SCSI commands and the USB bus.

Parameters:
none 
Returns:
none

Definition at line 102 of file storage_task.c.

References EP_MS_OUT, Is_device_enumerated, Is_usb_receive_out, usb_mass_storage_cbw(), usb_mass_storage_csw(), and Usb_select_endpoint.

00103 {
00104    if (Is_device_enumerated())
00105    {
00106       Usb_select_endpoint(EP_MS_OUT);
00107       if (Is_usb_receive_out())
00108       {
00109          usb_mass_storage_cbw();
00110          usb_mass_storage_csw();
00111       }
00112    }
00113 }

Here is the call graph for this function:


Variable Documentation

bit ms_data_direction

Definition at line 61 of file storage_task.c.

_MEM_TYPE_SLOW_ U8 dCBWTag[4] [static]

Definition at line 62 of file storage_task.c.

Referenced by usb_mass_storage_cbw(), and usb_mass_storage_csw().

_MEM_TYPE_SLOW_ U8 g_scsi_status

Definition at line 60 of file scsi_decoder.c.

Referenced by usb_mass_storage_csw().

_MEM_TYPE_FAST_ U32 g_scsi_data_remaining

Definition at line 61 of file scsi_decoder.c.

Referenced by sbc_read_10(), sbc_write_10(), usb_mass_storage_cbw(), and usb_mass_storage_csw().

bit ms_multiple_drive

Definition at line 63 of file usb_specific_request.c.

Referenced by usb_mass_storage_cbw(), and usb_user_read_request().

_MEM_TYPE_SLOW_ U8 g_scsi_command[16]

Definition at line 59 of file scsi_decoder.c.

Referenced by sbc_inquiry(), sbc_mode_sense(), sbc_read_10(), sbc_request_sense(), sbc_write_10(), scsi_decode_command(), and usb_mass_storage_cbw().

U8 endpoint_status[MAX_EP_NB]

Definition at line 98 of file usb_standard_request.c.

Referenced by usb_clear_feature(), usb_get_status(), usb_mass_storage_cbw(), usb_process_request(), and usb_set_feature().

_MEM_TYPE_SLOW_ U8 usb_LUN

Definition at line 71 of file storage_task.c.

Referenced by sbc_header_mode_sense(), sbc_read_10(), sbc_read_capacity(), sbc_test_unit_ready(), sbc_write_10(), and usb_mass_storage_cbw().


Generated on Wed Sep 23 09:56:07 2009 for ATMEL by  doxygen 1.5.3