ZuluSCSI_platform_msc.cpp 12 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393
  1. /**
  2. * Copyright (c) 2023-2024 zigzagjoe
  3. *
  4. * ZuluSCSI™ firmware is licensed under the GPL version 3 or any later version. 
  5. *
  6. * https://www.gnu.org/licenses/gpl-3.0.html
  7. * ----
  8. * This program is free software: you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation, either version 3 of the License, or
  11. * (at your option) any later version. 
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  16. * GNU General Public License for more details. 
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program.  If not, see <https://www.gnu.org/licenses/>.
  20. **/
  21. /* platform specific MSC routines */
  22. #ifdef PLATFORM_MASS_STORAGE
  23. #include <device/usbd.h>
  24. #include <hardware/gpio.h>
  25. #include "ZuluSCSI_platform.h"
  26. #include "ZuluSCSI_disk.h"
  27. #include "ZuluSCSI_log.h"
  28. #include "ZuluSCSI_msc.h"
  29. #include "ZuluSCSI_msc_initiator.h"
  30. #include "ZuluSCSI_config.h"
  31. #include "ZuluSCSI_settings.h"
  32. #include <class/msc/msc.h>
  33. #include <class/msc/msc_device.h>
  34. #include <pico/mutex.h>
  35. extern mutex_t __usb_mutex;
  36. #if CFG_TUD_MSC_EP_BUFSIZE < SD_SECTOR_SIZE
  37. #error "CFG_TUD_MSC_EP_BUFSIZE is too small! It needs to be at least 512 (SD_SECTOR_SIZE)"
  38. #endif
  39. #define DIGITAL_PIN_CYW43_OFFSET 64
  40. // external global SD variable
  41. extern SdFs SD;
  42. // external images configuration
  43. extern image_config_t g_DiskImages[S2S_MAX_TARGETS];
  44. static bool g_msc_lock; // To block re-entrant calls
  45. static bool g_msc_usb_mutex_held;
  46. /* globals */
  47. static struct {
  48. uint8_t lun_unitReady[S2S_MAX_TARGETS];
  49. image_config_t * lun_config[S2S_MAX_TARGETS];
  50. uint8_t lun_count = 0;
  51. uint8_t unitReady = 0;
  52. uint8_t SDMode = 1;
  53. } g_MSC;
  54. void platform_msc_lock_set(bool block)
  55. {
  56. if (block)
  57. {
  58. if (g_msc_lock)
  59. {
  60. logmsg("Re-entrant MSC lock!");
  61. assert(false);
  62. }
  63. g_msc_usb_mutex_held = mutex_try_enter(&__usb_mutex, NULL); // Blocks USB IRQ if not already blocked
  64. g_msc_lock = true; // Blocks platform USB polling
  65. }
  66. else
  67. {
  68. if (!g_msc_lock)
  69. {
  70. logmsg("MSC lock released when not held!");
  71. assert(false);
  72. }
  73. g_msc_lock = false;
  74. if (g_msc_usb_mutex_held)
  75. {
  76. g_msc_usb_mutex_held = false;
  77. mutex_exit(&__usb_mutex);
  78. }
  79. }
  80. }
  81. bool platform_msc_lock_get()
  82. {
  83. return g_msc_lock;
  84. }
  85. struct MSCScopedLock {
  86. public:
  87. MSCScopedLock() { platform_msc_lock_set(true); }
  88. ~MSCScopedLock() { platform_msc_lock_set(false); }
  89. };
  90. /* return true if USB presence detected / eligble to enter CR mode */
  91. bool platform_sense_msc() {
  92. #if defined(ZULUSCSI_PICO) || defined(ZULUSCSI_PICO_2)
  93. // check if we're USB powered, if not, exit immediately
  94. // pin on the wireless module, see https://github.com/earlephilhower/arduino-pico/discussions/835
  95. // Update: from the above discussion the offset 32 has been changed to 64 to access CYW43 GPIO pins
  96. // since the addition of the RP2350 chips, now stored in the DIGITAL_PIN_CYW43_OFFSET define
  97. if (rp2040.isPicoW() && !digitalRead(DIGITAL_PIN_CYW43_OFFSET + 2))
  98. return false;
  99. if (!rp2040.isPicoW() && !digitalRead(24))
  100. return false;
  101. #endif
  102. logmsg("Waiting for USB enumeration to enter Card Reader mode.");
  103. // wait for up to a second to be enumerated
  104. uint32_t start = millis();
  105. bool timed_out = false;
  106. uint16_t usb_timeout = g_scsi_settings.getSystem()->usbMassStorageWaitPeriod;
  107. while (!tud_connected())
  108. {
  109. if ((uint32_t)(millis() - start) > usb_timeout)
  110. {
  111. logmsg("Waiting for USB enumeration timed out after ", usb_timeout, "ms.");
  112. logmsg("-- Try increasing 'USBMassStorageWaitPeriod' in the ", CONFIGFILE);
  113. timed_out = true;
  114. break;
  115. }
  116. delay(100);
  117. }
  118. if (!timed_out)
  119. dbgmsg("USB enumeration took ", (int)((uint32_t)(millis() - start)), "ms");
  120. // tud_connected returns True if just got out of Bus Reset and received the very first data from host
  121. // https://github.com/hathach/tinyusb/blob/master/src/device/usbd.h#L63
  122. return tud_connected();
  123. }
  124. /* perform periodic tasks, return true if we should remain in card reader mode */
  125. bool platform_run_msc() {
  126. return g_MSC.unitReady;
  127. }
  128. /* load the setting if we present images or not */
  129. void platform_set_msc_image_mode(bool image_mode) {
  130. g_MSC.SDMode = !image_mode;
  131. }
  132. /* perform MSC class preinit tasks */
  133. void platform_enter_msc() {
  134. dbgmsg("USB MSC buffer size: ", CFG_TUD_MSC_EP_BUFSIZE);
  135. g_MSC.lun_count = 0;
  136. if (!g_MSC.SDMode) {
  137. logmsg("Presenting configured images as USB storage devices");
  138. for (int i = 0; i < S2S_MAX_TARGETS; i++) {
  139. if (g_DiskImages[i].file.isOpen()) {
  140. logmsg("USB LUN ", (int)g_MSC.lun_count," => ",g_DiskImages[i].current_image);
  141. // anything but linux probably won't deal gracefully with nonstandard or odd sector sizes, present a warning
  142. if (g_DiskImages[i].bytesPerSector != 512 && g_DiskImages[i].bytesPerSector != 4096) {
  143. logmsg("Warning: USB LUN ",(int)g_MSC.lun_count," uses a sector size of ",g_DiskImages[i].bytesPerSector,". Not all OS can deal with this!");
  144. }
  145. g_MSC.lun_config[g_MSC.lun_count] = &g_DiskImages[i];
  146. g_MSC.lun_unitReady[g_MSC.lun_count] = 1;
  147. g_MSC.lun_count ++;
  148. }
  149. }
  150. if (g_MSC.lun_count == 0) {
  151. logmsg("No images to present, falling back to SD card!");
  152. g_MSC.SDMode = 1;
  153. } else
  154. logmsg("Total USB LUN ", (int)g_MSC.lun_count);
  155. }
  156. if (g_MSC.SDMode) {
  157. logmsg("Presenting SD card as USB storage device");
  158. g_MSC.lun_count = 1;
  159. g_MSC.lun_unitReady[0] = 1;
  160. }
  161. // MSC is ready for read/write
  162. g_MSC.unitReady = g_MSC.lun_count;
  163. }
  164. /* perform any cleanup tasks for the MSC-specific functionality */
  165. void platform_exit_msc() {
  166. g_MSC.unitReady = 0;
  167. }
  168. /* TinyUSB mass storage callbacks follow */
  169. // usb framework checks this func exists for mass storage config. no code needed.
  170. void __USBInstallMassStorage() { }
  171. // Invoked when received SCSI_CMD_INQUIRY
  172. // fill vendor id, product id and revision with string up to 8, 16, 4 characters respectively
  173. extern "C" void tud_msc_inquiry_cb(uint8_t lun, uint8_t vendor_id[8],
  174. uint8_t product_id[16], uint8_t product_rev[4]) {
  175. MSCScopedLock lock;
  176. if (g_msc_initiator) return init_msc_inquiry_cb(lun, vendor_id, product_id, product_rev);
  177. const char vid[] = "ZuluSCSI";
  178. const char pid[] = PLATFORM_PID;
  179. const char rev[] = "1.0";
  180. memcpy(vendor_id, vid, tu_min32(strlen(vid), 8));
  181. memcpy(product_id, pid, tu_min32(strlen(pid), 16));
  182. memcpy(product_rev, rev, tu_min32(strlen(rev), 4));
  183. }
  184. // max LUN supported
  185. // we only have the one SD card
  186. extern "C" uint8_t tud_msc_get_maxlun_cb(void)
  187. {
  188. MSCScopedLock lock;
  189. if (g_msc_initiator) return init_msc_get_maxlun_cb();
  190. return g_MSC.lun_count; // number of LUNs supported
  191. }
  192. // return writable status
  193. // on platform supporting write protect switch, could do that here.
  194. // otherwise this is not actually needed
  195. extern "C" bool tud_msc_is_writable_cb (uint8_t lun)
  196. {
  197. MSCScopedLock lock;
  198. if (g_msc_initiator) return init_msc_is_writable_cb(lun);
  199. if (g_MSC.SDMode) return g_MSC.unitReady;
  200. (void) lun;
  201. return g_MSC.unitReady && g_MSC.lun_unitReady[lun] && g_MSC.lun_config[lun]->file.isWritable();
  202. }
  203. // see https://www.seagate.com/files/staticfiles/support/docs/manual/Interface%20manuals/100293068j.pdf pg 221
  204. extern "C" bool tud_msc_start_stop_cb(uint8_t lun, uint8_t power_condition, bool start, bool load_eject)
  205. {
  206. MSCScopedLock lock;
  207. if (g_msc_initiator) return init_msc_start_stop_cb(lun, power_condition, start, load_eject);
  208. if (load_eject) {
  209. if (start) {
  210. // load disk storage
  211. // do nothing as we started "loaded"
  212. } else {
  213. g_MSC.lun_unitReady[lun] = false;
  214. if (g_MSC.unitReady) // no more active LUNs -> global not ready flag
  215. g_MSC.unitReady --;
  216. }
  217. }
  218. return true;
  219. }
  220. // return true if we are ready to service reads/writes
  221. extern "C" bool tud_msc_test_unit_ready_cb(uint8_t lun)
  222. {
  223. MSCScopedLock lock;
  224. if (g_msc_initiator) return init_msc_test_unit_ready_cb(lun);
  225. return g_MSC.unitReady && g_MSC.lun_unitReady[lun];
  226. }
  227. // return size in blocks and block size
  228. extern "C" void tud_msc_capacity_cb(uint8_t lun, uint32_t *block_count,
  229. uint16_t *block_size)
  230. {
  231. MSCScopedLock lock;
  232. if (g_msc_initiator) return init_msc_capacity_cb(lun, block_count, block_size);
  233. if (g_MSC.SDMode) {
  234. *block_count = g_MSC.unitReady ? (SD.card()->sectorCount()) : 0;
  235. *block_size = SD_SECTOR_SIZE;
  236. } else { // present the bytesPerSector of file, though it remains to be seen if host will like this
  237. *block_count = (g_MSC.unitReady && g_MSC.lun_unitReady[lun]) ? (g_MSC.lun_config[lun]->file.size() / SD_SECTOR_SIZE) : 0;
  238. *block_size = g_MSC.lun_config[lun]->bytesPerSector;
  239. }
  240. }
  241. // Callback invoked when received an SCSI command not in built-in list (below) which have their own callbacks
  242. // - READ_CAPACITY10, READ_FORMAT_CAPACITY, INQUIRY, MODE_SENSE6, REQUEST_SENSE, READ10 and WRITE10
  243. extern "C" int32_t tud_msc_scsi_cb(uint8_t lun, const uint8_t scsi_cmd[16], void *buffer,
  244. uint16_t bufsize)
  245. {
  246. MSCScopedLock lock;
  247. if (g_msc_initiator) return init_msc_scsi_cb(lun, scsi_cmd, buffer, bufsize);
  248. const void *response = NULL;
  249. uint16_t resplen = 0;
  250. switch (scsi_cmd[0]) {
  251. case SCSI_CMD_PREVENT_ALLOW_MEDIUM_REMOVAL:
  252. // Host is about to read/write etc ... better not to disconnect disk
  253. resplen = 0;
  254. break;
  255. default:
  256. // Set Sense = Invalid Command Operation
  257. tud_msc_set_sense(lun, SCSI_SENSE_ILLEGAL_REQUEST, 0x20, 0x00);
  258. // negative means error -> tinyusb could stall and/or response with failed status
  259. resplen = -1;
  260. break;
  261. }
  262. // return len must not larger than bufsize
  263. if (resplen > bufsize) {
  264. resplen = bufsize;
  265. }
  266. // copy response to stack's buffer if any
  267. if (response && resplen) {
  268. memcpy(buffer, response, resplen);
  269. }
  270. return resplen;
  271. }
  272. // Callback invoked when received READ10 command.
  273. // Copy disk's data to buffer (up to bufsize) and return number of copied bytes (must be multiple of block size)
  274. extern "C" int32_t tud_msc_read10_cb(uint8_t lun, uint32_t lba, uint32_t offset,
  275. void* buffer, uint32_t bufsize)
  276. {
  277. MSCScopedLock lock;
  278. if (g_msc_initiator) return init_msc_read10_cb(lun, lba, offset, buffer, bufsize);
  279. bool rc = 0;
  280. if (g_MSC.SDMode) {
  281. rc = SD.card()->readSectors(lba, (uint8_t*) buffer, bufsize/SD_SECTOR_SIZE);
  282. } else {
  283. if (g_MSC.lun_unitReady[lun]) {
  284. g_MSC.lun_config[lun]->file.seek(lba * g_MSC.lun_config[lun]->bytesPerSector);
  285. rc = g_MSC.lun_config[lun]->file.read(buffer, bufsize);
  286. } else {
  287. logmsg("Attempted read to non-ready LUN ",lun);
  288. }
  289. }
  290. // only blink fast on reads; writes will override this
  291. if (MSC_LEDMode == LED_SOLIDON)
  292. MSC_LEDMode = LED_BLINK_FAST;
  293. return rc ? bufsize : -1;
  294. }
  295. // Callback invoked when receive WRITE10 command.
  296. // Process data in buffer to disk's storage and return number of written bytes (must be multiple of block size)
  297. extern "C" int32_t tud_msc_write10_cb(uint8_t lun, uint32_t lba, uint32_t offset,
  298. uint8_t *buffer, uint32_t bufsize)
  299. {
  300. MSCScopedLock lock;
  301. if (g_msc_initiator) return init_msc_read10_cb(lun, lba, offset, buffer, bufsize);
  302. bool rc = 0;
  303. if (g_MSC.SDMode) {
  304. rc = SD.card()->writeSectors(lba, buffer, bufsize/SD_SECTOR_SIZE);
  305. } else {
  306. if (g_MSC.lun_unitReady[lun]) {
  307. g_MSC.lun_config[lun]->file.seek(lba * g_MSC.lun_config[lun]->bytesPerSector);
  308. rc = g_MSC.lun_config[lun]->file.write(buffer, bufsize);
  309. } else {
  310. logmsg("Attempted write to non-ready LUN ",lun);
  311. }
  312. }
  313. // always slow blink
  314. MSC_LEDMode = LED_BLINK_SLOW;
  315. return rc ? bufsize : -1;
  316. }
  317. // Callback invoked when WRITE10 command is completed (status received and accepted by host).
  318. // used to flush any pending cache to storage
  319. extern "C" void tud_msc_write10_complete_cb(uint8_t lun)
  320. {
  321. MSCScopedLock lock;
  322. if (g_msc_initiator) return init_msc_write10_complete_cb(lun);
  323. }
  324. #endif