33 lines
1.3 KiB
C
33 lines
1.3 KiB
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef __VERSION_H__
|
|
#define __VERSION_H__
|
|
|
|
#include "rawnand/controller/ndfc_base.h"
|
|
#include "rawnand/rawnand.h"
|
|
|
|
__u32 nand_get_nand_version(void);
|
|
int nand_get_version(__u8 *nand_version);
|
|
void show_nctri(struct nand_controller_info *nctri);
|
|
void show_nci(struct nand_chip_info *nci);
|
|
void show_nsci(struct nand_super_chip_info *nsci);
|
|
void show_nsi(void);
|
|
void show_nssi(void);
|
|
void show_static_info(void);
|
|
void show_spare(int flag);
|
|
void nand_show_data(uchar *buf, u32 len);
|
|
void show_dict_page(unsigned int chip, unsigned int block, unsigned int page, u32 start, u32 len);
|
|
void show_logic_page_all_history(unsigned int logic_page);
|
|
int nand_super_page_test(unsigned int chip, unsigned int block, unsigned int page, unsigned char *mbuf);
|
|
int nand_phy_page_test(unsigned int chip, unsigned int block, unsigned int page, unsigned char *mbuf);
|
|
int nand_phy_block_test(unsigned int chip, unsigned int block, unsigned char *mbuf, u32 test_bad, u8 dat);
|
|
int nand_phy_block_erase_test(unsigned int chip, unsigned int block);
|
|
void nand_phy_erase_all(void);
|
|
void nand_phy_check_all(u8 dat);
|
|
int nand_phy_read_block_test(unsigned int chip, unsigned int start_block, unsigned int end_block);
|
|
int nand_update_end(void);
|
|
void nand_special_test(void);
|
|
extern void NAND_Print_Version(void);
|
|
|
|
#endif /*VERSION_H*/
|