msc_device_romdisk.c 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119
  1. /**************************************************************************/
  2. /*!
  3. @file msc_device_romdisk.c
  4. @author hathach (tinyusb.org)
  5. @section LICENSE
  6. Software License Agreement (BSD License)
  7. Copyright (c) 2013, hathach (tinyusb.org)
  8. All rights reserved.
  9. Redistribution and use in source and binary forms, with or without
  10. modification, are permitted provided that the following conditions are met:
  11. 1. Redistributions of source code must retain the above copyright
  12. notice, this list of conditions and the following disclaimer.
  13. 2. Redistributions in binary form must reproduce the above copyright
  14. notice, this list of conditions and the following disclaimer in the
  15. documentation and/or other materials provided with the distribution.
  16. 3. Neither the name of the copyright holders nor the
  17. names of its contributors may be used to endorse or promote products
  18. derived from this software without specific prior written permission.
  19. THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS ''AS IS'' AND ANY
  20. EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED
  21. WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE
  22. DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT HOLDER BE LIABLE FOR ANY
  23. DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
  24. (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  25. LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND
  26. ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
  27. (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
  28. SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  29. This file is part of the tinyusb stack.
  30. */
  31. /**************************************************************************/
  32. #include "msc_device_app.h"
  33. #if TUSB_CFG_DEVICE_MSC && defined (MSCD_APP_ROMDISK)
  34. //--------------------------------------------------------------------+
  35. // INCLUDE
  36. //--------------------------------------------------------------------+
  37. //--------------------------------------------------------------------+
  38. // MACRO CONSTANT TYPEDEF
  39. //--------------------------------------------------------------------+
  40. //--------------------------------------------------------------------+
  41. // INTERNAL OBJECT & FUNCTION DECLARATION
  42. //--------------------------------------------------------------------+
  43. const uint8_t msc_device_app_rommdisk[DISK_BLOCK_NUM][DISK_BLOCK_SIZE] =
  44. {
  45. //------------- Boot Sector -------------//
  46. // byte_per_sector = DISK_BLOCK_SIZE; fat12_sector_num_16 = DISK_BLOCK_NUM;
  47. // sector_per_cluster = 1; reserved_sectors = 1;
  48. // fat_num = 1; fat12_root_entry_num = 16;
  49. // sector_per_fat = 1; sector_per_track = 1; head_num = 1; hidden_sectors = 0;
  50. // drive_number = 0x80; media_type = 0xf8; extended_boot_signature = 0x29;
  51. // filesystem_type = "FAT12 "; volume_serial_number = 0x1234; volume_label = "tinyusb msc";
  52. [0] =
  53. {
  54. 0xEB, 0x3C, 0x90, 0x4D, 0x53, 0x44, 0x4F, 0x53, 0x35, 0x2E, 0x30, 0x00, 0x02, 0x01, 0x01, 0x00,
  55. 0x01, 0x10, 0x00, 0x10, 0x00, 0xF8, 0x01, 0x00, 0x01, 0x00, 0x01, 0x00, 0x00, 0x00, 0x00, 0x00,
  56. 0x00, 0x00, 0x00, 0x00, 0x80, 0x00, 0x29, 0x34, 0x12, 0x00, 0x00, 0x74, 0x69, 0x6E, 0x79, 0x75,
  57. 0x73, 0x62, 0x20, 0x6D, 0x73, 0x63, 0x46, 0x41, 0x54, 0x31, 0x32, 0x20, 0x20, 0x20, 0x00, 0x00,
  58. [510] = 0x55, [511] = 0xAA // FAT magic code
  59. },
  60. //------------- FAT12 Table -------------//
  61. [1] =
  62. {
  63. 0xF8, 0xFF, 0xFF, 0xFF, 0x0F // first 2 entries must be F8FF, third entry is cluster end of readme file
  64. },
  65. //------------- Root Directory -------------//
  66. [2] =
  67. {
  68. // first entry is volume label
  69. 0x54, 0x49, 0x4E, 0x59, 0x55, 0x53, 0x42, 0x20, 0x4D, 0x53, 0x43, 0x08, 0x00, 0x00, 0x00, 0x00,
  70. 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x4F, 0x6D, 0x65, 0x43, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
  71. // second entry is readme file
  72. 0x52, 0x45, 0x41, 0x44, 0x4D, 0x45, 0x20, 0x20, 0x54, 0x58, 0x54, 0x20, 0x00, 0xC6, 0x52, 0x6D,
  73. 0x65, 0x43, 0x65, 0x43, 0x00, 0x00, 0x88, 0x6D, 0x65, 0x43, 0x02, 0x00,
  74. sizeof(README_CONTENTS)-1, 0x00, 0x00, 0x00 // readme's filesize
  75. },
  76. //------------- Readme Content -------------//
  77. [3] = README_CONTENTS
  78. };
  79. TUSB_CFG_ATTR_USBRAM
  80. static uint8_t sector_buffer[DISK_BLOCK_SIZE];
  81. //--------------------------------------------------------------------+
  82. // IMPLEMENTATION
  83. //--------------------------------------------------------------------+
  84. uint16_t tusbd_msc_read10_cb (uint8_t port, uint8_t lun, void** pp_buffer, uint32_t lba, uint16_t block_count)
  85. {
  86. memcpy(sector_buffer, msc_device_app_rommdisk[lba], DISK_BLOCK_SIZE);
  87. (*pp_buffer) = sector_buffer;
  88. return 1;
  89. }
  90. // Stall write10 by return 0, as this is readonly disk
  91. uint16_t tusbd_msc_write10_cb(uint8_t port, uint8_t lun, void** pp_buffer, uint32_t lba, uint16_t block_count)
  92. {
  93. (*pp_buffer) = NULL;
  94. mscd_sense_data.sense_key = SCSI_SENSEKEY_DATA_PROTECT; // let host know that this is read-only disk
  95. return 0;
  96. }
  97. #endif