You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

215 lines
8.7 KiB

  1. /***************************************************************************
  2. * Copyright (C) 2005 by Dominic Rath <Dominic.Rath@gmx.de> *
  3. * Copyright (C) 2007,2008 Øyvind Harboe <oyvind.harboe@zylin.com> *
  4. * Copyright (C) 2008 by Spencer Oliver <spen@spen-soft.co.uk> *
  5. * Copyright (C) 2009 Zachary T Welch <zw@superlucidity.net> *
  6. * Copyright (C) 2010 by Antonio Borneo <borneo.antonio@gmail.com> *
  7. * *
  8. * This program is free software; you can redistribute it and/or modify *
  9. * it under the terms of the GNU General Public License as published by *
  10. * the Free Software Foundation; either version 2 of the License, or *
  11. * (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 *
  20. * Free Software Foundation, Inc., *
  21. * 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA. *
  22. ***************************************************************************/
  23. #ifndef FLASH_NOR_CORE_H
  24. #define FLASH_NOR_CORE_H
  25. #include <flash/common.h>
  26. /**
  27. * @file
  28. * Upper level NOR flash interfaces.
  29. */
  30. struct image;
  31. #define FLASH_MAX_ERROR_STR (128)
  32. /**
  33. * Describes the geometry and status of a single flash sector
  34. * within a flash bank. A single bank typically consists of multiple
  35. * sectors, each of which can be erased and protected independently.
  36. */
  37. struct flash_sector
  38. {
  39. /// Bus offset from start of the flash chip (in bytes).
  40. uint32_t offset;
  41. /// Number of bytes in this flash sector.
  42. uint32_t size;
  43. /**
  44. * Indication of erasure status: 0 = not erased, 1 = erased,
  45. * other = unknown. Set by @c flash_driver_s::erase_check.
  46. */
  47. int is_erased;
  48. /**
  49. * Indication of protection status: 0 = unprotected/unlocked,
  50. * 1 = protected/locked, other = unknown. Set by
  51. * @c flash_driver_s::protect_check.
  52. *
  53. * This information must be considered stale immediately.
  54. * A million things could make it stale: power cycle,
  55. * reset of target, code running on target, etc.
  56. */
  57. int is_protected;
  58. };
  59. /**
  60. * Provides details of a flash bank, available either on-chip or through
  61. * a major interface.
  62. *
  63. * This structure will be passed as a parameter to the callbacks in the
  64. * flash_driver_s structure, some of which may modify the contents of
  65. * this structure of the area of flash that it defines. Driver writers
  66. * may use the @c driver_priv member to store additional data on a
  67. * per-bank basis, if required.
  68. */
  69. struct flash_bank
  70. {
  71. char *name;
  72. struct target *target; /**< Target to which this bank belongs. */
  73. struct flash_driver *driver; /**< Driver for this bank. */
  74. void *driver_priv; /**< Private driver storage pointer */
  75. int bank_number; /**< The 'bank' (or chip number) of this instance. */
  76. uint32_t base; /**< The base address of this bank */
  77. uint32_t size; /**< The size of this chip bank, in bytes */
  78. int chip_width; /**< Width of the chip in bytes (1,2,4 bytes) */
  79. int bus_width; /**< Maximum bus width, in bytes (1,2,4 bytes) */
  80. /**
  81. * The number of sectors on this chip. This value will
  82. * be set intially to 0, and the flash driver must set this to
  83. * some non-zero value during "probe()" or "auto_probe()".
  84. */
  85. int num_sectors;
  86. /// Array of sectors, allocated and initilized by the flash driver
  87. struct flash_sector *sectors;
  88. struct flash_bank *next; /**< The next flash bank on this chip */
  89. };
  90. /// Registers the 'flash' subsystem commands
  91. int flash_register_commands(struct command_context *cmd_ctx);
  92. /**
  93. * Erases @a length bytes in the @a target flash, starting at @a addr.
  94. * The range @a addr to @a addr + @a length - 1 must be strictly
  95. * sector aligned, unless @a pad is true. Setting @a pad true extends
  96. * the range, at beginning and/or end, if needed for sector alignment.
  97. * @returns ERROR_OK if successful; otherwise, an error code.
  98. */
  99. int flash_erase_address_range(struct target *target,
  100. bool pad, uint32_t addr, uint32_t length);
  101. int flash_unlock_address_range(struct target *target, uint32_t addr,
  102. uint32_t length);
  103. /**
  104. * Writes @a image into the @a target flash. The @a written parameter
  105. * will contain the
  106. * @param target The target with the flash to be programmed.
  107. * @param image The image that will be programmed to flash.
  108. * @param written On return, contains the number of bytes written.
  109. * @param erase If non-zero, indicates the flash driver should first
  110. * erase the corresponding banks or sectors before programming.
  111. * @returns ERROR_OK if successful; otherwise, an error code.
  112. */
  113. int flash_write(struct target *target,
  114. struct image *image, uint32_t *written, int erase);
  115. /**
  116. * Forces targets to re-examine their erase/protection state.
  117. * This routine must be called when the system may modify the status.
  118. */
  119. void flash_set_dirty(void);
  120. /// @returns The number of flash banks currently defined.
  121. int flash_get_bank_count(void);
  122. /**
  123. * Provides default read implementation for flash memory.
  124. * @param bank The bank to read.
  125. * @param buffer The data bytes read.
  126. * @param offset The offset into the chip to read.
  127. * @param count The number of bytes to read.
  128. * @returns ERROR_OK if successful; otherwise, an error code.
  129. */
  130. int default_flash_read(struct flash_bank *bank,
  131. uint8_t *buffer, uint32_t offset, uint32_t count);
  132. /**
  133. * Provides default erased-bank check handling. Checks to see if
  134. * the flash driver knows they are erased; if things look uncertain,
  135. * this routine will call default_flash_mem_blank_check() to confirm.
  136. * @returns ERROR_OK if successful; otherwise, an error code.
  137. */
  138. int default_flash_blank_check(struct flash_bank *bank);
  139. /**
  140. * Provides a default blank flash memory check. Ensures the contents
  141. * of the given bank have truly been erased.
  142. * @param bank The flash bank.
  143. * @returns ERROR_OK if successful; otherwise, an error code.
  144. */
  145. int default_flash_mem_blank_check(struct flash_bank *bank);
  146. /**
  147. * Returns the flash bank specified by @a name, which matches the
  148. * driver name and a suffix (option) specify the driver-specific
  149. * bank number. The suffix consists of the '.' and the driver-specific
  150. * bank number: when two str9x banks are defined, then 'str9x.1' refers
  151. * to the second.
  152. */
  153. int get_flash_bank_by_name(const char *name, struct flash_bank **bank_result);
  154. /**
  155. * Returns the flash bank specified by @a name, which matches the
  156. * driver name and a suffix (option) specify the driver-specific
  157. * bank number. The suffix consists of the '.' and the driver-specific
  158. * bank number: when two str9x banks are defined, then 'str9x.1' refers
  159. * to the second.
  160. */
  161. struct flash_bank *get_flash_bank_by_name_noprobe(const char *name);
  162. /**
  163. * Returns the flash bank like get_flash_bank_by_name(), without probing.
  164. * @param num The flash bank number.
  165. * @param bank returned bank if fn returns ERROR_OK
  166. * @returns ERROR_OK if successful
  167. */
  168. int get_flash_bank_by_num(int num, struct flash_bank **bank);
  169. /**
  170. * Retreives @a bank from a command argument, reporting errors parsing
  171. * the bank identifier or retreiving the specified bank. The bank
  172. * may be identified by its bank number or by @c name.instance, where
  173. * @a instance is driver-specific.
  174. * @param name_index The index to the string in args containing the
  175. * bank identifier.
  176. * @param bank On output, contians a pointer to the bank or NULL.
  177. * @returns ERROR_OK on success, or an error indicating the problem.
  178. */
  179. COMMAND_HELPER(flash_command_get_bank, unsigned name_index,
  180. struct flash_bank **bank);
  181. /**
  182. * Returns the flash bank like get_flash_bank_by_num(), without probing.
  183. * @param num The flash bank number.
  184. * @returns A struct flash_bank for flash bank @a num, or NULL.
  185. */
  186. struct flash_bank *get_flash_bank_by_num_noprobe(int num);
  187. /**
  188. * Returns the flash bank located at a specified address.
  189. * @param target The target, presumed to contain one or more banks.
  190. * @param addr An address that is within the range of the bank.
  191. * @param check return ERROR_OK and result_bank NULL if the bank does not exist
  192. * @returns The struct flash_bank located at @a addr, or NULL.
  193. */
  194. int get_flash_bank_by_addr(struct target *target, uint32_t addr, bool check, struct flash_bank **result_bank);
  195. #endif // FLASH_NOR_CORE_H