BlueSCSI_platform_msc.cpp 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440
  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 "BlueSCSI_platform.h"
  26. #include "BlueSCSI_disk.h"
  27. #include "BlueSCSI_log.h"
  28. #include "BlueSCSI_msc.h"
  29. #include "BlueSCSI_msc_initiator.h"
  30. #include "BlueSCSI_config.h"
  31. #include "BlueSCSI_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. uint8_t lun_count_prev_response = 0;
  54. } g_MSC;
  55. void platform_msc_lock_set(bool block)
  56. {
  57. if (block)
  58. {
  59. if (g_msc_lock)
  60. {
  61. logmsg("Re-entrant MSC lock!");
  62. assert(false);
  63. }
  64. g_msc_usb_mutex_held = mutex_try_enter(&__usb_mutex, NULL); // Blocks USB IRQ if not already blocked
  65. g_msc_lock = true; // Blocks platform USB polling
  66. }
  67. else
  68. {
  69. if (!g_msc_lock)
  70. {
  71. logmsg("MSC lock released when not held!");
  72. assert(false);
  73. }
  74. g_msc_lock = false;
  75. if (g_msc_usb_mutex_held)
  76. {
  77. g_msc_usb_mutex_held = false;
  78. mutex_exit(&__usb_mutex);
  79. }
  80. }
  81. }
  82. bool platform_msc_lock_get()
  83. {
  84. return g_msc_lock;
  85. }
  86. struct MSCScopedLock {
  87. public:
  88. MSCScopedLock() { platform_msc_lock_set(true); }
  89. ~MSCScopedLock() { platform_msc_lock_set(false); }
  90. };
  91. /* return true if USB presence detected / eligible to enter CR mode */
  92. bool platform_sense_msc() {
  93. #if defined(BLUESCSI_PICO) || defined(BLUESCSI_PICO_2)
  94. // check if we're USB powered, if not, exit immediately
  95. // pin on the wireless module, see https://github.com/earlephilhower/arduino-pico/discussions/835
  96. // Update: from the above discussion the offset 32 has been changed to 64 to access CYW43 GPIO pins
  97. // since the addition of the RP2350 chips, now stored in the DIGITAL_PIN_CYW43_OFFSET define
  98. if (rp2040.isPicoW() && !digitalRead(DIGITAL_PIN_CYW43_OFFSET + 2))
  99. return false;
  100. if (!rp2040.isPicoW() && !digitalRead(24))
  101. return false;
  102. #endif
  103. logmsg("Waiting for USB enumeration to enter Card Reader mode.");
  104. // wait for up to a second to be enumerated
  105. uint32_t start = millis();
  106. bool timed_out = false;
  107. uint16_t usb_timeout = g_scsi_settings.getSystem()->usbMassStorageWaitPeriod;
  108. while (!tud_connected())
  109. {
  110. if ((uint32_t)(millis() - start) > usb_timeout)
  111. {
  112. logmsg("Waiting for USB enumeration timed out after ", usb_timeout, "ms.");
  113. logmsg("-- Try increasing 'USBMassStorageWaitPeriod' in the ", CONFIGFILE);
  114. timed_out = true;
  115. break;
  116. }
  117. delay(100);
  118. }
  119. if (!timed_out)
  120. dbgmsg("USB enumeration took ", (int)((uint32_t)(millis() - start)), "ms");
  121. // tud_connected returns True if just got out of Bus Reset and received the very first data from host
  122. // https://github.com/hathach/tinyusb/blob/master/src/device/usbd.h#L63
  123. return tud_connected();
  124. }
  125. /* perform periodic tasks, return true if we should remain in card reader mode */
  126. bool platform_run_msc() {
  127. return g_MSC.unitReady;
  128. }
  129. /* load the setting if we present images or not */
  130. void platform_set_msc_image_mode(bool image_mode) {
  131. g_MSC.SDMode = !image_mode;
  132. }
  133. /* return true if the image type makes sense as a mass-storage device */
  134. bool msc_image_eligble(uint8_t t) {
  135. switch (t) {
  136. case S2S_CFG_FIXED:
  137. case S2S_CFG_REMOVABLE:
  138. case S2S_CFG_MO: /* not actually sure about this and zip */
  139. case S2S_CFG_ZIP100:
  140. return true;
  141. case S2S_CFG_OPTICAL: /* will not contain a MBR */
  142. case S2S_CFG_FLOPPY_14MB: /* will not contain a MBR */
  143. case S2S_CFG_SEQUENTIAL: /* tape drive */
  144. case S2S_CFG_NETWORK: /* always empty */
  145. case S2S_CFG_NOT_SET:
  146. default:
  147. return false;
  148. }
  149. }
  150. /* perform MSC class preinit tasks */
  151. void platform_enter_msc() {
  152. dbgmsg("USB MSC buffer size: ", CFG_TUD_MSC_EP_BUFSIZE);
  153. g_MSC.lun_count = 0;
  154. if (!g_MSC.SDMode) {
  155. logmsg("Presenting configured images as USB storage devices");
  156. for (int i = 0; i < S2S_MAX_TARGETS; i++) {
  157. if (msc_image_eligble(g_DiskImages[i].deviceType) && g_DiskImages[i].file.isOpen()) {
  158. logmsg("USB LUN ", (int)g_MSC.lun_count," => ",g_DiskImages[i].current_image);
  159. // anything but linux probably won't deal gracefully with nonstandard or odd sector sizes, present a warning
  160. if (g_DiskImages[i].bytesPerSector != 512 && g_DiskImages[i].bytesPerSector != 4096) {
  161. 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!");
  162. }
  163. g_MSC.lun_config[g_MSC.lun_count] = &g_DiskImages[i];
  164. g_MSC.lun_unitReady[g_MSC.lun_count] = 1;
  165. g_MSC.lun_count ++;
  166. }
  167. }
  168. if (g_MSC.lun_count == 0) {
  169. logmsg("No images to present, falling back to SD card!");
  170. g_MSC.SDMode = 1;
  171. } else
  172. logmsg("Total USB LUN ", (int)g_MSC.lun_count);
  173. }
  174. if (g_MSC.SDMode) {
  175. logmsg("Presenting SD card as USB storage device");
  176. g_MSC.lun_count = 1;
  177. g_MSC.lun_unitReady[0] = 1;
  178. }
  179. // MSC is ready for read/write
  180. g_MSC.unitReady = g_MSC.lun_count;
  181. if (g_MSC.lun_count_prev_response != 0 &&
  182. g_MSC.lun_count != g_MSC.lun_count_prev_response)
  183. {
  184. // Host has already queried us for the number of LUNs, but
  185. // our response has now changed. We need to re-enumerate to
  186. // update it.
  187. g_MSC.lun_count_prev_response = 0;
  188. tud_disconnect();
  189. delay(250);
  190. tud_connect();
  191. }
  192. }
  193. /* perform any cleanup tasks for the MSC-specific functionality */
  194. void platform_exit_msc() {
  195. g_MSC.unitReady = 0;
  196. }
  197. /* TinyUSB mass storage callbacks follow */
  198. // usb framework checks this func exists for mass storage config. no code needed.
  199. void __USBInstallMassStorage() { }
  200. // Invoked when received SCSI_CMD_INQUIRY
  201. // fill vendor id, product id and revision with string up to 8, 16, 4 characters respectively
  202. extern "C" void tud_msc_inquiry_cb(uint8_t lun, uint8_t vendor_id[8],
  203. uint8_t product_id[16], uint8_t product_rev[4]) {
  204. MSCScopedLock lock;
  205. if (g_msc_initiator) return init_msc_inquiry_cb(lun, vendor_id, product_id, product_rev);
  206. const char vid[] = "BlueSCSI";
  207. const char pid[] = PLATFORM_PID;
  208. const char rev[] = PLATFORM_REVISION;
  209. memcpy(vendor_id, vid, tu_min32(strlen(vid), 8));
  210. memcpy(product_id, pid, tu_min32(strlen(pid), 16));
  211. memcpy(product_rev, rev, tu_min32(strlen(rev), 4));
  212. }
  213. // max LUN supported
  214. // we only have the one SD card
  215. extern "C" uint8_t tud_msc_get_maxlun_cb(void)
  216. {
  217. MSCScopedLock lock;
  218. uint8_t result;
  219. if (g_msc_initiator)
  220. {
  221. result = init_msc_get_maxlun_cb();
  222. }
  223. else if (g_MSC.lun_count != 0)
  224. {
  225. result = g_MSC.lun_count; // number of LUNs supported
  226. }
  227. else
  228. {
  229. // Returning 0 makes TU_VERIFY(maxlun); fail in tinyusb/src/class/msc/msc_device.c:378
  230. // This stalls the endpoint and causes an unnecessary enumeration delay on Windows.
  231. result = 1;
  232. }
  233. g_MSC.lun_count_prev_response = result;
  234. return result;
  235. }
  236. // return writable status
  237. // on platform supporting write protect switch, could do that here.
  238. // otherwise this is not actually needed
  239. extern "C" bool tud_msc_is_writable_cb (uint8_t lun)
  240. {
  241. MSCScopedLock lock;
  242. if (g_msc_initiator) return init_msc_is_writable_cb(lun);
  243. if (g_MSC.SDMode) return g_MSC.unitReady;
  244. (void) lun;
  245. return g_MSC.unitReady && g_MSC.lun_unitReady[lun] && g_MSC.lun_config[lun]->file.isWritable();
  246. }
  247. // see https://www.seagate.com/files/staticfiles/support/docs/manual/Interface%20manuals/100293068j.pdf pg 221
  248. extern "C" bool tud_msc_start_stop_cb(uint8_t lun, uint8_t power_condition, bool start, bool load_eject)
  249. {
  250. MSCScopedLock lock;
  251. if (g_msc_initiator) return init_msc_start_stop_cb(lun, power_condition, start, load_eject);
  252. if (load_eject) {
  253. if (start) {
  254. // load disk storage
  255. // do nothing as we started "loaded"
  256. } else {
  257. g_MSC.lun_unitReady[lun] = false;
  258. if (g_MSC.unitReady) // no more active LUNs -> global not ready flag
  259. g_MSC.unitReady --;
  260. }
  261. }
  262. return true;
  263. }
  264. // return true if we are ready to service reads/writes
  265. extern "C" bool tud_msc_test_unit_ready_cb(uint8_t lun)
  266. {
  267. MSCScopedLock lock;
  268. if (g_msc_initiator) return init_msc_test_unit_ready_cb(lun);
  269. return g_MSC.unitReady && g_MSC.lun_unitReady[lun];
  270. }
  271. // return size in blocks and block size
  272. extern "C" void tud_msc_capacity_cb(uint8_t lun, uint32_t *block_count,
  273. uint16_t *block_size)
  274. {
  275. MSCScopedLock lock;
  276. if (g_msc_initiator) return init_msc_capacity_cb(lun, block_count, block_size);
  277. if (g_MSC.SDMode) {
  278. *block_count = g_MSC.unitReady ? (SD.card()->sectorCount()) : 0;
  279. *block_size = SD_SECTOR_SIZE;
  280. } else { // present the bytesPerSector of file, though it remains to be seen if host will like this
  281. *block_count = (g_MSC.unitReady && g_MSC.lun_unitReady[lun]) ? (g_MSC.lun_config[lun]->file.size() / g_MSC.lun_config[lun]->bytesPerSector) : 0;
  282. *block_size = g_MSC.lun_config[lun]->bytesPerSector;
  283. }
  284. }
  285. // Callback invoked when received an SCSI command not in built-in list (below) which have their own callbacks
  286. // - READ_CAPACITY10, READ_FORMAT_CAPACITY, INQUIRY, MODE_SENSE6, REQUEST_SENSE, READ10 and WRITE10
  287. extern "C" int32_t tud_msc_scsi_cb(uint8_t lun, const uint8_t scsi_cmd[16], void *buffer,
  288. uint16_t bufsize)
  289. {
  290. MSCScopedLock lock;
  291. if (g_msc_initiator) return init_msc_scsi_cb(lun, scsi_cmd, buffer, bufsize);
  292. const void *response = NULL;
  293. uint16_t resplen = 0;
  294. switch (scsi_cmd[0]) {
  295. case SCSI_CMD_PREVENT_ALLOW_MEDIUM_REMOVAL:
  296. // Host is about to read/write etc ... better not to disconnect disk
  297. resplen = 0;
  298. break;
  299. default:
  300. // Set Sense = Invalid Command Operation
  301. tud_msc_set_sense(lun, SCSI_SENSE_ILLEGAL_REQUEST, 0x20, 0x00);
  302. // negative means error -> tinyusb could stall and/or response with failed status
  303. resplen = -1;
  304. break;
  305. }
  306. // return len must not larger than bufsize
  307. if (resplen > bufsize) {
  308. resplen = bufsize;
  309. }
  310. // copy response to stack's buffer if any
  311. if (response && resplen) {
  312. memcpy(buffer, response, resplen);
  313. }
  314. return resplen;
  315. }
  316. // Callback invoked when received READ10 command.
  317. // Copy disk's data to buffer (up to bufsize) and return number of copied bytes (must be multiple of block size)
  318. extern "C" int32_t tud_msc_read10_cb(uint8_t lun, uint32_t lba, uint32_t offset,
  319. void* buffer, uint32_t bufsize)
  320. {
  321. MSCScopedLock lock;
  322. if (g_msc_initiator) return init_msc_read10_cb(lun, lba, offset, buffer, bufsize);
  323. bool rc = 0;
  324. if (g_MSC.SDMode) {
  325. rc = SD.card()->readSectors(lba, (uint8_t*) buffer, bufsize/SD_SECTOR_SIZE);
  326. } else {
  327. if (g_MSC.lun_unitReady[lun]) {
  328. g_MSC.lun_config[lun]->file.seek(lba * g_MSC.lun_config[lun]->bytesPerSector);
  329. rc = g_MSC.lun_config[lun]->file.read(buffer, bufsize);
  330. } else {
  331. logmsg("Attempted read to non-ready LUN ",lun);
  332. }
  333. }
  334. // only blink fast on reads; writes will override this
  335. if (MSC_LEDMode == LED_SOLIDON)
  336. MSC_LEDMode = LED_BLINK_FAST;
  337. return rc ? bufsize : -1;
  338. }
  339. // Callback invoked when receive WRITE10 command.
  340. // Process data in buffer to disk's storage and return number of written bytes (must be multiple of block size)
  341. extern "C" int32_t tud_msc_write10_cb(uint8_t lun, uint32_t lba, uint32_t offset,
  342. uint8_t *buffer, uint32_t bufsize)
  343. {
  344. MSCScopedLock lock;
  345. if (g_msc_initiator) return init_msc_write10_cb(lun, lba, offset, buffer, bufsize);
  346. bool rc = 0;
  347. if (g_MSC.SDMode) {
  348. rc = SD.card()->writeSectors(lba, buffer, bufsize/SD_SECTOR_SIZE);
  349. } else {
  350. if (g_MSC.lun_unitReady[lun]) {
  351. g_MSC.lun_config[lun]->file.seek(lba * g_MSC.lun_config[lun]->bytesPerSector);
  352. rc = g_MSC.lun_config[lun]->file.write(buffer, bufsize);
  353. } else {
  354. logmsg("Attempted write to non-ready LUN ",lun);
  355. }
  356. }
  357. // always slow blink
  358. MSC_LEDMode = LED_BLINK_SLOW;
  359. return rc ? bufsize : -1;
  360. }
  361. // Callback invoked when WRITE10 command is completed (status received and accepted by host).
  362. // used to flush any pending cache to storage
  363. extern "C" void tud_msc_write10_complete_cb(uint8_t lun)
  364. {
  365. MSCScopedLock lock;
  366. if (g_msc_initiator) return init_msc_write10_complete_cb(lun);
  367. }
  368. #endif