1 // Copyright (C) 2013 Michael McMaster <michael@codesrc.com>
\r
2 // Copyright (C) 2014 Doug Brown <doug@downtowndougbrown.com>
\r
4 // This file is part of SCSI2SD.
\r
6 // SCSI2SD is free software: you can redistribute it and/or modify
\r
7 // it under the terms of the GNU General Public License as published by
\r
8 // the Free Software Foundation, either version 3 of the License, or
\r
9 // (at your option) any later version.
\r
11 // SCSI2SD is distributed in the hope that it will be useful,
\r
12 // but WITHOUT ANY WARRANTY; without even the implied warranty of
\r
13 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
\r
14 // GNU General Public License for more details.
\r
16 // You should have received a copy of the GNU General Public License
\r
17 // along with SCSI2SD. If not, see <http://www.gnu.org/licenses/>.
\r
18 #pragma GCC push_options
\r
19 #pragma GCC optimize("-flto")
\r
23 #include "scsiPhy.h"
\r
34 BlockDevice blockDev;
\r
37 static int doSdInit()
\r
40 if (blockDev.state & DISK_PRESENT)
\r
46 blockDev.state = blockDev.state | DISK_INITIALISED;
\r
52 // Callback once all data has been read in the data out phase.
\r
53 static void doFormatUnitComplete(void)
\r
55 // TODO start writing the initialisation pattern to the SD
\r
57 scsiDev.phase = STATUS;
\r
60 static void doFormatUnitSkipData(int bytes)
\r
62 // We may not have enough memory to store the initialisation pattern and
\r
63 // defect list data. Since we're not making use of it yet anyway, just
\r
64 // discard the bytes.
\r
65 scsiEnterPhase(DATA_OUT);
\r
67 for (i = 0; i < bytes; ++i)
\r
73 // Callback from the data out phase.
\r
74 static void doFormatUnitPatternHeader(void)
\r
77 ((((uint16_t)scsiDev.data[2])) << 8) +
\r
81 ((((uint16_t)scsiDev.data[4 + 2])) << 8) +
\r
82 scsiDev.data[4 + 3];
\r
84 doFormatUnitSkipData(defectLength + patternLength);
\r
85 doFormatUnitComplete();
\r
88 // Callback from the data out phase.
\r
89 static void doFormatUnitHeader(void)
\r
91 int IP = (scsiDev.data[1] & 0x08) ? 1 : 0;
\r
92 int DSP = (scsiDev.data[1] & 0x04) ? 1 : 0;
\r
94 if (! DSP) // disable save parameters
\r
96 // Save the "MODE SELECT savable parameters"
\r
98 scsiDev.target->targetId,
\r
99 scsiDev.target->liveCfg.bytesPerSector);
\r
104 // We need to read the initialisation pattern header first.
\r
105 scsiDev.dataLen += 4;
\r
106 scsiDev.phase = DATA_OUT;
\r
107 scsiDev.postDataOutHook = doFormatUnitPatternHeader;
\r
111 // Read the defect list data
\r
113 ((((uint16_t)scsiDev.data[2])) << 8) +
\r
115 doFormatUnitSkipData(defectLength);
\r
116 doFormatUnitComplete();
\r
120 static void doReadCapacity()
\r
122 uint32_t lba = (((uint32) scsiDev.cdb[2]) << 24) +
\r
123 (((uint32) scsiDev.cdb[3]) << 16) +
\r
124 (((uint32) scsiDev.cdb[4]) << 8) +
\r
126 int pmi = scsiDev.cdb[8] & 1;
\r
128 uint32_t capacity = getScsiCapacity(
\r
129 scsiDev.target->cfg->sdSectorStart,
\r
130 scsiDev.target->liveCfg.bytesPerSector,
\r
131 scsiDev.target->cfg->scsiSectors);
\r
136 // We don't do anything with the "partial medium indicator", and
\r
137 // assume that delays are constant across each block. But the spec
\r
138 // says we must return this error if pmi is specified incorrectly.
\r
139 scsiDev.status = CHECK_CONDITION;
\r
140 scsiDev.target->sense.code = ILLEGAL_REQUEST;
\r
141 scsiDev.target->sense.asc = INVALID_FIELD_IN_CDB;
\r
142 scsiDev.phase = STATUS;
\r
144 else if (capacity > 0)
\r
146 uint32_t highestBlock = capacity - 1;
\r
148 scsiDev.data[0] = highestBlock >> 24;
\r
149 scsiDev.data[1] = highestBlock >> 16;
\r
150 scsiDev.data[2] = highestBlock >> 8;
\r
151 scsiDev.data[3] = highestBlock;
\r
153 uint32_t bytesPerSector = scsiDev.target->liveCfg.bytesPerSector;
\r
154 scsiDev.data[4] = bytesPerSector >> 24;
\r
155 scsiDev.data[5] = bytesPerSector >> 16;
\r
156 scsiDev.data[6] = bytesPerSector >> 8;
\r
157 scsiDev.data[7] = bytesPerSector;
\r
158 scsiDev.dataLen = 8;
\r
159 scsiDev.phase = DATA_IN;
\r
163 scsiDev.status = CHECK_CONDITION;
\r
164 scsiDev.target->sense.code = NOT_READY;
\r
165 scsiDev.target->sense.asc = MEDIUM_NOT_PRESENT;
\r
166 scsiDev.phase = STATUS;
\r
170 static void doWrite(uint32 lba, uint32 blocks)
\r
172 if (unlikely(scsiDev.target->cfg->deviceType == CONFIG_FLOPPY_14MB)) {
\r
173 // Floppies are supposed to be slow. Some systems can't handle a floppy
\r
174 // without an access time
\r
178 if (unlikely(blockDev.state & DISK_WP) ||
\r
179 unlikely(scsiDev.target->cfg->deviceType == CONFIG_OPTICAL))
\r
182 scsiDev.status = CHECK_CONDITION;
\r
183 scsiDev.target->sense.code = ILLEGAL_REQUEST;
\r
184 scsiDev.target->sense.asc = WRITE_PROTECTED;
\r
185 scsiDev.phase = STATUS;
\r
187 else if (unlikely(((uint64) lba) + blocks >
\r
189 scsiDev.target->cfg->sdSectorStart,
\r
190 scsiDev.target->liveCfg.bytesPerSector,
\r
191 scsiDev.target->cfg->scsiSectors
\r
195 scsiDev.status = CHECK_CONDITION;
\r
196 scsiDev.target->sense.code = ILLEGAL_REQUEST;
\r
197 scsiDev.target->sense.asc = LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
\r
198 scsiDev.phase = STATUS;
\r
202 transfer.dir = TRANSFER_WRITE;
\r
203 transfer.lba = lba;
\r
204 transfer.blocks = blocks;
\r
205 transfer.currentBlock = 0;
\r
206 scsiDev.phase = DATA_OUT;
\r
207 scsiDev.dataLen = scsiDev.target->liveCfg.bytesPerSector;
\r
208 scsiDev.dataPtr = scsiDev.target->liveCfg.bytesPerSector;
\r
210 // No need for single-block writes atm. Overhead of the
\r
211 // multi-block write is minimal.
\r
212 transfer.multiBlock = 1;
\r
214 sdWriteMultiSectorPrep();
\r
219 static void doRead(uint32 lba, uint32 blocks)
\r
221 if (unlikely(scsiDev.target->cfg->deviceType == CONFIG_FLOPPY_14MB)) {
\r
222 // Floppies are supposed to be slow. Some systems can't handle a floppy
\r
223 // without an access time
\r
227 uint32_t capacity = getScsiCapacity(
\r
228 scsiDev.target->cfg->sdSectorStart,
\r
229 scsiDev.target->liveCfg.bytesPerSector,
\r
230 scsiDev.target->cfg->scsiSectors);
\r
231 if (unlikely(((uint64) lba) + blocks > capacity))
\r
233 scsiDev.status = CHECK_CONDITION;
\r
234 scsiDev.target->sense.code = ILLEGAL_REQUEST;
\r
235 scsiDev.target->sense.asc = LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
\r
236 scsiDev.phase = STATUS;
\r
240 transfer.dir = TRANSFER_READ;
\r
241 transfer.lba = lba;
\r
242 transfer.blocks = blocks;
\r
243 transfer.currentBlock = 0;
\r
244 scsiDev.phase = DATA_IN;
\r
245 scsiDev.dataLen = 0; // No data yet
\r
247 if ((blocks == 1) ||
\r
248 unlikely(((uint64) lba) + blocks == capacity)
\r
251 // We get errors on reading the last sector using a multi-sector
\r
253 transfer.multiBlock = 0;
\r
257 transfer.multiBlock = 1;
\r
258 sdReadMultiSectorPrep();
\r
263 static void doSeek(uint32 lba)
\r
267 scsiDev.target->cfg->sdSectorStart,
\r
268 scsiDev.target->liveCfg.bytesPerSector,
\r
269 scsiDev.target->cfg->scsiSectors)
\r
272 scsiDev.status = CHECK_CONDITION;
\r
273 scsiDev.target->sense.code = ILLEGAL_REQUEST;
\r
274 scsiDev.target->sense.asc = LOGICAL_BLOCK_ADDRESS_OUT_OF_RANGE;
\r
275 scsiDev.phase = STATUS;
\r
279 static int doTestUnitReady()
\r
282 if (likely(blockDev.state == (DISK_STARTED | DISK_PRESENT | DISK_INITIALISED)))
\r
286 else if (unlikely(!(blockDev.state & DISK_STARTED)))
\r
289 scsiDev.status = CHECK_CONDITION;
\r
290 scsiDev.target->sense.code = NOT_READY;
\r
291 scsiDev.target->sense.asc = LOGICAL_UNIT_NOT_READY_INITIALIZING_COMMAND_REQUIRED;
\r
292 scsiDev.phase = STATUS;
\r
294 else if (unlikely(!(blockDev.state & DISK_PRESENT)))
\r
297 scsiDev.status = CHECK_CONDITION;
\r
298 scsiDev.target->sense.code = NOT_READY;
\r
299 scsiDev.target->sense.asc = MEDIUM_NOT_PRESENT;
\r
300 scsiDev.phase = STATUS;
\r
302 else if (unlikely(!(blockDev.state & DISK_INITIALISED)))
\r
305 scsiDev.status = CHECK_CONDITION;
\r
306 scsiDev.target->sense.code = NOT_READY;
\r
307 scsiDev.target->sense.asc = LOGICAL_UNIT_NOT_READY_CAUSE_NOT_REPORTABLE;
\r
308 scsiDev.phase = STATUS;
\r
313 // Handle direct-access scsi device commands
\r
314 int scsiDiskCommand()
\r
316 int commandHandled = 1;
\r
318 uint8 command = scsiDev.cdb[0];
\r
319 if (unlikely(command == 0x1B))
\r
322 // Enable or disable media access operations.
\r
323 // Ignore load/eject requests. We can't do that.
\r
324 //int immed = scsiDev.cdb[1] & 1;
\r
325 int start = scsiDev.cdb[4] & 1;
\r
329 blockDev.state = blockDev.state | DISK_STARTED;
\r
330 if (!(blockDev.state & DISK_INITIALISED))
\r
337 blockDev.state &= ~DISK_STARTED;
\r
340 else if (unlikely(command == 0x00))
\r
345 else if (unlikely(!doTestUnitReady()))
\r
347 // Status and sense codes already set by doTestUnitReady
\r
349 else if (likely(command == 0x08))
\r
353 (((uint32) scsiDev.cdb[1] & 0x1F) << 16) +
\r
354 (((uint32) scsiDev.cdb[2]) << 8) +
\r
356 uint32 blocks = scsiDev.cdb[4];
\r
357 if (unlikely(blocks == 0)) blocks = 256;
\r
358 doRead(lba, blocks);
\r
360 else if (likely(command == 0x28))
\r
363 // Ignore all cache control bits - we don't support a memory cache.
\r
366 (((uint32) scsiDev.cdb[2]) << 24) +
\r
367 (((uint32) scsiDev.cdb[3]) << 16) +
\r
368 (((uint32) scsiDev.cdb[4]) << 8) +
\r
371 (((uint32) scsiDev.cdb[7]) << 8) +
\r
374 doRead(lba, blocks);
\r
376 else if (likely(command == 0x0A))
\r
380 (((uint32) scsiDev.cdb[1] & 0x1F) << 16) +
\r
381 (((uint32) scsiDev.cdb[2]) << 8) +
\r
383 uint32 blocks = scsiDev.cdb[4];
\r
384 if (unlikely(blocks == 0)) blocks = 256;
\r
385 doWrite(lba, blocks);
\r
387 else if (likely(command == 0x2A) || // WRITE(10)
\r
388 unlikely(command == 0x2E)) // WRITE AND VERIFY
\r
390 // Ignore all cache control bits - we don't support a memory cache.
\r
391 // Don't bother verifying either. The SD card likely stores ECC
\r
392 // along with each flash row.
\r
395 (((uint32) scsiDev.cdb[2]) << 24) +
\r
396 (((uint32) scsiDev.cdb[3]) << 16) +
\r
397 (((uint32) scsiDev.cdb[4]) << 8) +
\r
400 (((uint32) scsiDev.cdb[7]) << 8) +
\r
403 doWrite(lba, blocks);
\r
406 else if (unlikely(command == 0x04))
\r
409 // We don't really do any formatting, but we need to read the correct
\r
410 // number of bytes in the DATA_OUT phase to make the SCSI host happy.
\r
412 int fmtData = (scsiDev.cdb[1] & 0x10) ? 1 : 0;
\r
415 // We need to read the parameter list, but we don't know how
\r
416 // big it is yet. Start with the header.
\r
417 scsiDev.dataLen = 4;
\r
418 scsiDev.phase = DATA_OUT;
\r
419 scsiDev.postDataOutHook = doFormatUnitHeader;
\r
423 // No data to read, we're already finished!
\r
426 else if (unlikely(command == 0x25))
\r
431 else if (unlikely(command == 0x0B))
\r
435 (((uint32) scsiDev.cdb[1] & 0x1F) << 16) +
\r
436 (((uint32) scsiDev.cdb[2]) << 8) +
\r
442 else if (unlikely(command == 0x2B))
\r
446 (((uint32) scsiDev.cdb[2]) << 24) +
\r
447 (((uint32) scsiDev.cdb[3]) << 16) +
\r
448 (((uint32) scsiDev.cdb[4]) << 8) +
\r
453 else if (unlikely(command == 0x36))
\r
455 // LOCK UNLOCK CACHE
\r
456 // We don't have a cache to lock data into. do nothing.
\r
458 else if (unlikely(command == 0x34))
\r
461 // We don't have a cache to pre-fetch into. do nothing.
\r
463 else if (unlikely(command == 0x1E))
\r
465 // PREVENT ALLOW MEDIUM REMOVAL
\r
466 // Not much we can do to prevent the user removing the SD card.
\r
469 else if (unlikely(command == 0x01))
\r
472 // Set the lun to a vendor-specific state. Ignore.
\r
474 else if (unlikely(command == 0x35))
\r
476 // SYNCHRONIZE CACHE
\r
477 // We don't have a cache. do nothing.
\r
479 else if (unlikely(command == 0x2F))
\r
482 // TODO: When they supply data to verify, we should read the data and
\r
483 // verify it. If they don't supply any data, just say success.
\r
484 if ((scsiDev.cdb[1] & 0x02) == 0)
\r
486 // They are asking us to do a medium verification with no data
\r
487 // comparison. Assume success, do nothing.
\r
491 // TODO. This means they are supplying data to verify against.
\r
492 // Technically we should probably grab the data and compare it.
\r
493 scsiDev.status = CHECK_CONDITION;
\r
494 scsiDev.target->sense.code = ILLEGAL_REQUEST;
\r
495 scsiDev.target->sense.asc = INVALID_FIELD_IN_CDB;
\r
496 scsiDev.phase = STATUS;
\r
499 else if (unlikely(command == 0x37))
\r
501 // READ DEFECT DATA
\r
502 scsiDev.status = CHECK_CONDITION;
\r
503 scsiDev.target->sense.code = NO_SENSE;
\r
504 scsiDev.target->sense.asc = DEFECT_LIST_NOT_FOUND;
\r
505 scsiDev.phase = STATUS;
\r
510 commandHandled = 0;
\r
513 return commandHandled;
\r
516 void scsiDiskPoll()
\r
518 if (scsiDev.phase == DATA_IN &&
\r
519 transfer.currentBlock != transfer.blocks)
\r
521 scsiEnterPhase(DATA_IN);
\r
523 int totalSDSectors =
\r
525 SDSectorsPerSCSISector(scsiDev.target->liveCfg.bytesPerSector);
\r
528 scsiDev.target->cfg->sdSectorStart,
\r
529 scsiDev.target->liveCfg.bytesPerSector,
\r
532 const int sdPerScsi =
\r
533 SDSectorsPerSCSISector(scsiDev.target->liveCfg.bytesPerSector);
\r
534 int buffers = sizeof(scsiDev.data) / SD_SECTOR_SIZE;
\r
537 int scsiActive = 0;
\r
539 while ((i < totalSDSectors) &&
\r
540 likely(scsiDev.phase == DATA_IN) &&
\r
541 likely(!scsiDev.resetFlag))
\r
543 // Wait for the next DMA interrupt. It's beneficial to halt the
\r
544 // processor to give the DMA controller more memory bandwidth to
\r
546 // We're optimistically assuming a race condition won't occur
\r
547 // between these checks and the interrupt handers. The 1ms
\r
548 // systick timer interrupt saves us on the event of a race.
\r
549 int scsiBusy = scsiDMABusy();
\r
550 int sdBusy = sdDMABusy();
\r
551 while (scsiBusy && sdBusy)
\r
554 scsiBusy = scsiDMABusy();
\r
555 sdBusy = sdDMABusy();
\r
558 if (sdActive && !sdBusy && sdReadSectorDMAPoll())
\r
564 // Usually SD is slower than the SCSI interface.
\r
565 // Prioritise starting the read of the next sector over starting a
\r
566 // SCSI transfer for the last sector
\r
567 // ie. NO "else" HERE.
\r
569 (prep - i < buffers) &&
\r
570 (prep < totalSDSectors))
\r
572 // Start an SD transfer if we have space.
\r
573 if (transfer.multiBlock)
\r
575 sdReadMultiSectorDMA(&scsiDev.data[SD_SECTOR_SIZE * (prep % buffers)]);
\r
579 sdReadSingleSectorDMA(sdLBA + prep, &scsiDev.data[SD_SECTOR_SIZE * (prep % buffers)]);
\r
584 if (scsiActive && !scsiBusy && scsiWriteDMAPoll())
\r
589 if (!scsiActive && ((prep - i) > 0))
\r
591 int dmaBytes = SD_SECTOR_SIZE;
\r
592 if ((i % sdPerScsi) == (sdPerScsi - 1))
\r
594 dmaBytes = scsiDev.target->liveCfg.bytesPerSector % SD_SECTOR_SIZE;
\r
595 if (dmaBytes == 0) dmaBytes = SD_SECTOR_SIZE;
\r
597 scsiWriteDMA(&scsiDev.data[SD_SECTOR_SIZE * (i % buffers)], dmaBytes);
\r
601 if (scsiDev.phase == DATA_IN)
\r
603 scsiDev.phase = STATUS;
\r
607 else if (scsiDev.phase == DATA_OUT &&
\r
608 transfer.currentBlock != transfer.blocks)
\r
610 scsiEnterPhase(DATA_OUT);
\r
612 const int sdPerScsi =
\r
613 SDSectorsPerSCSISector(scsiDev.target->liveCfg.bytesPerSector);
\r
614 int totalSDSectors = transfer.blocks * sdPerScsi;
\r
615 int buffers = sizeof(scsiDev.data) / SD_SECTOR_SIZE;
\r
618 int scsiDisconnected = 0;
\r
619 int scsiComplete = 0;
\r
620 uint32_t lastActivityTime = getTime_ms();
\r
621 int scsiActive = 0;
\r
624 while ((i < totalSDSectors) &&
\r
625 (likely(scsiDev.phase == DATA_OUT) || // scsiDisconnect keeps our phase.
\r
627 likely(!scsiDev.resetFlag))
\r
629 // Wait for the next DMA interrupt. It's beneficial to halt the
\r
630 // processor to give the DMA controller more memory bandwidth to
\r
632 // We're optimistically assuming a race condition won't occur
\r
633 // between these checks and the interrupt handers. The 1ms
\r
634 // systick timer interrupt saves us on the event of a race.
\r
635 int scsiBusy = scsiDMABusy();
\r
636 int sdBusy = sdDMABusy();
\r
637 while (scsiBusy && sdBusy)
\r
640 scsiBusy = scsiDMABusy();
\r
641 sdBusy = sdDMABusy();
\r
644 if (sdActive && !sdBusy && sdWriteSectorDMAPoll(i == (totalSDSectors - 1)))
\r
649 if (!sdActive && ((prep - i) > 0))
\r
651 // Start an SD transfer if we have space.
\r
652 sdWriteMultiSectorDMA(&scsiDev.data[SD_SECTOR_SIZE * (i % buffers)]);
\r
656 uint32_t now = getTime_ms();
\r
658 if (scsiActive && !scsiBusy && scsiReadDMAPoll())
\r
662 lastActivityTime = now;
\r
665 ((prep - i) < buffers) &&
\r
666 (prep < totalSDSectors) &&
\r
667 likely(!scsiDisconnected))
\r
669 int dmaBytes = SD_SECTOR_SIZE;
\r
670 if ((prep % sdPerScsi) == (sdPerScsi - 1))
\r
672 dmaBytes = scsiDev.target->liveCfg.bytesPerSector % SD_SECTOR_SIZE;
\r
673 if (dmaBytes == 0) dmaBytes = SD_SECTOR_SIZE;
\r
675 scsiReadDMA(&scsiDev.data[SD_SECTOR_SIZE * (prep % buffers)], dmaBytes);
\r
679 (scsiActive == 0) &&
\r
680 likely(!scsiDisconnected) &&
\r
681 unlikely(scsiDev.discPriv) &&
\r
682 unlikely(diffTime_ms(lastActivityTime, now) >= 20) &&
\r
683 likely(scsiDev.phase == DATA_OUT))
\r
685 // We're transferring over the SCSI bus faster than the SD card
\r
686 // can write. There is no more buffer space once we've finished
\r
687 // this SCSI transfer.
\r
688 // The NCR 53C700 interface chips have a 250ms "byte-to-byte"
\r
689 // timeout buffer. SD card writes are supposed to complete
\r
690 // within 200ms, but sometimes they don't.
\r
691 // The NCR 53C700 series is used on HP 9000 workstations.
\r
693 scsiDisconnected = 1;
\r
694 lastActivityTime = getTime_ms();
\r
696 else if (unlikely(scsiDisconnected) &&
\r
698 (prep == i) || // Buffers empty.
\r
699 // Send some messages every 100ms so we don't timeout.
\r
700 // At a minimum, a reselection involves an IDENTIFY message.
\r
701 unlikely(diffTime_ms(lastActivityTime, now) >= 100)
\r
704 int reconnected = scsiReconnect();
\r
707 scsiDisconnected = 0;
\r
708 lastActivityTime = getTime_ms(); // Don't disconnect immediately.
\r
710 else if (diffTime_ms(lastActivityTime, getTime_ms()) >= 10000)
\r
712 // Give up after 10 seconds of trying to reconnect.
\r
713 scsiDev.resetFlag = 1;
\r
717 likely(!scsiComplete) &&
\r
719 (prep == totalSDSectors) && // All scsi data read and buffered
\r
720 likely(!scsiDev.discPriv) && // Prefer disconnect where possible.
\r
721 unlikely(diffTime_ms(lastActivityTime, now) >= 150) &&
\r
723 likely(scsiDev.phase == DATA_OUT) &&
\r
724 !(scsiDev.cdb[scsiDev.cdbLen - 1] & 0x01) // Not linked command
\r
727 // We're transferring over the SCSI bus faster than the SD card
\r
728 // can write. All data is buffered, and we're just waiting for
\r
729 // the SD card to complete. The host won't let us disconnect.
\r
730 // Some drivers set a 250ms timeout on transfers to complete.
\r
731 // SD card writes are supposed to complete
\r
732 // within 200ms, but sometimes they don'to.
\r
733 // Just pretend we're finished.
\r
737 process_MessageIn(); // Will go to BUS_FREE state
\r
739 // Try and prevent anyone else using the SCSI bus while we're not ready.
\r
740 SCSI_SetPin(SCSI_Out_BSY);
\r
746 SCSI_ClearPin(SCSI_Out_BSY);
\r
749 !scsiDev.resetFlag &&
\r
750 unlikely(scsiDisconnected) &&
\r
751 (elapsedTime_ms(lastActivityTime) <= 10000))
\r
753 scsiDisconnected = !scsiReconnect();
\r
755 if (scsiDisconnected)
\r
757 // Failed to reconnect
\r
758 scsiDev.resetFlag = 1;
\r
761 if (scsiDev.phase == DATA_OUT)
\r
763 if (scsiDev.parityError &&
\r
764 (scsiDev.target->cfg->flags & CONFIG_ENABLE_PARITY) &&
\r
765 (scsiDev.compatMode >= COMPAT_SCSI2))
\r
767 scsiDev.target->sense.code = ABORTED_COMMAND;
\r
768 scsiDev.target->sense.asc = SCSI_PARITY_ERROR;
\r
769 scsiDev.status = CHECK_CONDITION;;
\r
771 scsiDev.phase = STATUS;
\r
777 void scsiDiskReset()
\r
779 scsiDev.dataPtr = 0;
\r
780 scsiDev.savedDataPtr = 0;
\r
781 scsiDev.dataLen = 0;
\r
782 // transfer.lba = 0; // Needed in Request Sense to determine failure
\r
783 transfer.blocks = 0;
\r
784 transfer.currentBlock = 0;
\r
786 // Cancel long running commands!
\r
787 if (unlikely(transfer.inProgress == 1))
\r
789 if (transfer.dir == TRANSFER_WRITE)
\r
798 transfer.inProgress = 0;
\r
799 transfer.multiBlock = 0;
\r
802 void scsiDiskInit()
\r
804 transfer.inProgress = 0;
\r
807 // Don't require the host to send us a START STOP UNIT command
\r
808 blockDev.state = DISK_STARTED;
\r
809 // WP pin not available for micro-sd
\r
810 // TODO read card WP register
\r
814 blockDev.state = blockDev.state | DISK_WP;
\r
819 #pragma GCC pop_options
\r