summaryrefslogtreecommitdiff
path: root/firmware/target/mips/ingenic_x1000/nand-x1000-err.h
diff options
context:
space:
mode:
Diffstat (limited to 'firmware/target/mips/ingenic_x1000/nand-x1000-err.h')
-rw-r--r--firmware/target/mips/ingenic_x1000/nand-x1000-err.h27
1 files changed, 0 insertions, 27 deletions
diff --git a/firmware/target/mips/ingenic_x1000/nand-x1000-err.h b/firmware/target/mips/ingenic_x1000/nand-x1000-err.h
deleted file mode 100644
index 869fe73ac9..0000000000
--- a/firmware/target/mips/ingenic_x1000/nand-x1000-err.h
+++ /dev/null
@@ -1,27 +0,0 @@
1#ifndef __NAND_X1000_ERR_H__
2#define __NAND_X1000_ERR_H__
3
4/* Error codes which can be returned by the nand-x1000 API. These codes are
5 * also used by host-side tools, so we define them here to avoid polluting
6 * the namespace with useless X1000 APIs. */
7#define NANDERR_CHIP_UNSUPPORTED (-1)
8#define NANDERR_WRITE_PROTECTED (-2)
9#define NANDERR_UNALIGNED_ADDRESS (-3)
10#define NANDERR_UNALIGNED_LENGTH (-4)
11#define NANDERR_READ_FAILED (-5)
12#define NANDERR_ECC_FAILED (-6)
13#define NANDERR_ERASE_FAILED (-7)
14#define NANDERR_PROGRAM_FAILED (-8)
15#define NANDERR_COMMAND_FAILED (-9)
16#define NANDERR_OTHER (-99)
17
18/* TEMPORARY -- compatibility hack for jztool's sake.
19 * This will go away once the new bootloader gets merged */
20#define NAND_SUCCESS 0
21#define NAND_ERR_UNKNOWN_CHIP NANDERR_CHIP_UNSUPPORTED
22#define NAND_ERR_UNALIGNED NANDERR_UNALIGNED_ADDRESS
23#define NAND_ERR_WRITE_PROTECT NANDERR_WRITE_PROTECTED
24#define NAND_ERR_CONTROLLER NANDERR_OTHER
25#define NAND_ERR_COMMAND NANDERR_COMMAND_FAILED
26
27#endif /* __NAND_X1000_ERR_H__ */