| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266 | #include "scsiHostPhy.h"#include "BlueSCSI_platform.h"#include "BlueSCSI_log.h"#include "BlueSCSI_log_trace.h"#include "scsi_accel_host.h"#include <assert.h>#include <scsi2sd.h>extern "C" {#include <scsi.h>}volatile int g_scsiHostPhyReset;// Release bus and pulse RST signal, initialize PHY to host mode.void scsiHostPhyReset(void){    SCSI_RELEASE_OUTPUTS();    SCSI_ENABLE_INITIATOR();    scsi_accel_host_init();    SCSI_OUT(RST, 1);    delay(2);    SCSI_OUT(RST, 0);    delay(250);    g_scsiHostPhyReset = false;}// Select a device, id 0-7.// Returns true if the target answers to selection request.bool scsiHostPhySelect(int target_id){    SCSI_ENABLE_INITIATOR();    SCSI_RELEASE_OUTPUTS();    // We can't write individual data bus bits, so use a bit modified    // arbitration scheme. We always yield to any other initiator on    // the bus.    scsiLogInitiatorPhaseChange(BUS_BUSY);    SCSI_OUT(REQ, 0);    SCSI_OUT(BSY, 1);    for (int wait = 0; wait < 10; wait++)    {        delayMicroseconds(1);        if (SCSI_IN_DATA() != 0)        {            debuglog("scsiHostPhySelect: bus is busy");            scsiLogInitiatorPhaseChange(BUS_FREE);            SCSI_RELEASE_OUTPUTS();            return false;        }    }    // Choose initiator ID different than target ID    uint8_t initiator_id = (target_id == 7) ? 0 : 7;    // Selection phase    scsiLogInitiatorPhaseChange(SELECTION);    debuglog("------ SELECTING ", target_id, " with initiator ID ", (int)initiator_id);    SCSI_OUT(SEL, 1);    delayMicroseconds(5);    SCSI_OUT_DATA((1 << target_id) | (1 << initiator_id));    delayMicroseconds(5);    SCSI_OUT(BSY, 0);    // Wait for target to respond    for (int wait = 0; wait < 2500; wait++)    {        delayMicroseconds(100);        if (SCSI_IN(BSY))        {            break;        }    }    if (!SCSI_IN(BSY))    {        // No response        SCSI_RELEASE_OUTPUTS();        return false;    }    SCSI_RELEASE_DATA_REQ();    SCSI_OUT(SEL, 0);    SCSI_ENABLE_INITIATOR();    return true;}// Read the current communication phase as signaled by the targetint scsiHostPhyGetPhase(){    static absolute_time_t last_online_time;    if (g_scsiHostPhyReset)    {        // Reset request from watchdog timer        scsiHostPhyRelease();        return BUS_FREE;    }    int phase = 0;    bool req_in = SCSI_IN(REQ);    if (SCSI_IN(CD)) phase |= __scsiphase_cd;    if (SCSI_IN(IO)) phase |= __scsiphase_io;    if (SCSI_IN(MSG)) phase |= __scsiphase_msg;    if (phase == 0 && absolute_time_diff_us(last_online_time, get_absolute_time()) > 100)    {        // BlueSCSI doesn't need to assert OUT_BSY to check whether the bus is in use        delayMicroseconds(1);        if (!SCSI_IN(BSY))        {            scsiLogInitiatorPhaseChange(BUS_FREE);            return BUS_FREE;        }        last_online_time = get_absolute_time();    }    else if (phase != 0)    {        last_online_time = get_absolute_time();    }    if (!req_in)    {        // Don't act on phase changes until target asserts request signal.        // This filters out any spurious changes on control signals.        return BUS_BUSY;    }    else    {        scsiLogInitiatorPhaseChange(phase);        return phase;    }}bool scsiHostRequestWaiting(){    return SCSI_IN(REQ);}// Blocking data transfer#define SCSIHOST_WAIT_ACTIVE(pin) \  if (!SCSI_IN(pin)) { \    if (!SCSI_IN(pin)) { \      while(!SCSI_IN(pin) && !g_scsiHostPhyReset); \    } \  }#define SCSIHOST_WAIT_INACTIVE(pin) \  if (SCSI_IN(pin)) { \    if (SCSI_IN(pin)) { \      while(SCSI_IN(pin) && !g_scsiHostPhyReset); \    } \  }// Write one byte to SCSI target using the handshake mechanismstatic inline void scsiHostWriteOneByte(uint8_t value){    SCSIHOST_WAIT_ACTIVE(REQ);    SCSI_OUT_DATA(value);    delay_100ns(); // DB setup time before ACK    SCSI_OUT(ACK, 1);    SCSIHOST_WAIT_INACTIVE(REQ);    SCSI_RELEASE_DATA_REQ();    SCSI_OUT(ACK, 0);}// Read one byte from SCSI target using the handshake mechanism.static inline uint8_t scsiHostReadOneByte(int* parityError){    SCSIHOST_WAIT_ACTIVE(REQ);    uint16_t r = SCSI_IN_DATA();    SCSI_OUT(ACK, 1);    SCSIHOST_WAIT_INACTIVE(REQ);    SCSI_OUT(ACK, 0);    if (parityError && r != (g_scsi_parity_lookup[r & 0xFF] ^ SCSI_IO_DATA_MASK))    {        log("Parity error in scsiReadOneByte(): ", (uint32_t)r);        *parityError = 1;    }    return (uint8_t)r;}uint32_t scsiHostWrite(const uint8_t *data, uint32_t count){    scsiLogDataOut(data, count);    int cd_start = SCSI_IN(CD);    int msg_start = SCSI_IN(MSG);    for (uint32_t i = 0; i < count; i++)    {        while (!SCSI_IN(REQ))        {            if (g_scsiHostPhyReset || SCSI_IN(IO) || SCSI_IN(CD) != cd_start || SCSI_IN(MSG) != msg_start)            {                // Target switched out of DATA_OUT mode                log("scsiHostWrite: sent ", (int)i, " bytes, expected ", (int)count);                return i;            }        }        scsiHostWriteOneByte(data[i]);    }    return count;}uint32_t scsiHostRead(uint8_t *data, uint32_t count){    int parityError = 0;    uint32_t fullcount = count;    int cd_start = SCSI_IN(CD);    int msg_start = SCSI_IN(MSG);    if ((count & 1) == 0 && ((uint32_t)data & 1) == 0)    {        // Even number of bytes, use accelerated routine        count = scsi_accel_host_read(data, count, &parityError, &g_scsiHostPhyReset);    }    else    {        for (uint32_t i = 0; i < count; i++)        {            while (!SCSI_IN(REQ))            {                if (g_scsiHostPhyReset || !SCSI_IN(IO) || SCSI_IN(CD) != cd_start || SCSI_IN(MSG) != msg_start)                {                    // Target switched out of DATA_IN mode                    count = i;                }            }            data[i] = scsiHostReadOneByte(&parityError);        }    }    scsiLogDataIn(data, count);    if (g_scsiHostPhyReset || parityError)    {        return 0;    }    else    {        if (count < fullcount)        {            log("scsiHostRead: received ", (int)count, " bytes, expected ", (int)fullcount);        }        return count;    }}// Release all bus signalsvoid scsiHostPhyRelease(){    scsiLogInitiatorPhaseChange(BUS_FREE);    SCSI_RELEASE_OUTPUTS();}
 |