mirror of
https://github.com/fail0verflow/mini.git
synced 2024-11-05 11:15:07 +01:00
1eef8e083c
i'll test this and port nandfs to the powerpc tomorrow
24 lines
522 B
C
24 lines
522 B
C
#ifndef __NAND_H__
|
|
#define __NAND_H__
|
|
|
|
#include "types.h"
|
|
#include "ipc.h"
|
|
|
|
void nand_irq(void);
|
|
|
|
void nand_send_command(u32 command, u32 bitmask, u32 flags, u32 num_bytes);
|
|
int nand_reset(void);
|
|
u32 nand_get_id(void);
|
|
u32 nand_get_status(void);
|
|
void nand_read_page(u32 pageno, void *data, void *ecc);
|
|
void nand_write_page(u32 pageno, void *data, void *ecc);
|
|
void nand_erase_block(u32 pageno);
|
|
|
|
void nand_read_cluster(u32 clusterno, void *data);
|
|
|
|
void nand_initialize();
|
|
|
|
void nand_ipc(volatile ipc_request *req);
|
|
|
|
#endif
|