Difference between revisions of "Unit FATFS"

From Ultibo.org
Jump to: navigation, search
Line 341: Line 341:
  
 
=== Type definitions ===
 
=== Type definitions ===
 +
----
 +
 +
'''FATFS specific types'''
 +
 +
{| class="wikitable" style="font-size: 14px; text-align: left; width: 100%; height: 50px;"
 +
|-
 +
| <code>TFATType = (ftNONE,ftFAT12,ftFAT16,ftFAT32);</code>
 +
| style="width: 40%;"|
 +
|-
 +
|}
 +
 +
'''FATFS params'''
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 +
<code>TFATParams = record </code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: (Not Packed) Block values for various Sector sizes.
 +
|-
 +
| <code>SectorSize:Word;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>FATType:TFATType;</code>
 +
| &nbsp;
 +
|-
 +
| <code>BlockShiftCount:Word;</code>
 +
| &nbsp;
 +
|-
 +
| <code>EntriesPerBlock:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>SectorsPerBlock:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 +
'''FATFS geometry''' 
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 +
<code>TFATGeometry = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: (Not Packed) FAT12 values for various Floppy Types.
 +
|-
 +
| <code>FloppyType:TFloppyType;</code>
 +
| style="width: 50%;"|&nbsp;
 +
|-
 +
| <code>SectorsPerFat:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>SectorsPerCluster:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>RootEntryCount:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
| <code>MediaId:Byte;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''FATFS cluster size'''
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 +
<code>TFATClusterSize = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: (Not Packed) Sectors per Cluster for various disk sizes (Fixed Disk only).
 +
|-
 +
| <code>SectorCount:LongWord;</code>
 +
| Based on 512 bytes per sector only
 +
|-
 +
| <code>SectorsPerCluster:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''FATFS partition type'''
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
 +
<code>TFATPartitionType = record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: (Not Packed) Partition Type for various disk sizes (Fixed Disk only).
 +
|-
 +
| <code>Excluded:Boolean;</code>
 +
| Entry is excluded from FAT Partition Type check
 +
|-
 +
| <code>Extended:Boolean;</code>
 +
| &nbsp;
 +
|-
 +
| <code>SectorCount:LongWord;</code>
 +
| Based on 512 bytes per sector only
 +
|-
 +
| <code>PartitionId:Byte;</code>
 +
| &nbsp;
 +
|-
 +
| <code>LBAType:Byte;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''FATFS name'''
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PFATName = ^TFATName;</code>
 +
 +
<code>TFATName = packed record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: 11 Bytes
 +
|-
 +
| <code>Name:array[0..7] of Char;</code>
 +
| File Name
 +
|-
 +
| <code>Ext:array[0..2] of Char;</code>
 +
| File Extension
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''FATSFS directory'''
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PFATDirectory = ^TFATDirectory;</code>
 +
 +
<code>TFATDirectory = packed record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: 32 Bytes
 +
|-
 +
| <code>Name:array[0..7] of Char;</code>
 +
| File Name
 +
|-
 +
| <code>Ext:array[0..2] of Char;</code>
 +
| File Extension
 +
|-
 +
| <code>Attribute:Byte;</code>
 +
| File Attributes - See Standard Values
 +
|-
 +
| <code>Reserved:Byte;</code>
 +
| Always 0 (See below)
 +
|-
 +
| <code>CaseFlags:Byte;</code>
 +
| Set to $08 if Name, $10 if Extension or $18 if both
 +
|-
 +
| <code>CreateTimeMsecs:Byte;</code>
 +
| &nbsp;
 +
|-
 +
| <code>CreateTime:Word;</code>
 +
| &nbsp;
 +
|-
 +
| <code>CreateDate:Word;</code>
 +
| &nbsp;
 +
|-
 +
| <code>LastAccessDate:Word;</code>
 +
| &nbsp;
 +
|-
 +
| <code>FirstClusterHigh:Word;</code>
 +
| High word of the start cluster (FAT32 Only)
 +
|-
 +
| <code>WriteTime:Word;</code>
 +
| &nbsp;
 +
|-
 +
| <code>WriteDate:Word;</code>
 +
| &nbsp;
 +
|-
 +
| <code>FirstClusterLow:Word;</code>
 +
| Low Word of Start Cluster all versions
 +
|-
 +
| <code>Length:LongWord;</code>
 +
| &nbsp;
 +
|-
 +
|}
 +
</div></div> 
 +
 +
'''LFN directory''' 
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PLFNDirectory = ^TLFNDirectory;</code>
 +
 +
<code>TLFNDirectory = packed record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
|colspan="2"|Note: 32 Bytes
 +
|-
 +
| <code>Order:Byte;</code>
 +
| Bit 6 = 1 if last LFN in chain, Bits 5-0 = Order of LFN chunks for this File
 +
|-
 +
| <code>Name1:array[0..4] of WideChar;</code>
 +
| First 5 Characters in this chunk
 +
|-
 +
| <code>Attribute:Byte;</code>
 +
| Always 0Fh - Volume, System, Hidden, ReadOnly
 +
|-
 +
| <code>FileType:Byte;</code>
 +
| Usually 00h
 +
|-
 +
| <code>Checksum:Byte;</code>
 +
| Checksum calculated on 8.3 name
 +
|-
 +
| <code>Name2:array[0..5] of WideChar;</code>
 +
| Next 6 Characters in this chunk
 +
|-
 +
| <code>Reserved:Word;</code>
 +
| Always 0000h - FirstCluster in Standard Entry
 +
|-
 +
| <code>Name3:array[0..1] of WideChar;</code>
 +
| Next 2 Characters in this chunk
 +
|-
 +
|}
 +
</div></div>
 +
 +
'''FATFS info sector'''
 +
 +
<div class="toccolours mw-collapsible mw-collapsed" style="border: 1; font-family: arial;">
 +
<code>PFATInfoSector = ^TFATInfoSector;</code>
 +
 +
<code>TFATInfoSector = packed record</code>
 +
<div class="mw-collapsible-content" style="text-align: left; padding-left: 5px;">
 +
{| class="wikitable" style="font-size: 14px; background: white;"
 +
|-
 +
| <code>LeadSignature:LongWord;</code>
 +
| Signature "RRaA" or 41615252h
 +
|-
 +
| <code>Reserved1:array[0..479] of Byte;</code>
 +
| Always 0
 +
|-
 +
| <code>StructureSignature:LongWord;</code>
 +
| Signature "rrAa" or 61417272h
 +
|-
 +
| <code>FreeClusterCount:LongWord;</code>
 +
| Free Clusters $FFFFFFFF if unknown
 +
|-
 +
| <code>LastFreeCluster:LongWord;</code>
 +
| Most recently allocated cluster $FFFFFFFF if unknown
 +
|-
 +
| <code>Reserved2:array[0..11] of Byte;</code>
 +
| Always 0
 +
|-
 +
| <code>TrailSignature:LongWord;</code>
 +
| Signature AA550000h
 +
|-
 +
|}
 +
</div></div>
 +
<br />
 +
 +
=== Class definitions ===
 
----
 
----
  

Revision as of 04:36, 18 January 2017

Return to Unit Reference


Description


Ultibo FAT12/16/32/exFAT interface unit

Notes:

Based on information from numerous sources, primarily the document fatgen103.pdf from Microsoft. FAT Disk Blocks are based on reading a group of sectors into a block at once. The BlockNo of each block is therefore the FAT entry no of the first FAT in the block.

The use of IsEightDotThree and GenerateShortName(Ex) from the UltiboUtils unit should be replaced by internal routines optimised for maximum performance. All Block and Entry Offsets have been expanded to 32bit to avoid 16bit overflow on 64K clusters.

Constants



[Expand]
FATFS specific constants fat*


Type definitions


FATFS specific types

TFATType = (ftNONE,ftFAT12,ftFAT16,ftFAT32);

FATFS params

[Expand]

TFATParams = record

FATFS geometry

[Expand]

TFATGeometry = record

FATFS cluster size

[Expand]

TFATClusterSize = record

FATFS partition type

[Expand]

TFATPartitionType = record

FATFS name

[Expand]

PFATName = ^TFATName;

TFATName = packed record

FATSFS directory

[Expand]

PFATDirectory = ^TFATDirectory;

TFATDirectory = packed record

LFN directory

[Expand]

PLFNDirectory = ^TLFNDirectory;

TLFNDirectory = packed record

FATFS info sector

[Expand]

PFATInfoSector = ^TFATInfoSector;

TFATInfoSector = packed record


Class definitions


To be documented

Public variables


None defined

Function declarations



Initialization functions

[Expand]
procedure FATFSInit;
Description: To be documented


[Expand]
procedure FATFSQuit;
Description: To be documented


FATFS helper functions

[Expand]
function FATTypeToString(AType:TFATType):String;
Description: To be documented


Return to Unit Reference