dataflash.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. /*
  2. * (C) Copyright 2003
  3. * Data Flash Atmel Description File
  4. * Author : Hamid Ikdoumi (Atmel)
  5. *
  6. * See file CREDITS for list of people who contributed to this
  7. * project.
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License as
  11. * published by the Free Software Foundation; either version 2 of
  12. * the License, or (at your option) any later version.
  13. *
  14. * This program is distributed in the hope that it will be useful,
  15. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  16. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  17. * GNU General Public License for more details.
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  22. * MA 02111-1307 USA
  23. */
  24. /* File Name : dataflash.h */
  25. /* Object : Data Flash Atmel Description File */
  26. /* Translator : */
  27. /* */
  28. /* 1.0 03/04/01 HI : Creation */
  29. /* 1.2 20/10/02 FB : Adapatation Service and Lib v3 */
  30. /*----------------------------------------------------------------------*/
  31. #ifndef _DataFlash_h
  32. #define _DataFlash_h
  33. #include <asm/arch/hardware.h>
  34. #include "config.h"
  35. /*number of protected area*/
  36. #define NB_DATAFLASH_AREA 4
  37. /*define the area structure*/
  38. typedef struct {
  39. unsigned long start;
  40. unsigned long end;
  41. unsigned char protected;
  42. } dataflash_protect_t;
  43. typedef unsigned int AT91S_DataFlashStatus;
  44. /*----------------------------------------------------------------------*/
  45. /* DataFlash Structures */
  46. /*----------------------------------------------------------------------*/
  47. /*---------------------------------------------*/
  48. /* DataFlash Descriptor Structure Definition */
  49. /*---------------------------------------------*/
  50. typedef struct _AT91S_DataflashDesc {
  51. unsigned char *tx_cmd_pt;
  52. unsigned int tx_cmd_size;
  53. unsigned char *rx_cmd_pt;
  54. unsigned int rx_cmd_size;
  55. unsigned char *tx_data_pt;
  56. unsigned int tx_data_size;
  57. unsigned char *rx_data_pt;
  58. unsigned int rx_data_size;
  59. volatile unsigned char state;
  60. volatile unsigned char DataFlash_state;
  61. unsigned char command[8];
  62. } AT91S_DataflashDesc, *AT91PS_DataflashDesc;
  63. /*---------------------------------------------*/
  64. /* DataFlash device definition structure */
  65. /*---------------------------------------------*/
  66. typedef struct _AT91S_Dataflash {
  67. int pages_number; /* dataflash page number */
  68. int pages_size; /* dataflash page size */
  69. int page_offset; /* page offset in command */
  70. int byte_mask; /* byte mask in command */
  71. int cs;
  72. dataflash_protect_t area_list[NB_DATAFLASH_AREA]; /* area protection status */
  73. } AT91S_DataflashFeatures, *AT91PS_DataflashFeatures;
  74. /*---------------------------------------------*/
  75. /* DataFlash Structure Definition */
  76. /*---------------------------------------------*/
  77. typedef struct _AT91S_DataFlash {
  78. AT91PS_DataflashDesc pDataFlashDesc; /* dataflash descriptor */
  79. AT91PS_DataflashFeatures pDevice; /* Pointer on a dataflash features array */
  80. } AT91S_DataFlash, *AT91PS_DataFlash;
  81. typedef struct _AT91S_DATAFLASH_INFO {
  82. AT91S_DataflashDesc Desc;
  83. AT91S_DataflashFeatures Device; /* Pointer on a dataflash features array */
  84. unsigned long logical_address;
  85. unsigned int id; /* device id */
  86. } AT91S_DATAFLASH_INFO, *AT91PS_DATAFLASH_INFO;
  87. /*-------------------------------------------------------------------------------------------------*/
  88. #define AT45DB161 0x2c
  89. #define AT45DB321 0x34
  90. #define AT45DB642 0x3c
  91. #define AT45DB128 0x10
  92. #define AT91C_DATAFLASH_TIMEOUT 10000 /* For AT91F_DataFlashWaitReady */
  93. /* DataFlash return value */
  94. #define DATAFLASH_BUSY 0x00
  95. #define DATAFLASH_OK 0x01
  96. #define DATAFLASH_ERROR 0x02
  97. #define DATAFLASH_MEMORY_OVERFLOW 0x03
  98. #define DATAFLASH_BAD_COMMAND 0x04
  99. #define DATAFLASH_BAD_ADDRESS 0x05
  100. /* Driver State */
  101. #define IDLE 0x0
  102. #define BUSY 0x1
  103. #define ERROR 0x2
  104. /* DataFlash Driver State */
  105. #define GET_STATUS 0x0F
  106. /*-------------------------------------------------------------------------------------------------*/
  107. /* Command Definition */
  108. /*-------------------------------------------------------------------------------------------------*/
  109. /* READ COMMANDS */
  110. #define DB_CONTINUOUS_ARRAY_READ 0xE8 /* Continuous array read */
  111. #define DB_BURST_ARRAY_READ 0xE8 /* Burst array read */
  112. #define DB_PAGE_READ 0xD2 /* Main memory page read */
  113. #define DB_BUF1_READ 0xD4 /* Buffer 1 read */
  114. #define DB_BUF2_READ 0xD6 /* Buffer 2 read */
  115. #define DB_STATUS 0xD7 /* Status Register */
  116. /* PROGRAM and ERASE COMMANDS */
  117. #define DB_BUF1_WRITE 0x84 /* Buffer 1 write */
  118. #define DB_BUF2_WRITE 0x87 /* Buffer 2 write */
  119. #define DB_BUF1_PAGE_ERASE_PGM 0x83 /* Buffer 1 to main memory page program with built-In erase */
  120. #define DB_BUF1_PAGE_ERASE_FASTPGM 0x93 /* Buffer 1 to main memory page program with built-In erase, Fast program */
  121. #define DB_BUF2_PAGE_ERASE_PGM 0x86 /* Buffer 2 to main memory page program with built-In erase */
  122. #define DB_BUF2_PAGE_ERASE_FASTPGM 0x96 /* Buffer 1 to main memory page program with built-In erase, Fast program */
  123. #define DB_BUF1_PAGE_PGM 0x88 /* Buffer 1 to main memory page program without built-In erase */
  124. #define DB_BUF1_PAGE_FASTPGM 0x98 /* Buffer 1 to main memory page program without built-In erase, Fast program */
  125. #define DB_BUF2_PAGE_PGM 0x89 /* Buffer 2 to main memory page program without built-In erase */
  126. #define DB_BUF2_PAGE_FASTPGM 0x99 /* Buffer 1 to main memory page program without built-In erase, Fast program */
  127. #define DB_PAGE_ERASE 0x81 /* Page Erase */
  128. #define DB_BLOCK_ERASE 0x50 /* Block Erase */
  129. #define DB_PAGE_PGM_BUF1 0x82 /* Main memory page through buffer 1 */
  130. #define DB_PAGE_FASTPGM_BUF1 0x92 /* Main memory page through buffer 1, Fast program */
  131. #define DB_PAGE_PGM_BUF2 0x85 /* Main memory page through buffer 2 */
  132. #define DB_PAGE_FastPGM_BUF2 0x95 /* Main memory page through buffer 2, Fast program */
  133. /* ADDITIONAL COMMANDS */
  134. #define DB_PAGE_2_BUF1_TRF 0x53 /* Main memory page to buffer 1 transfert */
  135. #define DB_PAGE_2_BUF2_TRF 0x55 /* Main memory page to buffer 2 transfert */
  136. #define DB_PAGE_2_BUF1_CMP 0x60 /* Main memory page to buffer 1 compare */
  137. #define DB_PAGE_2_BUF2_CMP 0x61 /* Main memory page to buffer 2 compare */
  138. #define DB_AUTO_PAGE_PGM_BUF1 0x58 /* Auto page rewrite throught buffer 1 */
  139. #define DB_AUTO_PAGE_PGM_BUF2 0x59 /* Auto page rewrite throught buffer 2 */
  140. /*-------------------------------------------------------------------------------------------------*/
  141. extern int size_dataflash (AT91PS_DataFlash pdataFlash, unsigned long addr, unsigned long size);
  142. extern int prot_dataflash (AT91PS_DataFlash pdataFlash, unsigned long addr);
  143. extern int dataflash_real_protect (int flag, unsigned long start_addr, unsigned long end_addr);
  144. extern int addr_dataflash (unsigned long addr);
  145. extern int read_dataflash (unsigned long addr, unsigned long size, char *result);
  146. extern int write_dataflash (unsigned long addr, unsigned long dest, unsigned long size);
  147. extern void dataflash_print_info (void);
  148. extern void dataflash_perror (int err);
  149. #endif