aboutsummaryrefslogtreecommitdiff
path: root/backends/platform/ds/arm9/source/fat/io_m3sd.c
blob: 823f94a2809ce76f1dc9b1a3f32ce571965ccf69 (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
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
/*
	io_m3sd.c based on io_m3cf.c by SaTa.

	io_m3cf.c based on

	compact_flash.c
	By chishm (Michael Chisholm)

	Hardware Routines for reading a compact flash card
	using the M3 Perfect CF Adapter

	CF routines modified with help from Darkfader

	This software is completely free. No warranty is provided.
	If you use it, please give me credit and email me about your
	project at chishm@hotmail.com

	See gba_nds_fat.txt for help and license details.
*/


#include "io_m3sd.h"

#ifdef SUPPORT_M3SD

//SD dir control bit cmddir=bit0 clken=bit1
//output
#define SDDIR			(*(volatile u16*)0x8800000)

//SD send get control bit send=bit0 get=bit1
//output
#define SDCON			(*(volatile u16*)0x9800000)

//SD output data obyte[7:0]=AD[7:0]
//output
#define SDODA			(*(volatile u16*)0x9000000)

//SD input data AD[7:0]=ibyte[7:0]
//input
#define SDIDA			(*(volatile u16*)0x9000000)

//readsector data1
#define SDIDA1			(*(volatile u16*)0x9200000)

//readsector data2
#define SDIDA2			(*(volatile u16*)0x9400000)

//readsector data3
#define SDIDA3			(*(volatile u16*)0x9600000)

//SD stutas cmdneg=bit0 cmdpos=bit1 issend=bit2 isget=bit3
//input
#define SDSTA			(*(volatile u16*)0x9800000)

//#define CARD_TIMEOUT	10000000		// Updated due to suggestion from SaTa, otherwise card will timeout sometimes on a write
#define CARD_TIMEOUT	(500*100)		// M3SD timeout nomal:500

//======================================================
bool M3SD_read1sector(u32 sectorn,u32 TAddr)
{
	u32 i;
	int w;
	
	SDCON=0x8;		//	bit3:�R�}���h���[�h�H
	SDIDA1=0x40+17;		//	�R�}���h CMD17
	SDIDA2=(sectorn>>7);//	�Z�N�^H 9�r�b�g=�A�h���XH �P�U�r�b�g
	SDIDA3=(sectorn<<9);//	�Z�N�^L 7�r�b�g=�A�h���XL �P�U�r�b�g
	SDDIR=0x29;		//	�R�}���h���M�H
	i=0;

	while ( ((SDSTA&0x01) != 0x01)&&(i < CARD_TIMEOUT) )
	{
		i++;
	}
	SDDIR=0x09;
	i=0;
	SDDIR=0x49;
	while ( ((SDSTA&0x40) != 0x40)&&(i < CARD_TIMEOUT) )
	{
		i++;
	}
	SDDIR=0x09;
		
	SDDIR=0x8;//cmd input clken=0 datadir input clock=0
	SDCON=0x4;//send=0 get=0 en25=1 cmd1=0

	w = SDDIR;
	for(w=0;w<0x100;w++)
	{
		u16 d16;
		u8 *d8=(u8 *)&d16;
//		*(u16*)(TAddr+w*2) = SDDIR;	//	16bit
		d16 = SDDIR;	//	16bit
		*(u8 *)(TAddr+w*2) =d8[0];
		*(u8 *)(TAddr+w*2+1) =d8[1];
		
	}
	w = SDDIR;
	w = SDDIR;
	
	if (i >= CARD_TIMEOUT)
		return false;

	return true;
	
} 
//==================================================


//======================================================
void SD_crc16(u16* buff,u16 num,u16* crc16buff);
void SD_data_write(u16 *buff,u16* crc16buff);

u16  Hal4ATA_StatusByte;

void Hal4ATA_GetStatus(void)
{
	Hal4ATA_StatusByte = SDSTA;
}

bool Hal4ATA_WaitOnBusy(void)
{
	Hal4ATA_GetStatus();
	while ( (Hal4ATA_StatusByte & 0x01) != 0x1)
	{
		Hal4ATA_GetStatus();
	}
	return TRUE;
}

bool Hal4ATA_WaitOnBusyNDrdy(void)
{
	Hal4ATA_GetStatus();
	while ( (Hal4ATA_StatusByte&0x40) !=0x40)
	{
		Hal4ATA_GetStatus();
	}
	return TRUE;
}


void SendCommand(u16 command, u32 sectorn)
{
	SDCON=0x8;
	SDIDA1=0x40+command;
	SDIDA2=(sectorn>>7);
	SDIDA3=(sectorn<<9);

	SDDIR=0x29;
	Hal4ATA_WaitOnBusy();
	SDDIR=0x09;
}


#define DMA3SAD      *(u32*)0x040000D4
#define DMA3DAD      *(u32*)0x040000D8
#define DMA3CNT      *(u32*)0x040000DC

void DMA3(u32 src, u32 dst, u32 cnt)
{
	DMA3SAD=src;
	DMA3DAD=dst;
	DMA3CNT=cnt;
}



void PassRespond(u32 num)
{
	u32 i,dmanum;
	
	dmanum=(64+(num<<3))>>2;
	SDDIR=0x8;
	SDCON=0x4;
	DMA3(0x8800000,(u32)&i,0x80400000+dmanum);
}

//bool M3SD_write1sector(u32 sectorn,u16 * p)
bool M3SD_write1sector(u32 sectorn,u32 p)
{
	u16 crc[4];

	SendCommand(24,sectorn);
	PassRespond(6);

	SDDIR=0x4;
	SDCON=0x0;

	SD_crc16((u16 *)p,512,crc);
	SD_data_write((u16 *)p,crc);
	return true;
} 
//==================================================


// GBAMP CF Addresses

#define M3_REG_STS		*(vu16*)(0x09800000)	// Status of the CF Card / Device control

#define M3_DATA			(vu16*)(0x08800000)		// Pointer to buffer of CF data transered from card

// CF Card status
#define CF_STS_INSERTED1		0x20
#define CF_STS_INSERTED2		0x30

/*-----------------------------------------------------------------
M3SD_IsInserted
Is a compact flash card inserted?
bool return OUT:  true if a CF card is inserted
-----------------------------------------------------------------*/
bool M3SD_IsInserted (void) 
{
	int i;
	u16 sta;
	// Change register, then check if value did change
	M3_REG_STS = CF_STS_INSERTED1;

	for(i=0;i<CARD_TIMEOUT;i++)
	{
		sta=M3_REG_STS;
		if((sta == CF_STS_INSERTED1)||(sta == CF_STS_INSERTED2))
		{
			return true;
			//break;
		}
	}
	return false;

//	return ( (sta == CF_STS_INSERTED1)||(sta == CF_STS_INSERTED2) );
//	return true;
}


/*-----------------------------------------------------------------
M3SD_ClearStatus
Tries to make the CF card go back to idle mode
bool return OUT:  true if a CF card is idle
-----------------------------------------------------------------*/
bool M3SD_ClearStatus (void) 
{

//	int i=SDDIR;
	int i;
	u16 sta;

	i = 0;
	M3_REG_STS = CF_STS_INSERTED1;
	while (i < CARD_TIMEOUT)
	{
		sta=M3_REG_STS;
		if(  (sta == CF_STS_INSERTED1)||(sta == CF_STS_INSERTED2)  )break;
		i++;
	}
	if (i >= CARD_TIMEOUT)
		return false;

	return true;
}


/*-----------------------------------------------------------------
M3SD_ReadSectors
Read 512 byte sector numbered "sector" into "buffer"
u32 sector IN: address of first 512 byte sector on CF card to read
u8 numSecs IN: number of 512 byte sectors to read,
 1 to 256 sectors can be read, 0 = 256
void* buffer OUT: pointer to 512 byte buffer to store data in
bool return OUT: true if successful
-----------------------------------------------------------------*/
bool M3SD_ReadSectors (u32 sector, u8 numSecs, void* buffer)
{


	//void M3SD_read1sector(u32 sectorn,u32 TAddr)
	bool r=true;
	int i;
	for(i=0;i<numSecs;i++)
	{
		if(M3SD_read1sector(i + sector , 512*i + (u32) buffer )==false)
		{
			r=false;
			break;
		}
	}
	return r;

}



/*-----------------------------------------------------------------
M3SD_WriteSectors
Write 512 byte sector numbered "sector" from "buffer"
u32 sector IN: address of 512 byte sector on CF card to read
u8 numSecs IN: number of 512 byte sectors to read,
 1 to 256 sectors can be read, 0 = 256
void* buffer IN: pointer to 512 byte buffer to read data from
bool return OUT: true if successful
-----------------------------------------------------------------*/
bool M3SD_WriteSectors (u32 sector, u8 numSecs, void* buffer)
{

	bool r=true;
	int i;
	for(i=0;i<numSecs;i++)
	{
		if(M3SD_write1sector(i + sector , 512*i + (u32) buffer )==false)
		{
			r=false;
			break;
		}
	}
	return r;

//	return false;


}


/*-----------------------------------------------------------------
M3_Unlock
Returns true if M3 was unlocked, false if failed
Added by MightyMax
-----------------------------------------------------------------*/
bool M3SD_Unlock(void) 
{

	// run unlock sequence
	volatile unsigned short tmp ;
	tmp = *(volatile unsigned short *)0x08000000 ;
	tmp = *(volatile unsigned short *)0x08E00002 ;
	tmp = *(volatile unsigned short *)0x0800000E ;
	tmp = *(volatile unsigned short *)0x08801FFC ;
	tmp = *(volatile unsigned short *)0x0800104A ;
	tmp = *(volatile unsigned short *)0x08800612 ;
	tmp = *(volatile unsigned short *)0x08000000 ;
	tmp = *(volatile unsigned short *)0x08801B66 ;
	tmp = *(volatile unsigned short *)0x08800006 ;
	tmp = *(volatile unsigned short *)0x08000000 ;
	// test that we have register access
	vu16 sta;
	sta=M3_REG_STS;
	sta=M3_REG_STS;
	if(  (sta == CF_STS_INSERTED1)||(sta == CF_STS_INSERTED2)  )return true;

	return false;
}

bool M3SD_Shutdown(void) {
	return M3SD_ClearStatus() ;
} ;

bool M3SD_StartUp(void) {
	return M3SD_Unlock() ;
} ;


IO_INTERFACE io_m3sd = {
	DEVICE_TYPE_M3SD,
	FEATURE_MEDIUM_CANREAD | FEATURE_MEDIUM_CANWRITE,
	(FN_MEDIUM_STARTUP)&M3SD_StartUp,
	(FN_MEDIUM_ISINSERTED)&M3SD_IsInserted,
	(FN_MEDIUM_READSECTORS)&M3SD_ReadSectors,
	(FN_MEDIUM_WRITESECTORS)&M3SD_WriteSectors,
	(FN_MEDIUM_CLEARSTATUS)&M3SD_ClearStatus,
	(FN_MEDIUM_SHUTDOWN)&M3SD_Shutdown
} ;


LPIO_INTERFACE M3SD_GetInterface(void) {
	return &io_m3sd ;
} ;

#endif // SUPPORT_M3CF