flash.h 6.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156
  1. /*
  2. * (C) Copyright 2000
  3. * Murray Jensen, CSIRO-MIT, <Murray.Jensen@csiro.au>
  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. /*************** DEFINES for Intel StrataFlash FLASH chip ********************/
  24. /* Commands */
  25. #define ISF_CMD_RST 0xFF /* reset flash */
  26. #define ISF_CMD_RD_ID 0x90 /* read the id and lock bits */
  27. #define ISF_CMD_RD_QUERY 0x98 /* read device capabilities */
  28. #define ISF_CMD_RD_STAT 0x70 /* read the status register */
  29. #define ISF_CMD_CLR_STAT 0x50 /* clear the staus register */
  30. #define ISF_CMD_WR_BUF 0xE8 /* clear the staus register */
  31. #define ISF_CMD_PROG 0x40 /* program word command */
  32. #define ISF_CMD_ERASE1 0x20 /* 1st word for block erase */
  33. #define ISF_CMD_ERASE2 0xD0 /* 2nd word for block erase */
  34. #define ISF_CMD_ERASE_SUSP 0xB0 /* suspend block erase */
  35. #define ISF_CMD_LOCK 0x60 /* 1st word for all lock cmds */
  36. #define ISF_CMD_SET_LOCK_BLK 0x01 /* 2nd wrd set block lock bit */
  37. #define ISF_CMD_SET_LOCK_MSTR 0xF1 /* 2nd wrd set master lck bit */
  38. #define ISF_CMD_CLR_LOCK_BLK 0xD0 /* 2nd wrd clear blk lck bit */
  39. /* status register bits */
  40. #define ISF_STAT_DPS 0x02 /* Device Protect Status */
  41. #define ISF_STAT_VPPS 0x08 /* VPP Status */
  42. #define ISF_STAT_PSLBS 0x10 /* Program+Set Lock Bit Stat */
  43. #define ISF_STAT_ECLBS 0x20 /* Erase+Clr Lock Bit Stat */
  44. #define ISF_STAT_ESS 0x40 /* Erase Suspend Status */
  45. #define ISF_STAT_RDY 0x80 /* WSM Mach Status, 1=rdy */
  46. #define ISF_STAT_ERR (ISF_STAT_VPPS | ISF_STAT_DPS | \
  47. ISF_STAT_ECLBS | ISF_STAT_PSLBS)
  48. /* register addresses, valid only following an ISF_CMD_RD_ID command */
  49. #define ISF_REG_MAN_CODE 0x00 /* manufacturer code */
  50. #define ISF_REG_DEV_CODE 0x01 /* device code */
  51. #define ISF_REG_BLK_LCK 0x02 /* block lock configuration */
  52. #define ISF_REG_MST_LCK 0x03 /* master lock configuration */
  53. /********************** DEFINES for Hymod Flash ******************************/
  54. /*
  55. * this code requires that the flash on any Hymod board appear as a bank
  56. * of two (identical) 16bit Intel StrataFlash chips with 64Kword erase
  57. * sectors (or blocks), running in x16 bit mode and connected side-by-side
  58. * to make a 32-bit wide bus.
  59. */
  60. typedef unsigned long bank_word_t;
  61. typedef bank_word_t bank_blk_t[64 * 1024];
  62. #define BANK_FILL_WORD(b) (((bank_word_t)(b) << 16) | (bank_word_t)(b))
  63. #ifdef EXAMPLE
  64. /* theoretically the following examples should also work */
  65. /* one flash chip in x8 mode with 128Kword sectors and 8bit bus */
  66. typedef unsigned char bank_word_t;
  67. typedef bank_word_t bank_blk_t[128 * 1024];
  68. #define BANK_FILL_WORD(b) ((bank_word_t)(b))
  69. /* four flash chips in x16 mode with 32Kword sectors and 64bit bus */
  70. typedef unsigned long long bank_word_t;
  71. typedef bank_word_t bank_blk_t[32 * 1024];
  72. #define BANK_FILL_WORD(b) ( \
  73. ((bank_word_t)(b) << 48) \
  74. ((bank_word_t)(b) << 32) \
  75. ((bank_word_t)(b) << 16) \
  76. ((bank_word_t)(b) << 0) \
  77. )
  78. #endif /* EXAMPLE */
  79. /* the sizes of these two types should probably be the same */
  80. typedef volatile bank_word_t *bank_addr_t;
  81. typedef unsigned long bank_size_t;
  82. /* align bank addresses and sizes to bank word boundaries */
  83. #define BANK_ADDR_WORD_ALIGN(a) ((bank_addr_t)((bank_size_t)(a) \
  84. & ~(sizeof (bank_word_t) - 1)))
  85. #define BANK_SIZE_WORD_ALIGN(s) (((bank_size_t)(s) + sizeof (bank_word_t) - 1) \
  86. & ~(sizeof (bank_word_t) - 1))
  87. /* align bank addresses and sizes to bank block boundaries */
  88. #define BANK_ADDR_BLK_ALIGN(a) ((bank_addr_t)((bank_size_t)(a) \
  89. & ~(sizeof (bank_blk_t) - 1)))
  90. #define BANK_SIZE_BLK_ALIGN(s) (((bank_size_t)(s) + sizeof (bank_blk_t) - 1) \
  91. & ~(sizeof (bank_blk_t) - 1))
  92. /* add an offset to a bank address */
  93. #define BANK_ADDR_OFFSET(a, o) ((bank_addr_t)((bank_size_t)(a) + \
  94. (bank_size_t)(o)))
  95. /* adjust a bank address to start of next word, block or bank */
  96. #define BANK_ADDR_NEXT_WORD(a) BANK_ADDR_OFFSET(BANK_ADDR_WORD_ALIGN(a), \
  97. sizeof (bank_word_t))
  98. #define BANK_ADDR_NEXT_BLK(a) BANK_ADDR_OFFSET(BANK_ADDR_BLK_ALIGN(a), \
  99. sizeof (bank_blk_t))
  100. /* get bank address of register r given a bank base address a and block num b */
  101. #define BANK_ADDR_REG(a, b, r) BANK_ADDR_OFFSET(BANK_ADDR_OFFSET((a), \
  102. (bank_size_t)(b) * sizeof (bank_blk_t)), \
  103. (bank_size_t)(r) * sizeof (bank_word_t))
  104. /* make a bank word value for each StrataFlash value */
  105. /* Commands */
  106. #define BANK_CMD_RST BANK_FILL_WORD(ISF_CMD_RST)
  107. #define BANK_CMD_RD_ID BANK_FILL_WORD(ISF_CMD_RD_ID)
  108. #define BANK_CMD_RD_STAT BANK_FILL_WORD(ISF_CMD_RD_STAT)
  109. #define BANK_CMD_CLR_STAT BANK_FILL_WORD(ISF_CMD_CLR_STAT)
  110. #define BANK_CMD_ERASE1 BANK_FILL_WORD(ISF_CMD_ERASE1)
  111. #define BANK_CMD_ERASE2 BANK_FILL_WORD(ISF_CMD_ERASE2)
  112. #define BANK_CMD_PROG BANK_FILL_WORD(ISF_CMD_PROG)
  113. #define BANK_CMD_LOCK BANK_FILL_WORD(ISF_CMD_LOCK)
  114. #define BANK_CMD_SET_LOCK_BLK BANK_FILL_WORD(ISF_CMD_SET_LOCK_BLK)
  115. #define BANK_CMD_SET_LOCK_MSTR BANK_FILL_WORD(ISF_CMD_SET_LOCK_MSTR)
  116. #define BANK_CMD_CLR_LOCK_BLK BANK_FILL_WORD(ISF_CMD_CLR_LOCK_BLK)
  117. /* status register bits */
  118. #define BANK_STAT_DPS BANK_FILL_WORD(ISF_STAT_DPS)
  119. #define BANK_STAT_PSS BANK_FILL_WORD(ISF_STAT_PSS)
  120. #define BANK_STAT_VPPS BANK_FILL_WORD(ISF_STAT_VPPS)
  121. #define BANK_STAT_PSLBS BANK_FILL_WORD(ISF_STAT_PSLBS)
  122. #define BANK_STAT_ECLBS BANK_FILL_WORD(ISF_STAT_ECLBS)
  123. #define BANK_STAT_ESS BANK_FILL_WORD(ISF_STAT_ESS)
  124. #define BANK_STAT_RDY BANK_FILL_WORD(ISF_STAT_RDY)
  125. #define BANK_STAT_ERR BANK_FILL_WORD(ISF_STAT_ERR)
  126. /* make a bank register address for each StrataFlash register address */
  127. #define BANK_REG_MAN_CODE(a) BANK_ADDR_REG((a), 0, ISF_REG_MAN_CODE)
  128. #define BANK_REG_DEV_CODE(a) BANK_ADDR_REG((a), 0, ISF_REG_DEV_CODE)
  129. #define BANK_REG_BLK_LCK(a, b) BANK_ADDR_REG((a), (b), ISF_REG_BLK_LCK)
  130. #define BANK_REG_MST_LCK(a) BANK_ADDR_REG((a), 0, ISF_REG_MST_LCK)