simmel-bootloader/src/usb/msc_uf2.c

167 lines
4.8 KiB
C
Raw Normal View History

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-06-20 08:28:30 +00:00
#include "msc_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-25 08:57:31 +00:00
#include "pstorage.h"
2018-04-20 06:42:51 +00:00
/*------------------------------------------------------------------*/
/* MACRO TYPEDEF CONSTANT ENUM
*------------------------------------------------------------------*/
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
/*------------------------------------------------------------------*/
/* API
*------------------------------------------------------------------*/
2018-06-20 10:03:38 +00:00
void msc_uf2_init(void)
2018-04-25 08:57:31 +00:00
{
2018-06-25 09:36:50 +00:00
2018-04-25 08:57:31 +00:00
}
2018-06-20 10:03:38 +00:00
void msc_uf2_mount(void)
2018-04-25 08:57:31 +00:00
{
2018-06-20 09:34:05 +00:00
2018-04-05 11:35:30 +00:00
}
2018-06-20 10:03:38 +00:00
void msc_uf2_umount(void)
2018-04-05 11:35:30 +00:00
{
}
2018-04-25 08:57:31 +00:00
//--------------------------------------------------------------------+
// tinyusb 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
{
// read10 & write10 has their own callback and MUST not be handled here
2018-04-19 09:56:25 +00:00
2018-04-25 08:57:31 +00:00
void const* ptr = NULL;
uint16_t len = 0;
2018-04-19 09:56:25 +00:00
2018-04-20 06:42:51 +00:00
// most scsi handled is input
bool in_xfer = true;
2018-04-05 11:35:30 +00:00
switch (scsi_cmd[0])
{
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-04-25 08:57:31 +00:00
len = 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
len = 0;
break;
case SCSI_CMD_START_STOP_UNIT:
// Host try to eject/safe remove/powerof us. We could safely disconnect with disk storage, or go into lower power
// scsi_start_stop_unit_t const * cmd_start_stop = (scsi_start_stop_unit_t const *) scsi_cmd
2018-04-25 08:57:31 +00:00
len = 0;
2018-04-05 11:35:30 +00:00
break;
2018-04-19 09:56:25 +00:00
default:
2018-04-25 08:57:31 +00:00
// negative is error -> Data stage is STALL, status = failed
return -1;
2018-04-19 09:56:25 +00:00
}
2018-04-25 08:57:31 +00:00
// return len must not larger than bufsize
TU_ASSERT( bufsize >= len );
2018-04-19 09:56:25 +00:00
2018-04-25 08:57:31 +00:00
if ( ptr && len )
{
if(in_xfer)
{
memcpy(buffer, ptr, len);
}else
{
// SCSI output
}
2018-04-05 11:35:30 +00:00
}
2018-04-25 08:57:31 +00:00
return len;
2018-04-05 11:35:30 +00:00
}
2018-04-25 08:57:31 +00:00
/*------------------------------------------------------------------*/
/* Tinyusb Flash READ10 & WRITE10
*------------------------------------------------------------------*/
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-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-26 09:22:21 +00:00
int32_t tud_msc_write10_cb (uint8_t lun, uint32_t lba, uint32_t offset, void* 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
}
#endif