mxc_nand.h 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209
  1. /*
  2. * (c) 2009 Magnus Lilja <lilja.magnus@gmail.com>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #ifndef __MXC_NAND_H
  7. #define __MXC_NAND_H
  8. /*
  9. * Register map and bit definitions for the Freescale NAND Flash Controller
  10. * present in various i.MX devices.
  11. *
  12. * MX31 and MX27 have version 1, which has:
  13. * 4 512-byte main buffers and
  14. * 4 16-byte spare buffers
  15. * to support up to 2K byte pagesize nand.
  16. * Reading or writing a 2K page requires 4 FDI/FDO cycles.
  17. *
  18. * MX25 and MX35 have version 2.1, and MX51 and MX53 have version 3.2, which
  19. * have:
  20. * 8 512-byte main buffers and
  21. * 8 64-byte spare buffers
  22. * to support up to 4K byte pagesize nand.
  23. * Reading or writing a 2K or 4K page requires only 1 FDI/FDO cycle.
  24. * Also some of registers are moved and/or changed meaning as seen below.
  25. */
  26. #if defined(CONFIG_MX27) || defined(CONFIG_MX31)
  27. #define MXC_NFC_V1
  28. #define is_mxc_nfc_1() 1
  29. #define is_mxc_nfc_21() 0
  30. #define is_mxc_nfc_32() 0
  31. #elif defined(CONFIG_MX25) || defined(CONFIG_MX35)
  32. #define MXC_NFC_V2_1
  33. #define is_mxc_nfc_1() 0
  34. #define is_mxc_nfc_21() 1
  35. #define is_mxc_nfc_32() 0
  36. #elif defined(CONFIG_MX51) || defined(CONFIG_MX53)
  37. #define MXC_NFC_V3
  38. #define MXC_NFC_V3_2
  39. #define is_mxc_nfc_1() 0
  40. #define is_mxc_nfc_21() 0
  41. #define is_mxc_nfc_32() 1
  42. #else
  43. #error "MXC NFC implementation not supported"
  44. #endif
  45. #define is_mxc_nfc_3() is_mxc_nfc_32()
  46. #if defined(MXC_NFC_V1)
  47. #define NAND_MXC_NR_BUFS 4
  48. #define NAND_MXC_SPARE_BUF_SIZE 16
  49. #define NAND_MXC_REG_OFFSET 0xe00
  50. #define NAND_MXC_2K_MULTI_CYCLE
  51. #elif defined(MXC_NFC_V2_1) || defined(MXC_NFC_V3_2)
  52. #define NAND_MXC_NR_BUFS 8
  53. #define NAND_MXC_SPARE_BUF_SIZE 64
  54. #define NAND_MXC_REG_OFFSET 0x1e00
  55. #endif
  56. struct mxc_nand_regs {
  57. u8 main_area[NAND_MXC_NR_BUFS][0x200];
  58. u8 spare_area[NAND_MXC_NR_BUFS][NAND_MXC_SPARE_BUF_SIZE];
  59. /*
  60. * reserved size is offset of nfc registers
  61. * minus total main and spare sizes
  62. */
  63. u8 reserved1[NAND_MXC_REG_OFFSET
  64. - NAND_MXC_NR_BUFS * (512 + NAND_MXC_SPARE_BUF_SIZE)];
  65. #if defined(MXC_NFC_V1)
  66. u16 buf_size;
  67. u16 reserved2;
  68. u16 buf_addr;
  69. u16 flash_addr;
  70. u16 flash_cmd;
  71. u16 config;
  72. u16 ecc_status_result;
  73. u16 rsltmain_area;
  74. u16 rsltspare_area;
  75. u16 wrprot;
  76. u16 unlockstart_blkaddr;
  77. u16 unlockend_blkaddr;
  78. u16 nf_wrprst;
  79. u16 config1;
  80. u16 config2;
  81. #elif defined(MXC_NFC_V2_1)
  82. u16 reserved2[2];
  83. u16 buf_addr;
  84. u16 flash_addr;
  85. u16 flash_cmd;
  86. u16 config;
  87. u32 ecc_status_result;
  88. u16 spare_area_size;
  89. u16 wrprot;
  90. u16 reserved3[2];
  91. u16 nf_wrprst;
  92. u16 config1;
  93. u16 config2;
  94. u16 reserved4;
  95. u16 unlockstart_blkaddr;
  96. u16 unlockend_blkaddr;
  97. u16 unlockstart_blkaddr1;
  98. u16 unlockend_blkaddr1;
  99. u16 unlockstart_blkaddr2;
  100. u16 unlockend_blkaddr2;
  101. u16 unlockstart_blkaddr3;
  102. u16 unlockend_blkaddr3;
  103. #elif defined(MXC_NFC_V3_2)
  104. u32 flash_cmd;
  105. u32 flash_addr[12];
  106. u32 config1;
  107. u32 ecc_status_result;
  108. u32 status_sum;
  109. u32 launch;
  110. #endif
  111. };
  112. #ifdef MXC_NFC_V3_2
  113. struct mxc_nand_ip_regs {
  114. u32 wrprot;
  115. u32 wrprot_unlock_blkaddr[8];
  116. u32 config2;
  117. u32 config3;
  118. u32 ipc;
  119. u32 err_addr;
  120. u32 delay_line;
  121. };
  122. #endif
  123. /* Set FCMD to 1, rest to 0 for Command operation */
  124. #define NFC_CMD 0x1
  125. /* Set FADD to 1, rest to 0 for Address operation */
  126. #define NFC_ADDR 0x2
  127. /* Set FDI to 1, rest to 0 for Input operation */
  128. #define NFC_INPUT 0x4
  129. /* Set FDO to 001, rest to 0 for Data Output operation */
  130. #define NFC_OUTPUT 0x8
  131. /* Set FDO to 010, rest to 0 for Read ID operation */
  132. #define NFC_ID 0x10
  133. /* Set FDO to 100, rest to 0 for Read Status operation */
  134. #define NFC_STATUS 0x20
  135. #if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
  136. #define NFC_CONFIG1_SP_EN (1 << 2)
  137. #define NFC_CONFIG1_RST (1 << 6)
  138. #define NFC_CONFIG1_CE (1 << 7)
  139. #elif defined(MXC_NFC_V3_2)
  140. #define NFC_CONFIG1_SP_EN (1 << 0)
  141. #define NFC_CONFIG1_CE (1 << 1)
  142. #define NFC_CONFIG1_RST (1 << 2)
  143. #endif
  144. #define NFC_V1_V2_CONFIG1_ECC_EN (1 << 3)
  145. #define NFC_V1_V2_CONFIG1_INT_MSK (1 << 4)
  146. #define NFC_V1_V2_CONFIG1_BIG (1 << 5)
  147. #define NFC_V2_CONFIG1_ECC_MODE_4 (1 << 0)
  148. #define NFC_V2_CONFIG1_ONE_CYCLE (1 << 8)
  149. #define NFC_V2_CONFIG1_FP_INT (1 << 11)
  150. #define NFC_V3_CONFIG1_RBA_MASK (0x7 << 4)
  151. #define NFC_V3_CONFIG1_RBA(x) (((x) & 0x7) << 4)
  152. #define NFC_V1_V2_CONFIG2_INT (1 << 15)
  153. #define NFC_V3_CONFIG2_PS_MASK (0x3 << 0)
  154. #define NFC_V3_CONFIG2_PS_512 (0 << 0)
  155. #define NFC_V3_CONFIG2_PS_2048 (1 << 0)
  156. #define NFC_V3_CONFIG2_PS_4096 (2 << 0)
  157. #define NFC_V3_CONFIG2_ONE_CYCLE (1 << 2)
  158. #define NFC_V3_CONFIG2_ECC_EN (1 << 3)
  159. #define NFC_V3_CONFIG2_2CMD_PHASES (1 << 4)
  160. #define NFC_V3_CONFIG2_NUM_ADDR_PH0 (1 << 5)
  161. #define NFC_V3_CONFIG2_ECC_MODE_8 (1 << 6)
  162. #define NFC_V3_CONFIG2_PPB_MASK (0x3 << 7)
  163. #define NFC_V3_CONFIG2_PPB(x) (((x) & 0x3) << 7)
  164. #define NFC_V3_CONFIG2_EDC_MASK (0x7 << 9)
  165. #define NFC_V3_CONFIG2_EDC(x) (((x) & 0x7) << 9)
  166. #define NFC_V3_CONFIG2_NUM_ADDR_PH1(x) (((x) & 0x3) << 12)
  167. #define NFC_V3_CONFIG2_INT_MSK (1 << 15)
  168. #define NFC_V3_CONFIG2_SPAS_MASK (0xff << 16)
  169. #define NFC_V3_CONFIG2_SPAS(x) (((x) & 0xff) << 16)
  170. #define NFC_V3_CONFIG2_ST_CMD_MASK (0xff << 24)
  171. #define NFC_V3_CONFIG2_ST_CMD(x) (((x) & 0xff) << 24)
  172. #define NFC_V3_CONFIG3_ADD_OP(x) (((x) & 0x3) << 0)
  173. #define NFC_V3_CONFIG3_FW8 (1 << 3)
  174. #define NFC_V3_CONFIG3_SBB(x) (((x) & 0x7) << 8)
  175. #define NFC_V3_CONFIG3_NUM_OF_DEVS(x) (((x) & 0x7) << 12)
  176. #define NFC_V3_CONFIG3_RBB_MODE (1 << 15)
  177. #define NFC_V3_CONFIG3_NO_SDMA (1 << 20)
  178. #define NFC_V3_WRPROT_UNLOCK (1 << 2)
  179. #define NFC_V3_WRPROT_BLS_UNLOCK (2 << 6)
  180. #define NFC_V3_IPC_CREQ (1 << 0)
  181. #define NFC_V3_IPC_INT (1 << 31)
  182. #if defined(MXC_NFC_V1) || defined(MXC_NFC_V2_1)
  183. #define operation config2
  184. #define readnfc readw
  185. #define writenfc writew
  186. #elif defined(MXC_NFC_V3_2)
  187. #define operation launch
  188. #define readnfc readl
  189. #define writenfc writel
  190. #endif
  191. #endif /* __MXC_NAND_H */