redquark-amiberry-rb/src/hardfile.cpp

2156 lines
54 KiB
C++
Raw Normal View History

2017-12-04 15:49:40 +01:00
/*
* UAE - The Un*x Amiga Emulator
*
* Hardfile emulation
*
* Copyright 1995 Bernd Schmidt
* 2002 Toni Wilen (scsi emulation, 64-bit support)
*/
2015-05-13 18:47:23 +00:00
#include "sysconfig.h"
#include "sysdeps.h"
#include "threaddep/thread.h"
2015-05-13 18:47:23 +00:00
#include "options.h"
2016-11-30 22:25:43 +01:00
#include "memory.h"
#include "custom.h"
2016-11-30 22:25:43 +01:00
#include "newcpu.h"
2015-05-13 18:47:23 +00:00
#include "disk.h"
#include "autoconf.h"
#include "traps.h"
#include "filesys.h"
#include "execlib.h"
#include "native2amiga.h"
#include "gui.h"
#include "uae.h"
2017-03-06 22:02:31 +01:00
#include "scsi.h"
2017-12-04 15:49:40 +01:00
#include "gayle.h"
#include "execio.h"
#include "zfile.h"
2017-12-04 15:49:40 +01:00
#include "ide.h"
2015-05-13 18:47:23 +00:00
2017-12-04 15:49:40 +01:00
#undef DEBUGME
2016-11-30 22:25:43 +01:00
#define hf_log(fmt, ...)
#define hf_log2(fmt, ...)
#define scsi_log(fmt, ...)
#define hf_log3(fmt, ...)
//#define DEBUGME
#ifdef DEBUGME
#undef hf_log
#define hf_log write_log
#undef hf_log2
#define hf_log2 write_log
#undef hf_log3
#define hf_log3 write_log
#undef scsi_log
#define scsi_log write_log
#endif
2015-05-13 18:47:23 +00:00
#define MAX_ASYNC_REQUESTS 50
#define ASYNC_REQUEST_NONE 0
#define ASYNC_REQUEST_TEMP 1
#define ASYNC_REQUEST_CHANGEINT 10
2016-11-30 22:25:43 +01:00
struct hardfileprivdata {
2017-12-04 15:49:40 +01:00
uaecptr d_request[MAX_ASYNC_REQUESTS];
uae_u8 *d_request_iobuf[MAX_ASYNC_REQUESTS];
int d_request_type[MAX_ASYNC_REQUESTS];
uae_u32 d_request_data[MAX_ASYNC_REQUESTS];
smp_comm_pipe requests;
int thread_running;
uae_thread_id thread_id;
uae_sem_t sync_sem;
uaecptr base;
int changenum;
uaecptr changeint;
struct scsi_data *sd;
2015-05-13 18:47:23 +00:00
};
2016-11-30 22:25:43 +01:00
#define HFD_VHD_DYNAMIC 3
#define HFD_VHD_FIXED 2
2017-12-04 15:49:40 +01:00
STATIC_INLINE uae_u32 gl (uae_u8 *p)
{
2016-11-30 22:25:43 +01:00
return (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | (p[3] << 0);
}
2017-12-04 15:49:40 +01:00
static uae_sem_t change_sem = 0;
2015-05-13 18:47:23 +00:00
static struct hardfileprivdata hardfpd[MAX_FILESYSTEM_UNITS];
static uae_u32 nscmd_cmd;
2017-12-04 15:49:40 +01:00
static void wl (uae_u8 *p, int v)
{
2016-11-30 22:25:43 +01:00
p[0] = v >> 24;
p[1] = v >> 16;
p[2] = v >> 8;
p[3] = v;
}
2017-12-04 15:49:40 +01:00
static void ww (uae_u8 *p, int v)
{
2016-11-30 22:25:43 +01:00
p[0] = v >> 8;
p[1] = v;
}
2017-12-04 15:49:40 +01:00
static int rl (uae_u8 *p)
{
2016-11-30 22:25:43 +01:00
return (p[0] << 24) | (p[1] << 16) | (p[2] << 8) | (p[3]);
}
2017-12-04 15:49:40 +01:00
static void getchs2 (struct hardfiledata *hfd, int *cyl, int *cylsec, int *head, int *tracksec)
{
2016-11-30 22:25:43 +01:00
unsigned int total = (unsigned int)(hfd->virtsize / 1024);
int heads;
int sectors = 63;
/* do we have RDB values? */
if (hfd->rdbcylinders) {
*cyl = hfd->rdbcylinders;
*tracksec = hfd->rdbsectors;
*head = hfd->rdbheads;
*cylsec = hfd->rdbsectors * hfd->rdbheads;
return;
}
/* what about HDF settings? */
if (hfd->ci.surfaces && hfd->ci.sectors) {
*head = hfd->ci.surfaces;
*tracksec = hfd->ci.sectors;
*cylsec = (*head) * (*tracksec);
*cyl = (unsigned int)(hfd->virtsize / hfd->ci.blocksize) / ((*tracksec) * (*head));
return;
}
/* no, lets guess something.. */
if (total <= 504 * 1024)
heads = 16;
else if (total <= 1008 * 1024)
heads = 32;
else if (total <= 2016 * 1024)
heads = 64;
else if (total <= 4032 * 1024)
heads = 128;
else
heads = 255;
*cyl = (unsigned int)(hfd->virtsize / hfd->ci.blocksize) / (sectors * heads);
*cylsec = sectors * heads;
*tracksec = sectors;
*head = heads;
}
2017-12-04 15:49:40 +01:00
static void getchsx (struct hardfiledata *hfd, int *cyl, int *cylsec, int *head, int *tracksec)
{
2017-12-04 15:49:40 +01:00
getchs2 (hfd, cyl, cylsec, head, tracksec);
hf_log (_T("CHS: %08X-%08X %d %d %d %d %d\n"),
(uae_u32)(hfd->virtsize >> 32),(uae_u32)hfd->virtsize,
2016-11-30 22:25:43 +01:00
*cyl, *cylsec, *head, *tracksec);
}
2017-12-04 15:49:40 +01:00
static void getchsgeometry2 (uae_u64 size, int *pcyl, int *phead, int *psectorspertrack, int mode)
{
2016-11-30 22:25:43 +01:00
int sptt[4];
int i, spt, head, cyl;
uae_u64 total = (unsigned int)(size / 512);
if (mode == 1) {
// old-style head=1, spt=32 always mode
head = 1;
spt = 32;
cyl = total / (head * spt);
2017-12-04 15:49:40 +01:00
} else {
2016-11-30 22:25:43 +01:00
sptt[0] = 63;
sptt[1] = 127;
sptt[2] = 255;
sptt[3] = -1;
for (i = 0; sptt[i] >= 0; i++) {
2017-12-04 15:49:40 +01:00
int maxhead = sptt[i] < 255 ? 16 : 255;
2016-11-30 22:25:43 +01:00
spt = sptt[i];
2017-12-04 15:49:40 +01:00
for (head = 4; head <= maxhead; head++) {
2016-11-30 22:25:43 +01:00
cyl = total / (head * spt);
if (size <= 512 * 1024 * 1024) {
if (cyl <= 1023)
break;
2017-12-04 15:49:40 +01:00
} else {
2016-11-30 22:25:43 +01:00
if (cyl < 16383)
break;
if (cyl < 32767 && head >= 5)
break;
if (cyl <= 65535)
break;
}
2017-12-04 15:49:40 +01:00
if (maxhead > 16) {
head *= 2;
head--;
}
2016-11-30 22:25:43 +01:00
}
if (head <= 16)
break;
}
}
2017-12-04 15:49:40 +01:00
if (head > 16)
head--;
2016-11-30 22:25:43 +01:00
*pcyl = cyl;
*phead = head;
*psectorspertrack = spt;
}
2017-12-04 15:49:40 +01:00
void getchsgeometry (uae_u64 size, int *pcyl, int *phead, int *psectorspertrack)
{
2017-12-04 15:49:40 +01:00
getchsgeometry2 (size, pcyl, phead, psectorspertrack, 0);
}
2017-12-04 15:49:40 +01:00
void getchsgeometry_hdf (struct hardfiledata *hfd, uae_u64 size, int *pcyl, int *phead, int *psectorspertrack)
{
2016-11-30 22:25:43 +01:00
uae_u8 block[512];
int i;
uae_u64 minsize = 512 * 1024 * 1024;
if (size <= minsize) {
*phead = 1;
*psectorspertrack = 32;
}
2017-12-04 15:49:40 +01:00
memset (block, 0, sizeof block);
2016-11-30 22:25:43 +01:00
if (hfd) {
2017-12-04 15:49:40 +01:00
hdf_read (hfd, block, 0, 512);
2016-11-30 22:25:43 +01:00
if (block[0] == 'D' && block[1] == 'O' && block[2] == 'S') {
int mode;
for (mode = 0; mode < 2; mode++) {
uae_u32 rootblock;
uae_u32 chk = 0;
2017-12-04 15:49:40 +01:00
getchsgeometry2 (size, pcyl, phead, psectorspertrack, mode);
2016-11-30 22:25:43 +01:00
rootblock = (2 + ((*pcyl) * (*phead) * (*psectorspertrack) - 1)) / 2;
2017-12-04 15:49:40 +01:00
memset (block, 0, sizeof block);
hdf_read (hfd, block, (uae_u64)rootblock * 512, 512);
2016-11-30 22:25:43 +01:00
for (i = 0; i < 512; i += 4)
chk += (block[i] << 24) | (block[i + 1] << 16) | (block[i + 2] << 8) | (block[i + 3] << 0);
if (!chk && block[0] == 0 && block[1] == 0 && block[2] == 0 && block[3] == 2 &&
2017-12-04 15:49:40 +01:00
block[4] == 0 && block[5] == 0 && block[6] == 0 && block[7] == 0 &&
block[8] == 0 && block[9] == 0 && block[10] == 0 && block[11] == 0 &&
2016-11-30 22:25:43 +01:00
block[508] == 0 && block[509] == 0 && block[510] == 0 && block[511] == 1) {
2017-12-04 15:49:40 +01:00
return;
2016-11-30 22:25:43 +01:00
}
}
}
}
2017-12-04 15:49:40 +01:00
getchsgeometry2 (size, pcyl, phead, psectorspertrack, size <= minsize ? 1 : 2);
}
2017-12-04 15:49:40 +01:00
void getchspgeometry (uae_u64 total, int *pcyl, int *phead, int *psectorspertrack, bool idegeometry)
{
2016-11-30 22:25:43 +01:00
uae_u64 blocks = total / 512;
if (blocks > 16515072) {
/* >8G, CHS=16383/16/63 */
*pcyl = 16383;
*phead = 16;
*psectorspertrack = 63;
return;
}
if (idegeometry) {
*phead = 16;
*psectorspertrack = 63;
*pcyl = blocks / ((*psectorspertrack) * (*phead));
return;
}
2017-12-04 15:49:40 +01:00
getchsgeometry (total, pcyl, phead, psectorspertrack);
}
2017-12-04 15:49:40 +01:00
static void getchshd (struct hardfiledata *hfd, int *pcyl, int *phead, int *psectorspertrack)
{
2017-12-04 15:49:40 +01:00
getchspgeometry (hfd->virtsize, pcyl, phead, psectorspertrack, false);
}
2017-12-04 15:49:40 +01:00
static void pl (uae_u8 *p, int off, uae_u32 v)
{
2016-11-30 22:25:43 +01:00
p += off * 4;
p[0] = v >> 24;
p[1] = v >> 16;
p[2] = v >> 8;
p[3] = v >> 0;
}
2017-12-04 15:49:40 +01:00
static void rdb_crc (uae_u8 *p)
{
2016-11-30 22:25:43 +01:00
uae_u32 sum;
int i, blocksize;
2017-12-04 15:49:40 +01:00
sum =0;
blocksize = rl (p + 1 * 4);
2016-11-30 22:25:43 +01:00
for (i = 0; i < blocksize; i++)
2017-12-04 15:49:40 +01:00
sum += rl (p + i * 4);
2016-11-30 22:25:43 +01:00
sum = -sum;
2017-12-04 15:49:40 +01:00
pl (p, 2, sum);
}
2017-12-04 15:49:40 +01:00
static void create_virtual_rdb (struct hardfiledata *hfd)
{
2016-11-30 22:25:43 +01:00
uae_u8 *rdb, *part, *denv;
int cyl = hfd->ci.surfaces * hfd->ci.sectors;
int cyls = 262144 / (cyl * 512);
int size = cyl * cyls * 512;
2017-12-04 15:49:40 +01:00
rdb = xcalloc (uae_u8, size);
2016-11-30 22:25:43 +01:00
hfd->virtual_rdb = rdb;
hfd->virtual_size = size;
part = rdb + 512;
pl(rdb, 0, 0x5244534b);
pl(rdb, 1, 64);
pl(rdb, 2, 0); // chksum
2017-12-04 15:49:40 +01:00
pl(rdb, 3, 7); // hostid
2016-11-30 22:25:43 +01:00
pl(rdb, 4, 512); // blockbytes
pl(rdb, 5, 0); // flags
pl(rdb, 6, -1); // badblock
pl(rdb, 7, 1); // part
pl(rdb, 8, -1); // fs
pl(rdb, 9, -1); // driveinit
pl(rdb, 10, -1); // reserved
pl(rdb, 11, -1); // reserved
pl(rdb, 12, -1); // reserved
pl(rdb, 13, -1); // reserved
pl(rdb, 14, -1); // reserved
pl(rdb, 15, -1); // reserved
pl(rdb, 16, hfd->ci.highcyl);
pl(rdb, 17, hfd->ci.sectors);
pl(rdb, 18, hfd->ci.surfaces);
pl(rdb, 19, hfd->ci.interleave); // interleave
pl(rdb, 20, 0); // park
pl(rdb, 21, -1); // res
pl(rdb, 22, -1); // res
pl(rdb, 23, -1); // res
pl(rdb, 24, 0); // writeprecomp
pl(rdb, 25, 0); // reducedwrite
pl(rdb, 26, 0); // steprate
pl(rdb, 27, -1); // res
pl(rdb, 28, -1); // res
pl(rdb, 29, -1); // res
pl(rdb, 30, -1); // res
pl(rdb, 31, -1); // res
pl(rdb, 32, 0); // rdbblockslo
pl(rdb, 33, cyl * cyls); // rdbblockshi
pl(rdb, 34, cyls); // locyl
pl(rdb, 35, hfd->ci.highcyl + cyls); // hicyl
pl(rdb, 36, cyl); // cylblocks
pl(rdb, 37, 0); // autopark
pl(rdb, 38, 2); // highrdskblock
pl(rdb, 39, -1); // res
2017-12-04 15:49:40 +01:00
ua_copy ((char*)rdb + 40 * 4, 8, hfd->vendor_id);
ua_copy ((char*)rdb + 42 * 4, 16, hfd->product_id);
ua_copy ((char*)rdb + 46 * 4, 4, _T("UAE"));
rdb_crc (rdb);
2016-11-30 22:25:43 +01:00
pl(part, 0, 0x50415254);
pl(part, 1, 64);
pl(part, 2, 0);
pl(part, 3, 0);
pl(part, 4, -1);
pl(part, 5, 1); // bootable
pl(part, 6, -1);
pl(part, 7, -1);
pl(part, 8, 0); // devflags
2017-12-04 15:49:40 +01:00
part[9 * 4] = _tcslen (hfd->ci.devname);
ua_copy ((char*)part + 9 * 4 + 1, 30, hfd->ci.devname);
2016-11-30 22:25:43 +01:00
denv = part + 128;
pl(denv, 0, 80);
pl(denv, 1, 512 / 4);
pl(denv, 2, 0); // secorg
pl(denv, 3, hfd->ci.surfaces);
pl(denv, 4, hfd->ci.blocksize / 512);
pl(denv, 5, hfd->ci.sectors);
pl(denv, 6, hfd->ci.reserved);
pl(denv, 7, 0); // prealloc
pl(denv, 8, hfd->ci.interleave); // interleave
pl(denv, 9, cyls); // lowcyl
pl(denv, 10, hfd->ci.highcyl + cyls - 1);
pl(denv, 11, hfd->ci.buffers);
pl(denv, 12, hfd->ci.bufmemtype);
pl(denv, 13, hfd->ci.maxtransfer);
pl(denv, 14, hfd->ci.mask);
pl(denv, 15, hfd->ci.bootpri);
pl(denv, 16, hfd->ci.dostype);
2017-12-04 15:49:40 +01:00
rdb_crc (part);
2016-11-30 22:25:43 +01:00
hfd->virtsize += size;
}
2017-12-04 15:49:40 +01:00
void hdf_hd_close (struct hd_hardfiledata *hfd)
{
2016-11-30 22:25:43 +01:00
if (!hfd)
return;
2017-12-04 15:49:40 +01:00
hdf_close (&hfd->hfd);
}
2017-12-04 15:49:40 +01:00
int hdf_hd_open (struct hd_hardfiledata *hfd)
{
2016-11-30 22:25:43 +01:00
struct uaedev_config_info *ci = &hfd->hfd.ci;
2017-12-04 15:49:40 +01:00
if (hdf_open (&hfd->hfd) <= 0)
2016-11-30 22:25:43 +01:00
return 0;
2017-12-04 15:49:40 +01:00
if (ci->physical_geometry) {
2016-11-30 22:25:43 +01:00
hfd->cyls = ci->pcyls;
hfd->heads = ci->pheads;
hfd->secspertrack = ci->psecs;
2017-12-04 15:49:40 +01:00
} else if (ci->highcyl && ci->surfaces && ci->sectors) {
2016-11-30 22:25:43 +01:00
hfd->cyls = ci->highcyl;
hfd->heads = ci->surfaces;
hfd->secspertrack = ci->sectors;
2017-12-04 15:49:40 +01:00
} else {
getchshd (&hfd->hfd, &hfd->cyls, &hfd->heads, &hfd->secspertrack);
2016-11-30 22:25:43 +01:00
}
hfd->cyls_def = hfd->cyls;
hfd->secspertrack_def = hfd->secspertrack;
hfd->heads_def = hfd->heads;
if (ci->surfaces && ci->sectors) {
uae_u8 buf[512] = { 0 };
2017-12-04 15:49:40 +01:00
hdf_read (&hfd->hfd, buf, 0, 512);
if (buf[0] != 0 && memcmp (buf, _T("RDSK"), 4)) {
2016-11-30 22:25:43 +01:00
ci->highcyl = (hfd->hfd.virtsize / ci->blocksize) / (ci->sectors * ci->surfaces);
2017-12-04 15:49:40 +01:00
ci->dostype = rl (buf);
create_virtual_rdb (&hfd->hfd);
2016-11-30 22:25:43 +01:00
while (ci->highcyl * ci->surfaces * ci->sectors > hfd->cyls_def * hfd->secspertrack_def * hfd->heads_def) {
hfd->cyls_def++;
}
}
}
hfd->size = hfd->hfd.virtsize;
return 1;
}
2017-12-04 15:49:40 +01:00
static int hdf_write2 (struct hardfiledata *hfd, void *buffer, uae_u64 offset, int len);
static int hdf_read2 (struct hardfiledata *hfd, void *buffer, uae_u64 offset, int len);
2017-03-06 22:02:31 +01:00
2017-12-04 15:49:40 +01:00
static int hdf_cache_read (struct hardfiledata *hfd, void *buffer, uae_u64 offset, int len)
{
2017-12-04 15:49:40 +01:00
return hdf_read2 (hfd, buffer, offset, len);
}
2017-12-04 15:49:40 +01:00
static int hdf_cache_write (struct hardfiledata *hfd, void *buffer, uae_u64 offset, int len)
{
2017-12-04 15:49:40 +01:00
return hdf_write2 (hfd, buffer, offset, len);
}
2017-12-04 15:49:40 +01:00
int hdf_open (struct hardfiledata *hfd, const TCHAR *pname)
{
2017-12-04 15:49:40 +01:00
int ret;
2017-03-06 22:02:31 +01:00
2016-11-30 22:25:43 +01:00
if ((!pname || pname[0] == 0) && hfd->ci.rootdir[0] == 0)
return 0;
hfd->adide = 0;
hfd->byteswap = 0;
hfd->hfd_type = 0;
if (!pname)
pname = hfd->ci.rootdir;
2017-12-04 15:49:40 +01:00
ret = hdf_open_target (hfd, pname);
if (ret <= 0)
return ret;
2016-11-30 22:25:43 +01:00
hfd->hfd_type = 0;
2017-03-06 22:02:31 +01:00
return 1;
}
2017-12-04 15:49:40 +01:00
int hdf_open (struct hardfiledata *hfd)
2017-03-06 22:02:31 +01:00
{
2017-12-04 15:49:40 +01:00
return hdf_open (hfd, NULL);
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
void hdf_close (struct hardfiledata *hfd)
2017-03-06 22:02:31 +01:00
{
2017-12-04 15:49:40 +01:00
hdf_close_target (hfd);
hfd->hfd_type = 0;
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
static int hdf_read2 (struct hardfiledata *hfd, void *buffer, uae_u64 offset, int len)
2017-03-06 22:02:31 +01:00
{
2017-12-04 15:49:40 +01:00
return hdf_read_target (hfd, buffer, offset, len);
}
2017-12-04 15:49:40 +01:00
static int hdf_write2 (struct hardfiledata *hfd, void *buffer, uae_u64 offset, int len)
{
2017-12-04 15:49:40 +01:00
return hdf_write_target (hfd, buffer, offset, len);
}
2017-12-04 15:49:40 +01:00
static void adide_decode (void *v, int len)
{
2016-11-30 22:25:43 +01:00
int i;
uae_u8 *buffer = (uae_u8*)v;
for (i = 0; i < len; i += 2) {
2017-12-04 15:49:40 +01:00
uae_u8 *b = buffer + i;
2016-11-30 22:25:43 +01:00
uae_u16 w = (b[0] << 8) | (b[1] << 0);
2017-12-04 15:49:40 +01:00
uae_u16 o = adide_decode_word(w);
2016-11-30 22:25:43 +01:00
b[0] = o >> 8;
b[1] = o >> 0;
}
}
2017-12-04 15:49:40 +01:00
static void adide_encode (void *v, int len)
{
2016-11-30 22:25:43 +01:00
int i;
uae_u8 *buffer = (uae_u8*)v;
for (i = 0; i < len; i += 2) {
2017-12-04 15:49:40 +01:00
uae_u8 *b = buffer + i;
2016-11-30 22:25:43 +01:00
uae_u16 w = (b[0] << 8) | (b[1] << 0);
2017-12-04 15:49:40 +01:00
uae_u16 o = adide_encode_word(w);
2016-11-30 22:25:43 +01:00
b[0] = o >> 8;
b[1] = o >> 0;
}
}
2017-12-04 15:49:40 +01:00
static void hdf_byteswap (void *v, int len)
{
2016-11-30 22:25:43 +01:00
int i;
uae_u8 *b = (uae_u8*)v;
for (i = 0; i < len; i += 2) {
uae_u8 tmp = b[i];
b[i] = b[i + 1];
b[i + 1] = tmp;
}
}
2017-12-04 15:49:40 +01:00
int hdf_read_rdb (struct hardfiledata *hfd, void *buffer, uae_u64 offset, int len)
{
2016-11-30 22:25:43 +01:00
int v;
2017-12-04 15:49:40 +01:00
v = hdf_read (hfd, buffer, offset, len);
if (v > 0 && offset < 16 * 512 && !hfd->byteswap && !hfd->adide) {
2016-11-30 22:25:43 +01:00
uae_u8 *buf = (uae_u8*)buffer;
bool changed = false;
if (buf[0] == 0x39 && buf[1] == 0x10 && buf[2] == 0xd3 && buf[3] == 0x12) { // AdIDE encoded "CPRM"
hfd->adide = 1;
changed = true;
2017-12-04 15:49:40 +01:00
write_log (_T("HDF: adide scrambling detected\n"));
} else if (!memcmp (buf, "DRKS", 4)) {
2016-11-30 22:25:43 +01:00
hfd->byteswap = 1;
changed = true;
2017-12-04 15:49:40 +01:00
write_log (_T("HDF: byteswapped RDB detected\n"));
2016-11-30 22:25:43 +01:00
}
if (changed)
2017-12-04 15:49:40 +01:00
v = hdf_read (hfd, buffer, offset, len);
2016-11-30 22:25:43 +01:00
}
return v;
}
2017-12-04 15:49:40 +01:00
int hdf_read (struct hardfiledata *hfd, void *buffer, uae_u64 offset, int len)
{
2016-11-30 22:25:43 +01:00
int v;
2017-12-04 15:49:40 +01:00
hf_log3 (_T("cmd_read: %p %04x-%08x (%d) %08x (%d)\n"),
2016-11-30 22:25:43 +01:00
buffer, (uae_u32)(offset >> 32), (uae_u32)offset, (uae_u32)(offset / hfd->ci.blocksize), (uae_u32)len, (uae_u32)(len / hfd->ci.blocksize));
if (!hfd->adide) {
2017-12-04 15:49:40 +01:00
v = hdf_cache_read (hfd, buffer, offset, len);
} else {
2016-11-30 22:25:43 +01:00
offset += 512;
2017-12-04 15:49:40 +01:00
v = hdf_cache_read (hfd, buffer, offset, len);
adide_decode (buffer, len);
2016-11-30 22:25:43 +01:00
}
if (hfd->byteswap)
2017-12-04 15:49:40 +01:00
hdf_byteswap (buffer, len);
2016-11-30 22:25:43 +01:00
return v;
}
2017-12-04 15:49:40 +01:00
int hdf_write (struct hardfiledata *hfd, void *buffer, uae_u64 offset, int len)
{
2016-11-30 22:25:43 +01:00
int v;
2017-12-04 15:49:40 +01:00
hf_log3 (_T("cmd_write: %p %04x-%08x (%d) %08x (%d)\n"),
2016-11-30 22:25:43 +01:00
buffer, (uae_u32)(offset >> 32), (uae_u32)offset, (uae_u32)(offset / hfd->ci.blocksize), (uae_u32)len, (uae_u32)(len / hfd->ci.blocksize));
if (hfd->byteswap)
2017-12-04 15:49:40 +01:00
hdf_byteswap (buffer, len);
2016-11-30 22:25:43 +01:00
if (!hfd->adide) {
2017-12-04 15:49:40 +01:00
v = hdf_cache_write (hfd, buffer, offset, len);
} else {
2016-11-30 22:25:43 +01:00
offset += 512;
2017-12-04 15:49:40 +01:00
adide_encode (buffer, len);
v = hdf_cache_write (hfd, buffer, offset, len);
adide_decode (buffer, len);
2016-11-30 22:25:43 +01:00
}
if (hfd->byteswap)
2017-12-04 15:49:40 +01:00
hdf_byteswap (buffer, len);
2016-11-30 22:25:43 +01:00
return v;
}
2017-12-04 15:49:40 +01:00
static uae_u64 cmd_readx (struct hardfiledata *hfd, uae_u8 *dataptr, uae_u64 offset, uae_u64 len)
2015-09-09 21:49:41 +02:00
{
2017-12-04 15:49:40 +01:00
gui_flicker_led (LED_HD, hfd->unitnum, 1);
return hdf_read (hfd, dataptr, offset, len);
2015-09-09 21:49:41 +02:00
}
2017-12-04 15:49:40 +01:00
static uae_u64 cmd_read(TrapContext *ctx, struct hardfiledata *hfd, uaecptr dataptr, uae_u64 offset, uae_u64 len)
2015-05-13 18:47:23 +00:00
{
2017-12-04 15:49:40 +01:00
if (!len)
2017-03-06 22:02:31 +01:00
return 0;
2017-12-04 15:49:40 +01:00
if (!ctx) {
addrbank *bank_data = &get_mem_bank (dataptr);
if (!bank_data || !bank_data->check (dataptr, len))
return 0;
uae_u8 *buffer = bank_data->xlateaddr (dataptr);
return cmd_readx (hfd, buffer, offset, len);
}
int total = 0;
while (len > 0) {
uae_u8 buf[RTAREA_TRAP_DATA_EXTRA_SIZE];
int max = RTAREA_TRAP_DATA_EXTRA_SIZE & ~511;
int size = len > max ? max : len;
if (cmd_readx(hfd, buf, offset, size) != size)
break;
trap_put_bytes(ctx, buf, dataptr, size);
offset += size;
dataptr += size;
len -= size;
total += size;
}
return total;
2015-09-09 21:49:41 +02:00
}
2017-12-04 15:49:40 +01:00
static uae_u64 cmd_writex (struct hardfiledata *hfd, uae_u8 *dataptr, uae_u64 offset, uae_u64 len)
2015-09-09 21:49:41 +02:00
{
2017-12-04 15:49:40 +01:00
gui_flicker_led (LED_HD, hfd->unitnum, 2);
return hdf_write (hfd, dataptr, offset, len);
2015-05-13 18:47:23 +00:00
}
2017-12-04 15:49:40 +01:00
static uae_u64 cmd_write(TrapContext *ctx, struct hardfiledata *hfd, uaecptr dataptr, uae_u64 offset, uae_u64 len)
2015-05-13 18:47:23 +00:00
{
2017-12-04 15:49:40 +01:00
if (!len)
2017-03-06 22:02:31 +01:00
return 0;
2017-12-04 15:49:40 +01:00
if (!ctx) {
addrbank *bank_data = &get_mem_bank (dataptr);
if (!bank_data || !bank_data->check (dataptr, len))
return 0;
uae_u8 *buffer = bank_data->xlateaddr (dataptr);
return cmd_writex (hfd, buffer, offset, len);
}
int total = 0;
while (len > 0) {
uae_u8 buf[RTAREA_TRAP_DATA_EXTRA_SIZE];
int max = RTAREA_TRAP_DATA_EXTRA_SIZE & ~511;
int size = len > max ? max : len;
trap_get_bytes(ctx, buf, dataptr, size);
if (cmd_writex(hfd, buf, offset, size) != size)
break;
offset += size;
dataptr += size;
len -= size;
total += size;
}
return total;
2015-09-09 21:49:41 +02:00
}
2017-12-04 15:49:40 +01:00
static int checkbounds (struct hardfiledata *hfd, uae_u64 offset, uae_u64 len, int mode)
{
2017-12-04 15:49:40 +01:00
uae_u64 max = hfd->virtsize;
if (offset >= max || offset + len > max || (offset > 0xffffffff && (uae_s64)offset < 0)) {
return -1;
}
return 0;
}
2017-12-04 15:49:40 +01:00
static bool is_writeprotected(struct hardfiledata *hfd)
2015-09-09 21:49:41 +02:00
{
2017-12-04 15:49:40 +01:00
return hfd->ci.readonly || hfd->dangerous || currprefs.harddrive_read_only;
}
static int nodisk (struct hardfiledata *hfd)
{
if (hfd->drive_empty)
return 1;
return 0;
}
static void setdrivestring(const TCHAR *s, uae_u8 *d, int start, int length)
{
int i = 0;
uae_char *ss = ua(s);
while (i < length && ss[i]) {
d[start + i] = ss[i];
i++;
}
while (i > 0) {
uae_char c = d[start + i - 1];
if (c != '_')
break;
i--;
}
while (i < length) {
d[start + i] = 32;
i++;
}
xfree (ss);
2015-09-09 21:49:41 +02:00
}
2017-12-04 15:49:40 +01:00
static const uae_u8 sasi_commands[] =
{
0x00, 0x01, 0x03, 0x04, 0x05, 0x06, 0x07, 0x08, 0x09, 0x0a, 0x0b, 0x0c, 0x0d, 0x0e, 0x0f, 0x10, 0x12,
0xe0, 0xe3, 0xe4, 0xe5, 0xe6, 0xe7,
0xff
};
static const uae_u8 sasi_commands2[] =
{
0x12,
0xff
};
static uae_u64 get_scsi_6_offset(struct hardfiledata *hfd, struct hd_hardfiledata *hdhfd, uae_u8 *cmdbuf, uae_u64 *lba)
{
bool chs = hfd->ci.unit_feature_level == HD_LEVEL_SASI_CHS;
uae_u64 offset;
if (chs) {
int cyl, cylsec, head, tracksec;
if (hdhfd) {
cyl = hdhfd->cyls;
head = hdhfd->heads;
tracksec = hdhfd->secspertrack;
cylsec = 0;
} else {
getchsx(hfd, &cyl, &cylsec, &head, &tracksec);
}
int d_head = cmdbuf[1] & 31;
int d_cyl = cmdbuf[3] | ((cmdbuf[2] >> 6) << 8) | ((cmdbuf[1] >> 7) << 10);
int d_sec = cmdbuf[2] & 63;
*lba = ((cmdbuf[1] & (0x1f | 0x80 | 0x40)) << 16) | (cmdbuf[2] << 8) || cmdbuf[3];
if (d_cyl >= cyl || d_head >= head || d_sec >= tracksec)
return ~0;
offset = d_cyl * head * tracksec + d_head * tracksec + d_sec;
} else {
offset = ((cmdbuf[1] & 31) << 16) | (cmdbuf[2] << 8) | cmdbuf[3];
}
return offset;
}
int scsi_hd_emulate (struct hardfiledata *hfd, struct hd_hardfiledata *hdhfd, uae_u8 *cmdbuf, int scsi_cmd_len,
2017-03-06 22:02:31 +01:00
uae_u8 *scsi_data, int *data_len, uae_u8 *r, int *reply_len, uae_u8 *s, int *sense_len)
{
2017-12-04 15:49:40 +01:00
TrapContext *ctx = NULL;
if (cmdbuf == NULL)
return 0;
2017-03-06 22:02:31 +01:00
uae_u64 len, offset;
int lr = 0, ls = 0;
2017-12-04 15:49:40 +01:00
int chkerr;
2017-03-06 22:02:31 +01:00
int scsi_len = -1;
int status = 0;
2017-12-04 15:49:40 +01:00
int lun;
uae_u8 cmd;
bool sasi = hfd->ci.unit_feature_level >= HD_LEVEL_SASI && hfd->ci.unit_feature_level <= HD_LEVEL_SASI_ENHANCED;
bool sasie = hfd->ci.unit_feature_level == HD_LEVEL_SASI_ENHANCED;
bool omti = hfd->ci.unit_feature_level == HD_LEVEL_SASI_CHS;
uae_u8 sasi_sense = 0;
uae_u64 current_lba = ~0;
cmd = cmdbuf[0];
/* REQUEST SENSE */
if (cmd == 0x03) {
return 0;
}
2017-03-06 22:02:31 +01:00
*reply_len = *sense_len = 0;
lun = cmdbuf[1] >> 5;
2017-12-04 15:49:40 +01:00
if (sasi || omti) {
lun = lun & 1;
if (lun)
goto nodisk;
}
if (cmd != 0x03 && cmd != 0x12 && lun) {
2017-03-06 22:02:31 +01:00
status = 2; /* CHECK CONDITION */
s[0] = 0x70;
s[2] = 5; /* ILLEGAL REQUEST */
s[12] = 0x25; /* INVALID LUN */
ls = 0x12;
2017-12-04 15:49:40 +01:00
write_log (_T("UAEHF: CMD=%02X LUN=%d ignored\n"), cmdbuf[0], lun);
goto scsi_done;
}
if (sasi || omti) {
int i;
for (i = 0; sasi_commands[i] != 0xff; i++) {
if (sasi_commands[i] == cmdbuf[0])
break;
}
if (sasi_commands[i] == 0xff) {
if (sasie) {
for (i = 0; sasi_commands2[i] != 0xff; i++) {
if (sasi_commands2[i] == cmdbuf[0])
break;
}
if (sasi_commands2[i] == 0xff)
goto errreq;
} else {
goto errreq;
}
}
switch (cmdbuf[0])
{
case 0x05: /* READ VERIFY */
if (nodisk(hfd))
goto nodisk;
offset = get_scsi_6_offset(hfd, hdhfd, cmdbuf, &current_lba);
if (offset == ~0) {
chkerr = 1;
goto checkfail;
}
current_lba = offset;
offset *= hfd->ci.blocksize;
chkerr = checkbounds(hfd, offset, hfd->ci.blocksize, 1);
if (chkerr) {
current_lba = offset;
goto checkfail;
}
scsi_len = 0;
goto scsi_done;
case 0x0c: /* INITIALIZE DRIVE CHARACTERISTICS */
scsi_len = 8;
write_log(_T("INITIALIZE DRIVE CHARACTERISTICS: "));
write_log(_T("Heads: %d Cyls: %d Secs: %d\n"),
(scsi_data[1] >> 4) | ((scsi_data[0] & 0xc0) << 4),
((scsi_data[1] & 15) << 8) | (scsi_data[2]),
scsi_data[5]);
for (int i = 0; i < 8; i++) {
write_log(_T("%02X "), scsi_data[i]);
}
write_log(_T("\n"));
goto scsi_done;
case 0x12: /* INQUIRY */
{
int cyl, cylsec, head, tracksec;
int alen = cmdbuf[4];
if (nodisk(hfd))
goto nodisk;
if (hdhfd) {
cyl = hdhfd->cyls;
head = hdhfd->heads;
tracksec = hdhfd->secspertrack;
cylsec = 0;
} else {
getchsx(hfd, &cyl, &cylsec, &head, &tracksec);
}
r[0] = 0;
r[1] = 11;
r[9] = cyl >> 8;
r[10] = cyl;
r[11] = head;
scsi_len = lr = alen > 12 ? 12 : alen;
goto scsi_done;
}
break;
}
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
switch (cmdbuf[0])
{
case 0x12: /* INQUIRY */
{
if ((cmdbuf[1] & 1) || cmdbuf[2] != 0)
goto err;
int alen = (cmdbuf[3] << 8) | cmdbuf[4];
if (lun != 0) {
r[0] = 0x7f;
} else {
r[0] = 0;
}
r[2] = 2; /* supports SCSI-2 */
r[3] = 2; /* response data format */
r[4] = 32; /* additional length */
r[7] = 0;
lr = alen < 36 ? alen : 36;
if (hdhfd) {
r[2] = hdhfd->ansi_version;
r[3] = hdhfd->ansi_version >= 2 ? 2 : 0;
}
setdrivestring(hfd->vendor_id, r, 8, 8);
setdrivestring(hfd->product_id, r, 16, 16);
setdrivestring(hfd->product_rev, r, 32, 4);
if (lun == 0 && hfd->drive_empty) {
r[0] |= 0x20; // not present
r[1] |= 0x80; // removable..
}
scsi_len = lr;
}
goto scsi_done;
case 0x1b: /* START/STOP UNIT */
scsi_len = 0;
hfd->unit_stopped = (cmdbuf[4] & 1) == 0;
goto scsi_done;
}
if (hfd->unit_stopped) {
status = 2; /* CHECK CONDITION */
s[0] = 0x70;
s[2] = 2; /* NOT READY */
s[12] = 4; /* not ready */
s[13] = 2; /* need initialise command */
ls = 0x12;
goto scsi_done;
}
2017-03-06 22:02:31 +01:00
switch (cmdbuf[0])
{
case 0x00: /* TEST UNIT READY */
2017-12-04 15:49:40 +01:00
if (nodisk (hfd))
goto nodisk;
scsi_len = 0;
break;
case 0x01: /* REZERO UNIT */
if (nodisk (hfd))
goto nodisk;
scsi_len = 0;
break;
case 0x04: /* FORMAT UNIT */
// do nothing
if (nodisk (hfd))
goto nodisk;
if (is_writeprotected(hfd))
goto readprot;
scsi_len = 0;
break;
case 0x05: /* VERIFY TRACK */
// do nothing
if (nodisk (hfd))
goto nodisk;
scsi_len = 0;
break;
case 0x06: /* FORMAT TRACK */
// do nothing
if (nodisk (hfd))
goto nodisk;
if (is_writeprotected(hfd))
goto readprot;
scsi_len = 0;
break;
case 0x09: /* READ VERIFY */
2017-03-06 22:02:31 +01:00
if (nodisk(hfd))
goto nodisk;
2017-12-04 15:49:40 +01:00
offset = get_scsi_6_offset(hfd, hdhfd, cmdbuf, &current_lba);
if (offset == ~0) {
chkerr = 1;
goto checkfail;
}
current_lba = offset;
offset *= hfd->ci.blocksize;
chkerr = checkbounds(hfd, offset, hfd->ci.blocksize, 1);
if (chkerr) {
current_lba = offset;
goto checkfail;
}
2017-03-06 22:02:31 +01:00
scsi_len = 0;
break;
2017-12-04 15:49:40 +01:00
case 0x0b: /* SEEK (6) */
if (nodisk (hfd))
goto nodisk;
offset = get_scsi_6_offset(hfd, hdhfd, cmdbuf, &current_lba);
if (offset == ~0) {
chkerr = 1;
goto checkfail;
}
current_lba = offset;
offset *= hfd->ci.blocksize;
chkerr = checkbounds(hfd, offset, hfd->ci.blocksize, 3);
if (chkerr)
goto checkfail;
scsi_len = 0;
2017-03-06 22:02:31 +01:00
break;
case 0x08: /* READ (6) */
2017-12-04 15:49:40 +01:00
if (nodisk (hfd))
2017-03-06 22:02:31 +01:00
goto nodisk;
2017-12-04 15:49:40 +01:00
offset = get_scsi_6_offset(hfd, hdhfd, cmdbuf, &current_lba);
if (offset == ~0) {
chkerr = 1;
goto checkfail;
}
current_lba = offset;
2017-03-06 22:02:31 +01:00
offset *= hfd->ci.blocksize;
len = cmdbuf[4];
if (!len)
len = 256;
len *= hfd->ci.blocksize;
2017-12-04 15:49:40 +01:00
chkerr = checkbounds(hfd, offset, len, 1);
if (chkerr)
goto checkfail;
2017-03-06 22:02:31 +01:00
scsi_len = (uae_u32)cmd_readx(hfd, scsi_data, offset, len);
break;
2017-12-04 15:49:40 +01:00
case 0x0f: /* WRITE SECTOR BUFFER */
scsi_len = hfd->ci.blocksize;
break;
2017-03-06 22:02:31 +01:00
case 0x0a: /* WRITE (6) */
2017-12-04 15:49:40 +01:00
if (nodisk (hfd))
2017-03-06 22:02:31 +01:00
goto nodisk;
2017-12-04 15:49:40 +01:00
if (is_writeprotected(hfd))
2017-03-06 22:02:31 +01:00
goto readprot;
2017-12-04 15:49:40 +01:00
offset = get_scsi_6_offset(hfd, hdhfd, cmdbuf, &current_lba);
if (offset == ~0) {
chkerr = 1;
goto checkfail;
}
current_lba = offset;
2017-03-06 22:02:31 +01:00
offset *= hfd->ci.blocksize;
len = cmdbuf[4];
if (!len)
len = 256;
len *= hfd->ci.blocksize;
2017-12-04 15:49:40 +01:00
chkerr = checkbounds(hfd, offset, len, 2);
if (chkerr)
goto checkfail;
2017-03-06 22:02:31 +01:00
scsi_len = (uae_u32)cmd_writex(hfd, scsi_data, offset, len);
break;
2017-12-04 15:49:40 +01:00
case 0x5a: // MODE SENSE(10)
2017-03-06 22:02:31 +01:00
case 0x1a: /* MODE SENSE(6) */
2017-12-04 15:49:40 +01:00
{
uae_u8 *p;
bool pcodeloop = false;
bool sense10 = cmdbuf[0] == 0x5a;
int pc = cmdbuf[2] >> 6;
int pcode = cmdbuf[2] & 0x3f;
int dbd = cmdbuf[1] & 8;
int cyl, head, tracksec;
int totalsize, bdsize, alen;
if (nodisk (hfd))
goto nodisk;
if (hdhfd) {
cyl = hdhfd->cyls;
head = hdhfd->heads;
tracksec = hdhfd->secspertrack;
} else {
int cylsec;
getchsx (hfd, &cyl, &cylsec, &head, &tracksec);
}
//write_log (_T("MODE SENSE PC=%d CODE=%d DBD=%d\n"), pc, pcode, dbd);
p = r;
if (sense10) {
totalsize = 8 - 2;
alen = (cmdbuf[7] << 8) | cmdbuf[8];
p[2] = 0;
p[3] = is_writeprotected(hfd) ? 0x80 : 0x00;
p[4] = 0;
p[5] = 0;
p[6] = 0;
p[7] = 0;
p += 8;
} else {
totalsize = 4 - 1;
alen = cmdbuf[4];
p[1] = 0;
p[2] = is_writeprotected(hfd) ? 0x80 : 0x00;
p[3] = 0;
p += 4;
}
bdsize = 0;
if (!dbd) {
2017-03-06 22:02:31 +01:00
uae_u32 blocks = (uae_u32)(hfd->virtsize / hfd->ci.blocksize);
2017-12-04 15:49:40 +01:00
wl(p + 0, blocks < 0x01000000 ? blocks : 0);
2017-03-06 22:02:31 +01:00
wl(p + 4, hfd->ci.blocksize);
2017-12-04 15:49:40 +01:00
bdsize = 8;
p += bdsize;
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
if (pcode == 0x3f) {
pcode = 1; // page = 0 must be last
pcodeloop = true;
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
for (;;) {
int psize = 0;
if (pcode == 0) {
p[0] = 0;
p[1] = 0;
p[2] = 0x20;
p[3] = 0;
psize = 4;
} else if (pcode == 1) {
// error recovery page
p[0] = 1;
p[1] = 0x0a;
psize = p[1] + 2;
// return defaults (0)
} else if (pcode == 3) {
// format parameters
p[0] = 3;
p[1] = 22;
p[3] = 1;
p[10] = tracksec >> 8;
p[11] = tracksec;
p[12] = hfd->ci.blocksize >> 8;
p[13] = hfd->ci.blocksize;
p[15] = 1; // interleave
p[20] = 0x80;
psize = p[1] + 2;
} else if (pcode == 4) {
// rigid drive geometry
p[0] = 4;
wl(p + 1, cyl);
p[1] = 22;
p[5] = head;
wl(p + 13, cyl);
ww(p + 20, 5400);
psize = p[1] + 2;
} else {
if (!pcodeloop)
goto err;
}
totalsize += psize;
p += psize;
if (!pcodeloop)
break;
if (pcode == 0)
break;
pcode++;
if (pcode == 0x3f)
pcode = 0;
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
if (sense10) {
totalsize += bdsize;
r[6] = bdsize >> 8;
r[7] = bdsize & 0xff;
r[0] = totalsize >> 8;
r[1] = totalsize & 0xff;
} else {
totalsize += bdsize;
r[3] = (uae_u8)bdsize;
r[0] = (uae_u8)totalsize;
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
scsi_len = lr = totalsize + 1;
if (scsi_len > alen)
scsi_len = alen;
if (lr > alen)
lr = alen;
break;
2017-03-06 22:02:31 +01:00
}
break;
case 0x1d: /* SEND DIAGNOSTICS */
break;
2017-12-04 15:49:40 +01:00
case 0x25: /* READ CAPACITY */
{
int pmi = cmdbuf[8] & 1;
uae_u32 lba = (cmdbuf[2] << 24) | (cmdbuf[3] << 16) | (cmdbuf[4] << 8) | cmdbuf[5];
uae_u32 blocks;
int cyl, head, tracksec;
if (nodisk (hfd))
goto nodisk;
blocks = (uae_u32)(hfd->virtsize / hfd->ci.blocksize);
if (hdhfd) {
cyl = hdhfd->cyls;
head = hdhfd->heads;
tracksec = hdhfd->secspertrack;
} else {
int cylsec;
getchsx (hfd, &cyl, &cylsec, &head, &tracksec);
}
if (pmi == 0 && lba != 0)
goto errreq;
if (pmi) {
lba += tracksec * head;
lba /= tracksec * head;
lba *= tracksec * head;
if (lba > blocks)
lba = blocks;
blocks = lba;
}
wl (r, blocks - 1);
wl (r + 4, hfd->ci.blocksize);
scsi_len = lr = 8;
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
break;
case 0x2b: /* SEEK (10) */
if (nodisk (hfd))
goto nodisk;
offset = rl (cmdbuf + 2);
current_lba = offset;
offset *= hfd->ci.blocksize;
chkerr = checkbounds(hfd, offset, hfd->ci.blocksize, 3);
if (chkerr)
goto checkfail;
scsi_len = 0;
break;
2017-03-06 22:02:31 +01:00
case 0x28: /* READ (10) */
2017-12-04 15:49:40 +01:00
if (nodisk (hfd))
2017-03-06 22:02:31 +01:00
goto nodisk;
2017-12-04 15:49:40 +01:00
offset = rl (cmdbuf + 2);
current_lba = offset;
2017-03-06 22:02:31 +01:00
offset *= hfd->ci.blocksize;
2017-12-04 15:49:40 +01:00
len = rl (cmdbuf + 7 - 2) & 0xffff;
2017-03-06 22:02:31 +01:00
len *= hfd->ci.blocksize;
2017-12-04 15:49:40 +01:00
chkerr = checkbounds(hfd, offset, len, 1);
if (chkerr)
goto checkfail;
scsi_len = (uae_u32)cmd_readx (hfd, scsi_data, offset, len);
2017-03-06 22:02:31 +01:00
break;
case 0x2a: /* WRITE (10) */
2017-12-04 15:49:40 +01:00
if (nodisk (hfd))
2017-03-06 22:02:31 +01:00
goto nodisk;
2017-12-04 15:49:40 +01:00
if (is_writeprotected(hfd))
2017-03-06 22:02:31 +01:00
goto readprot;
2017-12-04 15:49:40 +01:00
offset = rl (cmdbuf + 2);
current_lba = offset;
2017-03-06 22:02:31 +01:00
offset *= hfd->ci.blocksize;
2017-12-04 15:49:40 +01:00
len = rl (cmdbuf + 7 - 2) & 0xffff;
2017-03-06 22:02:31 +01:00
len *= hfd->ci.blocksize;
2017-12-04 15:49:40 +01:00
chkerr = checkbounds(hfd, offset, len, 2);
if (chkerr)
goto checkfail;
scsi_len = (uae_u32)cmd_writex (hfd, scsi_data, offset, len);
2017-03-06 22:02:31 +01:00
break;
case 0x2f: /* VERIFY (10) */
2017-12-04 15:49:40 +01:00
{
int bytchk = cmdbuf[1] & 2;
if (nodisk (hfd))
goto nodisk;
if (bytchk) {
offset = rl (cmdbuf + 2);
current_lba = offset;
offset *= hfd->ci.blocksize;
len = rl (cmdbuf + 7 - 2) & 0xffff;
len *= hfd->ci.blocksize;
chkerr = checkbounds (hfd, offset, len, 1);
if (chkerr)
goto checkfail;
uae_u8 *vb = xmalloc(uae_u8, hfd->ci.blocksize);
2017-03-06 22:02:31 +01:00
while (len > 0) {
2017-12-04 15:49:40 +01:00
int readlen = cmd_readx (hfd, vb, offset, hfd->ci.blocksize);
if (readlen != hfd->ci.blocksize || memcmp (vb, scsi_data, hfd->ci.blocksize)) {
xfree (vb);
2017-03-06 22:02:31 +01:00
goto miscompare;
}
scsi_data += hfd->ci.blocksize;
offset += hfd->ci.blocksize;
len -= hfd->ci.blocksize;
}
2017-12-04 15:49:40 +01:00
xfree (vb);
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
scsi_len = 0;
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
break;
2017-03-06 22:02:31 +01:00
case 0x35: /* SYNCRONIZE CACHE (10) */
2017-12-04 15:49:40 +01:00
if (nodisk (hfd))
2017-03-06 22:02:31 +01:00
goto nodisk;
scsi_len = 0;
break;
case 0xa8: /* READ (12) */
2017-12-04 15:49:40 +01:00
if (nodisk (hfd))
2017-03-06 22:02:31 +01:00
goto nodisk;
2017-12-04 15:49:40 +01:00
offset = rl (cmdbuf + 2);
current_lba = offset;
2017-03-06 22:02:31 +01:00
offset *= hfd->ci.blocksize;
2017-12-04 15:49:40 +01:00
len = rl (cmdbuf + 6);
2017-03-06 22:02:31 +01:00
len *= hfd->ci.blocksize;
2017-12-04 15:49:40 +01:00
chkerr = checkbounds(hfd, offset, len, 1);
if (chkerr)
goto checkfail;
scsi_len = (uae_u32)cmd_readx (hfd, scsi_data, offset, len);
2017-03-06 22:02:31 +01:00
break;
case 0xaa: /* WRITE (12) */
2017-12-04 15:49:40 +01:00
if (nodisk (hfd))
2017-03-06 22:02:31 +01:00
goto nodisk;
2017-12-04 15:49:40 +01:00
if (is_writeprotected(hfd))
2017-03-06 22:02:31 +01:00
goto readprot;
2017-12-04 15:49:40 +01:00
offset = rl (cmdbuf + 2);
current_lba = offset;
2017-03-06 22:02:31 +01:00
offset *= hfd->ci.blocksize;
2017-12-04 15:49:40 +01:00
len = rl (cmdbuf + 6);
2017-03-06 22:02:31 +01:00
len *= hfd->ci.blocksize;
2017-12-04 15:49:40 +01:00
chkerr = checkbounds(hfd, offset, len, 2);
if (chkerr)
goto checkfail;
scsi_len = (uae_u32)cmd_writex (hfd, scsi_data, offset, len);
2017-03-06 22:02:31 +01:00
break;
case 0x37: /* READ DEFECT DATA */
2017-12-04 15:49:40 +01:00
if (nodisk (hfd))
2017-03-06 22:02:31 +01:00
goto nodisk;
2017-12-04 15:49:40 +01:00
scsi_len = lr = 4;
r[0] = 0;
r[1] = cmdbuf[1] & 0x1f;
r[2] = 0;
r[3] = 0;
2017-03-06 22:02:31 +01:00
break;
2017-12-04 15:49:40 +01:00
case 0xe0: /* RAM DIAGNOSTICS */
case 0xe3: /* DRIVE DIAGNOSTIC */
case 0xe4: /* CONTROLLER INTERNAL DIAGNOSTICS */
2017-03-06 22:02:31 +01:00
scsi_len = 0;
break;
2017-12-04 15:49:40 +01:00
readprot:
2017-03-06 22:02:31 +01:00
status = 2; /* CHECK CONDITION */
s[0] = 0x70;
s[2] = 7; /* DATA PROTECT */
s[12] = 0x27; /* WRITE PROTECTED */
ls = 0x12;
2017-12-04 15:49:40 +01:00
sasi_sense = 0x03; // write fault
2017-03-06 22:02:31 +01:00
break;
2017-12-04 15:49:40 +01:00
nodisk:
2017-03-06 22:02:31 +01:00
status = 2; /* CHECK CONDITION */
s[0] = 0x70;
s[2] = 2; /* NOT READY */
s[12] = 0x3A; /* MEDIUM NOT PRESENT */
ls = 0x12;
2017-12-04 15:49:40 +01:00
sasi_sense = 0x04; // drive not ready
2017-03-06 22:02:31 +01:00
break;
default:
2017-12-04 15:49:40 +01:00
err:
write_log (_T("UAEHF: unsupported scsi command 0x%02X LUN=%d\n"), cmdbuf[0], lun);
errreq:
2017-03-06 22:02:31 +01:00
status = 2; /* CHECK CONDITION */
s[0] = 0x70;
s[2] = 5; /* ILLEGAL REQUEST */
s[12] = 0x24; /* ILLEGAL FIELD IN CDB */
ls = 0x12;
2017-12-04 15:49:40 +01:00
sasi_sense = 0x22; // invalid parameter
2017-03-06 22:02:31 +01:00
break;
2017-12-04 15:49:40 +01:00
checkfail:
2017-03-06 22:02:31 +01:00
status = 2; /* CHECK CONDITION */
2017-12-04 15:49:40 +01:00
s[0] = 0x70 | ((current_lba != ~0) ? 0x80 : 0x00);
if (chkerr < 0) {
s[2] = 5; /* ILLEGAL REQUEST */
s[12] = 0x21; /* LOGICAL BLOCK OUT OF RANGE */
sasi_sense = 0x21; // illegal disk address
} else {
s[2] = 3; /* MEDIUM ERROR */
if (chkerr == 1) {
s[12] = 0x11; /* Unrecovered Read Error */
sasi_sense = 0x11; // uncorrectable data error
}
if (chkerr == 2) {
s[12] = 0x0c; /* Write Error */
sasi_sense = 0x03; // write fault
}
}
2017-03-06 22:02:31 +01:00
ls = 0x12;
break;
2017-12-04 15:49:40 +01:00
miscompare:
2017-03-06 22:02:31 +01:00
status = 2; /* CHECK CONDITION */
2017-12-04 15:49:40 +01:00
s[0] = 0x70 | ((current_lba != ~0) ? 0x80 : 0x00);
2017-03-06 22:02:31 +01:00
s[2] = 5; /* ILLEGAL REQUEST */
s[12] = 0x1d; /* MISCOMPARE DURING VERIFY OPERATION */
ls = 0x12;
2017-12-04 15:49:40 +01:00
sasi_sense = 0x11; // uncorrectable data error
2017-03-06 22:02:31 +01:00
break;
}
2017-12-04 15:49:40 +01:00
scsi_done:
if (ls > 7)
s[7] = ls - 8;
2017-03-06 22:02:31 +01:00
*data_len = scsi_len;
*reply_len = lr;
if (ls > 0) {
2017-12-04 15:49:40 +01:00
if (omti || sasi) {
if (sasi_sense != 0) {
bool islba = (s[0] & 0x80) != 0;
ls = 4;
s[0] = sasi_sense | (islba ? 0x80 : 0x00);
s[1] = (lun & 1) << 5;
s[2] = 0;
s[3] = 0;
if (islba) {
s[1] |= (current_lba >> 16) & 31;
s[2] = (current_lba >> 8) & 255;
s[3] = (current_lba >> 0) & 255;
}
}
} else {
if (s[0] & 0x80) {
s[3] = (current_lba >> 24) & 255;
s[4] = (current_lba >> 16) & 255;
s[5] = (current_lba >> 8) & 255;
s[6] = (current_lba >> 0) & 255;
}
}
memset (hfd->scsi_sense, 0, MAX_SCSI_SENSE);
memcpy (hfd->scsi_sense, s, ls);
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
*sense_len = ls;
2017-03-06 22:02:31 +01:00
return status;
}
2017-12-04 15:49:40 +01:00
static int handle_scsi (TrapContext *ctx, uae_u8 *iobuf, uaecptr request, struct hardfiledata *hfd, struct scsi_data *sd)
2017-03-06 22:02:31 +01:00
{
2017-12-04 15:49:40 +01:00
int ret = 0;
uae_u32 scsicmdaddr = get_long_host(iobuf + 40);
uae_u8 scsicmd[30];
trap_get_bytes(ctx, scsicmd, scsicmdaddr, sizeof scsicmd);
uaecptr scsi_data = get_long_host(scsicmd + 0);
int scsi_len = get_long_host(scsicmd + 4);
uaecptr scsi_cmd = get_long_host(scsicmd + 12);
uae_u16 scsi_cmd_len = get_word_host(scsicmd + 16);
uae_u8 scsi_flags = get_byte_host(scsicmd + 20);
uaecptr scsi_sense = get_long_host(scsicmd + 22);
uae_u16 scsi_sense_len = get_word_host(scsicmd + 26);
uae_u8 cmd = trap_get_byte(ctx, scsi_cmd);
scsi_sense_len = (scsi_flags & 4) ? 4 : /* SCSIF_OLDAUTOSENSE */
2017-03-06 22:02:31 +01:00
(scsi_flags & 2) ? scsi_sense_len : /* SCSIF_AUTOSENSE */
32;
2017-12-04 15:49:40 +01:00
scsi_log (_T("hdf scsiemu: cmd=%02X,%d flags=%02X sense=%p,%d data=%p,%d\n"),
2017-03-06 22:02:31 +01:00
cmd, scsi_cmd_len, scsi_flags, scsi_sense, scsi_sense_len, scsi_data, scsi_len);
2017-12-04 15:49:40 +01:00
sd->cmd_len = scsi_cmd_len;
sd->data_len = scsi_len;
trap_get_bytes(ctx, sd->cmd, scsi_cmd, sd->cmd_len);
for (int i = 0; i < sd->cmd_len; i++) {
scsi_log (_T("%02X%c"), cmdbuf[i], i < sd->cmd_len - 1 ? '.' : ' ');
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
scsi_log (_T("\n"));
scsi_emulate_analyze(sd);
scsi_start_transfer(sd);
if (sd->direction > 0) {
trap_get_bytes(ctx, sd->buffer, scsi_data, sd->data_len);
scsi_emulate_cmd(sd);
} else {
scsi_emulate_cmd(sd);
if (sd->direction < 0)
trap_put_bytes(ctx, sd->buffer, scsi_data, sd->data_len);
}
put_word_host(scsicmd + 18, sd->status != 0 ? 0 : sd->cmd_len); /* fake scsi_CmdActual */
put_byte_host(scsicmd + 21, sd->status); /* scsi_Status */
if (sd->reply_len > 0) {
trap_put_bytes(ctx, sd->reply, scsi_data, sd->reply_len);
scsi_log (_T("RD:"));
int i = 0;
while (i < sd->reply_len && i < 24) {
scsi_log (_T("%02X%c"), reply[i], i < reply_len - 1 ? '.' : ' ');
2017-03-06 22:02:31 +01:00
i++;
}
2017-12-04 15:49:40 +01:00
scsi_log (_T("\n"));
2017-03-06 22:02:31 +01:00
}
if (scsi_sense) {
2017-12-04 15:49:40 +01:00
trap_put_bytes(ctx, sd->sense, scsi_sense, sd->sense_len < scsi_sense_len ? sd->sense_len : scsi_sense_len);
if (scsi_sense_len > sd->sense_len) {
trap_set_bytes(ctx, scsi_sense + sd->sense_len, 0, scsi_sense_len - sd->sense_len);
2017-03-06 22:02:31 +01:00
}
}
2017-12-04 15:49:40 +01:00
if (sd->data_len < 0) {
put_long_host(scsicmd + 8, 0); /* scsi_Actual */
2017-03-06 22:02:31 +01:00
ret = 20;
2017-12-04 15:49:40 +01:00
} else {
put_long_host(scsicmd + 8, sd->data_len); /* scsi_Actual */
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
trap_put_bytes(ctx, scsicmd, scsicmdaddr, sizeof scsicmd);
2017-03-06 22:02:31 +01:00
return ret;
}
2017-12-04 15:49:40 +01:00
void hardfile_send_disk_change (struct hardfiledata *hfd, bool insert)
2015-09-09 21:49:41 +02:00
{
2016-11-30 22:25:43 +01:00
int newstate = insert ? 0 : 1;
2017-12-04 15:49:40 +01:00
uae_sem_wait (&change_sem);
2016-11-30 22:25:43 +01:00
hardfpd[hfd->unitnum].changenum++;
2017-12-04 15:49:40 +01:00
write_log (_T("uaehf.device:%d media status=%d changenum=%d\n"), hfd->unitnum, insert, hardfpd[hfd->unitnum].changenum);
2016-11-30 22:25:43 +01:00
hfd->drive_empty = newstate;
int j = 0;
while (j < MAX_ASYNC_REQUESTS) {
if (hardfpd[hfd->unitnum].d_request_type[j] == ASYNC_REQUEST_CHANGEINT) {
2017-12-04 15:49:40 +01:00
uae_Cause (hardfpd[hfd->unitnum].d_request_data[j]);
2016-11-30 22:25:43 +01:00
}
j++;
}
if (hardfpd[hfd->unitnum].changeint)
2017-12-04 15:49:40 +01:00
uae_Cause (hardfpd[hfd->unitnum].changeint);
uae_sem_post (&change_sem);
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
void hardfile_do_disk_change (struct uaedev_config_data *uci, bool insert)
2017-03-06 22:02:31 +01:00
{
2017-12-04 15:49:40 +01:00
int fsid = uci->configoffset;
struct hardfiledata *hfd;
2017-03-06 22:02:31 +01:00
if (uci->ci.controller_type == HD_CONTROLLER_TYPE_PCMCIA) {
if (uci->ci.controller_type_unit == 0) {
2017-12-04 15:49:40 +01:00
gayle_modify_pcmcia_sram_unit (&uci->ci, insert);
} else {
gayle_modify_pcmcia_ide_unit (&uci->ci, insert);
}
2017-03-06 22:02:31 +01:00
return;
}
2017-12-04 15:49:40 +01:00
hfd = get_hardfile_data (fsid);
if (!hfd)
return;
hardfile_send_disk_change (hfd, insert);
}
static int add_async_request (struct hardfileprivdata *hfpd, uae_u8 *iobuf, uaecptr request, int type, uae_u32 data)
{
int i;
i = 0;
while (i < MAX_ASYNC_REQUESTS) {
if (hfpd->d_request[i] == request) {
hfpd->d_request_type[i] = type;
hfpd->d_request_data[i] = data;
hf_log (_T("old async request %p (%d) added\n"), request, type);
return 0;
}
i++;
}
i = 0;
while (i < MAX_ASYNC_REQUESTS) {
if (hfpd->d_request[i] == 0) {
hfpd->d_request[i] = request;
hfpd->d_request_iobuf[i] = iobuf;
hfpd->d_request_type[i] = type;
hfpd->d_request_data[i] = data;
hf_log (_T("async request %p (%d) added (total=%d)\n"), request, type, i);
return 0;
}
i++;
}
hf_log (_T("async request overflow %p!\n"), request);
return -1;
}
static int release_async_request (struct hardfileprivdata *hfpd, uaecptr request)
{
int i = 0;
while (i < MAX_ASYNC_REQUESTS) {
if (hfpd->d_request[i] == request) {
int type = hfpd->d_request_type[i];
hfpd->d_request[i] = 0;
xfree(hfpd->d_request_iobuf[i]);
hfpd->d_request_iobuf[i] = 0;
hfpd->d_request_data[i] = 0;
hfpd->d_request_type[i] = 0;
hf_log (_T("async request %p removed\n"), request);
return type;
}
i++;
}
hf_log (_T("tried to remove non-existing request %p\n"), request);
return -1;
}
static void abort_async (struct hardfileprivdata *hfpd, uaecptr request, int errcode, int type)
{
int i;
hf_log (_T("aborting async request %p\n"), request);
i = 0;
while (i < MAX_ASYNC_REQUESTS) {
if (hfpd->d_request[i] == request && hfpd->d_request_type[i] == ASYNC_REQUEST_TEMP) {
/* ASYNC_REQUEST_TEMP = request is processing */
sleep_millis (1);
i = 0;
continue;
}
i++;
}
i = release_async_request (hfpd, request);
2017-03-06 22:02:31 +01:00
if (i >= 0) {
2017-12-04 15:49:40 +01:00
hf_log (_T("asyncronous request=%08X aborted, error=%d\n"), request, errcode);
2017-03-06 22:02:31 +01:00
}
}
2017-12-04 15:49:40 +01:00
static void *hardfile_thread (void *devs);
static int start_thread (TrapContext *ctx, int unit)
2017-03-06 22:02:31 +01:00
{
2017-12-04 15:49:40 +01:00
struct hardfileprivdata *hfpd = &hardfpd[unit];
if (hfpd->thread_running)
return 1;
memset (hfpd, 0, sizeof (struct hardfileprivdata));
hfpd->base = trap_get_areg(ctx, 6);
init_comm_pipe (&hfpd->requests, 300, 3);
uae_sem_init (&hfpd->sync_sem, 0, 0);
uae_start_thread (_T("hardfile"), hardfile_thread, hfpd, &(hfpd->thread_id));
uae_sem_wait (&hfpd->sync_sem);
return hfpd->thread_running;
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
static int mangleunit (int unit)
2017-03-06 22:02:31 +01:00
{
2017-12-04 15:49:40 +01:00
if (unit <= 99)
return unit;
if (unit == 100)
return 8;
if (unit == 110)
return 9;
return -1;
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
static uae_u32 REGPARAM2 hardfile_open (TrapContext *ctx)
2017-03-06 22:02:31 +01:00
{
2017-12-04 15:49:40 +01:00
uaecptr ioreq = trap_get_areg (ctx, 1); /* IOReq */
int unit = mangleunit (trap_get_dreg(ctx, 0));
int err = IOERR_OPENFAIL;
2016-11-30 22:25:43 +01:00
/* boot device port size == 0!? KS 1.x size = 12???
2017-12-04 15:49:40 +01:00
* Ignore message size, too many programs do not set it correct
* int size = get_word (ioreq + 0x12);
*/
/* Check unit number */
if (unit >= 0 && unit < MAX_FILESYSTEM_UNITS) {
struct hardfileprivdata *hfpd = &hardfpd[unit];
struct hardfiledata *hfd = get_hardfile_data (unit);
if (hfd && (hfd->handle_valid || hfd->drive_empty) && start_thread (ctx, unit)) {
trap_put_word(ctx, hfpd->base + 32, trap_get_word(ctx, hfpd->base + 32) + 1);
trap_put_long(ctx, ioreq + 24, unit); /* io_Unit */
trap_put_byte(ctx, ioreq + 31, 0); /* io_Error */
trap_put_byte(ctx, ioreq + 8, 7); /* ln_type = NT_REPLYMSG */
if (!hfpd->sd)
hfpd->sd = scsi_alloc_generic(hfd, UAEDEV_HDF);
hf_log (_T("hardfile_open, unit %d (%d), OK\n"), unit, trap_get_dreg (ctx, 0));
return 0;
}
}
if (unit < 1000 || is_hardfile(unit) == FILESYS_VIRTUAL)
err = 50; /* HFERR_NoBoard */
hf_log (_T("hardfile_open, unit %d (%d), ERR=%d\n"), unit, trap_get_dreg(ctx, 0), err);
trap_put_long(ctx, ioreq + 20, (uae_u32)err);
trap_put_byte(ctx, ioreq + 31, (uae_u8)err);
return (uae_u32)err;
}
static uae_u32 REGPARAM2 hardfile_close (TrapContext *ctx)
{
uaecptr request = trap_get_areg (ctx, 1); /* IOReq */
int unit = mangleunit (trap_get_long(ctx, request + 24));
if (unit < 0 || unit >= MAX_FILESYSTEM_UNITS) {
return 0;
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
struct hardfileprivdata *hfpd = &hardfpd[unit];
2015-05-13 18:47:23 +00:00
2017-12-04 15:49:40 +01:00
if (!hfpd)
return 0;
trap_put_word(ctx, hfpd->base + 32, trap_get_word(ctx, hfpd->base + 32) - 1);
if (trap_get_word(ctx, hfpd->base + 32) == 0) {
scsi_free(hfpd->sd);
hfpd->sd = NULL;
write_comm_pipe_pvoid(&hfpd->requests, NULL, 0);
write_comm_pipe_pvoid(&hfpd->requests, NULL, 0);
write_comm_pipe_u32 (&hfpd->requests, 0, 1);
}
return 0;
2015-05-13 18:47:23 +00:00
}
2017-12-04 15:49:40 +01:00
static uae_u32 REGPARAM2 hardfile_expunge (TrapContext *context)
2015-05-13 18:47:23 +00:00
{
2017-12-04 15:49:40 +01:00
return 0; /* Simply ignore this one... */
2015-05-13 18:47:23 +00:00
}
2017-12-04 15:49:40 +01:00
static void outofbounds (int cmd, uae_u64 offset, uae_u64 len, uae_u64 max)
2015-05-13 18:47:23 +00:00
{
2017-12-04 15:49:40 +01:00
write_log (_T("UAEHF: cmd %d: out of bounds, %08X-%08X + %08X-%08X > %08X-%08X\n"), cmd,
(uae_u32)(offset >> 32),(uae_u32)offset,(uae_u32)(len >> 32),(uae_u32)len,
(uae_u32)(max >> 32),(uae_u32)max);
2015-05-13 18:47:23 +00:00
}
2017-12-04 15:49:40 +01:00
static void unaligned (int cmd, uae_u64 offset, uae_u64 len, int blocksize)
2015-05-13 18:47:23 +00:00
{
2017-12-04 15:49:40 +01:00
write_log (_T("UAEHF: cmd %d: unaligned access, %08X-%08X, %08X-%08X, %08X\n"), cmd,
(uae_u32)(offset >> 32),(uae_u32)offset,(uae_u32)(len >> 32),(uae_u32)len,
blocksize);
2015-05-13 18:47:23 +00:00
}
2017-12-04 15:49:40 +01:00
static uae_u32 hardfile_do_io (TrapContext *ctx, struct hardfiledata *hfd, struct hardfileprivdata *hfpd, uae_u8 *iobuf, uaecptr request)
2015-05-13 18:47:23 +00:00
{
2017-12-04 15:49:40 +01:00
uae_u32 dataptr, offset, actual = 0, cmd;
uae_u64 offset64;
int unit;
uae_u32 error = 0, len;
int async = 0;
2016-11-30 22:25:43 +01:00
int bmask = hfd->ci.blocksize - 1;
2017-12-04 15:49:40 +01:00
unit = get_long_host(iobuf + 24);
cmd = get_word_host(iobuf + 28); /* io_Command */
dataptr = get_long_host(iobuf + 40);
switch (cmd)
{
2016-11-30 22:25:43 +01:00
case CMD_READ:
2017-12-04 15:49:40 +01:00
if (nodisk (hfd))
goto no_disk;
offset = get_long_host(iobuf + 44);
len = get_long_host(iobuf + 36); /* io_Length */
2016-11-30 22:25:43 +01:00
if (offset & bmask) {
2017-12-04 15:49:40 +01:00
unaligned (cmd, offset, len, hfd->ci.blocksize);
goto bad_command;
}
if (len & bmask) {
unaligned (cmd, offset, len, hfd->ci.blocksize);
goto bad_len;
}
if (len + offset > hfd->virtsize) {
outofbounds (cmd, offset, len, hfd->virtsize);
goto bad_len;
}
actual = (uae_u32)cmd_read(ctx, hfd, dataptr, offset, len);
break;
2016-11-30 22:25:43 +01:00
case TD_READ64:
case NSCMD_TD_READ64:
2017-12-04 15:49:40 +01:00
if (nodisk (hfd))
goto no_disk;
offset64 = get_long_host(iobuf + 44) | ((uae_u64)get_long_host(iobuf + 32) << 32);
len = get_long_host(iobuf + 36); /* io_Length */
2016-11-30 22:25:43 +01:00
if (offset64 & bmask) {
2017-12-04 15:49:40 +01:00
unaligned (cmd, offset64, len, hfd->ci.blocksize);
goto bad_command;
}
if (len & bmask) {
unaligned (cmd, offset64, len, hfd->ci.blocksize);
goto bad_len;
}
if (len + offset64 > hfd->virtsize || (uae_s64)offset64 < 0) {
outofbounds (cmd, offset64, len, hfd->virtsize);
goto bad_len;
}
actual = (uae_u32)cmd_read(ctx, hfd, dataptr, offset64, len);
break;
2016-11-30 22:25:43 +01:00
case CMD_WRITE:
case CMD_FORMAT: /* Format */
2017-12-04 15:49:40 +01:00
if (nodisk (hfd))
goto no_disk;
if (is_writeprotected(hfd)) {
error = 28; /* write protect */
} else {
offset = get_long_host(iobuf + 44);
len = get_long_host(iobuf + 36); /* io_Length */
2016-11-30 22:25:43 +01:00
if (offset & bmask) {
2017-12-04 15:49:40 +01:00
unaligned (cmd, offset, len, hfd->ci.blocksize);
goto bad_command;
}
if (len & bmask) {
unaligned (cmd, offset, len, hfd->ci.blocksize);
goto bad_len;
}
if (len + offset > hfd->virtsize) {
outofbounds (cmd, offset, len, hfd->virtsize);
goto bad_len;
}
actual = (uae_u32)cmd_write(ctx, hfd, dataptr, offset, len);
}
break;
2016-11-30 22:25:43 +01:00
case TD_WRITE64:
case TD_FORMAT64:
case NSCMD_TD_WRITE64:
case NSCMD_TD_FORMAT64:
2017-12-04 15:49:40 +01:00
if (nodisk (hfd))
goto no_disk;
if (is_writeprotected(hfd)) {
error = 28; /* write protect */
} else {
offset64 = get_long_host(iobuf + 44) | ((uae_u64)get_long_host(iobuf + 32) << 32);
len = get_long_host(iobuf + 36); /* io_Length */
2016-11-30 22:25:43 +01:00
if (offset64 & bmask) {
2017-12-04 15:49:40 +01:00
unaligned (cmd, offset64, len, hfd->ci.blocksize);
goto bad_command;
}
if (len & bmask) {
unaligned (cmd, offset64, len, hfd->ci.blocksize);
goto bad_len;
}
if (len + offset64 > hfd->virtsize || (uae_s64)offset64 < 0) {
outofbounds (cmd, offset64, len, hfd->virtsize);
goto bad_len;
}
actual = (uae_u32)cmd_write(ctx, hfd, dataptr, offset64, len);
}
break;
2016-11-30 22:25:43 +01:00
case NSCMD_DEVICEQUERY:
2017-12-04 15:49:40 +01:00
trap_put_long(ctx, dataptr + 0, 0);
trap_put_long(ctx, dataptr + 4, 16); /* size */
trap_put_word(ctx, dataptr + 8, NSDEVTYPE_TRACKDISK);
trap_put_word(ctx, dataptr + 10, 0);
trap_put_long(ctx, dataptr + 12, nscmd_cmd);
actual = 16;
break;
2016-11-30 22:25:43 +01:00
case CMD_GETDRIVETYPE:
2017-12-04 15:49:40 +01:00
actual = DRIVE_NEWSTYLE;
break;
2016-11-30 22:25:43 +01:00
case CMD_GETNUMTRACKS:
2017-12-04 15:49:40 +01:00
{
int cyl, cylsec, head, tracksec;
getchsx (hfd, &cyl, &cylsec, &head, &tracksec);
actual = cyl * head;
break;
}
2016-11-30 22:25:43 +01:00
case CMD_GETGEOMETRY:
2017-12-04 15:49:40 +01:00
{
int cyl, cylsec, head, tracksec;
uae_u64 size;
getchsx (hfd, &cyl, &cylsec, &head, &tracksec);
trap_put_long(ctx, dataptr + 0, hfd->ci.blocksize);
size = hfd->virtsize / hfd->ci.blocksize;
if (size > 0x00ffffffff)
size = 0xffffffff;
trap_put_long(ctx, dataptr + 4, (uae_u32)size);
trap_put_long(ctx, dataptr + 8, cyl);
trap_put_long(ctx, dataptr + 12, cylsec);
trap_put_long(ctx, dataptr + 16, head);
trap_put_long(ctx, dataptr + 20, tracksec);
trap_put_long(ctx, dataptr + 24, 0); /* bufmemtype */
trap_put_byte(ctx, dataptr + 28, 0); /* type = DG_DIRECT_ACCESS */
trap_put_byte(ctx, dataptr + 29, 0); /* flags */
}
break;
2016-11-30 22:25:43 +01:00
case CMD_PROTSTATUS:
2017-12-04 15:49:40 +01:00
if (is_writeprotected(hfd))
actual = -1;
else
actual = 0;
break;
2016-11-30 22:25:43 +01:00
case CMD_CHANGESTATE:
2017-12-04 15:49:40 +01:00
actual = hfd->drive_empty ? 1 :0;
break;
2016-11-30 22:25:43 +01:00
2017-12-04 15:49:40 +01:00
/* Some commands that just do nothing and return zero */
2016-11-30 22:25:43 +01:00
case CMD_UPDATE:
case CMD_CLEAR:
case CMD_MOTOR:
case CMD_SEEK:
case TD_SEEK64:
case NSCMD_TD_SEEK64:
2017-12-04 15:49:40 +01:00
break;
2016-11-30 22:25:43 +01:00
case CMD_REMOVE:
2017-12-04 15:49:40 +01:00
hfpd->changeint = get_long (request + 40);
break;
2016-11-30 22:25:43 +01:00
case CMD_CHANGENUM:
2017-12-04 15:49:40 +01:00
actual = hfpd->changenum;
break;
2016-11-30 22:25:43 +01:00
case CMD_ADDCHANGEINT:
2017-12-04 15:49:40 +01:00
error = add_async_request (hfpd, iobuf, request, ASYNC_REQUEST_CHANGEINT, get_long_host(iobuf + 40));
if (!error)
async = 1;
break;
2016-11-30 22:25:43 +01:00
case CMD_REMCHANGEINT:
2017-12-04 15:49:40 +01:00
release_async_request (hfpd, request);
break;
2016-11-30 22:25:43 +01:00
case HD_SCSICMD: /* SCSI */
2017-03-06 22:02:31 +01:00
if (!hfd->ci.sectors && !hfd->ci.surfaces && !hfd->ci.reserved) {
2017-12-04 15:49:40 +01:00
error = handle_scsi(ctx, iobuf, request, hfd, hfpd->sd);
} else { /* we don't want users trashing their "partition" hardfiles with hdtoolbox */
error = IOERR_NOCMD;
write_log (_T("UAEHF: HD_SCSICMD tried on regular HDF, unit %d\n"), unit);
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
break;
2016-11-30 22:25:43 +01:00
case CD_EJECT:
2017-03-06 22:02:31 +01:00
if (hfd->ci.sectors && hfd->ci.surfaces) {
2017-12-04 15:49:40 +01:00
int len = get_long_host(iobuf + 36);
2017-03-06 22:02:31 +01:00
if (len) {
if (hfd->drive_empty) {
2017-12-04 15:49:40 +01:00
hardfile_media_change (hfd, NULL, true, false);
} else {
hardfile_media_change (hfd, NULL, false, false);
2017-03-06 22:02:31 +01:00
}
2017-12-04 15:49:40 +01:00
} else {
2017-03-06 22:02:31 +01:00
if (hfd->drive_empty) {
2017-12-04 15:49:40 +01:00
hardfile_media_change (hfd, NULL, true, false);
2017-03-06 22:02:31 +01:00
}
}
2017-12-04 15:49:40 +01:00
} else {
error = IOERR_NOCMD;
2017-03-06 22:02:31 +01:00
}
2016-11-30 22:25:43 +01:00
break;
2017-12-04 15:49:40 +01:00
bad_command:
2016-11-30 22:25:43 +01:00
error = IOERR_BADADDRESS;
break;
2017-12-04 15:49:40 +01:00
bad_len:
2016-11-30 22:25:43 +01:00
error = IOERR_BADLENGTH;
break;
2017-12-04 15:49:40 +01:00
no_disk:
2016-11-30 22:25:43 +01:00
error = 29; /* no disk */
break;
default:
2017-12-04 15:49:40 +01:00
/* Command not understood. */
error = IOERR_NOCMD;
break;
}
put_long_host(iobuf + 32, actual);
put_byte_host(iobuf + 31, error);
hf_log2 (_T("hf: unit=%d, request=%p, cmd=%d offset=%u len=%d, actual=%d error%=%d\n"), unit, request,
get_word_host(iobuf + 28), get_long_host(iobuf + 44), get_long_host(iobuf + 36), actual, error);
return async;
}
static uae_u32 REGPARAM2 hardfile_abortio (TrapContext *ctx)
{
uae_u32 request = trap_get_areg (ctx, 1);
int unit = mangleunit (trap_get_long(ctx, request + 24));
struct hardfiledata *hfd = get_hardfile_data (unit);
struct hardfileprivdata *hfpd = &hardfpd[unit];
hf_log2 (_T("uaehf.device abortio "));
start_thread(ctx, unit);
if (!hfd || !hfpd || !hfpd->thread_running) {
trap_put_byte(ctx, request + 31, 32);
hf_log2 (_T("error\n"));
return trap_get_byte(ctx, request + 31);
}
trap_put_byte(ctx, request + 31, -2);
hf_log2 (_T("unit=%d, request=%08X\n"), unit, request);
abort_async (hfpd, request, -2, 0);
return 0;
}
static int hardfile_can_quick (uae_u32 command)
{
switch (command)
{
case CMD_REMCHANGEINT:
return -1;
case CMD_RESET:
case CMD_STOP:
case CMD_START:
case CMD_CHANGESTATE:
case CMD_PROTSTATUS:
case CMD_MOTOR:
case CMD_GETDRIVETYPE:
case CMD_GETGEOMETRY:
case CMD_GETNUMTRACKS:
case NSCMD_DEVICEQUERY:
return 1;
}
return 0;
}
static int hardfile_canquick (TrapContext *ctx, struct hardfiledata *hfd, uae_u8 *iobuf)
{
uae_u32 command = get_word_host(iobuf + 28);
return hardfile_can_quick (command);
}
static uae_u32 REGPARAM2 hardfile_beginio (TrapContext *ctx)
2017-03-06 22:02:31 +01:00
{
2016-11-30 22:25:43 +01:00
int canquick;
2017-12-04 15:49:40 +01:00
uae_u32 request = trap_get_areg(ctx, 1);
uae_u8 *iobuf = xmalloc(uae_u8, 48);
trap_get_bytes(ctx, iobuf, request, 48);
uae_u8 flags = get_byte_host(iobuf + 30);
int cmd = get_word_host(iobuf + 28);
int unit = mangleunit(get_long_host(iobuf + 24));
struct hardfiledata *hfd = get_hardfile_data (unit);
struct hardfileprivdata *hfpd = &hardfpd[unit];
put_byte_host(iobuf + 8, NT_MESSAGE);
start_thread(ctx, unit);
if (!hfd || !hfpd || !hfpd->thread_running) {
put_byte_host(iobuf + 31, 32);
uae_u8 v = get_byte_host(iobuf + 31);
trap_put_bytes(ctx, iobuf + 8, request + 8, 48 - 8);
xfree(iobuf);
return v;
}
put_byte_host(iobuf + 31, 0);
canquick = hardfile_canquick(ctx, hfd, iobuf);
2016-11-30 22:25:43 +01:00
if (((flags & 1) && canquick) || (canquick < 0)) {
2017-12-04 15:49:40 +01:00
hf_log (_T("hf quickio unit=%d request=%p cmd=%d\n"), unit, request, cmd);
if (hardfile_do_io(ctx, hfd, hfpd, iobuf, request)) {
hf_log2 (_T("uaehf.device cmd %d bug with IO_QUICK\n"), cmd);
2016-11-30 22:25:43 +01:00
}
2017-12-04 15:49:40 +01:00
uae_u8 v = get_byte_host(iobuf + 31);
trap_put_bytes(ctx, iobuf + 8, request + 8, 48 - 8);
xfree(iobuf);
2016-11-30 22:25:43 +01:00
if (!(flags & 1))
2017-12-04 15:49:40 +01:00
uae_ReplyMsg (request);
return v;
} else {
hf_log2 (_T("hf asyncio unit=%d request=%p cmd=%d\n"), unit, request, cmd);
add_async_request(hfpd, iobuf, request, ASYNC_REQUEST_TEMP, 0);
put_byte_host(iobuf + 30, get_byte_host(iobuf + 30) & ~1);
trap_put_bytes(ctx, iobuf + 8, request + 8, 48 - 8);
write_comm_pipe_pvoid(&hfpd->requests, ctx, 0);
write_comm_pipe_pvoid(&hfpd->requests, iobuf, 0);
write_comm_pipe_u32 (&hfpd->requests, request, 1);
return 0;
}
}
static void *hardfile_thread (void *devs)
{
struct hardfileprivdata *hfpd = (struct hardfileprivdata *)devs;
uae_set_thread_priority (NULL, 1);
hfpd->thread_running = 1;
uae_sem_post (&hfpd->sync_sem);
for (;;) {
TrapContext *ctx = (TrapContext*)read_comm_pipe_pvoid_blocking(&hfpd->requests);
uae_u8 *iobuf = (uae_u8*)read_comm_pipe_pvoid_blocking(&hfpd->requests);
uaecptr request = (uaecptr)read_comm_pipe_u32_blocking (&hfpd->requests);
uae_sem_wait (&change_sem);
if (!request) {
hfpd->thread_running = 0;
uae_sem_post (&hfpd->sync_sem);
uae_sem_post (&change_sem);
return 0;
} else if (hardfile_do_io(ctx, get_hardfile_data (hfpd - &hardfpd[0]), hfpd, iobuf, request) == 0) {
put_byte_host(iobuf + 30, get_byte_host(iobuf + 30) & ~1);
trap_put_bytes(ctx, iobuf + 8, request + 8, 48 - 8);
release_async_request (hfpd, request);
uae_ReplyMsg (request);
} else {
hf_log2 (_T("async request %08X\n"), request);
trap_put_bytes(ctx, iobuf + 8, request + 8, 48 - 8);
}
uae_sem_post (&change_sem);
}
}
void hardfile_reset (void)
{
int i, j;
struct hardfileprivdata *hfpd;
for (i = 0; i < MAX_FILESYSTEM_UNITS; i++) {
hfpd = &hardfpd[i];
if (hfpd->base && valid_address(hfpd->base, 36) && get_word(hfpd->base + 32) > 0) {
for (j = 0; j < MAX_ASYNC_REQUESTS; j++) {
uaecptr request;
if ((request = hfpd->d_request[j]))
abort_async (hfpd, request, 0, 0);
}
}
if(hfpd->thread_running) {
write_comm_pipe_pvoid(&hfpd->requests, NULL, 0);
write_comm_pipe_pvoid(&hfpd->requests, NULL, 0);
write_comm_pipe_u32 (&hfpd->requests, 0, 1);
while(hfpd->thread_running)
sleep_millis(10);
if(hfpd->sync_sem != 0)
uae_sem_destroy(&hfpd->sync_sem);
hfpd->sync_sem = 0;
}
if(hfpd->requests.size == 300) {
destroy_comm_pipe(&hfpd->requests);
hfpd->requests.size = 0;
}
memset (hfpd, 0, sizeof (struct hardfileprivdata));
}
}
void hardfile_install (void)
{
uae_u32 functable, datatable;
uae_u32 initcode, openfunc, closefunc, expungefunc;
uae_u32 beginiofunc, abortiofunc;
if(change_sem != 0) {
uae_sem_destroy(&change_sem);
change_sem = 0;
}
uae_sem_init (&change_sem, 0, 1);
ROM_hardfile_resname = ds (_T("uaehf.device"));
ROM_hardfile_resid = ds (_T("UAE hardfile.device 0.4"));
nscmd_cmd = here ();
dw (NSCMD_DEVICEQUERY);
dw (CMD_RESET);
dw (CMD_READ);
dw (CMD_WRITE);
dw (CMD_UPDATE);
dw (CMD_CLEAR);
dw (CMD_START);
dw (CMD_STOP);
dw (CMD_FLUSH);
dw (CMD_MOTOR);
dw (CMD_SEEK);
dw (CMD_FORMAT);
dw (CMD_REMOVE);
dw (CMD_CHANGENUM);
dw (CMD_CHANGESTATE);
dw (CMD_PROTSTATUS);
dw (CMD_GETDRIVETYPE);
dw (CMD_GETGEOMETRY);
dw (CMD_ADDCHANGEINT);
dw (CMD_REMCHANGEINT);
dw (HD_SCSICMD);
dw (NSCMD_TD_READ64);
dw (NSCMD_TD_WRITE64);
dw (NSCMD_TD_SEEK64);
dw (NSCMD_TD_FORMAT64);
dw (0);
/* initcode */
initcode = filesys_initcode;
/* Open */
openfunc = here ();
calltrap (deftrap (hardfile_open)); dw (RTS);
/* Close */
closefunc = here ();
calltrap (deftrap (hardfile_close)); dw (RTS);
/* Expunge */
expungefunc = here ();
calltrap (deftrap (hardfile_expunge)); dw (RTS);
/* BeginIO */
beginiofunc = here ();
calltrap (deftrap (hardfile_beginio));
dw (RTS);
/* AbortIO */
abortiofunc = here ();
calltrap (deftrap (hardfile_abortio)); dw (RTS);
/* FuncTable */
functable = here ();
dl (openfunc); /* Open */
dl (closefunc); /* Close */
dl (expungefunc); /* Expunge */
dl (EXPANSION_nullfunc); /* Null */
dl (beginiofunc); /* BeginIO */
dl (abortiofunc); /* AbortIO */
dl (0xFFFFFFFFul); /* end of table */
/* DataTable */
datatable = here ();
dw (0xE000); /* INITBYTE */
dw (0x0008); /* LN_TYPE */
dw (0x0300); /* NT_DEVICE */
dw (0xC000); /* INITLONG */
dw (0x000A); /* LN_NAME */
dl (ROM_hardfile_resname);
dw (0xE000); /* INITBYTE */
dw (0x000E); /* LIB_FLAGS */
dw (0x0600); /* LIBF_SUMUSED | LIBF_CHANGED */
dw (0xD000); /* INITWORD */
dw (0x0014); /* LIB_VERSION */
dw (0x0032); /* 50 */
dw (0xD000);
dw (0x0016); /* LIB_REVISION */
dw (0x0001);
dw (0xC000);
dw (0x0018); /* LIB_IDSTRING */
dl (ROM_hardfile_resid);
dw (0x0000); /* end of table */
ROM_hardfile_init = here ();
dl (0x00000100); /* ??? */
dl (functable);
dl (datatable);
filesys_initcode_ptr = here();
dl (initcode);
2015-05-13 18:47:23 +00:00
}