EMILE/libscsi/scsi_command.c

92 lines
1.4 KiB
C
Raw Normal View History

2005-11-17 06:44:44 +00:00
/*
*
* (c) 2004, 2005 Laurent Vivier <Laurent@lvivier.info>
2005-11-17 06:44:44 +00:00
*
*/
#include <stdio.h>
#include <scsi/scsi.h>
#include <macos/types.h>
#include <macos/errors.h>
2006-10-27 09:19:53 +00:00
#include <macos/scsi.h>
2006-10-30 21:52:58 +00:00
#include <macos/lowmem.h>
2005-11-17 06:44:44 +00:00
#include "libscsi.h"
#define COMPLETION_TIMEOUT 300
2006-10-30 21:52:58 +00:00
#define SCSI_BUSY (1 << 6)
#define SCSI_SEL (1 << 1)
static inline int scsi_busy(void)
{
return (SCSIStat() & (SCSI_BUSY | SCSI_SEL)) != 0;
}
static inline int scsi_wait_bus()
{
int timeout;
timeout = Ticks + 300;
while (scsi_busy())
if (Ticks > timeout)
return scsiBusy;
return noErr;
}
2005-11-17 06:44:44 +00:00
int scsi_command(int target, char* cdb, int count, TIB_t* tib)
{
int err;
short stat;
short message;
2006-10-30 21:52:58 +00:00
err = scsi_wait_bus();
if (err != noErr)
{
printf("SCSI bus is busy\n");
return err;
}
2005-11-17 06:44:44 +00:00
err = SCSIGet();
if (err != noErr)
{
printf("Cannot get SCSI bus (%d)\n", err);
return err;
}
err = SCSISelect(target);
if (err != noErr)
{
printf("Cannot select target %d (%d)\n", target, err);
return err;
}
err = SCSICmd(cdb, count);
if (err != noErr)
{
printf("Cannot send command (%d)\n", err);
goto complete;
}
err = SCSIRead(tib);
2006-10-27 09:19:53 +00:00
if ((err != scPhaseErr) && (err != noErr))
2005-11-17 06:44:44 +00:00
{
printf("Cannot read data (%d)\n", err);
goto complete;
}
complete:
err = SCSIComplete(&stat, &message, COMPLETION_TIMEOUT);
if (err != noErr)
{
printf("Cannot complete transaction %d %d(%d)\n",
stat, message, err);
return err;
}
return noErr;
}