flashreadstatus.c
1.46 KB
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
/*---------------------------------------------------------------------
Copyright (C) 1998 Nintendo.
File flash.c
Coded by Atushi Watanabe. Dec 1, 1998.
Modified by Atushi Watanabe. Apr 4, 2000.
Comments 1M Flash ROM access functions(Ver.7.6)
$Id: flashreadstatus.c,v 1.1.1.1 2002/10/29 08:06:43 blythe Exp $
---------------------------------------------------------------------*/
/**************************************************************************
*
* $Revision: 1.1.1.1 $
* $Date: 2002/10/29 08:06:43 $
* $Source:
*
**************************************************************************/
#include <ultra64.h>
#include "osint_flash.h"
/* READ STATUS */
void osFlashReadStatus(u8 *flash_status)
{
u32 status;
/* Read Status Register */
/* コマンドコンビネーションバグの(3)を回避するためのダミーコマンド */
/* ステータス2度読みで回避 */
/* 1回目 */
/* Set Read Status */
osEPiWriteIo(&__osFlashHandler,(__osFlashHandler.baseAddress|0x10000),0xd2000000);
/* Read Status Register */
osEPiReadIo(&__osFlashHandler,__osFlashHandler.baseAddress, &status);
/* 2回目 */
/* Set Read Status */
osEPiWriteIo(&__osFlashHandler,(__osFlashHandler.baseAddress|0x10000),0xd2000000);
/* Read Status Register */
osEPiReadIo(&__osFlashHandler,__osFlashHandler.baseAddress, &status);
*flash_status = (u8)(status & 0xff);
return;
}