1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33#ifndef _DataFlash_h
34#define _DataFlash_h
35
36
37#include <asm/arch/hardware.h>
38#include "config.h"
39
40
41#ifdef CONFIG_NEW_PARTITION
42# define NB_DATAFLASH_AREA 6
43#else
44# define NB_DATAFLASH_AREA 4
45#endif
46
47#ifdef CFG_NO_FLASH
48
49
50
51
52# define ERR_OK 0
53# define ERR_TIMOUT 1
54# define ERR_NOT_ERASED 2
55# define ERR_PROTECTED 4
56# define ERR_INVAL 8
57# define ERR_ALIGN 16
58# define ERR_UNKNOWN_FLASH_VENDOR 32
59# define ERR_UNKNOWN_FLASH_TYPE 64
60# define ERR_PROG_ERROR 128
61
62
63
64
65# define FLAG_PROTECT_SET 0x01
66# define FLAG_PROTECT_CLEAR 0x02
67# define FLAG_PROTECT_INVALID 0x03
68
69
70
71
72# define FLAG_SETENV 0x80
73#endif
74
75
76typedef struct {
77 unsigned long start;
78 unsigned long end;
79 unsigned char protected;
80 unsigned char setenv;
81 unsigned char label[20];
82} dataflash_protect_t;
83
84typedef unsigned int AT91S_DataFlashStatus;
85
86
87
88
89
90
91
92
93typedef struct _AT91S_DataflashDesc {
94 unsigned char *tx_cmd_pt;
95 unsigned int tx_cmd_size;
96 unsigned char *rx_cmd_pt;
97 unsigned int rx_cmd_size;
98 unsigned char *tx_data_pt;
99 unsigned int tx_data_size;
100 unsigned char *rx_data_pt;
101 unsigned int rx_data_size;
102 volatile unsigned char state;
103 volatile unsigned char DataFlash_state;
104 unsigned char command[8];
105} AT91S_DataflashDesc, *AT91PS_DataflashDesc;
106
107
108
109
110typedef struct _AT91S_Dataflash {
111 int pages_number;
112 int pages_size;
113 int page_offset;
114 int byte_mask;
115 int cs;
116 dataflash_protect_t area_list[NB_DATAFLASH_AREA];
117} AT91S_DataflashFeatures, *AT91PS_DataflashFeatures;
118
119
120
121
122typedef struct _AT91S_DataFlash {
123 AT91PS_DataflashDesc pDataFlashDesc;
124 AT91PS_DataflashFeatures pDevice;
125} AT91S_DataFlash, *AT91PS_DataFlash;
126
127
128typedef struct _AT91S_DATAFLASH_INFO {
129
130 AT91S_DataflashDesc Desc;
131 AT91S_DataflashFeatures Device;
132 unsigned long logical_address;
133 unsigned long end_address;
134 unsigned int id;
135} AT91S_DATAFLASH_INFO, *AT91PS_DATAFLASH_INFO;
136
137
138
139
140#define AT45DB161 0x2c
141#define AT45DB321 0x34
142#define AT45DB642 0x3c
143#define AT45DB128 0x10
144#define PAGES_PER_BLOCK 8
145
146#define AT91C_DATAFLASH_TIMEOUT 10000
147
148
149#define DATAFLASH_BUSY 0x00
150#define DATAFLASH_OK 0x01
151#define DATAFLASH_ERROR 0x02
152#define DATAFLASH_MEMORY_OVERFLOW 0x03
153#define DATAFLASH_BAD_COMMAND 0x04
154#define DATAFLASH_BAD_ADDRESS 0x05
155
156
157
158#define IDLE 0x0
159#define BUSY 0x1
160#define ERROR 0x2
161
162
163#define GET_STATUS 0x0F
164
165
166
167
168
169
170#define DB_CONTINUOUS_ARRAY_READ 0xE8
171#define DB_BURST_ARRAY_READ 0xE8
172#define DB_PAGE_READ 0xD2
173#define DB_BUF1_READ 0xD4
174#define DB_BUF2_READ 0xD6
175#define DB_STATUS 0xD7
176
177
178#define DB_BUF1_WRITE 0x84
179#define DB_BUF2_WRITE 0x87
180#define DB_BUF1_PAGE_ERASE_PGM 0x83
181#define DB_BUF1_PAGE_ERASE_FASTPGM 0x93
182#define DB_BUF2_PAGE_ERASE_PGM 0x86
183#define DB_BUF2_PAGE_ERASE_FASTPGM 0x96
184#define DB_BUF1_PAGE_PGM 0x88
185#define DB_BUF1_PAGE_FASTPGM 0x98
186#define DB_BUF2_PAGE_PGM 0x89
187#define DB_BUF2_PAGE_FASTPGM 0x99
188#define DB_PAGE_ERASE 0x81
189#define DB_BLOCK_ERASE 0x50
190#define DB_PAGE_PGM_BUF1 0x82
191#define DB_PAGE_FASTPGM_BUF1 0x92
192#define DB_PAGE_PGM_BUF2 0x85
193#define DB_PAGE_FastPGM_BUF2 0x95
194
195
196#define DB_PAGE_2_BUF1_TRF 0x53
197#define DB_PAGE_2_BUF2_TRF 0x55
198#define DB_PAGE_2_BUF1_CMP 0x60
199#define DB_PAGE_2_BUF2_CMP 0x61
200#define DB_AUTO_PAGE_PGM_BUF1 0x58
201#define DB_AUTO_PAGE_PGM_BUF2 0x59
202
203
204
205extern int size_dataflash (AT91PS_DataFlash pdataFlash, unsigned long addr, unsigned long size);
206extern int prot_dataflash (AT91PS_DataFlash pdataFlash, unsigned long addr);
207extern int addr2ram(ulong addr);
208extern int dataflash_real_protect (int flag, unsigned long start_addr, unsigned long end_addr);
209extern int addr_dataflash (unsigned long addr);
210extern int read_dataflash (unsigned long addr, unsigned long size, char *result);
211extern int write_dataflash (unsigned long addr, unsigned long dest, unsigned long size);
212extern void dataflash_print_info (void);
213extern void dataflash_perror (int err);
214
215#ifdef CONFIG_NEW_DF_PARTITION
216extern int AT91F_DataflashSetEnv (void); #endif
217#endif
218
219#endif
220