summaryrefslogtreecommitdiff
path: root/src/Dolphin/card/CARDMount.c
blob: fd361e9a6db55b4d144c62f77def7748f4461c37 (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
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
#include <dolphin/card.h>
#include <dolphin/dsp.h>
#include <dolphin/dvd.h>
#include <dolphin/os.h>

#include <dolphin/CARDPriv.h>
#include <dolphin/OSRtcPriv.h>

u8 GameChoice : (OS_BASE_CACHED | 0x000030E3);

static u32 SectorSizeTable[8] = {
    8 * 1024, 16 * 1024, 32 * 1024, 64 * 1024, 128 * 1024, 256 * 1024, 0, 0,
};

static u32 LatencyTable[8] = {
    4, 8, 16, 32, 64, 128, 256, 512,
};

void __CARDMountCallback(s32 chan, s32 result);
static void DoUnmount(s32 chan, s32 result);

static BOOL IsCard(u32 id) {
  u32 size;
  s32 sectorSize;
  if (id & (0xFFFF0000) && (id != 0x80000004 || __CARDVendorID == 0xFFFF)) {
    return FALSE;
  }

  if ((id & 3) != 0) {
    return FALSE;
  }

  size = id & 0xfc;
  switch (size) {
  case 4:
  case 8:
  case 16:
  case 32:
  case 64:
  case 128:
    break;
  default:
    return FALSE;
    break;
  }

  sectorSize = SectorSizeTable[(id & 0x00003800) >> 11];
  if (sectorSize == 0) {
    return FALSE;
  }

  if ((size * 1024 * 1024 / 8) / sectorSize < 8) {
    return FALSE;
  }

  return TRUE;
}

s32 CARDProbeEx(s32 chan, s32* memSize, s32* sectorSize) {
  u32 id;
  CARDControl* card;
  BOOL enabled;
  s32 result;
  int probe;

  if (chan < 0 || 2 <= chan) {
    return CARD_RESULT_FATAL_ERROR;
  }

  if (GameChoice & 0x80) {
    return CARD_RESULT_NOCARD;
  }

  card = &__CARDBlock[chan];
  enabled = OSDisableInterrupts();

  probe = EXIProbeEx(chan);
  if (probe == -1) {
    result = CARD_RESULT_NOCARD;
  } else if (probe == 0) {
    result = CARD_RESULT_BUSY;
  } else if (card->attached) {
    if (card->mountStep < 1) {
      result = CARD_RESULT_BUSY;
    } else {
      if (memSize) {
        *memSize = card->size;
      }
      if (sectorSize) {
        *sectorSize = card->sectorSize;
      }
      result = CARD_RESULT_READY;
    }
  } else if ((EXIGetState(chan) & 8)) {
    result = CARD_RESULT_WRONGDEVICE;
  } else if (!EXIGetID(chan, 0, &id)) {
    result = CARD_RESULT_BUSY;
  } else if (IsCard(id)) {
    if (memSize) {
      *memSize = (s32)(id & 0xfc);
    }
    if (sectorSize) {
      *sectorSize = SectorSizeTable[(id & 0x00003800) >> 11];
    }
    result = CARD_RESULT_READY;
  } else {
    result = CARD_RESULT_WRONGDEVICE;
  }

  OSRestoreInterrupts(enabled);
  return result;
}

static s32 DoMount(s32 chan) {
  CARDControl* card;
  u32 id;
  u8 status;
  s32 result;
  OSSramEx* sram;
  int i;
  u8 checkSum;
  int step;

  card = &__CARDBlock[chan];

  if (card->mountStep == 0) {
    if (EXIGetID(chan, 0, &id) == 0) {
      result = CARD_RESULT_NOCARD;
    } else if (IsCard(id)) {
      result = CARD_RESULT_READY;
    } else {
      result = CARD_RESULT_WRONGDEVICE;
    }
    if (result < 0) {
      goto error;
    }

    card->cid = id;

    card->size = (u16)(id & 0xFC);
    card->sectorSize = SectorSizeTable[(id & 0x00003800) >> 11];
    card->cBlock = (u16)((card->size * 1024 * 1024 / 8) / card->sectorSize);
    card->latency = LatencyTable[(id & 0x00000700) >> 8];

    result = __CARDClearStatus(chan);
    if (result < 0) {
      goto error;
    }
    result = __CARDReadStatus(chan, &status);
    if (result < 0) {
      goto error;
    }

    if (!EXIProbe(chan)) {
      result = CARD_RESULT_NOCARD;
      goto error;
    }

    if (!(status & 0x40)) {
      result = __CARDUnlock(chan, card->id);
      if (result < 0) {
        goto error;
      }

      checkSum = 0;
      sram = __OSLockSramEx();
      for (i = 0; i < 12; i++) {
        sram->flashID[chan][i] = card->id[i];
        checkSum += card->id[i];
      }
      sram->flashIDCheckSum[chan] = (u8)~checkSum;
      __OSUnlockSramEx(TRUE);

      return result;
    } else {
      card->mountStep = 1;

      checkSum = 0;
      sram = __OSLockSramEx();
      for (i = 0; i < 12; i++) {
        checkSum += sram->flashID[chan][i];
      }
      __OSUnlockSramEx(FALSE);
      if (sram->flashIDCheckSum[chan] != (u8)~checkSum) {
        result = CARD_RESULT_IOERROR;
        goto error;
      }
    }
  }

  if (card->mountStep == 1) {
    if (card->cid == 0x80000004) {
      u16 vendorID;

      sram = __OSLockSramEx();
      vendorID = *(u16*)sram->flashID[chan];
      __OSUnlockSramEx(FALSE);

      if (__CARDVendorID == 0xffff || vendorID != __CARDVendorID) {
        result = CARD_RESULT_WRONGDEVICE;
        goto error;
      }
    }

    card->mountStep = 2;

    result = __CARDEnableInterrupt(chan, TRUE);
    if (result < 0) {
      goto error;
    }

    EXISetExiCallback(chan, __CARDExiHandler);
    EXIUnlock(chan);
    DCInvalidateRange(card->workArea, CARD_WORKAREA_SIZE);
  }

  step = card->mountStep - 2;
  result = __CARDRead(chan, (u32)card->sectorSize * step, CARD_SYSTEM_BLOCK_SIZE,
                      (u8*)card->workArea + (CARD_SYSTEM_BLOCK_SIZE * step), __CARDMountCallback);
  if (result < 0) {
    __CARDPutControlBlock(card, result);
  }
  return result;

error:
  EXIUnlock(chan);
  DoUnmount(chan, result);
  return result;
}

void __CARDMountCallback(s32 chan, s32 result) {
  CARDControl* card;
  CARDCallback callback;

  card = &__CARDBlock[chan];

  switch (result) {
  case CARD_RESULT_READY:
    if (++card->mountStep < CARD_MAX_MOUNT_STEP) {
      result = DoMount(chan);
      if (0 <= result) {
        return;
      }
    } else {
      result = __CARDVerify(card);
    }
    break;
  case CARD_RESULT_UNLOCKED:
    card->unlockCallback = __CARDMountCallback;
    if (!EXILock(chan, 0, __CARDUnlockedHandler)) {
      return;
    }
    card->unlockCallback = 0;

    result = DoMount(chan);
    if (0 <= result) {
      return;
    }
    break;
  case CARD_RESULT_IOERROR:
  case CARD_RESULT_NOCARD:
    DoUnmount(chan, result);
    break;
  }

  callback = card->apiCallback;
  card->apiCallback = 0;
  __CARDPutControlBlock(card, result);
  callback(chan, result);
}

s32 CARDMountAsync(s32 chan, void* workArea, CARDCallback detachCallback,
                   CARDCallback attachCallback) {
  CARDControl* card;
  BOOL enabled;

  if (chan < 0 || 2 <= chan) {
    return CARD_RESULT_FATAL_ERROR;
  }
  if (GameChoice & 0x80) {
    return CARD_RESULT_NOCARD;
  }
  card = &__CARDBlock[chan];

  enabled = OSDisableInterrupts();
  if (card->result == CARD_RESULT_BUSY) {
    OSRestoreInterrupts(enabled);
    return CARD_RESULT_BUSY;
  }

  if (!card->attached && (EXIGetState(chan) & 0x08)) {
    OSRestoreInterrupts(enabled);
    return CARD_RESULT_WRONGDEVICE;
  }

  card->result = CARD_RESULT_BUSY;
  card->workArea = workArea;
  card->extCallback = detachCallback;
  card->apiCallback = attachCallback ? attachCallback : __CARDDefaultApiCallback;
  card->exiCallback = 0;

  if (!card->attached && !EXIAttach(chan, __CARDExtHandler)) {
    card->result = CARD_RESULT_NOCARD;
    OSRestoreInterrupts(enabled);
    return CARD_RESULT_NOCARD;
  }

  card->mountStep = 0;
  card->attached = TRUE;
  EXISetExiCallback(chan, 0);
  OSCancelAlarm(&card->alarm);

  card->currentDir = 0;
  card->currentFat = 0;

  OSRestoreInterrupts(enabled);

  card->unlockCallback = __CARDMountCallback;
  if (!EXILock(chan, 0, __CARDUnlockedHandler)) {
    return CARD_RESULT_READY;
  }
  card->unlockCallback = 0;

  return DoMount(chan);
}

static void DoUnmount(s32 chan, s32 result) {
  CARDControl* card;
  BOOL enabled;

  card = &__CARDBlock[chan];
  enabled = OSDisableInterrupts();
  if (card->attached) {
    EXISetExiCallback(chan, 0);
    EXIDetach(chan);
    OSCancelAlarm(&card->alarm);
    card->attached = FALSE;
    card->result = result;
    card->mountStep = 0;
  }
  OSRestoreInterrupts(enabled);
}

s32 CARDUnmount(s32 chan) {
  CARDControl* card;
  s32 result;

  result = __CARDGetControlBlock(chan, &card);
  if (result < 0) {
    return result;
  }
  DoUnmount(chan, CARD_RESULT_NOCARD);
  return CARD_RESULT_READY;
}