summaryrefslogtreecommitdiffstats
path: root/c/src/lib/libbsp/arm/nds/libfat/source/libfat.c
blob: 6b072360525d18b87352f941fcbfa809d41faae9 (plain) (blame)
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
/*
	libfat.c
	Simple functionality for startup, mounting and unmounting of FAT-based devices.

 Copyright (c) 2006 Michael "Chishm" Chisholm

 Redistribution and use in source and binary forms, with or without modification,
 are permitted provided that the following conditions are met:

  1. Redistributions of source code must retain the above copyright notice,
     this list of conditions and the following disclaimer.
  2. Redistributions in binary form must reproduce the above copyright notice,
     this list of conditions and the following disclaimer in the documentation and/or
     other materials provided with the distribution.
  3. The name of the author may not be used to endorse or promote products derived
     from this software without specific prior written permission.

 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR IMPLIED
 WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY
 AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR BE
 LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
 DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
 LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE,
 EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.

	2006-07-11 - Chishm
		* Original release

	2006-08-13 - Chishm
		* Moved all externally visible directory related functions to fatdir

	2006-08-14 - Chishm
		* Added extended devoptab_t functions

	2007-01-10 - Chishm
		* fatInit now sets the correct path when setAsDefaultDevice

	2007-01-11 - Chishm
		* Added missing #include <unistd.h>
*/

#include <sys/iosupport.h>
#include <unistd.h>

#include "common.h"
#include "partition.h"
#include "fatfile.h"
#include "fatdir.h"

#define GBA_DEFAULT_CACHE_PAGES 2
#define NDS_DEFAULT_CACHE_PAGES 8


const devoptab_t dotab_fat = {
	"fat",
	sizeof (FILE_STRUCT),
	_FAT_open_r,
	_FAT_close_r,
	_FAT_write_r,
	_FAT_read_r,
	_FAT_seek_r,
	_FAT_fstat_r,
	_FAT_stat_r,
	_FAT_link_r,
	_FAT_unlink_r,
	_FAT_chdir_r,
	_FAT_rename_r,
	_FAT_mkdir_r,
	sizeof (DIR_STATE_STRUCT),
	_FAT_diropen_r,
	_FAT_dirreset_r,
	_FAT_dirnext_r,
	_FAT_dirclose_r
};

bool fatInit (u32 cacheSize, bool setAsDefaultDevice) {
#ifdef NDS
	bool slot1Device, slot2Device;

	// Try mounting both slots
	slot1Device = _FAT_partition_mount (PI_SLOT_1, cacheSize);
	slot2Device = _FAT_partition_mount (PI_SLOT_2, cacheSize);

	// Choose the default device
	if (slot1Device) {
		_FAT_partition_setDefaultInterface (PI_SLOT_1);
	} else if (slot2Device) {
		_FAT_partition_setDefaultInterface (PI_SLOT_2);
	} else {
		return false;
	}

#else	// not defined NDS
	bool cartSlotDevice;

	cartSlotDevice = _FAT_partition_mount (PI_CART_SLOT, cacheSize);

	if (cartSlotDevice) {
		_FAT_partition_setDefaultInterface (PI_CART_SLOT);
	} else {
		return false;
	}

#endif	// defined NDS

	AddDevice (&dotab_fat);

	if (setAsDefaultDevice) {
		chdir ("fat:/");
	}

	return true;
}

bool fatInitDefault (void) {
#ifdef NDS
	return fatInit (NDS_DEFAULT_CACHE_PAGES, true);
#else
	return fatInit (GBA_DEFAULT_CACHE_PAGES, true);
#endif
}

bool fatMountNormalInterface (PARTITION_INTERFACE partitionNumber, u32 cacheSize) {
	return _FAT_partition_mount (partitionNumber, cacheSize);
}

bool fatMountCustomInterface (const IO_INTERFACE* device, u32 cacheSize) {
	return _FAT_partition_mountCustomInterface (device, cacheSize);
}

bool fatUnmount (PARTITION_INTERFACE partitionNumber) {
	return _FAT_partition_unmount (partitionNumber);
}


bool fatUnsafeUnmount (PARTITION_INTERFACE partitionNumber) {
	return _FAT_partition_unsafeUnmount (partitionNumber);
}

bool fatSetDefaultInterface (PARTITION_INTERFACE partitionNumber) {
	return _FAT_partition_setDefaultInterface (partitionNumber);
}