1
10
13
14
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
97
98
99
100
101
102
103
104
110
111
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
149
150
151
152
153
154
156
157
158
159
160
161
162
163
164
165
171
178
179
180
181
182
183
185
186
187
188
189
195
196
197
198
199
200
201
202
203
204
205
206
207
213
214
215
216
217
218
219
220
221
222
223
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
297
298
299
303
307
308
309
315
316
317
318
319
320
321
322
328
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
363
364
366
367
368
369
370
376
377
378
379
380
381
382
383
384
385
386
387
388
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
423
424
426
430
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
462
463
465
466
467
468
469
475
476
477
478
479
480
481
482
483
484
485
486
487
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
523
524
525
526
527
528
529
530
532
536
540
541
542
543
544
545
546
547
548
549
550
551
560
561
562
563
564
...
...
...
#define FX_SOURCE_CODE
#include "fx_api.h"
#include "fx_system.h"
#include "fx_utility.h"
...
...
UINT _fx_utility_FAT_flush(FX_MEDIA *media_ptr)
{
ULONG FAT_sector;
ULONG byte_offset;
UCHAR *FAT_ptr;
UINT temp, i;
UINT status, index, ind;
ULONG cluster, next_cluster;
UCHAR sectors_per_bit;
INT multi_sector_entry;
ULONG sector;
#ifndef FX_MEDIA_STATISTICS_DISABLE
media_ptr -> fx_media_fat_cache_flushes++;/* ... */
#endif
for (index = 0; index < FX_MAX_FAT_CACHE; index++)
{
if ((media_ptr -> fx_media_fat_cache[index].fx_fat_cache_entry_dirty) == 0)
{
continue;
}if ((media_ptr -> fx_media_fat_cache[index].fx_fat_cache_entry_dirty) == 0) { ... }
/* ... */
cluster = media_ptr -> fx_media_fat_cache[index].fx_fat_cache_entry_cluster;
#ifdef FX_ENABLE_EXFAT
if (media_ptr -> fx_media_FAT_type == FX_FAT12)
#else
if (media_ptr -> fx_media_12_bit_FAT)
#endif
{
byte_offset = (((ULONG)cluster << 1) + cluster) >> 1;
FAT_sector = (byte_offset / media_ptr -> fx_media_bytes_per_sector) +
(ULONG)media_ptr -> fx_media_reserved_sectors;
multi_sector_entry = -1;
for (;;)
{
status = _fx_utility_logical_sector_read(media_ptr, (ULONG64) FAT_sector,
media_ptr -> fx_media_memory_buffer, ((ULONG) 1), FX_FAT_SECTOR);
if (status != FX_SUCCESS)
{
return(status);
}if (status != FX_SUCCESS) { ... }
if (multi_sector_entry != -1)
{
/* ... */
FAT_ptr = (UCHAR *)media_ptr -> fx_media_memory_buffer;
cluster = (media_ptr -> fx_media_fat_cache[multi_sector_entry].fx_fat_cache_entry_cluster);
next_cluster = media_ptr -> fx_media_fat_cache[multi_sector_entry].fx_fat_cache_entry_value;
if (cluster & 1)
{
*FAT_ptr = (UCHAR)((next_cluster >> 4) & 0xFF);
}if (cluster & 1) { ... }
else
{
temp = ((UINT)*FAT_ptr) & 0xF0;
*FAT_ptr = (UCHAR)(temp | ((next_cluster >> 8) & 0xF));
}else { ... }
multi_sector_entry = -1;
}if (multi_sector_entry != -1) { ... }
/* ... */
for (i = index; i < FX_MAX_FAT_CACHE; i++)
{
if ((media_ptr -> fx_media_fat_cache[i].fx_fat_cache_entry_dirty) == 0)
{
continue;
}if ((media_ptr -> fx_media_fat_cache[i].fx_fat_cache_entry_dirty) == 0) { ... }
cluster = (media_ptr -> fx_media_fat_cache[i].fx_fat_cache_entry_cluster);
byte_offset = (((ULONG)cluster << 1) + cluster) >> 1;
sector = (byte_offset / media_ptr -> fx_media_bytes_per_sector) +
(ULONG)media_ptr -> fx_media_reserved_sectors;
if (sector != FAT_sector)
{
continue;
}if (sector != FAT_sector) { ... }
next_cluster = media_ptr -> fx_media_fat_cache[i].fx_fat_cache_entry_value;
byte_offset = byte_offset -
((FAT_sector - (ULONG)media_ptr -> fx_media_reserved_sectors) *
media_ptr -> fx_media_bytes_per_sector);
if (byte_offset == (ULONG)(media_ptr -> fx_media_bytes_per_sector - 1))
{
multi_sector_entry = (INT)i;
}if (byte_offset == (ULONG)(media_ptr -> fx_media_bytes_per_sector - 1)) { ... }
FAT_ptr = (UCHAR *)media_ptr -> fx_media_memory_buffer + (UINT)byte_offset;
media_ptr -> fx_media_fat_cache[i].fx_fat_cache_entry_dirty = 0;
if (cluster & 1)
{
temp = (((UINT)*FAT_ptr) & 0x0F);
*FAT_ptr = (UCHAR)(temp | ((next_cluster << 4) & 0xF0));
if ((multi_sector_entry) == (INT)i)
{
continue;
}if ((multi_sector_entry) == (INT)i) { ... }
FAT_ptr++;
*FAT_ptr = (UCHAR)((next_cluster >> 4) & 0xFF);
}if (cluster & 1) { ... }
else
{
*FAT_ptr = (UCHAR)(next_cluster & 0xFF);
if ((multi_sector_entry) == (INT)i)
{
continue;
}if ((multi_sector_entry) == (INT)i) { ... }
FAT_ptr++;
temp = ((UINT)*FAT_ptr) & 0xF0;
*FAT_ptr = (UCHAR)(temp | ((next_cluster >> 8) & 0xF));
}else { ... }
}for (i = index; i < FX_MAX_FAT_CACHE; i++) { ... }
status = _fx_utility_logical_sector_write(media_ptr, (ULONG64) FAT_sector,
media_ptr -> fx_media_memory_buffer, ((ULONG) 1), FX_FAT_SECTOR);
if (status != FX_SUCCESS)
{
return(status);
}if (status != FX_SUCCESS) { ... }
if (media_ptr -> fx_media_sectors_per_FAT % (FX_FAT_MAP_SIZE << 3) == 0)
{
sectors_per_bit = (UCHAR)((UINT)media_ptr -> fx_media_sectors_per_FAT / (FX_FAT_MAP_SIZE << 3));
}if (media_ptr -> fx_media_sectors_per_FAT % (FX_FAT_MAP_SIZE << 3) == 0) { ... }
else
{
sectors_per_bit = (UCHAR)((UINT)media_ptr -> fx_media_sectors_per_FAT / (FX_FAT_MAP_SIZE << 3) + 1);
}else { ... }
if (sectors_per_bit == 0)
{
return(FX_MEDIA_INVALID);
}if (sectors_per_bit == 0) { ... }
ind = ((FAT_sector - media_ptr -> fx_media_reserved_sectors) / sectors_per_bit) >> 3;
media_ptr -> fx_media_fat_secondary_update_map[ind] =
(UCHAR)((INT)media_ptr -> fx_media_fat_secondary_update_map[ind]
| (1 <<(((FAT_sector - media_ptr -> fx_media_reserved_sectors) / sectors_per_bit) & 7)));
if (multi_sector_entry != -1)
{
FAT_sector++;
}if (multi_sector_entry != -1) { ... }
else
{
break;
}else { ... }
}for (;;) { ... }
...}
#ifdef FX_ENABLE_EXFAT
else if (media_ptr -> fx_media_FAT_type == FX_FAT16)
#else
else if (!media_ptr -> fx_media_32_bit_FAT)
#endif
{
byte_offset = (((ULONG)cluster) << 1);
FAT_sector = (byte_offset / media_ptr -> fx_media_bytes_per_sector) +
(ULONG)media_ptr -> fx_media_reserved_sectors;
status = _fx_utility_logical_sector_read(media_ptr, (ULONG64) FAT_sector,
media_ptr -> fx_media_memory_buffer, ((ULONG) 1), FX_FAT_SECTOR);
if (status != FX_SUCCESS)
{
return(status);
}if (status != FX_SUCCESS) { ... }
/* ... */
for (i = index; i < FX_MAX_FAT_CACHE; i++)
{
if (media_ptr -> fx_media_fat_cache[i].fx_fat_cache_entry_dirty == 0)
{
continue;
}if (media_ptr -> fx_media_fat_cache[i].fx_fat_cache_entry_dirty == 0) { ... }
cluster = (media_ptr -> fx_media_fat_cache[i].fx_fat_cache_entry_cluster);
byte_offset = (((ULONG)cluster) * 2);
sector = (byte_offset / media_ptr -> fx_media_bytes_per_sector) +
(ULONG)media_ptr -> fx_media_reserved_sectors;
if (sector != FAT_sector)
{
continue;
}if (sector != FAT_sector) { ... }
byte_offset = byte_offset -
((FAT_sector - (ULONG)media_ptr -> fx_media_reserved_sectors) *
media_ptr -> fx_media_bytes_per_sector);
FAT_ptr = (UCHAR *)media_ptr -> fx_media_memory_buffer + (UINT)byte_offset;
next_cluster = media_ptr -> fx_media_fat_cache[i].fx_fat_cache_entry_value;
_fx_utility_16_unsigned_write(FAT_ptr, (UINT)next_cluster);
media_ptr -> fx_media_fat_cache[i].fx_fat_cache_entry_dirty = 0;
}for (i = index; i < FX_MAX_FAT_CACHE; i++) { ... }
status = _fx_utility_logical_sector_write(media_ptr, (ULONG64) FAT_sector,
media_ptr -> fx_media_memory_buffer, ((ULONG) 1), FX_FAT_SECTOR);
if (status != FX_SUCCESS)
{
return(status);
}if (status != FX_SUCCESS) { ... }
/* ... */
if (media_ptr -> fx_media_sectors_per_FAT % (FX_FAT_MAP_SIZE << 3) == 0)
{
sectors_per_bit = (UCHAR)(media_ptr -> fx_media_sectors_per_FAT / (FX_FAT_MAP_SIZE << 3));
}if (media_ptr -> fx_media_sectors_per_FAT % (FX_FAT_MAP_SIZE << 3) == 0) { ... }
else
{
sectors_per_bit = (UCHAR)((media_ptr -> fx_media_sectors_per_FAT / (FX_FAT_MAP_SIZE << 3)) + 1);
}else { ... }
ind = ((FAT_sector - media_ptr -> fx_media_reserved_sectors) / sectors_per_bit) >> 3;
media_ptr -> fx_media_fat_secondary_update_map[ind] =
(UCHAR)((INT)media_ptr -> fx_media_fat_secondary_update_map[ind]
| (1 <<(((FAT_sector - media_ptr -> fx_media_reserved_sectors) / sectors_per_bit) & 7)));
...}
else
{
byte_offset = (((ULONG)cluster) * 4);
FAT_sector = (byte_offset / media_ptr -> fx_media_bytes_per_sector) +
(ULONG)media_ptr -> fx_media_reserved_sectors;
status = _fx_utility_logical_sector_read(media_ptr, (ULONG64) FAT_sector,
media_ptr -> fx_media_memory_buffer, ((ULONG) 1), FX_FAT_SECTOR);
if (status != FX_SUCCESS)
{
return(status);
}if (status != FX_SUCCESS) { ... }
/* ... */
for (i = index; i < FX_MAX_FAT_CACHE; i++)
{
if (media_ptr -> fx_media_fat_cache[i].fx_fat_cache_entry_dirty == 0)
{
continue;
}if (media_ptr -> fx_media_fat_cache[i].fx_fat_cache_entry_dirty == 0) { ... }
cluster = (media_ptr -> fx_media_fat_cache[i].fx_fat_cache_entry_cluster);
byte_offset = (((ULONG)cluster) * 4);
sector = (byte_offset / media_ptr -> fx_media_bytes_per_sector) +
(ULONG)media_ptr -> fx_media_reserved_sectors;
if (sector != FAT_sector)
{
continue;
}if (sector != FAT_sector) { ... }
byte_offset = byte_offset -
((FAT_sector - (ULONG)media_ptr -> fx_media_reserved_sectors) *
media_ptr -> fx_media_bytes_per_sector);
FAT_ptr = (UCHAR *)media_ptr -> fx_media_memory_buffer + (UINT)byte_offset;
next_cluster = media_ptr -> fx_media_fat_cache[i].fx_fat_cache_entry_value;
_fx_utility_32_unsigned_write(FAT_ptr, next_cluster);
media_ptr -> fx_media_fat_cache[i].fx_fat_cache_entry_dirty = 0;
}for (i = index; i < FX_MAX_FAT_CACHE; i++) { ... }
status = _fx_utility_logical_sector_write(media_ptr, (ULONG64) FAT_sector,
media_ptr -> fx_media_memory_buffer, ((ULONG) 1), FX_FAT_SECTOR);
if (status != FX_SUCCESS)
{
return(status);
}if (status != FX_SUCCESS) { ... }
#ifdef FX_ENABLE_EXFAT
if (media_ptr -> fx_media_FAT_type == FX_FAT32)
{
#endif
/* ... */
if (media_ptr -> fx_media_sectors_per_FAT % (FX_FAT_MAP_SIZE << 3) == 0)
{
sectors_per_bit = (UCHAR)(media_ptr -> fx_media_sectors_per_FAT / (FX_FAT_MAP_SIZE << 3));
}if (media_ptr -> fx_media_sectors_per_FAT % (FX_FAT_MAP_SIZE << 3) == 0) { ... }
else
{
sectors_per_bit = (UCHAR)((media_ptr -> fx_media_sectors_per_FAT / (FX_FAT_MAP_SIZE << 3)) + 1);
}else { ... }
ind = ((FAT_sector - media_ptr -> fx_media_reserved_sectors) / sectors_per_bit) >> 3;
media_ptr -> fx_media_fat_secondary_update_map[ind] =
(UCHAR)((INT)media_ptr -> fx_media_fat_secondary_update_map[ind]
| (1 <<(((FAT_sector - media_ptr -> fx_media_reserved_sectors) / sectors_per_bit) & 7)));
#ifdef FX_ENABLE_EXFAT
}if (media_ptr -> fx_media_FAT_type == FX_FAT32) { ... }
#endif
}else { ... }
}for (index = 0; index < FX_MAX_FAT_CACHE; index++) { ... }
#ifdef FX_ENABLE_FAULT_TOLERANT
if (media_ptr -> fx_media_fault_tolerant_enabled)
{
media_ptr -> fx_media_fault_tolerant_cached_FAT_sector = 0;
}if (media_ptr -> fx_media_fault_tolerant_enabled) { ... }
/* ... */#endif
return(FX_SUCCESS);
}{ ... }