aboutsummaryrefslogtreecommitdiff
path: root/SrcShared/Hardware/TRG/EmTRGCFIO.cpp
blob: d1ec47ef2f197b5be0148a6cd847e0fcea16aa57 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
/* -*- mode: C++; tab-width: 4 -*- */
/* ===================================================================== *\
	Copyright (c) 2000-2001 Palm, Inc. or its subsidiaries.
	All rights reserved.

	This file is part of the Palm OS Emulator.

	This program is free software; you can redistribute it and/or modify
	it under the terms of the GNU General Public License as published by
	the Free Software Foundation; either version 2 of the License, or
	(at your option) any later version.
\* ===================================================================== */

#include "EmCommon.h"
#include "EmTRGCFIO.h"


//-------------------------------------------------------------------------
//  This file implements card I/O emulation by performing read and write
//  operations on a file on the PC.  Note that this file doesn't know 
//  anything about ATA registers ... it's more of a state machine for
//  a continuous series of reads and writes
//
//  These functions will create a disk file on the PC ... if one doesn't
//  exist, it will create it in a formatted state.
//
//  The code should work even if the disk file is replaced by an image
//  from a real card ... there is no additional info stored with the card
//  however, the tuple info won't agree with the card
//---------------------------------------------------------------------------

// ---------------------------------------------------------------------------
//		¥ EmCFIO::EmCFIO
// ---------------------------------------------------------------------------
EmCFIO::EmCFIO (void)
{
}

// ---------------------------------------------------------------------------
//		¥ EmCFIO::~EmCFIO
// ---------------------------------------------------------------------------
EmCFIO::~EmCFIO (void)
{
}

// ---------------------------------------------------------------------------
//		¥ EmCFIO::~EmCFIO
// ---------------------------------------------------------------------------
void EmCFIO::Reset(void)
{
	State.NumSectorsRequested = 0;
	State.NumSectorsCompleted = 0;
	State.SectorIndex         = 0;
	State.Status              = DIO_SUCCESS;
	State.Error               = 0;
}

// ---------------------------------------------------------------------------
//		¥ EmCFIO::Initialize
// ---------------------------------------------------------------------------
void EmCFIO::Initialize (EmDiskTypeID ID)
{
	DiskTypeID     = ID;
    DiskIO.Initialize(ID, CF_DRIVE);
	Reset();
}

// ---------------------------------------------------------------------------
//		¥ EmCFIO::Dispose
// ---------------------------------------------------------------------------
void EmCFIO::Dispose (void)
{
    DiskIO.Dispose();
}


// ---------------------------------------------------------------------------
//		¥ EmCFIO::ReadSector
// ---------------------------------------------------------------------------
DiskIOStatus EmCFIO::ReadSector(void)
{
    if ((DiskIO.ReadSector(State.Lba, (char *)State.Sector.Bytes)) != 0)
        return DIO_ERROR;

    return DIO_SUCCESS;
}

// ---------------------------------------------------------------------------
//		¥ EmCFIO::WriteSector
// ---------------------------------------------------------------------------
DiskIOStatus EmCFIO::WriteSector(void)
{
    if ((DiskIO.WriteSector(State.Lba, (char *)State.Sector.Bytes)) != 0)
        return DIO_ERROR;

    return DIO_SUCCESS;
}

// ---------------------------------------------------------------------------
//		¥ EmCFIO::ReadNextDataByte
// ---------------------------------------------------------------------------
void EmCFIO::ReadNextDataByte(uint8 * val)
{
	// this first statement will likely not be called except when someone's
	// dumping memory at our address range
	if (State.NumSectorsCompleted >= State.NumSectorsRequested)
		*val = 0;
	else
	{
		*val = State.Sector.Bytes[State.SectorIndex++];
		if (State.SectorIndex >= SECTOR_SIZE)
		{
			if (++State.NumSectorsCompleted < State.NumSectorsRequested)
			{
				State.Lba++;
				State.SectorIndex = 0;
				State.Status = ReadSector();
			}
		}
	}
    if (State.Status != DIO_SUCCESS)
        State.Error = IDE_ERR_01_GENERAL_ERROR;
}

// ---------------------------------------------------------------------------
//		¥ EmCFIO::WriteNextDataByte
// ---------------------------------------------------------------------------
void EmCFIO::WriteNextDataByte(uint8 val)
{
	State.Status = DIO_SUCCESS;
	if (State.NumSectorsCompleted < State.NumSectorsRequested)
	{
		State.Sector.Bytes[State.SectorIndex++] = val;
		if (State.SectorIndex >= SECTOR_SIZE)
		{
			if (WriteSector() == DIO_ERROR)
				State.Status = DIO_ERROR;
			else if (++State.NumSectorsCompleted < State.NumSectorsRequested)
			{
				State.Status = DIO_SUCCESS;
				State.Lba++;
				State.SectorIndex = 0;
			}
		}
	}
    if (State.Status != DIO_SUCCESS)
        State.Error = IDE_ERR_01_GENERAL_ERROR;
}

// ---------------------------------------------------------------------------
//		¥ EmCFIO::GetSectorCount
// ---------------------------------------------------------------------------
uint32 EmCFIO::GetSectorCount(void)
{
	return State.NumSectorsCompleted;
}

// ---------------------------------------------------------------------------
//		¥ EmCFIO::StartDriveID
// ---------------------------------------------------------------------------
void EmCFIO::StartDriveID(void)
{
	CurrDisk.GetDriveID(DiskTypeID,
                            &State.Sector);
	State.NumSectorsRequested = 1;
	State.NumSectorsCompleted = 0;
	State.SectorIndex    = 0;
	State.Status         = DIO_SUCCESS;
	State.Error  = 0;
}

// ---------------------------------------------------------------------------
//		¥ EmCFIO::StartRead
// ---------------------------------------------------------------------------
void EmCFIO::StartRead(DiskIOParams * params)
{
	State.Lba = params->Lba;
	State.NumSectorsRequested = params->SectorCnt;
	State.NumSectorsCompleted = 0;
	State.SectorIndex    = 0;
	State.Error  = 0;
	State.Status = ReadSector();
}

// ---------------------------------------------------------------------------
//		¥ EmCFIO::StartWrite
// ---------------------------------------------------------------------------
void EmCFIO::StartWrite(DiskIOParams * params)
{
	State.Lba = params->Lba;
	State.NumSectorsRequested = params->SectorCnt;
	State.NumSectorsCompleted = 0;
	State.SectorIndex    = 0;
	State.Status = DIO_SUCCESS;
	State.Error  = 0;
}

// ---------------------------------------------------------------------------
//		¥ EmCFIO::GetStatus
// ---------------------------------------------------------------------------
void EmCFIO::GetStatus(DiskIOStatus *   status,
                         DiskDataStatus * dataStatus)
{
	*status = State.Status;
	if (State.NumSectorsCompleted == State.NumSectorsRequested)
		*dataStatus = DIO_DATA_COMPLETE;
	else
		*dataStatus = DIO_MORE_DATA;
}	

// ---------------------------------------------------------------------------
//		¥ EmCFIO::GetError
// ---------------------------------------------------------------------------
DiskIOError EmCFIO::GetError(void)
{
	if (State.Status == DIO_SUCCESS)
		return(0);
	else
	// at this point, all errors are pretty much the same ... we can't
	// create our emulation file ... we probably will need to include
	// some more refined error codes at some point
        return(State.Error);
}


void EmCFIO::SetError(DiskIOError error)
{
    State.Status = DIO_ERROR;
    State.Error = error;
}

void EmCFIO::ClearError(void)
{
    State.Status = DIO_SUCCESS;
    State.Error = 0;
}