mirror of
https://github.com/pmret/papermario.git
synced 2024-11-08 12:02:30 +01:00
b171712e0e
* match libultra ique pt 1 * add sgidefs.h to include/gcc * recvmesg match + _getcount * add elfpatch.py for those compiled with -mips3 * pt 2 * os/setthreadpri(.data) -> os/thread * os thread matches * os timer matches * pt 4 (erm... 3?) * vitbl * os pi matches * pt. uhmmmm, i've lost track... * os pfs matches * replace elfpatch.py * pt. just forget it... * outsource from ultralib ique branch * . * . 2 * final blow * add egcs compiler to Jenkinsfile * fix errors from CI * minor changes as requested
41 lines
982 B
C
41 lines
982 B
C
#ifndef _OS_INTERNAL_FLASH_H_
|
|
#define _OS_INTERNAL_FLASH_H_
|
|
|
|
#include "os_message.h"
|
|
#include "os_flash.h"
|
|
|
|
#define FLASH_BLOCK_SIZE 128
|
|
|
|
/**
|
|
* Flash commands
|
|
*/
|
|
#define FLASH_CMD_REG 0x10000
|
|
|
|
/* set whole chip erase mode */
|
|
#define FLASH_CMD_CHIP_ERASE 0x3C000000
|
|
/* set sector erase mode */
|
|
#define FLASH_CMD_SECTOR_ERASE 0x4B000000
|
|
/* do erasure */
|
|
#define FLASH_CMD_EXECUTE_ERASE 0x78000000
|
|
/* program selected page */
|
|
#define FLASH_CMD_PROGRAM_PAGE 0xA5000000
|
|
/* set page program mode */
|
|
#define FLASH_CMD_PAGE_PROGRAM 0xB4000000
|
|
/* set status mode */
|
|
#define FLASH_CMD_STATUS 0xD2000000
|
|
/* set silicon id mode */
|
|
#define FLASH_CMD_ID 0xE1000000
|
|
/* set read mode */
|
|
#define FLASH_CMD_READ_ARRAY 0xF0000000
|
|
|
|
extern OSIoMesg __osFlashMsg;
|
|
extern OSMesgQueue __osFlashMessageQ;
|
|
extern OSPiHandle __osFlashHandler;
|
|
extern OSMesg __osFlashMsgBuf[1];
|
|
extern s32 __osFlashVersion;
|
|
extern u32 __osFlashID[4];
|
|
|
|
u32 __osFlashGetAddr(u32 page_num);
|
|
|
|
#endif
|