ZuluSCSI_platform_msc.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412
  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. return g_MSC.lun_count; // number of LUNs supported
  208. }
  209. // return writable status
  210. // on platform supporting write protect switch, could do that here.
  211. // otherwise this is not actually needed
  212. extern "C" bool tud_msc_is_writable_cb (uint8_t lun)
  213. {
  214. MSCScopedLock lock;
  215. if (g_msc_initiator) return init_msc_is_writable_cb(lun);
  216. if (g_MSC.SDMode) return g_MSC.unitReady;
  217. (void) lun;
  218. return g_MSC.unitReady && g_MSC.lun_unitReady[lun] && g_MSC.lun_config[lun]->file.isWritable();
  219. }
  220. // see https://www.seagate.com/files/staticfiles/support/docs/manual/Interface%20manuals/100293068j.pdf pg 221
  221. extern "C" bool tud_msc_start_stop_cb(uint8_t lun, uint8_t power_condition, bool start, bool load_eject)
  222. {
  223. MSCScopedLock lock;
  224. if (g_msc_initiator) return init_msc_start_stop_cb(lun, power_condition, start, load_eject);
  225. if (load_eject) {
  226. if (start) {
  227. // load disk storage
  228. // do nothing as we started "loaded"
  229. } else {
  230. g_MSC.lun_unitReady[lun] = false;
  231. if (g_MSC.unitReady) // no more active LUNs -> global not ready flag
  232. g_MSC.unitReady --;
  233. }
  234. }
  235. return true;
  236. }
  237. // return true if we are ready to service reads/writes
  238. extern "C" bool tud_msc_test_unit_ready_cb(uint8_t lun)
  239. {
  240. MSCScopedLock lock;
  241. if (g_msc_initiator) return init_msc_test_unit_ready_cb(lun);
  242. return g_MSC.unitReady && g_MSC.lun_unitReady[lun];
  243. }
  244. // return size in blocks and block size
  245. extern "C" void tud_msc_capacity_cb(uint8_t lun, uint32_t *block_count,
  246. uint16_t *block_size)
  247. {
  248. MSCScopedLock lock;
  249. if (g_msc_initiator) return init_msc_capacity_cb(lun, block_count, block_size);
  250. if (g_MSC.SDMode) {
  251. *block_count = g_MSC.unitReady ? (SD.card()->sectorCount()) : 0;
  252. *block_size = SD_SECTOR_SIZE;
  253. } else { // present the bytesPerSector of file, though it remains to be seen if host will like this
  254. *block_count = (g_MSC.unitReady && g_MSC.lun_unitReady[lun]) ? (g_MSC.lun_config[lun]->file.size() / g_MSC.lun_config[lun]->bytesPerSector) : 0;
  255. *block_size = g_MSC.lun_config[lun]->bytesPerSector;
  256. }
  257. }
  258. // Callback invoked when received an SCSI command not in built-in list (below) which have their own callbacks
  259. // - READ_CAPACITY10, READ_FORMAT_CAPACITY, INQUIRY, MODE_SENSE6, REQUEST_SENSE, READ10 and WRITE10
  260. extern "C" int32_t tud_msc_scsi_cb(uint8_t lun, const uint8_t scsi_cmd[16], void *buffer,
  261. uint16_t bufsize)
  262. {
  263. MSCScopedLock lock;
  264. if (g_msc_initiator) return init_msc_scsi_cb(lun, scsi_cmd, buffer, bufsize);
  265. const void *response = NULL;
  266. uint16_t resplen = 0;
  267. switch (scsi_cmd[0]) {
  268. case SCSI_CMD_PREVENT_ALLOW_MEDIUM_REMOVAL:
  269. // Host is about to read/write etc ... better not to disconnect disk
  270. resplen = 0;
  271. break;
  272. default:
  273. // Set Sense = Invalid Command Operation
  274. tud_msc_set_sense(lun, SCSI_SENSE_ILLEGAL_REQUEST, 0x20, 0x00);
  275. // negative means error -> tinyusb could stall and/or response with failed status
  276. resplen = -1;
  277. break;
  278. }
  279. // return len must not larger than bufsize
  280. if (resplen > bufsize) {
  281. resplen = bufsize;
  282. }
  283. // copy response to stack's buffer if any
  284. if (response && resplen) {
  285. memcpy(buffer, response, resplen);
  286. }
  287. return resplen;
  288. }
  289. // Callback invoked when received READ10 command.
  290. // Copy disk's data to buffer (up to bufsize) and return number of copied bytes (must be multiple of block size)
  291. extern "C" int32_t tud_msc_read10_cb(uint8_t lun, uint32_t lba, uint32_t offset,
  292. void* buffer, uint32_t bufsize)
  293. {
  294. MSCScopedLock lock;
  295. if (g_msc_initiator) return init_msc_read10_cb(lun, lba, offset, buffer, bufsize);
  296. bool rc = 0;
  297. if (g_MSC.SDMode) {
  298. rc = SD.card()->readSectors(lba, (uint8_t*) buffer, bufsize/SD_SECTOR_SIZE);
  299. } else {
  300. if (g_MSC.lun_unitReady[lun]) {
  301. g_MSC.lun_config[lun]->file.seek(lba * g_MSC.lun_config[lun]->bytesPerSector);
  302. rc = g_MSC.lun_config[lun]->file.read(buffer, bufsize);
  303. } else {
  304. logmsg("Attempted read to non-ready LUN ",lun);
  305. }
  306. }
  307. // only blink fast on reads; writes will override this
  308. if (MSC_LEDMode == LED_SOLIDON)
  309. MSC_LEDMode = LED_BLINK_FAST;
  310. return rc ? bufsize : -1;
  311. }
  312. // Callback invoked when receive WRITE10 command.
  313. // Process data in buffer to disk's storage and return number of written bytes (must be multiple of block size)
  314. extern "C" int32_t tud_msc_write10_cb(uint8_t lun, uint32_t lba, uint32_t offset,
  315. uint8_t *buffer, uint32_t bufsize)
  316. {
  317. MSCScopedLock lock;
  318. if (g_msc_initiator) return init_msc_read10_cb(lun, lba, offset, buffer, bufsize);
  319. bool rc = 0;
  320. if (g_MSC.SDMode) {
  321. rc = SD.card()->writeSectors(lba, buffer, bufsize/SD_SECTOR_SIZE);
  322. } else {
  323. if (g_MSC.lun_unitReady[lun]) {
  324. g_MSC.lun_config[lun]->file.seek(lba * g_MSC.lun_config[lun]->bytesPerSector);
  325. rc = g_MSC.lun_config[lun]->file.write(buffer, bufsize);
  326. } else {
  327. logmsg("Attempted write to non-ready LUN ",lun);
  328. }
  329. }
  330. // always slow blink
  331. MSC_LEDMode = LED_BLINK_SLOW;
  332. return rc ? bufsize : -1;
  333. }
  334. // Callback invoked when WRITE10 command is completed (status received and accepted by host).
  335. // used to flush any pending cache to storage
  336. extern "C" void tud_msc_write10_complete_cb(uint8_t lun)
  337. {
  338. MSCScopedLock lock;
  339. if (g_msc_initiator) return init_msc_write10_complete_cb(lun);
  340. }
  341. #endif