ZuluSCSI_platform_msc.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421
  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. /* return true if the image type makes sense as a mass-storage device */
  133. bool msc_image_eligble(uint8_t t) {
  134. switch (t) {
  135. case S2S_CFG_FIXED:
  136. case S2S_CFG_REMOVABLE:
  137. case S2S_CFG_MO: /* not actually sure about this and zip */
  138. case S2S_CFG_ZIP100:
  139. return true;
  140. case S2S_CFG_OPTICAL: /* will not contain a MBR */
  141. case S2S_CFG_FLOPPY_14MB: /* will not contain a MBR */
  142. case S2S_CFG_SEQUENTIAL: /* tape drive */
  143. case S2S_CFG_NETWORK: /* always empty */
  144. case S2S_CFG_NOT_SET:
  145. default:
  146. return false;
  147. }
  148. }
  149. /* perform MSC class preinit tasks */
  150. void platform_enter_msc() {
  151. dbgmsg("USB MSC buffer size: ", CFG_TUD_MSC_EP_BUFSIZE);
  152. g_MSC.lun_count = 0;
  153. if (!g_MSC.SDMode) {
  154. logmsg("Presenting configured images as USB storage devices");
  155. for (int i = 0; i < S2S_MAX_TARGETS; i++) {
  156. if (msc_image_eligble(g_DiskImages[i].deviceType) && g_DiskImages[i].file.isOpen()) {
  157. logmsg("USB LUN ", (int)g_MSC.lun_count," => ",g_DiskImages[i].current_image);
  158. // anything but linux probably won't deal gracefully with nonstandard or odd sector sizes, present a warning
  159. if (g_DiskImages[i].bytesPerSector != 512 && g_DiskImages[i].bytesPerSector != 4096) {
  160. 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!");
  161. }
  162. g_MSC.lun_config[g_MSC.lun_count] = &g_DiskImages[i];
  163. g_MSC.lun_unitReady[g_MSC.lun_count] = 1;
  164. g_MSC.lun_count ++;
  165. }
  166. }
  167. if (g_MSC.lun_count == 0) {
  168. logmsg("No images to present, falling back to SD card!");
  169. g_MSC.SDMode = 1;
  170. } else
  171. logmsg("Total USB LUN ", (int)g_MSC.lun_count);
  172. }
  173. if (g_MSC.SDMode) {
  174. logmsg("Presenting SD card as USB storage device");
  175. g_MSC.lun_count = 1;
  176. g_MSC.lun_unitReady[0] = 1;
  177. }
  178. // MSC is ready for read/write
  179. g_MSC.unitReady = g_MSC.lun_count;
  180. }
  181. /* perform any cleanup tasks for the MSC-specific functionality */
  182. void platform_exit_msc() {
  183. g_MSC.unitReady = 0;
  184. }
  185. /* TinyUSB mass storage callbacks follow */
  186. // usb framework checks this func exists for mass storage config. no code needed.
  187. void __USBInstallMassStorage() { }
  188. // Invoked when received SCSI_CMD_INQUIRY
  189. // fill vendor id, product id and revision with string up to 8, 16, 4 characters respectively
  190. extern "C" void tud_msc_inquiry_cb(uint8_t lun, uint8_t vendor_id[8],
  191. uint8_t product_id[16], uint8_t product_rev[4]) {
  192. MSCScopedLock lock;
  193. if (g_msc_initiator) return init_msc_inquiry_cb(lun, vendor_id, product_id, product_rev);
  194. const char vid[] = "ZuluSCSI";
  195. const char pid[] = PLATFORM_PID;
  196. const char rev[] = "1.0";
  197. memcpy(vendor_id, vid, tu_min32(strlen(vid), 8));
  198. memcpy(product_id, pid, tu_min32(strlen(pid), 16));
  199. memcpy(product_rev, rev, tu_min32(strlen(rev), 4));
  200. }
  201. // max LUN supported
  202. // we only have the one SD card
  203. extern "C" uint8_t tud_msc_get_maxlun_cb(void)
  204. {
  205. MSCScopedLock lock;
  206. if (g_msc_initiator) return init_msc_get_maxlun_cb();
  207. if (g_MSC.lun_count != 0)
  208. {
  209. return g_MSC.lun_count; // number of LUNs supported
  210. }
  211. else
  212. {
  213. // Returning 0 makes TU_VERIFY(maxlun); fail in tinyusb/src/class/msc/msc_device.c:378
  214. // This stalls the endpoint and causes an unnecessary enumeration delay on Windows.
  215. return 1;
  216. }
  217. }
  218. // return writable status
  219. // on platform supporting write protect switch, could do that here.
  220. // otherwise this is not actually needed
  221. extern "C" bool tud_msc_is_writable_cb (uint8_t lun)
  222. {
  223. MSCScopedLock lock;
  224. if (g_msc_initiator) return init_msc_is_writable_cb(lun);
  225. if (g_MSC.SDMode) return g_MSC.unitReady;
  226. (void) lun;
  227. return g_MSC.unitReady && g_MSC.lun_unitReady[lun] && g_MSC.lun_config[lun]->file.isWritable();
  228. }
  229. // see https://www.seagate.com/files/staticfiles/support/docs/manual/Interface%20manuals/100293068j.pdf pg 221
  230. extern "C" bool tud_msc_start_stop_cb(uint8_t lun, uint8_t power_condition, bool start, bool load_eject)
  231. {
  232. MSCScopedLock lock;
  233. if (g_msc_initiator) return init_msc_start_stop_cb(lun, power_condition, start, load_eject);
  234. if (load_eject) {
  235. if (start) {
  236. // load disk storage
  237. // do nothing as we started "loaded"
  238. } else {
  239. g_MSC.lun_unitReady[lun] = false;
  240. if (g_MSC.unitReady) // no more active LUNs -> global not ready flag
  241. g_MSC.unitReady --;
  242. }
  243. }
  244. return true;
  245. }
  246. // return true if we are ready to service reads/writes
  247. extern "C" bool tud_msc_test_unit_ready_cb(uint8_t lun)
  248. {
  249. MSCScopedLock lock;
  250. if (g_msc_initiator) return init_msc_test_unit_ready_cb(lun);
  251. return g_MSC.unitReady && g_MSC.lun_unitReady[lun];
  252. }
  253. // return size in blocks and block size
  254. extern "C" void tud_msc_capacity_cb(uint8_t lun, uint32_t *block_count,
  255. uint16_t *block_size)
  256. {
  257. MSCScopedLock lock;
  258. if (g_msc_initiator) return init_msc_capacity_cb(lun, block_count, block_size);
  259. if (g_MSC.SDMode) {
  260. *block_count = g_MSC.unitReady ? (SD.card()->sectorCount()) : 0;
  261. *block_size = SD_SECTOR_SIZE;
  262. } else { // present the bytesPerSector of file, though it remains to be seen if host will like this
  263. *block_count = (g_MSC.unitReady && g_MSC.lun_unitReady[lun]) ? (g_MSC.lun_config[lun]->file.size() / g_MSC.lun_config[lun]->bytesPerSector) : 0;
  264. *block_size = g_MSC.lun_config[lun]->bytesPerSector;
  265. }
  266. }
  267. // Callback invoked when received an SCSI command not in built-in list (below) which have their own callbacks
  268. // - READ_CAPACITY10, READ_FORMAT_CAPACITY, INQUIRY, MODE_SENSE6, REQUEST_SENSE, READ10 and WRITE10
  269. extern "C" int32_t tud_msc_scsi_cb(uint8_t lun, const uint8_t scsi_cmd[16], void *buffer,
  270. uint16_t bufsize)
  271. {
  272. MSCScopedLock lock;
  273. if (g_msc_initiator) return init_msc_scsi_cb(lun, scsi_cmd, buffer, bufsize);
  274. const void *response = NULL;
  275. uint16_t resplen = 0;
  276. switch (scsi_cmd[0]) {
  277. case SCSI_CMD_PREVENT_ALLOW_MEDIUM_REMOVAL:
  278. // Host is about to read/write etc ... better not to disconnect disk
  279. resplen = 0;
  280. break;
  281. default:
  282. // Set Sense = Invalid Command Operation
  283. tud_msc_set_sense(lun, SCSI_SENSE_ILLEGAL_REQUEST, 0x20, 0x00);
  284. // negative means error -> tinyusb could stall and/or response with failed status
  285. resplen = -1;
  286. break;
  287. }
  288. // return len must not larger than bufsize
  289. if (resplen > bufsize) {
  290. resplen = bufsize;
  291. }
  292. // copy response to stack's buffer if any
  293. if (response && resplen) {
  294. memcpy(buffer, response, resplen);
  295. }
  296. return resplen;
  297. }
  298. // Callback invoked when received READ10 command.
  299. // Copy disk's data to buffer (up to bufsize) and return number of copied bytes (must be multiple of block size)
  300. extern "C" int32_t tud_msc_read10_cb(uint8_t lun, uint32_t lba, uint32_t offset,
  301. void* buffer, uint32_t bufsize)
  302. {
  303. MSCScopedLock lock;
  304. if (g_msc_initiator) return init_msc_read10_cb(lun, lba, offset, buffer, bufsize);
  305. bool rc = 0;
  306. if (g_MSC.SDMode) {
  307. rc = SD.card()->readSectors(lba, (uint8_t*) buffer, bufsize/SD_SECTOR_SIZE);
  308. } else {
  309. if (g_MSC.lun_unitReady[lun]) {
  310. g_MSC.lun_config[lun]->file.seek(lba * g_MSC.lun_config[lun]->bytesPerSector);
  311. rc = g_MSC.lun_config[lun]->file.read(buffer, bufsize);
  312. } else {
  313. logmsg("Attempted read to non-ready LUN ",lun);
  314. }
  315. }
  316. // only blink fast on reads; writes will override this
  317. if (MSC_LEDMode == LED_SOLIDON)
  318. MSC_LEDMode = LED_BLINK_FAST;
  319. return rc ? bufsize : -1;
  320. }
  321. // Callback invoked when receive WRITE10 command.
  322. // Process data in buffer to disk's storage and return number of written bytes (must be multiple of block size)
  323. extern "C" int32_t tud_msc_write10_cb(uint8_t lun, uint32_t lba, uint32_t offset,
  324. uint8_t *buffer, uint32_t bufsize)
  325. {
  326. MSCScopedLock lock;
  327. if (g_msc_initiator) return init_msc_read10_cb(lun, lba, offset, buffer, bufsize);
  328. bool rc = 0;
  329. if (g_MSC.SDMode) {
  330. rc = SD.card()->writeSectors(lba, buffer, bufsize/SD_SECTOR_SIZE);
  331. } else {
  332. if (g_MSC.lun_unitReady[lun]) {
  333. g_MSC.lun_config[lun]->file.seek(lba * g_MSC.lun_config[lun]->bytesPerSector);
  334. rc = g_MSC.lun_config[lun]->file.write(buffer, bufsize);
  335. } else {
  336. logmsg("Attempted write to non-ready LUN ",lun);
  337. }
  338. }
  339. // always slow blink
  340. MSC_LEDMode = LED_BLINK_SLOW;
  341. return rc ? bufsize : -1;
  342. }
  343. // Callback invoked when WRITE10 command is completed (status received and accepted by host).
  344. // used to flush any pending cache to storage
  345. extern "C" void tud_msc_write10_complete_cb(uint8_t lun)
  346. {
  347. MSCScopedLock lock;
  348. if (g_msc_initiator) return init_msc_write10_complete_cb(lun);
  349. }
  350. #endif