SmartAudio/lichee/brandy/u-boot-2011.09/drivers/mmc/mmc_test.h

19 lines
722 B
C
Executable File

#ifndef _MMC_TEST_H_
#define _MMC_TEST_H_
#define MMC_INTERNAL_TEST
#ifdef MMC_INTERNAL_TEST
int mmc_t_rwc(struct mmc *mmc, ulong start, ulong blkcnt);
int mmc_t_seq_write_speed_test(struct mmc *mmc, ulong start, ulong blkcnt_tatal, ulong blkcnt_eachcmd);
int mmc_t_memcpy(void);
int mmc_t_emmc_erase(struct mmc *mmc, ulong start, ulong blkcnt);
int mmc_t_emmc_trim(struct mmc *mmc, ulong start, ulong blkcnt);
int mmc_t_emmc_discard(struct mmc *mmc, ulong start, ulong blkcnt);
int mmc_t_emmc_secure_erase(struct mmc *mmc, ulong start, ulong blkcnt);
int mmc_t_emmc_secure_trim(struct mmc *mmc, ulong start, ulong blkcnt);
int mmc_t_emmc_sanitize(struct mmc *mmc);
#endif /*MMC_INTERNAL_TEST*/
#endif /*_MMC_TEST_H_*/