cfi_flash.h 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188
  1. /*
  2. * (C) Copyright 2009
  3. * Stefan Roese, DENX Software Engineering, sr@denx.de.
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  21. * MA 02111-1307 USA
  22. *
  23. */
  24. #ifndef __CFI_FLASH_H__
  25. #define __CFI_FLASH_H__
  26. #define FLASH_CMD_CFI 0x98
  27. #define FLASH_CMD_READ_ID 0x90
  28. #define FLASH_CMD_RESET 0xff
  29. #define FLASH_CMD_BLOCK_ERASE 0x20
  30. #define FLASH_CMD_ERASE_CONFIRM 0xD0
  31. #define FLASH_CMD_WRITE 0x40
  32. #define FLASH_CMD_PROTECT 0x60
  33. #define FLASH_CMD_SETUP 0x60
  34. #define FLASH_CMD_SET_CR_CONFIRM 0x03
  35. #define FLASH_CMD_PROTECT_SET 0x01
  36. #define FLASH_CMD_PROTECT_CLEAR 0xD0
  37. #define FLASH_CMD_CLEAR_STATUS 0x50
  38. #define FLASH_CMD_READ_STATUS 0x70
  39. #define FLASH_CMD_WRITE_TO_BUFFER 0xE8
  40. #define FLASH_CMD_WRITE_BUFFER_PROG 0xE9
  41. #define FLASH_CMD_WRITE_BUFFER_CONFIRM 0xD0
  42. #define FLASH_STATUS_DONE 0x80
  43. #define FLASH_STATUS_ESS 0x40
  44. #define FLASH_STATUS_ECLBS 0x20
  45. #define FLASH_STATUS_PSLBS 0x10
  46. #define FLASH_STATUS_VPENS 0x08
  47. #define FLASH_STATUS_PSS 0x04
  48. #define FLASH_STATUS_DPS 0x02
  49. #define FLASH_STATUS_R 0x01
  50. #define FLASH_STATUS_PROTECT 0x01
  51. #define AMD_CMD_RESET 0xF0
  52. #define AMD_CMD_WRITE 0xA0
  53. #define AMD_CMD_ERASE_START 0x80
  54. #define AMD_CMD_ERASE_SECTOR 0x30
  55. #define AMD_CMD_UNLOCK_START 0xAA
  56. #define AMD_CMD_UNLOCK_ACK 0x55
  57. #define AMD_CMD_WRITE_TO_BUFFER 0x25
  58. #define AMD_CMD_WRITE_BUFFER_CONFIRM 0x29
  59. #define AMD_CMD_SET_PPB_ENTRY 0xC0
  60. #define AMD_CMD_SET_PPB_EXIT_BC1 0x90
  61. #define AMD_CMD_SET_PPB_EXIT_BC2 0x00
  62. #define AMD_CMD_PPB_UNLOCK_BC1 0x80
  63. #define AMD_CMD_PPB_UNLOCK_BC2 0x30
  64. #define AMD_CMD_PPB_LOCK_BC1 0xA0
  65. #define AMD_CMD_PPB_LOCK_BC2 0x00
  66. #define AMD_STATUS_TOGGLE 0x40
  67. #define AMD_STATUS_ERROR 0x20
  68. #define ATM_CMD_UNLOCK_SECT 0x70
  69. #define ATM_CMD_SOFTLOCK_START 0x80
  70. #define ATM_CMD_LOCK_SECT 0x40
  71. #define FLASH_CONTINUATION_CODE 0x7F
  72. #define FLASH_OFFSET_MANUFACTURER_ID 0x00
  73. #define FLASH_OFFSET_DEVICE_ID 0x01
  74. #define FLASH_OFFSET_DEVICE_ID2 0x0E
  75. #define FLASH_OFFSET_DEVICE_ID3 0x0F
  76. #define FLASH_OFFSET_CFI 0x55
  77. #define FLASH_OFFSET_CFI_ALT 0x555
  78. #define FLASH_OFFSET_CFI_RESP 0x10
  79. #define FLASH_OFFSET_PRIMARY_VENDOR 0x13
  80. /* extended query table primary address */
  81. #define FLASH_OFFSET_EXT_QUERY_T_P_ADDR 0x15
  82. #define FLASH_OFFSET_WTOUT 0x1F
  83. #define FLASH_OFFSET_WBTOUT 0x20
  84. #define FLASH_OFFSET_ETOUT 0x21
  85. #define FLASH_OFFSET_CETOUT 0x22
  86. #define FLASH_OFFSET_WMAX_TOUT 0x23
  87. #define FLASH_OFFSET_WBMAX_TOUT 0x24
  88. #define FLASH_OFFSET_EMAX_TOUT 0x25
  89. #define FLASH_OFFSET_CEMAX_TOUT 0x26
  90. #define FLASH_OFFSET_SIZE 0x27
  91. #define FLASH_OFFSET_INTERFACE 0x28
  92. #define FLASH_OFFSET_BUFFER_SIZE 0x2A
  93. #define FLASH_OFFSET_NUM_ERASE_REGIONS 0x2C
  94. #define FLASH_OFFSET_ERASE_REGIONS 0x2D
  95. #define FLASH_OFFSET_PROTECT 0x02
  96. #define FLASH_OFFSET_USER_PROTECTION 0x85
  97. #define FLASH_OFFSET_INTEL_PROTECTION 0x81
  98. #define CFI_CMDSET_NONE 0
  99. #define CFI_CMDSET_INTEL_EXTENDED 1
  100. #define CFI_CMDSET_AMD_STANDARD 2
  101. #define CFI_CMDSET_INTEL_STANDARD 3
  102. #define CFI_CMDSET_AMD_EXTENDED 4
  103. #define CFI_CMDSET_MITSU_STANDARD 256
  104. #define CFI_CMDSET_MITSU_EXTENDED 257
  105. #define CFI_CMDSET_SST 258
  106. #define CFI_CMDSET_INTEL_PROG_REGIONS 512
  107. #ifdef CONFIG_SYS_FLASH_CFI_AMD_RESET /* needed for STM_ID_29W320DB on UC100 */
  108. # undef FLASH_CMD_RESET
  109. # define FLASH_CMD_RESET AMD_CMD_RESET /* use AMD-Reset instead */
  110. #endif
  111. #define NUM_ERASE_REGIONS 4 /* max. number of erase regions */
  112. typedef union {
  113. unsigned char c;
  114. unsigned short w;
  115. unsigned long l;
  116. unsigned long long ll;
  117. } cfiword_t;
  118. /* CFI standard query structure */
  119. /* The offsets and sizes of this packed structure members correspond
  120. * to the actual layout in CFI Flash chips. Some 16- and 32-bit members
  121. * are unaligned and must be accessed with explicit unaligned access macros.
  122. */
  123. struct cfi_qry {
  124. u8 qry[3];
  125. u16 p_id; /* unaligned */
  126. u16 p_adr; /* unaligned */
  127. u16 a_id; /* unaligned */
  128. u16 a_adr; /* unaligned */
  129. u8 vcc_min;
  130. u8 vcc_max;
  131. u8 vpp_min;
  132. u8 vpp_max;
  133. u8 word_write_timeout_typ;
  134. u8 buf_write_timeout_typ;
  135. u8 block_erase_timeout_typ;
  136. u8 chip_erase_timeout_typ;
  137. u8 word_write_timeout_max;
  138. u8 buf_write_timeout_max;
  139. u8 block_erase_timeout_max;
  140. u8 chip_erase_timeout_max;
  141. u8 dev_size;
  142. u16 interface_desc; /* aligned */
  143. u16 max_buf_write_size; /* aligned */
  144. u8 num_erase_regions;
  145. u32 erase_region_info[NUM_ERASE_REGIONS]; /* unaligned */
  146. } __attribute__((packed));
  147. struct cfi_pri_hdr {
  148. u8 pri[3];
  149. u8 major_version;
  150. u8 minor_version;
  151. } __attribute__((packed));
  152. #ifndef CONFIG_SYS_FLASH_BANKS_LIST
  153. #define CONFIG_SYS_FLASH_BANKS_LIST { CONFIG_SYS_FLASH_BASE }
  154. #endif
  155. /*
  156. * CFI_MAX_FLASH_BANKS only used for flash_info struct declaration.
  157. *
  158. * Use CONFIG_SYS_MAX_FLASH_BANKS_DETECT if defined
  159. */
  160. #if defined(CONFIG_SYS_MAX_FLASH_BANKS_DETECT)
  161. #define CONFIG_SYS_MAX_FLASH_BANKS (cfi_flash_num_flash_banks)
  162. #define CFI_MAX_FLASH_BANKS CONFIG_SYS_MAX_FLASH_BANKS_DETECT
  163. /* board code can update this variable before CFI detection */
  164. extern int cfi_flash_num_flash_banks;
  165. #else
  166. #define CFI_MAX_FLASH_BANKS CONFIG_SYS_MAX_FLASH_BANKS
  167. #endif
  168. void flash_write_cmd(flash_info_t * info, flash_sect_t sect,
  169. uint offset, u32 cmd);
  170. #endif /* __CFI_FLASH_H__ */