2 * PKUnity NAND Controller Registers
7 #define NAND_IDR0 (PKUNITY_NAND_BASE + 0x0000)
11 #define NAND_IDR1 (PKUNITY_NAND_BASE + 0x0004)
15 #define NAND_IDR2 (PKUNITY_NAND_BASE + 0x0008)
19 #define NAND_IDR3 (PKUNITY_NAND_BASE + 0x000C)
21 * Page Address Reg 0 NAND_PAR0
23 #define NAND_PAR0 (PKUNITY_NAND_BASE + 0x0010)
25 * Page Address Reg 1 NAND_PAR1
27 #define NAND_PAR1 (PKUNITY_NAND_BASE + 0x0014)
29 * Page Address Reg 2 NAND_PAR2
31 #define NAND_PAR2 (PKUNITY_NAND_BASE + 0x0018)
33 * ECC Enable Reg NAND_ECCEN
35 #define NAND_ECCEN (PKUNITY_NAND_BASE + 0x001C)
39 #define NAND_BUF (PKUNITY_NAND_BASE + 0x0020)
41 * ECC Status Reg NAND_ECCSR
43 #define NAND_ECCSR (PKUNITY_NAND_BASE + 0x0024)
45 * Command Reg NAND_CMD
47 #define NAND_CMD (PKUNITY_NAND_BASE + 0x0028)
49 * DMA Configure Reg NAND_DMACR
51 #define NAND_DMACR (PKUNITY_NAND_BASE + 0x002C)
53 * Interrupt Reg NAND_IR
55 #define NAND_IR (PKUNITY_NAND_BASE + 0x0030)
57 * Interrupt Mask Reg NAND_IMR
59 #define NAND_IMR (PKUNITY_NAND_BASE + 0x0034)
61 * Chip Enable Reg NAND_CHIPEN
63 #define NAND_CHIPEN (PKUNITY_NAND_BASE + 0x0038)
65 * Address Reg NAND_ADDR
67 #define NAND_ADDR (PKUNITY_NAND_BASE + 0x003C)
70 * Command bits NAND_CMD_CMD_MASK
72 #define NAND_CMD_CMD_MASK FMASK(4, 4)
73 #define NAND_CMD_CMD_READPAGE FIELD(0x0, 4, 4)
74 #define NAND_CMD_CMD_ERASEBLOCK FIELD(0x6, 4, 4)
75 #define NAND_CMD_CMD_READSTATUS FIELD(0x7, 4, 4)
76 #define NAND_CMD_CMD_WRITEPAGE FIELD(0x8, 4, 4)
77 #define NAND_CMD_CMD_READID FIELD(0x9, 4, 4)
78 #define NAND_CMD_CMD_RESET FIELD(0xf, 4, 4)