2018-04-05 11:35:30 +00:00
|
|
|
/**************************************************************************/
|
|
|
|
/*!
|
2018-06-20 08:28:30 +00:00
|
|
|
@file msc_uf2.c
|
2018-04-05 11:35:30 +00:00
|
|
|
@author hathach (tinyusb.org)
|
|
|
|
|
|
|
|
@section LICENSE
|
|
|
|
|
|
|
|
Software License Agreement (BSD License)
|
|
|
|
|
2018-04-20 06:42:51 +00:00
|
|
|
Copyright (c) 2018, Adafruit Industries (adafruit.com)
|
2018-04-05 11:35:30 +00:00
|
|
|
All rights reserved.
|
|
|
|
|
|
|
|
Redistribution and use in source and binary forms, with or without
|
|
|
|
modification, are permitted provided that the following conditions are met:
|
|
|
|
1. Redistributions of source code must retain the above copyright
|
|
|
|
notice, this list of conditions and the following disclaimer.
|
|
|
|
2. 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.
|
|
|
|
3. Neither the name of the copyright holders nor the
|
|
|
|
names of its 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 ''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 HOLDER 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.
|
|
|
|
*/
|
|
|
|
/**************************************************************************/
|
|
|
|
|
2018-08-14 08:56:24 +00:00
|
|
|
#include "tusb.h"
|
|
|
|
#include "uf2/uf2.h"
|
2018-04-05 11:35:30 +00:00
|
|
|
|
2018-04-12 11:11:45 +00:00
|
|
|
#if CFG_TUD_MSC
|
2018-04-05 11:35:30 +00:00
|
|
|
|
2018-04-20 06:42:51 +00:00
|
|
|
/*------------------------------------------------------------------*/
|
|
|
|
/* MACRO TYPEDEF CONSTANT ENUM
|
|
|
|
*------------------------------------------------------------------*/
|
2018-05-11 13:34:17 +00:00
|
|
|
|
2018-06-20 09:44:11 +00:00
|
|
|
/*------------------------------------------------------------------*/
|
|
|
|
/* UF2
|
|
|
|
*------------------------------------------------------------------*/
|
2018-06-21 05:22:42 +00:00
|
|
|
void read_block(uint32_t block_no, uint8_t *data);
|
2018-06-25 09:00:42 +00:00
|
|
|
int write_block(uint32_t block_no, uint8_t *data, bool quiet/*, WriteState *state*/);
|
2018-06-20 09:44:11 +00:00
|
|
|
|
2018-04-25 08:57:31 +00:00
|
|
|
//--------------------------------------------------------------------+
|
|
|
|
// tinyusb callbacks
|
|
|
|
//--------------------------------------------------------------------+
|
2018-07-31 06:53:55 +00:00
|
|
|
|
|
|
|
// Callback invoked when received an SCSI command not in built-in list below
|
|
|
|
// - READ_CAPACITY10, READ_FORMAT_CAPACITY, INQUIRY, MODE_SENSE6, REQUEST_SENSE
|
|
|
|
// - READ10 and WRITE10 has their own callbacks
|
2018-07-26 09:22:21 +00:00
|
|
|
int32_t tud_msc_scsi_cb (uint8_t lun, uint8_t const scsi_cmd[16], void* buffer, uint16_t bufsize)
|
2018-04-05 11:35:30 +00:00
|
|
|
{
|
2018-07-31 06:53:55 +00:00
|
|
|
void const* response = NULL;
|
|
|
|
uint16_t resplen = 0;
|
2018-04-19 09:56:25 +00:00
|
|
|
|
2018-07-31 06:53:55 +00:00
|
|
|
switch ( scsi_cmd[0] )
|
2018-04-05 11:35:30 +00:00
|
|
|
{
|
|
|
|
case SCSI_CMD_TEST_UNIT_READY:
|
2018-07-26 09:22:21 +00:00
|
|
|
// Command that host uses to check our readiness before sending other commands
|
2018-07-31 06:53:55 +00:00
|
|
|
resplen = 0;
|
2018-04-05 11:35:30 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SCSI_CMD_PREVENT_ALLOW_MEDIUM_REMOVAL:
|
2018-07-26 09:22:21 +00:00
|
|
|
// Host is about to read/write etc ... better not to disconnect disk
|
2018-07-31 06:53:55 +00:00
|
|
|
resplen = 0;
|
2018-07-26 09:22:21 +00:00
|
|
|
break;
|
|
|
|
|
|
|
|
case SCSI_CMD_START_STOP_UNIT:
|
2018-07-31 06:53:55 +00:00
|
|
|
// Host try to eject/safe remove/poweroff us. We could safely disconnect with disk storage, or go into lower power
|
|
|
|
/* scsi_start_stop_unit_t const * start_stop = (scsi_start_stop_unit_t const *) scsi_cmd;
|
|
|
|
// Start bit = 0 : low power mode, if load_eject = 1 : unmount disk storage as well
|
|
|
|
// Start bit = 1 : Ready mode, if load_eject = 1 : mount disk storage
|
|
|
|
start_stop->start;
|
|
|
|
start_stop->load_eject;
|
|
|
|
*/
|
|
|
|
resplen = 0;
|
2018-04-05 11:35:30 +00:00
|
|
|
break;
|
|
|
|
|
2018-04-19 09:56:25 +00:00
|
|
|
default:
|
2018-07-31 06:53:55 +00:00
|
|
|
// Set Sense = Invalid Command Operation
|
|
|
|
tud_msc_set_sense(lun, SCSI_SENSE_ILLEGAL_REQUEST, 0x20, 0x00);
|
|
|
|
|
|
|
|
// negative means error -> tinyusb could stall and/or response with failed status
|
|
|
|
resplen = -1;
|
|
|
|
break;
|
2018-04-19 09:56:25 +00:00
|
|
|
}
|
|
|
|
|
2018-04-25 08:57:31 +00:00
|
|
|
// return len must not larger than bufsize
|
2018-07-31 06:53:55 +00:00
|
|
|
if ( resplen > bufsize ) resplen = bufsize;
|
2018-04-19 09:56:25 +00:00
|
|
|
|
2018-07-31 06:53:55 +00:00
|
|
|
// copy response to stack's buffer if any
|
|
|
|
if ( response && resplen )
|
2018-04-25 08:57:31 +00:00
|
|
|
{
|
2018-07-31 06:53:55 +00:00
|
|
|
memcpy(buffer, response, resplen);
|
2018-04-05 11:35:30 +00:00
|
|
|
}
|
|
|
|
|
2018-07-31 06:53:55 +00:00
|
|
|
return resplen;
|
2018-04-05 11:35:30 +00:00
|
|
|
}
|
|
|
|
|
2018-07-31 06:53:55 +00:00
|
|
|
// Callback invoked when received READ10 command.
|
|
|
|
// Copy disk's data to buffer (up to bufsize) and return number of copied bytes.
|
2018-07-26 09:22:21 +00:00
|
|
|
int32_t tud_msc_read10_cb (uint8_t lun, uint32_t lba, uint32_t offset, void* buffer, uint32_t bufsize)
|
2018-04-20 06:42:51 +00:00
|
|
|
{
|
2018-07-26 09:22:21 +00:00
|
|
|
(void) lun;
|
2018-04-25 08:57:31 +00:00
|
|
|
|
2018-06-21 05:22:42 +00:00
|
|
|
// since we return block size each, offset should always be zero
|
|
|
|
TU_ASSERT(offset == 0, -1);
|
2018-06-20 09:44:11 +00:00
|
|
|
|
2018-06-21 05:22:42 +00:00
|
|
|
uint32_t count = 0;
|
2018-06-20 10:03:38 +00:00
|
|
|
|
2018-06-21 05:22:42 +00:00
|
|
|
while ( count < bufsize )
|
|
|
|
{
|
|
|
|
read_block(lba, buffer);
|
2018-06-20 10:03:38 +00:00
|
|
|
|
2018-06-21 05:22:42 +00:00
|
|
|
lba++;
|
|
|
|
buffer += 512;
|
|
|
|
count += 512;
|
2018-06-20 09:18:55 +00:00
|
|
|
}
|
2018-04-05 11:35:30 +00:00
|
|
|
|
2018-06-21 05:22:42 +00:00
|
|
|
return count;
|
2018-04-05 11:35:30 +00:00
|
|
|
}
|
2018-04-25 08:57:31 +00:00
|
|
|
|
2018-07-31 06:53:55 +00:00
|
|
|
// Callback invoked when received WRITE10 command.
|
|
|
|
// Process data in buffer to disk's storage and return number of written bytes
|
2018-11-23 08:54:02 +00:00
|
|
|
int32_t tud_msc_write10_cb (uint8_t lun, uint32_t lba, uint32_t offset, uint8_t* buffer, uint32_t bufsize)
|
2018-04-05 11:35:30 +00:00
|
|
|
{
|
2018-07-26 09:22:21 +00:00
|
|
|
(void) lun;
|
2018-04-05 11:35:30 +00:00
|
|
|
|
2018-06-25 09:00:42 +00:00
|
|
|
uint32_t count = 0;
|
|
|
|
int wr_ret;
|
2018-04-25 08:57:31 +00:00
|
|
|
|
2018-06-25 09:00:42 +00:00
|
|
|
while ( (count < bufsize) && ((wr_ret = write_block(lba, buffer, false)) > 0) )
|
2018-04-25 08:57:31 +00:00
|
|
|
{
|
2018-06-25 09:00:42 +00:00
|
|
|
lba++;
|
|
|
|
buffer += 512;
|
|
|
|
count += 512;
|
2018-04-25 08:57:31 +00:00
|
|
|
}
|
2018-06-25 09:00:42 +00:00
|
|
|
|
|
|
|
// Consider non-uf2 block write as successful
|
|
|
|
return (wr_ret < 0) ? bufsize : count;
|
2018-04-05 11:35:30 +00:00
|
|
|
}
|
|
|
|
|
2018-11-23 08:54:02 +00:00
|
|
|
void tud_msc_capacity_cb(uint8_t lun, uint32_t* block_count, uint16_t* block_size)
|
|
|
|
{
|
|
|
|
(void) lun;
|
|
|
|
|
|
|
|
*block_count = UF2_NUM_BLOCKS;
|
|
|
|
*block_size = 512;
|
|
|
|
}
|
|
|
|
|
2018-04-05 11:35:30 +00:00
|
|
|
#endif
|