130 lines
4.5 KiB
C
Raw Normal View History

/*
* The MIT License (MIT)
*
* Copyright (c) 2018, hathach (tinyusb.org)
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*
* This file is part of the TinyUSB stack.
2018-09-07 17:21:06 +07:00
*/
2018-03-23 14:23:39 +07:00
2018-11-22 11:36:50 +07:00
#include "bsp/board.h"
#include "tusb.h"
2018-03-23 14:23:39 +07:00
2018-11-22 11:32:56 +07:00
#if CFG_TUD_MSC
2018-03-23 14:23:39 +07:00
// Some MCU doesn't have enough 8KB SRAM to store the whole disk
// We will use Flash as read-only disk
#if CFG_TUSB_MCU == OPT_MCU_LPC13XX
2018-12-05 13:32:55 +07:00
#define DISK_READONLY
#endif
2018-11-22 11:36:50 +07:00
#define README_CONTENTS \
"This is tinyusb's MassStorage Class demo.\r\n\r\n\
If you find any bugs or get any questions, feel free to file an\r\n\
issue at github.com/hathach/tinyusb"
2018-11-22 11:32:56 +07:00
enum
{
DISK_BLOCK_NUM = 16, // 8KB is the smallest size that windows allow to mount
DISK_BLOCK_SIZE = 512
};
2018-03-23 14:23:39 +07:00
2018-12-05 13:32:55 +07:00
#ifdef DISK_READONLY
const
#endif
2018-12-07 14:49:55 +07:00
uint8_t msc_disk[DISK_BLOCK_NUM][DISK_BLOCK_SIZE] =
2018-03-23 14:23:39 +07:00
{
//------------- Boot Sector -------------//
// byte_per_sector = DISK_BLOCK_SIZE; fat12_sector_num_16 = DISK_BLOCK_NUM;
// sector_per_cluster = 1; reserved_sectors = 1;
// fat_num = 1; fat12_root_entry_num = 16;
// sector_per_fat = 1; sector_per_track = 1; head_num = 1; hidden_sectors = 0;
// drive_number = 0x80; media_type = 0xf8; extended_boot_signature = 0x29;
// filesystem_type = "FAT12 "; volume_serial_number = 0x1234; volume_label = "tinyusb msc";
[0] =
{
0xEB, 0x3C, 0x90, 0x4D, 0x53, 0x44, 0x4F, 0x53, 0x35, 0x2E, 0x30, 0x00, 0x02, 0x01, 0x01, 0x00,
0x01, 0x10, 0x00, 0x10, 0x00, 0xF8, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x29, 0x34, 0x12, 0x00, 0x00, 0x74, 0x69, 0x6E, 0x79, 0x75,
0x73, 0x62, 0x20, 0x6D, 0x73, 0x63, 0x46, 0x41, 0x54, 0x31, 0x32, 0x20, 0x20, 0x20, 0x00, 0x00,
[510] = 0x55, [511] = 0xAA // FAT magic code
},
//------------- FAT12 Table -------------//
[1] =
{
0xF8, 0xFF, 0xFF, 0xFF, 0x0F // // first 2 entries must be F8FF, third entry is cluster end of readme file
},
//------------- Root Directory -------------//
[2] =
{
// first entry is volume label
0x54, 0x49, 0x4E, 0x59, 0x55, 0x53, 0x42, 0x20, 0x4D, 0x53, 0x43, 0x08, 0x00, 0x00, 0x00, 0x00,
0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x6D, 0x65, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
// second entry is readme file
'R' , 'E' , 'A' , 'D' , 'M' , 'E' , ' ' , ' ' , 'T' , 'X' , 'T' , 0x20, 0x00, 0xC6, 0x52, 0x6D,
0x65, 0x43, 0x65, 0x43, 0x00, 0x00, 0x88, 0x6D, 0x65, 0x43, 0x02, 0x00,
2018-11-22 11:32:56 +07:00
sizeof(README_CONTENTS)-1, 0x00, 0x00, 0x00 // readme's files ize (4 Bytes)
2018-03-23 14:23:39 +07:00
},
//------------- Readme Content -------------//
[3] = README_CONTENTS
};
2018-07-26 22:44:11 +07:00
// Callback invoked when received READ10 command.
// Copy disk's data to buffer (up to bufsize) and return number of copied bytes.
2018-07-25 20:34:56 +07:00
int32_t tud_msc_read10_cb(uint8_t lun, uint32_t lba, uint32_t offset, void* buffer, uint32_t bufsize)
2018-03-23 14:23:39 +07:00
{
(void) lun;
2018-12-03 16:38:29 +07:00
uint8_t const* addr = msc_disk[lba] + offset;
2018-04-20 21:18:59 +07:00
memcpy(buffer, addr, bufsize);
2018-03-23 14:23:39 +07:00
2018-04-20 21:18:59 +07:00
return bufsize;
2018-03-23 14:23:39 +07:00
}
2018-05-14 13:40:20 +07:00
2018-07-26 22:44:11 +07:00
// Callback invoked when received WRITE10 command.
// Process data in buffer to disk's storage and return number of written bytes
2018-11-22 11:32:56 +07:00
int32_t tud_msc_write10_cb(uint8_t lun, uint32_t lba, uint32_t offset, uint8_t* buffer, uint32_t bufsize)
2018-03-23 14:23:39 +07:00
{
(void) lun;
2018-12-05 13:32:55 +07:00
#ifndef DISK_READONLY
uint8_t* addr = msc_disk[lba] + offset;
2018-04-20 21:18:59 +07:00
memcpy(addr, buffer, bufsize);
2018-12-07 14:49:55 +07:00
#else
(void) lba; (void) offset; (void) buffer;
#endif
2018-03-23 14:23:39 +07:00
2018-04-20 21:18:59 +07:00
return bufsize;
2018-03-23 14:23:39 +07:00
}
void tud_msc_capacity_cb(uint8_t lun, uint32_t* block_count, uint16_t* block_size)
{
(void) lun;
*block_count = DISK_BLOCK_NUM;
*block_size = DISK_BLOCK_SIZE;
}
2018-03-23 14:23:39 +07:00
#endif