mirror of
https://github.com/LIV2/lide.device.git
synced 2025-12-06 00:32:45 +00:00
No functional changes * Move + Rename scsi command emulation out of idetask to scsi.c * Move ATAPI SCSI command handling out of idetask to atapi.c * Rename idetask to iotask
271 lines
7.5 KiB
C
271 lines
7.5 KiB
C
// SPDX-License-Identifier: GPL-2.0-only
|
|
/* This file is part of lide.device
|
|
* Copyright (C) 2023 Matthew Harlum <matt@harlum.net>
|
|
*/
|
|
#include <devices/scsidisk.h>
|
|
#include <devices/trackdisk.h>
|
|
#include <exec/errors.h>
|
|
#include <proto/alib.h>
|
|
#include <proto/exec.h>
|
|
#include <string.h>
|
|
|
|
#include "ata.h"
|
|
#include "debug.h"
|
|
#include "device.h"
|
|
#include "iotask.h"
|
|
#include "newstyle.h"
|
|
#include "scsi.h"
|
|
#include "td64.h"
|
|
|
|
/**
|
|
* fake_scsi_sense
|
|
*
|
|
* Populate sense data based on the error returned by the ATA functions
|
|
*
|
|
* @param command A pointer to a SCSICmd
|
|
* @param info Sense data Info long
|
|
* @param specific Sense data Specific long
|
|
* @param error Error code returned from ata_transfer
|
|
*
|
|
*/
|
|
void fake_scsi_sense(struct SCSICmd* command, ULONG info, ULONG specific, BYTE error)
|
|
{
|
|
struct SCSI_FIXED_SENSE *sense = (struct SCSI_FIXED_SENSE *)command->scsi_SenseData;
|
|
if (!(command->scsi_Flags & SCSIF_AUTOSENSE) || error == 0 || sense == NULL || (command->scsi_SenseLength < sizeof(struct SCSI_FIXED_SENSE)))
|
|
{
|
|
command->scsi_SenseActual = 0;
|
|
return;
|
|
}
|
|
|
|
command->scsi_SenseActual = sizeof(struct SCSI_FIXED_SENSE);
|
|
|
|
sense->response = 0x70; // Fixed format, current status
|
|
sense->pad = 0;
|
|
sense->info = info;
|
|
sense->additional = (UBYTE)sizeof(sense) - 7;
|
|
sense->specific = specific;
|
|
sense->fru = error;
|
|
switch (error) {
|
|
case IOERR_UNITBUSY:
|
|
sense->senseKey = 0x03;
|
|
sense->asc = 0x04; // Unit not ready, cause not reportable
|
|
sense->asq = 0x00;
|
|
break;
|
|
case IOERR_BADADDRESS:
|
|
sense->senseKey = 0x03;
|
|
sense->asc = 0x21; // LBA Out of range
|
|
sense->asq = 0x00;
|
|
break;
|
|
case IOERR_NOCMD:
|
|
sense->senseKey = 0x05; // Invalid Command operation code
|
|
sense->asc = 0x20;
|
|
sense->asq = 0x00;
|
|
break;
|
|
case TDERR_NotSpecified:
|
|
case HFERR_SelTimeout:
|
|
sense->senseKey = 0x0B; // Unit communication failure
|
|
sense->asc = 0x08;
|
|
sense->asq = 0x00;
|
|
break;
|
|
default:
|
|
sense->senseKey = 0x00; // No sense
|
|
sense->asc = 0x00;
|
|
sense->asq = 0x00;
|
|
break;
|
|
}
|
|
}
|
|
|
|
/**
|
|
* MakeSCSICmd
|
|
*
|
|
* Creates an new SCSICmd struct and CDB
|
|
*
|
|
* @param cdbSize Size of CDB to create
|
|
* @returns Pointer to an initialized SCSICmd struct
|
|
*/
|
|
struct SCSICmd * MakeSCSICmd(ULONG cdbSize) {
|
|
struct ExecBase *SysBase = *(struct ExecBase **)4UL;
|
|
UBYTE *cdb = NULL;
|
|
struct SCSICmd *cmd = NULL;
|
|
|
|
if ((cdb = AllocMem(cdbSize,MEMF_ANY|MEMF_CLEAR)) == NULL) {
|
|
return NULL;
|
|
}
|
|
|
|
if ((cmd = AllocMem(sizeof(struct SCSICmd),MEMF_ANY|MEMF_CLEAR)) == NULL) {
|
|
FreeMem(cdb,cdbSize);
|
|
return NULL;
|
|
}
|
|
|
|
cmd->scsi_Command = (UBYTE *)cdb;
|
|
cmd->scsi_CmdLength = cdbSize;
|
|
cmd->scsi_Data = NULL;
|
|
cmd->scsi_Length = 0;
|
|
cmd->scsi_SenseData = NULL;
|
|
|
|
return cmd;
|
|
}
|
|
|
|
/**
|
|
* DeleteSCSICmd
|
|
*
|
|
* Delete a SCSICmd and its CDB
|
|
*
|
|
* @param cmd Pointer to a SCSICmd struct to be deleted
|
|
*/
|
|
void DeleteSCSICmd(struct SCSICmd *cmd) {
|
|
struct ExecBase *SysBase = *(struct ExecBase **)4UL;
|
|
|
|
if (cmd) {
|
|
UBYTE *cdb = cmd->scsi_Command;
|
|
if (cdb) FreeMem(cdb,(ULONG)cmd->scsi_CmdLength);
|
|
FreeMem(cmd,sizeof(struct SCSICmd));
|
|
}
|
|
}
|
|
|
|
/**
|
|
* scsi_inquiry_emu
|
|
*
|
|
* Emulate SCSI-Direct INQUIRY command
|
|
*
|
|
* @param unit Pointer to an IDEUnit struct
|
|
* @param scsi_command Pointer to a SCSICmd struct
|
|
*/
|
|
BYTE scsi_inquiry_emu(struct IDEUnit *unit, struct SCSICmd *scsi_command) {
|
|
struct ExecBase *SysBase = unit->SysBase;
|
|
|
|
struct SCSI_Inquiry *data = (struct SCSI_Inquiry *)scsi_command->scsi_Data;
|
|
BYTE error;
|
|
|
|
data->peripheral_type = unit->deviceType;
|
|
data->removable_media = 0;
|
|
data->version = 2;
|
|
data->response_format = 2;
|
|
data->additional_length = (sizeof(struct SCSI_Inquiry) - 4);
|
|
|
|
UWORD *identity = AllocMem(512,MEMF_CLEAR|MEMF_ANY);
|
|
if (!identity) {
|
|
error = TDERR_NoMem;
|
|
fake_scsi_sense(scsi_command,0,0,error);
|
|
return error;
|
|
}
|
|
|
|
if (!(ata_identify(unit,identity))) {
|
|
error = HFERR_SelTimeout;
|
|
fake_scsi_sense(scsi_command,0,0,error);
|
|
FreeMem(identity,512);
|
|
return error;
|
|
}
|
|
|
|
CopyMem(&identity[ata_identify_model],&data->vendor,24);
|
|
CopyMem(&identity[ata_identify_fw_rev],&data->revision,4);
|
|
CopyMem(&identity[ata_identify_serial],&data->serial,8);
|
|
FreeMem(identity,512);
|
|
scsi_command->scsi_Actual = scsi_command->scsi_Length;
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* scsi_read_capacity_emu
|
|
*
|
|
* Emulate SCSI-Direct READ CAPACITY command
|
|
*
|
|
* @param unit Pointer to an IDEUnit struct
|
|
* @param scsi_command Pointer to a SCSICmd struct
|
|
*/
|
|
BYTE scsi_read_capacity_emu(struct IDEUnit *unit, struct SCSICmd *scsi_command) {
|
|
struct SCSI_CAPACITY_10 *data = (struct SCSI_CAPACITY_10 *)scsi_command->scsi_Data;
|
|
BYTE error;
|
|
|
|
if (data == NULL) {
|
|
error = IOERR_BADADDRESS;
|
|
fake_scsi_sense(scsi_command,0,0,error);
|
|
return error;
|
|
}
|
|
|
|
struct SCSI_READ_CAPACITY_10 *cdb = (struct SCSI_READ_CAPACITY_10 *)scsi_command->scsi_Command;
|
|
|
|
data->block_size = unit->blockSize;
|
|
|
|
if (cdb->flags & 0x01) {
|
|
// Partial Medium Indicator - Return end of cylinder
|
|
// Implement this so HDToolbox stops moaning about track size
|
|
ULONG spc = unit->sectorsPerTrack * unit->heads;
|
|
data->lba = (((cdb->lba / spc) + 1) * spc) - 1;
|
|
} else {
|
|
data->lba = (unit->logicalSectors) - 1;
|
|
}
|
|
|
|
|
|
scsi_command->scsi_Actual = 8;
|
|
|
|
return 0;
|
|
}
|
|
|
|
/**
|
|
* scsi_mode_sense_emu
|
|
*
|
|
* Emulate SCSI-Direct MODE SENSE (6) commands
|
|
*
|
|
* @param unit Pointer to an IDEUnit struct
|
|
* @param scsi_command Pointer to a SCSICmd struct
|
|
*/
|
|
BYTE scsi_mode_sense_emu(struct IDEUnit *unit, struct SCSICmd *scsi_command) {
|
|
BYTE error;
|
|
UBYTE *data = (APTR)scsi_command->scsi_Data;
|
|
UBYTE *command = (APTR)scsi_command->scsi_Command;
|
|
|
|
if (data == NULL) {
|
|
return IOERR_BADADDRESS;
|
|
}
|
|
|
|
UBYTE page = command[2] & 0x3F;
|
|
UBYTE subpage = command[3];
|
|
|
|
if (subpage != 0 || (page != 0x3F && page != 0x03 && page != 0x04)) {
|
|
error = HFERR_BadStatus;
|
|
fake_scsi_sense(scsi_command,0,0,error);
|
|
return error;
|
|
}
|
|
|
|
UBYTE *data_length = data; // Mode data length
|
|
data[1] = unit->deviceType; // Mode parameter: Media type
|
|
data[2] = 0; // DPOFUA
|
|
data[3] = 0; // Block descriptor length
|
|
|
|
*data_length = 3;
|
|
|
|
UBYTE idx = 4;
|
|
if (page == 0x3F || page == 0x03) {
|
|
data[idx++] = 0x03; // Page Code: Format Parameters
|
|
data[idx++] = 0x16; // Page length
|
|
for (int i=0; i <8; i++) {
|
|
data[idx++] = 0;
|
|
}
|
|
data[idx++] = (unit->sectorsPerTrack >> 8);
|
|
data[idx++] = unit->sectorsPerTrack;
|
|
data[idx++] = (unit->blockSize >> 8);
|
|
data[idx++] = unit->blockSize;
|
|
for (int i=0; i<10; i++) {
|
|
data[idx++] = 0;
|
|
}
|
|
}
|
|
|
|
if (page == 0x3F || page == 0x04) {
|
|
data[idx++] = 0x04; // Page code: Rigid Drive Geometry Parameters
|
|
data[idx++] = 0x16; // Page length
|
|
data[idx++] = (unit->cylinders >> 16);
|
|
data[idx++] = (unit->cylinders >> 8);
|
|
data[idx++] = unit->cylinders;
|
|
data[idx++] = unit->heads;
|
|
for (int i=0; i<18; i++) {
|
|
data[idx++] = 0;
|
|
}
|
|
}
|
|
|
|
*data_length = idx - 1;
|
|
scsi_command->scsi_Actual = idx;
|
|
return 0;
|
|
|
|
}
|