Blame view

include/flash.h 23.8 KB
ed247f487   wdenk   Initial revision
1
  /*
8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
2
   * (C) Copyright 2000-2005
ed247f487   wdenk   Initial revision
3
4
   * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
   *
3765b3e7b   Wolfgang Denk   Coding Style clea...
5
   * SPDX-License-Identifier:	GPL-2.0+
ed247f487   wdenk   Initial revision
6
7
8
9
   */
  
  #ifndef _FLASH_H_
  #define _FLASH_H_
5aeeabf43   Thomas Chou   cfi_flash: give d...
10
11
12
  #ifndef CONFIG_SYS_MAX_FLASH_SECT
  #define CONFIG_SYS_MAX_FLASH_SECT	512
  #endif
ed247f487   wdenk   Initial revision
13
14
15
16
17
18
19
20
  /*-----------------------------------------------------------------------
   * FLASH Info: contains chip specific data, per FLASH bank
   */
  
  typedef struct {
  	ulong	size;			/* total bank size in bytes		*/
  	ushort	sector_count;		/* number of erase units		*/
  	ulong	flash_id;		/* combined device & manufacturer code	*/
09ce9921a   Becky Bruce   flash/cfi_flash: ...
21
  	ulong	start[CONFIG_SYS_MAX_FLASH_SECT];   /* virtual sector start address */
6d0f6bcf3   Jean-Christophe PLAGNIOL-VILLARD   rename CFG_ macro...
22
23
  	uchar	protect[CONFIG_SYS_MAX_FLASH_SECT]; /* sector protection status	*/
  #ifdef CONFIG_SYS_FLASH_CFI
ed247f487   wdenk   Initial revision
24
25
  	uchar	portwidth;		/* the width of the port		*/
  	uchar	chipwidth;		/* the width of the chip		*/
2abbe0754   wdenk   * Patch by Nicola...
26
  	ushort	buffer_size;		/* # of bytes in write buffer		*/
ed247f487   wdenk   Initial revision
27
28
  	ulong	erase_blk_tout;		/* maximum block erase timeout		*/
  	ulong	write_tout;		/* maximum write timeout		*/
2abbe0754   wdenk   * Patch by Nicola...
29
  	ulong	buffer_write_tout;	/* maximum buffer write timeout		*/
1eaeb58e3   wdenk   * Patch by Rishi ...
30
  	ushort	vendor;			/* the primary vendor id		*/
260421a21   Stefan Roese   [PATCH] CFI drive...
31
  	ushort	cmd_reset;		/* vendor specific reset command	*/
07b2c5c0e   Angelo Dureghello   mtd/cfi: add supp...
32
  	uchar   cmd_erase_sector;	/* vendor specific erase sect. command	*/
1eaeb58e3   wdenk   * Patch by Rishi ...
33
  	ushort	interface;		/* used for x8/x16 adjustments		*/
2662b40ca   Stefan Roese   * Changes/fixes f...
34
  	ushort	legacy_unlock;		/* support Intel legacy (un)locking	*/
3a7b2c21f   Niklaus Giger   Support up to 7 b...
35
  	ushort	manufacturer_id;	/* manufacturer id			*/
260421a21   Stefan Roese   [PATCH] CFI drive...
36
37
38
39
  	ushort	device_id;		/* device id				*/
  	ushort	device_id2;		/* extended device id			*/
  	ushort	ext_addr;		/* extended query table address		*/
  	ushort	cfi_version;		/* cfi version				*/
53677ef18   Wolfgang Denk   Big white-space c...
40
  	ushort	cfi_offset;		/* offset for cfi query			*/
81b20ccc2   Michael Schwingen   CFI: support JEDE...
41
42
  	ulong   addr_unlock1;		/* unlock address 1 for AMD flash roms  */
  	ulong   addr_unlock2;		/* unlock address 2 for AMD flash roms  */
72443c7f7   Marek Vasut   mtd: cfi: Add sup...
43
  	uchar   sr_supported;		/* status register supported            */
53677ef18   Wolfgang Denk   Big white-space c...
44
  	const char *name;		/* human-readable name	                */
ed247f487   wdenk   Initial revision
45
  #endif
d85879938   Thomas Chou   dm: implement a M...
46
47
48
  #ifdef CONFIG_MTD
  	struct mtd_info *mtd;
  #endif
1ec0a37e1   Marek Vasut   mtd: cfi: Zap cfi...
49
50
51
52
  #ifdef CONFIG_CFI_FLASH			/* DM-specific parts */
  	struct udevice *dev;
  	phys_addr_t base;
  #endif
ed247f487   wdenk   Initial revision
53
  } flash_info_t;
ca5def3f3   Stefan Roese   cfi_flash: Simpli...
54
  extern flash_info_t flash_info[]; /* info for FLASH chips	*/
ebc9784ce   Piotr Ziecik   cfi_flash: Export...
55
  typedef unsigned long flash_sect_t;
ed247f487   wdenk   Initial revision
56
57
58
59
60
61
62
63
64
65
66
67
68
69
  /*
   * Values for the width of the port
   */
  #define FLASH_CFI_8BIT		0x01
  #define FLASH_CFI_16BIT		0x02
  #define FLASH_CFI_32BIT		0x04
  #define FLASH_CFI_64BIT		0x08
  /*
   * Values for the width of the chip
   */
  #define FLASH_CFI_BY8		0x01
  #define FLASH_CFI_BY16		0x02
  #define FLASH_CFI_BY32		0x04
  #define FLASH_CFI_BY64		0x08
bf9e3b38f   wdenk   * Some code cleanup
70
71
72
73
74
75
  /*
   * Values for the flash device interface
   */
  #define FLASH_CFI_X8		0x00
  #define FLASH_CFI_X16		0x01
  #define FLASH_CFI_X8X16		0x02
42026c9cb   Bartlomiej Sieka   CFI: synchronize ...
76
  #define FLASH_CFI_X16X32	0x05
ed247f487   wdenk   Initial revision
77

5653fc335   wdenk   * Patch by Yuli B...
78
  /* convert between bit value and numeric value */
1eaeb58e3   wdenk   * Patch by Rishi ...
79
  #define CFI_FLASH_SHIFT_WIDTH	3
91809ed51   Piotr Ziecik   cfi-mtd: Add cfi-...
80

ed247f487   wdenk   Initial revision
81
82
83
84
85
86
87
  /* Prototypes */
  
  extern unsigned long flash_init (void);
  extern void flash_print_info (flash_info_t *);
  extern int flash_erase	(flash_info_t *, int, int);
  extern int flash_sect_erase (ulong addr_first, ulong addr_last);
  extern int flash_sect_protect (int flag, ulong addr_first, ulong addr_last);
3f0cf51da   Bartlomiej Sieka   flash: factor out...
88
  extern int flash_sect_roundb (ulong *addr);
ebc9784ce   Piotr Ziecik   cfi_flash: Export...
89
  extern unsigned long flash_sector_size(flash_info_t *info, flash_sect_t sect);
6ea808efd   Piotr Ziecik   cfi_flash: Add in...
90
  extern void flash_set_verbose(uint);
ed247f487   wdenk   Initial revision
91
92
93
  
  /* common/flash.c */
  extern void flash_protect (int flag, ulong from, ulong to, flash_info_t *info);
77ddac948   Wolfgang Denk   Cleanup for GCC-4.x
94
  extern int flash_write (char *, ulong, ulong);
ed247f487   wdenk   Initial revision
95
96
  extern flash_info_t *addr2info (ulong);
  extern int write_buff (flash_info_t *info, uchar *src, ulong addr, ulong cnt);
91809ed51   Piotr Ziecik   cfi-mtd: Add cfi-...
97
98
99
100
  /* drivers/mtd/cfi_mtd.c */
  #ifdef CONFIG_FLASH_CFI_MTD
  extern int cfi_mtd_init(void);
  #endif
ed247f487   wdenk   Initial revision
101
  /* board/?/flash.c */
6d0f6bcf3   Jean-Christophe PLAGNIOL-VILLARD   rename CFG_ macro...
102
  #if defined(CONFIG_SYS_FLASH_PROTECTION)
ed247f487   wdenk   Initial revision
103
  extern int flash_real_protect(flash_info_t *info, long sector, int prot);
5653fc335   wdenk   * Patch by Yuli B...
104
105
  extern void flash_read_user_serial(flash_info_t * info, void * buffer, int offset, int len);
  extern void flash_read_factory_serial(flash_info_t * info, void * buffer, int offset, int len);
6d0f6bcf3   Jean-Christophe PLAGNIOL-VILLARD   rename CFG_ macro...
106
  #endif	/* CONFIG_SYS_FLASH_PROTECTION */
ed247f487   wdenk   Initial revision
107

81b20ccc2   Michael Schwingen   CFI: support JEDE...
108
109
110
111
112
  #ifdef CONFIG_FLASH_CFI_LEGACY
  extern ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info);
  extern int jedec_flash_match(flash_info_t *info, ulong base);
  #define CFI_CMDSET_AMD_LEGACY		0xFFF0
  #endif
ed247f487   wdenk   Initial revision
113
114
115
116
  /*-----------------------------------------------------------------------
   * return codes from flash_write():
   */
  #define ERR_OK				0
9dbaebcf9   Mario Six   flash: Fix spelli...
117
  #define ERR_TIMEOUT			1
ed247f487   wdenk   Initial revision
118
119
120
121
122
123
124
  #define ERR_NOT_ERASED			2
  #define ERR_PROTECTED			4
  #define ERR_INVAL			8
  #define ERR_ALIGN			16
  #define ERR_UNKNOWN_FLASH_VENDOR	32
  #define ERR_UNKNOWN_FLASH_TYPE		64
  #define ERR_PROG_ERROR			128
de15a06aa   Joe Hershberger   cfi: Make the fla...
125
  #define ERR_ABORTED			256
ed247f487   wdenk   Initial revision
126
127
128
129
130
131
  
  /*-----------------------------------------------------------------------
   * Protection Flags for flash_protect():
   */
  #define FLAG_PROTECT_SET	0x01
  #define FLAG_PROTECT_CLEAR	0x02
d4fc6012f   Peter Pearse   Add MACH_TYPE rec...
132
133
134
135
136
  #define	FLAG_PROTECT_INVALID	0x03
  /*-----------------------------------------------------------------------
   * Set Environment according to label:
   */
  #define	FLAG_SETENV		0x80
ed247f487   wdenk   Initial revision
137
138
139
140
  
  /*-----------------------------------------------------------------------
   * Device IDs
   */
3a7b2c21f   Niklaus Giger   Support up to 7 b...
141
  /* Manufacturers inside bank 0 have ids like 0x00xx00xx */
2abbe0754   wdenk   * Patch by Nicola...
142
  #define AMD_MANUFACT	0x00010001	/* AMD	   manuf. ID in D23..D16, D7..D0 */
ed247f487   wdenk   Initial revision
143
  #define FUJ_MANUFACT	0x00040004	/* FUJITSU manuf. ID in D23..D16, D7..D0 */
2abbe0754   wdenk   * Patch by Nicola...
144
145
146
147
  #define ATM_MANUFACT	0x001F001F	/* ATMEL */
  #define STM_MANUFACT	0x00200020	/* STM (Thomson) manuf. ID in D23.. -"- */
  #define SST_MANUFACT	0x00BF00BF	/* SST	   manuf. ID in D23..D16, D7..D0 */
  #define MT_MANUFACT	0x00890089	/* MT	   manuf. ID in D23..D16, D7..D0 */
ed247f487   wdenk   Initial revision
148
  #define INTEL_MANUFACT	0x00890089	/* INTEL   manuf. ID in D23..D16, D7..D0 */
2abbe0754   wdenk   * Patch by Nicola...
149
  #define INTEL_ALT_MANU	0x00B000B0	/* alternate INTEL namufacturer ID	*/
ed247f487   wdenk   Initial revision
150
  #define MX_MANUFACT	0x00C200C2	/* MXIC	   manuf. ID in D23..D16, D7..D0 */
608c91460   wdenk   Add support for V...
151
  #define TOSH_MANUFACT	0x00980098	/* TOSHIBA manuf. ID in D23..D16, D7..D0 */
1eaeb58e3   wdenk   * Patch by Rishi ...
152
  #define MT2_MANUFACT	0x002C002C	/* alternate MICRON manufacturer ID*/
8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
153
  #define EXCEL_MANUFACT	0x004A004A	/* Excel Semiconductor			*/
3a7b2c21f   Niklaus Giger   Support up to 7 b...
154
155
  #define AMIC_MANUFACT	0x00370037	/* AMIC    manuf. ID in D23..D16, D7..D0 */
  #define WINB_MANUFACT	0x00DA00DA	/* Winbond manuf. ID in D23..D16, D7..D0 */
f3c89d922   Dirk Eibach   mtd: Handle 29LV8...
156
  #define EON_ALT_MANU	0x001C001C	/* EON     manuf. ID in D23..D16, D7..D0 */
3a7b2c21f   Niklaus Giger   Support up to 7 b...
157
158
159
160
161
  
  /* Manufacturers inside bank 1 have ids like 0x01xx01xx */
  #define EON_MANUFACT	0x011C011C	/* EON     manuf. ID in D23..D16, D7..D0 */
  
  /* Manufacturers inside bank 2 have ids like 0x02xx02xx */
ed247f487   wdenk   Initial revision
162
163
164
  
  					/* Micron Technologies (INTEL compat.)	*/
  #define MT_ID_28F400_T	0x44704470	/* 28F400B3 ID ( 4 M, top boot sector)	*/
2abbe0754   wdenk   * Patch by Nicola...
165
  #define MT_ID_28F400_B	0x44714471	/* 28F400B3 ID ( 4 M, bottom boot sect) */
ed247f487   wdenk   Initial revision
166
167
168
169
  
  #define AMD_ID_LV040B	0x4F		/* 29LV040B ID				*/
  					/* 4 Mbit, 512K x 8,			*/
  					/* 8 64K x 8 uniform sectors		*/
8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
170
171
172
173
174
175
176
177
178
  #define AMD_ID_F033C	0xA3		/* 29LV033C ID				*/
  					/* 32 Mbit, 4Mbits x 8,			*/
  					/* 64 64K x 8 uniform sectors		*/
  #define AMD_ID_F065D	0x93		/* 29LV065D ID				*/
  					/* 64 Mbit, 8Mbits x 8,			*/
  					/* 126 64K x 8 uniform sectors		*/
  #define ATM_ID_LV040	0x13		/* 29LV040B ID				*/
  					/* 4 Mbit, 512K x 8,			*/
  					/* 8 64K x 8 uniform sectors		*/
ed247f487   wdenk   Initial revision
179
180
181
  #define AMD_ID_F040B	0xA4		/* 29F040B ID				*/
  					/* 4 Mbit, 512K x 8,			*/
  					/* 8 64K x 8 uniform sectors		*/
2abbe0754   wdenk   * Patch by Nicola...
182
  #define STM_ID_M29W040B 0xE3		/* M29W040B ID				*/
ed247f487   wdenk   Initial revision
183
184
185
  					/* 4 Mbit, 512K x 8,			*/
  					/* 8 64K x 8 uniform sectors		*/
  #define AMD_ID_F080B	0xD5		/* 29F080  ID  ( 1 M)			*/
5d232d0e7   wdenk   * Patch by Dave E...
186
187
  					/* 8 Mbit, 512K x 16,			*/
  					/* 8 64K x 16 uniform sectors		*/
ed247f487   wdenk   Initial revision
188
189
190
  #define AMD_ID_F016D	0xAD		/* 29F016  ID  ( 2 M x 8)		*/
  #define AMD_ID_F032B	0x41		/* 29F032  ID  ( 4 M x 8)		*/
  #define AMD_ID_LV116DT	0xC7		/* 29LV116DT   ( 2 M x 8, top boot sect) */
8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
191
  #define AMD_ID_LV116DB	0x4C		/* 29LV116DB   ( 2 M x 8, bottom boot sect) */
7a8e9bed1   wdenk   * Patch by Marc S...
192
  #define AMD_ID_LV016B	0xc8		/* 29LV016 ID  ( 2 M x 8)		*/
ed247f487   wdenk   Initial revision
193

8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
194
  #define AMD_ID_PL160CB	0x22452245	/* 29PL160CB ID (16 M, bottom boot sect */
4e5ca3eb6   wdenk   * Patch by Bernha...
195

ed247f487   wdenk   Initial revision
196
  #define AMD_ID_LV400T	0x22B922B9	/* 29LV400T ID ( 4 M, top boot sector)	*/
2abbe0754   wdenk   * Patch by Nicola...
197
  #define AMD_ID_LV400B	0x22BA22BA	/* 29LV400B ID ( 4 M, bottom boot sect) */
ed247f487   wdenk   Initial revision
198

d1cbe85b0   wdenk   Merge from "stabl...
199
200
  #define AMD_ID_LV033C	0xA3		/* 29LV033C ID ( 4 M x 8)		*/
  #define AMD_ID_LV065D	0x93		/* 29LV065D ID ( 8 M x 8)		*/
ed247f487   wdenk   Initial revision
201
202
  
  #define AMD_ID_LV800T	0x22DA22DA	/* 29LV800T ID ( 8 M, top boot sector)	*/
2abbe0754   wdenk   * Patch by Nicola...
203
  #define AMD_ID_LV800B	0x225B225B	/* 29LV800B ID ( 8 M, bottom boot sect) */
ed247f487   wdenk   Initial revision
204
205
  
  #define AMD_ID_LV160T	0x22C422C4	/* 29LV160T ID (16 M, top boot sector)	*/
2abbe0754   wdenk   * Patch by Nicola...
206
  #define AMD_ID_LV160B	0x22492249	/* 29LV160B ID (16 M, bottom boot sect) */
ed247f487   wdenk   Initial revision
207

3bbc899fc   wdenk   Patch by Wolter K...
208
  #define AMD_ID_DL163T	0x22282228	/* 29DL163T ID (16 M, top boot sector)	*/
8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
209
  #define AMD_ID_DL163B	0x222B222B	/* 29DL163B ID (16 M, bottom boot sect) */
3bbc899fc   wdenk   Patch by Wolter K...
210

ed247f487   wdenk   Initial revision
211
  #define AMD_ID_LV320T	0x22F622F6	/* 29LV320T ID (32 M, top boot sector)	*/
efa329cb8   wdenk   * Add start-up de...
212
  #define MX_ID_LV320T	0x22A722A7	/* 29LV320T by Macronix, AMD compatible */
2abbe0754   wdenk   * Patch by Nicola...
213
  #define AMD_ID_LV320B	0x22F922F9	/* 29LV320B ID (32 M, bottom boot sect) */
efa329cb8   wdenk   * Add start-up de...
214
  #define MX_ID_LV320B	0x22A822A8	/* 29LV320B by Macronix, AMD compatible */
ed247f487   wdenk   Initial revision
215
216
  
  #define AMD_ID_DL322T	0x22552255	/* 29DL322T ID (32 M, top boot sector)	*/
2abbe0754   wdenk   * Patch by Nicola...
217
  #define AMD_ID_DL322B	0x22562256	/* 29DL322B ID (32 M, bottom boot sect) */
ed247f487   wdenk   Initial revision
218
  #define AMD_ID_DL323T	0x22502250	/* 29DL323T ID (32 M, top boot sector)	*/
2abbe0754   wdenk   * Patch by Nicola...
219
  #define AMD_ID_DL323B	0x22532253	/* 29DL323B ID (32 M, bottom boot sect) */
ed247f487   wdenk   Initial revision
220
221
222
223
  #define AMD_ID_DL324T	0x225C225C	/* 29DL324T ID (32 M, top boot sector)	*/
  #define AMD_ID_DL324B	0x225F225F	/* 29DL324B ID (32 M, bottom boot sect) */
  
  #define AMD_ID_DL640	0x227E227E	/* 29DL640D ID (64 M, dual boot sectors)*/
2abbe0754   wdenk   * Patch by Nicola...
224
  #define AMD_ID_MIRROR	0x227E227E	/* 1st ID word for MirrorBit family */
8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
225
226
227
228
  #define AMD_ID_DL640G_2 0x22022202	/* 2nd ID word for AM29DL640G  at 0x38 */
  #define AMD_ID_DL640G_3 0x22012201	/* 3rd ID word for AM29DL640G  at 0x3c */
  #define AMD_ID_LV640U_2 0x220C220C	/* 2nd ID word for AM29LV640M  at 0x38 */
  #define AMD_ID_LV640U_3 0x22012201	/* 3rd ID word for AM29LV640M  at 0x3c */
aa5590b66   wdenk   Patch by Thomas V...
229
230
231
232
233
234
235
236
  #define AMD_ID_LV640MT_2 0x22102210	/* 2nd ID word for AM29LV640MT at 0x38 */
  #define AMD_ID_LV640MT_3 0x22012201	/* 3rd ID word for AM29LV640MT at 0x3c */
  #define AMD_ID_LV640MB_2 0x22102210	/* 2nd ID word for AM29LV640MB at 0x38 */
  #define AMD_ID_LV640MB_3 0x22002200	/* 3rd ID word for AM29LV640MB at 0x3c */
  #define AMD_ID_LV128U_2 0x22122212	/* 2nd ID word for AM29LV128M  at 0x38 */
  #define AMD_ID_LV128U_3 0x22002200	/* 3rd ID word for AM29LV128M  at 0x3c */
  #define AMD_ID_LV256U_2 0x22122212	/* 2nd ID word for AM29LV256M  at 0x38 */
  #define AMD_ID_LV256U_3 0x22012201	/* 3rd ID word for AM29LV256M  at 0x3c */
9d5028c2f   wdenk   * Update for AT91...
237
238
  #define AMD_ID_GL064M_2 0x22132213	/* 2nd ID word for S29GL064M-R6 */
  #define AMD_ID_GL064M_3 0x22012201	/* 3rd ID word for S29GL064M-R6 */
45237bc00   Wolfgang Denk   Add support for S...
239
240
  #define AMD_ID_GL064MT_2 0x22102210	/* 2nd ID word for S29GL064M-R3 (top boot sector) */
  #define AMD_ID_GL064MT_3 0x22012201	/* 3rd ID word for S29GL064M-R3 (top boot sector) */
7299712c8   Marian Balakowicz   Update for CAM520...
241
242
  #define AMD_ID_GL128N_2	0x22212221	/* 2nd ID word for S29GL128N */
  #define AMD_ID_GL128N_3	0x22012201	/* 3rd ID word for S29GL128N */
d4ca31c40   wdenk   * Cleanup lowboot...
243

8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
244
  #define AMD_ID_LV320B_2 0x221A221A	/* 2d ID word for AM29LV320MB at 0x38 */
d4ca31c40   wdenk   * Cleanup lowboot...
245
  #define AMD_ID_LV320B_3 0x22002200	/* 3d ID word for AM29LV320MB at 0x3c */
71f951180   wdenk   * Fix CONFIG_NET_...
246

ed247f487   wdenk   Initial revision
247
  #define AMD_ID_LV640U	0x22D722D7	/* 29LV640U ID (64 M, uniform sectors)	*/
8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
248
  #define AMD_ID_LV650U	0x22D722D7	/* 29LV650U ID (64 M, uniform sectors)	*/
ed247f487   wdenk   Initial revision
249

8b07a1103   wdenk   * Patch by Fred K...
250
  #define ATM_ID_BV1614	0x000000C0	/* 49BV1614  ID */
2abbe0754   wdenk   * Patch by Nicola...
251
  #define ATM_ID_BV1614A	0x000000C8	/* 49BV1614A ID */
8b07a1103   wdenk   * Patch by Fred K...
252
  #define ATM_ID_BV6416	0x000000D6	/* 49BV6416  ID */
dc7c9a1a5   wdenk   * Patch by Rick B...
253

2abbe0754   wdenk   * Patch by Nicola...
254
255
  #define FUJI_ID_29F800BA  0x22582258	/* MBM29F800BA ID  (8M) */
  #define FUJI_ID_29F800TA  0x22D622D6	/* MBM29F800TA ID  (8M) */
bf9e3b38f   wdenk   * Some code cleanup
256
  #define FUJI_ID_29LV650UE 0x22d722d7	/* MBM29LV650UE/651UE ID (8M = 128 x 32kWord) */
56f94be3e   wdenk   * Add support for...
257

2abbe0754   wdenk   * Patch by Nicola...
258
259
260
261
  #define SST_ID_xF200A	0x27892789	/* 39xF200A ID ( 2M = 128K x 16 )	*/
  #define SST_ID_xF400A	0x27802780	/* 39xF400A ID ( 4M = 256K x 16 )	*/
  #define SST_ID_xF800A	0x27812781	/* 39xF800A ID ( 8M = 512K x 16 )	*/
  #define SST_ID_xF160A	0x27822782	/* 39xF800A ID (16M =	1M x 16 )	*/
4d535b51e   stroese   new SST and EXCEL...
262
263
264
265
266
267
  #define SST_ID_xF1601	0x234B234B	/* 39xF1601 ID (16M =	1M x 16 )	*/
  #define SST_ID_xF1602	0x234A234A	/* 39xF1602 ID (16M =	1M x 16 )	*/
  #define SST_ID_xF3201	0x235B235B	/* 39xF3201 ID (32M =	2M x 16 )	*/
  #define SST_ID_xF3202	0x235A235A	/* 39xF3202 ID (32M =	2M x 16 )	*/
  #define SST_ID_xF6401	0x236B236B	/* 39xF6401 ID (64M =	4M x 16 )	*/
  #define SST_ID_xF6402	0x236A236A	/* 39xF6402 ID (64M =	4M x 16 )	*/
ba94a1bba   Wolfgang Denk   * Update Intel IX...
268
  #define SST_ID_xF020	0xBFD6BFD6	/* 39xF020 ID (256KB = 2Mbit x 8)	*/
d1cbe85b0   wdenk   Merge from "stabl...
269
  #define SST_ID_xF040	0xBFD7BFD7	/* 39xF040 ID (512KB = 4Mbit x 8)	*/
ed247f487   wdenk   Initial revision
270

2abbe0754   wdenk   * Patch by Nicola...
271
  #define STM_ID_F040B	0xE2		/* M29F040B ID ( 4M = 512K x 8	)	*/
ed247f487   wdenk   Initial revision
272
  					/* 8 64K x 8 uniform sectors		*/
2abbe0754   wdenk   * Patch by Nicola...
273
274
275
  #define STM_ID_x800AB	0x005B005B	/* M29W800AB ID (8M = 512K x 16 )	*/
  #define STM_ID_29W320DT 0x22CA22CA	/* M29W320DT ID (32 M, top boot sector) */
  #define STM_ID_29W320DB 0x22CB22CB	/* M29W320DB ID (32 M, bottom boot sect)	*/
8e709bbb2   Aubrey Li   [PATCH] Add flash...
276
277
  #define STM_ID_29W320ET 0x22562256	/* M29W320ET ID (32 M, top boot sector) */
  #define STM_ID_29W320EB 0x22572257	/* M29W320EB ID (32 M, bottom boot sect)*/
ed247f487   wdenk   Initial revision
278
  #define STM_ID_29W040B	0x00E300E3	/* M29W040B ID (4M = 512K x 8)	*/
0afe519a4   Wolfgang Denk   Add ADI Blackfin ...
279
  #define FLASH_PSD4256GV 0x00E9		/* PSD4256 Flash and CPLD combination	*/
ed247f487   wdenk   Initial revision
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
  
  #define INTEL_ID_28F016S    0x66a066a0	/* 28F016S[VS] ID (16M = 512k x 16)	*/
  #define INTEL_ID_28F800B3T  0x88928892	/*  8M = 512K x 16 top boot sector	*/
  #define INTEL_ID_28F800B3B  0x88938893	/*  8M = 512K x 16 bottom boot sector	*/
  #define INTEL_ID_28F160B3T  0x88908890	/*  16M = 1M x 16 top boot sector	*/
  #define INTEL_ID_28F160B3B  0x88918891	/*  16M = 1M x 16 bottom boot sector	*/
  #define INTEL_ID_28F320B3T  0x88968896	/*  32M = 2M x 16 top boot sector	*/
  #define INTEL_ID_28F320B3B  0x88978897	/*  32M = 2M x 16 bottom boot sector	*/
  #define INTEL_ID_28F640B3T  0x88988898	/*  64M = 4M x 16 top boot sector	*/
  #define INTEL_ID_28F640B3B  0x88998899	/*  64M = 4M x 16 bottom boot sector	*/
  #define INTEL_ID_28F160F3B  0x88F488F4	/*  16M = 1M x 16 bottom boot sector	*/
  
  #define INTEL_ID_28F800C3T  0x88C088C0	/*  8M = 512K x 16 top boot sector	*/
  #define INTEL_ID_28F800C3B  0x88C188C1	/*  8M = 512K x 16 bottom boot sector	*/
  #define INTEL_ID_28F160C3T  0x88C288C2	/*  16M = 1M x 16 top boot sector	*/
  #define INTEL_ID_28F160C3B  0x88C388C3	/*  16M = 1M x 16 bottom boot sector	*/
  #define INTEL_ID_28F320C3T  0x88C488C4	/*  32M = 2M x 16 top boot sector	*/
  #define INTEL_ID_28F320C3B  0x88C588C5	/*  32M = 2M x 16 bottom boot sector	*/
  #define INTEL_ID_28F640C3T  0x88CC88CC	/*  64M = 4M x 16 top boot sector	*/
  #define INTEL_ID_28F640C3B  0x88CD88CD	/*  64M = 4M x 16 bottom boot sector	*/
f6e20fc6c   wdenk   Patch by Anders L...
300
  #define INTEL_ID_28F128J3   0x89188918	/*  16M = 8M x 16 x 128 */
6dd652fa4   wdenk   Patches by Murray...
301
302
303
304
305
  #define INTEL_ID_28F320J5   0x00140014	/*  32M = 128K x  32	*/
  #define INTEL_ID_28F640J5   0x00150015	/*  64M = 128K x  64	*/
  #define INTEL_ID_28F320J3A  0x00160016	/*  32M = 128K x  32	*/
  #define INTEL_ID_28F640J3A  0x00170017	/*  64M = 128K x  64	*/
  #define INTEL_ID_28F128J3A  0x00180018	/* 128M = 128K x 128	*/
97c8d0bbb   Wolfgang Denk   Add support for 2...
306
  #define INTEL_ID_28F256J3A  0x001D001D	/* 256M = 128K x 256	*/
6f21347d4   wdenk   * Patch by George...
307
  #define INTEL_ID_28F256L18T 0x880D880D	/* 256M = 128K x 255 + 32k x 4 */
b54d32b40   wdenk   * Patch by Robert...
308
309
310
  #define INTEL_ID_28F64K3    0x88018801	/*  64M =  32K x 255 + 32k x 4 */
  #define INTEL_ID_28F128K3   0x88028802	/* 128M =  64K x 255 + 32k x 4 */
  #define INTEL_ID_28F256K3   0x88038803	/* 256M = 128K x 255 + 32k x 4 */
79b4cda07   Stefan Roese   Major CFI-FLASH d...
311
312
313
314
315
316
  #define INTEL_ID_28F64P30T  0x88178817	/*  64M =  32K x 255 + 32k x 4 */
  #define INTEL_ID_28F64P30B  0x881A881A	/*  64M =  32K x 255 + 32k x 4 */
  #define INTEL_ID_28F128P30T 0x88188818	/* 128M =  64K x 255 + 32k x 4 */
  #define INTEL_ID_28F128P30B 0x881B881B	/* 128M =  64K x 255 + 32k x 4 */
  #define INTEL_ID_28F256P30T 0x88198819	/* 256M = 128K x 255 + 32k x 4 */
  #define INTEL_ID_28F256P30B 0x881C881C	/* 256M = 128K x 255 + 32k x 4 */
ed247f487   wdenk   Initial revision
317
318
319
320
321
322
323
324
325
  
  #define INTEL_ID_28F160S3   0x00D000D0	/*  16M = 512K x  32 (64kB x 32)	*/
  #define INTEL_ID_28F320S3   0x00D400D4	/*  32M = 512K x  64 (64kB x 64)	*/
  
  /* Note that the Sharp 28F016SC is compatible with the Intel E28F016SC */
  #define SHARP_ID_28F016SCL  0xAAAAAAAA	/* LH28F016SCT-L95 2Mx8, 32 64k blocks	*/
  #define SHARP_ID_28F016SCZ  0xA0A0A0A0	/* LH28F016SCT-Z4  2Mx8, 32 64k blocks	*/
  #define SHARP_ID_28F008SC   0xA6A6A6A6	/* LH28F008SCT-L12 1Mx8, 16 64k blocks	*/
  					/* LH28F008SCR-L85 1Mx8, 16 64k blocks	*/
2abbe0754   wdenk   * Patch by Nicola...
326
327
  #define TOSH_ID_FVT160	0xC2		/* TC58FVT160 ID (16 M, top )		*/
  #define TOSH_ID_FVB160	0x43		/* TC58FVT160 ID (16 M, bottom )	*/
81316a902   Holger Brunck   mtd/cfi_flash: fi...
328
  #define NUMONYX_256MBIT	0x8922		/* Numonyx P33/30 256MBit 65nm	*/
608c91460   wdenk   Add support for V...
329

ed247f487   wdenk   Initial revision
330
331
332
333
334
  /*-----------------------------------------------------------------------
   * Internal FLASH identification codes
   *
   * Be careful when adding new type! Odd numbers are "bottom boot sector" types!
   */
2abbe0754   wdenk   * Patch by Nicola...
335
336
337
338
339
340
  #define FLASH_AM040	0x0001		/* AMD Am29F040B, Am29LV040B		*/
  					/* Bright Micro BM29F040		*/
  					/* Fujitsu MBM29F040A			*/
  					/* STM M29W040B				*/
  					/* SGS Thomson M29F040B			*/
  					/* 8 64K x 8 uniform sectors		*/
ed247f487   wdenk   Initial revision
341
342
343
344
345
  #define FLASH_AM400T	0x0002		/* AMD AM29LV400			*/
  #define FLASH_AM400B	0x0003
  #define FLASH_AM800T	0x0004		/* AMD AM29LV800			*/
  #define FLASH_AM800B	0x0005
  #define FLASH_AM116DT	0x0026		/* AMD AM29LV116DT (2Mx8bit) */
138ff60c1   wdenk   Add support for I...
346
  #define FLASH_AM116DB	0x0027		/* AMD AM29LV116DB (2Mx8bit) */
ed247f487   wdenk   Initial revision
347
  #define FLASH_AM160T	0x0006		/* AMD AM29LV160			*/
2abbe0754   wdenk   * Patch by Nicola...
348
  #define FLASH_AM160LV	0x0046		/* AMD29LV160DB (2M = 2Mx8bit ) */
ed247f487   wdenk   Initial revision
349
350
351
  #define FLASH_AM160B	0x0007
  #define FLASH_AM320T	0x0008		/* AMD AM29LV320			*/
  #define FLASH_AM320B	0x0009
2abbe0754   wdenk   * Patch by Nicola...
352
353
  #define FLASH_AM080	0x000A		/* AMD Am29F080B			*/
  					/* 16 64K x 8 uniform sectors		*/
5d232d0e7   wdenk   * Patch by Dave E...
354

ed247f487   wdenk   Initial revision
355
356
357
358
359
360
  #define FLASH_AMDL322T	0x0010		/* AMD AM29DL322			*/
  #define FLASH_AMDL322B	0x0011
  #define FLASH_AMDL323T	0x0012		/* AMD AM29DL323			*/
  #define FLASH_AMDL323B	0x0013
  #define FLASH_AMDL324T	0x0014		/* AMD AM29DL324			*/
  #define FLASH_AMDL324B	0x0015
8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
361
362
  #define FLASH_AMDLV033C 0x0018
  #define FLASH_AMDLV065D 0x001A
d1cbe85b0   wdenk   Merge from "stabl...
363

ed247f487   wdenk   Initial revision
364
365
  #define FLASH_AMDL640	0x0016		/* AMD AM29DL640D			*/
  #define FLASH_AMD016	0x0018		/* AMD AM29F016D			*/
8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
366
367
  #define FLASH_AMDL640MB 0x0019		/* AMD AM29LV640MB (64M, bottom boot sect)*/
  #define FLASH_AMDL640MT 0x001A		/* AMD AM29LV640MT (64M, top boot sect) */
ed247f487   wdenk   Initial revision
368
369
370
371
372
  
  #define FLASH_SST200A	0x0040		/* SST 39xF200A ID (  2M = 128K x 16 )	*/
  #define FLASH_SST400A	0x0042		/* SST 39xF400A ID (  4M = 256K x 16 )	*/
  #define FLASH_SST800A	0x0044		/* SST 39xF800A ID (  8M = 512K x 16 )	*/
  #define FLASH_SST160A	0x0046		/* SST 39xF160A ID ( 16M =   1M x 16 )	*/
4d535b51e   stroese   new SST and EXCEL...
373
374
  #define FLASH_SST320	0x0048		/* SST 39xF160A ID ( 16M =   1M x 16 )	*/
  #define FLASH_SST640	0x004A		/* SST 39xF160A ID ( 16M =   1M x 16 )	*/
ba94a1bba   Wolfgang Denk   * Update Intel IX...
375
  #define FLASH_SST020	0x0024		/* SST 39xF020 ID (256KB = 2Mbit x 8 )	*/
d1cbe85b0   wdenk   Merge from "stabl...
376
  #define FLASH_SST040	0x000E		/* SST 39xF040 ID (512KB = 4Mbit x 8 )	*/
ed247f487   wdenk   Initial revision
377
378
  
  #define FLASH_STM800AB	0x0051		/* STM M29WF800AB  (  8M = 512K x 16 )	*/
2abbe0754   wdenk   * Patch by Nicola...
379
380
  #define FLASH_STMW320DT 0x0052		/* STM M29W320DT   (32 M, top boot sector)	*/
  #define FLASH_STMW320DB 0x0053		/* STM M29W320DB   (32 M, bottom boot sect)*/
ed247f487   wdenk   Initial revision
381
382
383
  #define FLASH_STM320DB	0x00CB		/* STM M29W320DB (4M = 64K x 64, bottom)*/
  #define FLASH_STM800DT	0x00D7		/* STM M29W800DT (1M = 64K x 16, top)	*/
  #define FLASH_STM800DB	0x005B		/* STM M29W800DB (1M = 64K x 16, bottom)*/
30fd42cba   Purna Chandra Mandal   flash: add device...
384
385
  #define FLASH_MCHP100T	0x0060		/* MCHP internal (1M = 64K x 16) */
  #define FLASH_MCHP100B	0x0061		/* MCHP internal (1M = 64K x 16) */
ed247f487   wdenk   Initial revision
386
387
388
389
390
391
392
393
394
395
396
  #define FLASH_28F400_T	0x0062		/* MT  28F400B3 ID (  4M = 256K x 16 )	*/
  #define FLASH_28F400_B	0x0063		/* MT  28F400B3 ID (  4M = 256K x 16 )	*/
  
  #define FLASH_INTEL800T 0x0074		/* INTEL 28F800B3T (  8M = 512K x 16 )	*/
  #define FLASH_INTEL800B 0x0075		/* INTEL 28F800B3B (  8M = 512K x 16 )	*/
  #define FLASH_INTEL160T 0x0076		/* INTEL 28F160B3T ( 16M =  1 M x 16 )	*/
  #define FLASH_INTEL160B 0x0077		/* INTEL 28F160B3B ( 16M =  1 M x 16 )	*/
  #define FLASH_INTEL320T 0x0078		/* INTEL 28F320B3T ( 32M =  2 M x 16 )	*/
  #define FLASH_INTEL320B 0x0079		/* INTEL 28F320B3B ( 32M =  2 M x 16 )	*/
  #define FLASH_INTEL640T 0x007A		/* INTEL 28F320B3T ( 64M =  4 M x 16 )	*/
  #define FLASH_INTEL640B 0x007B		/* INTEL 28F320B3B ( 64M =  4 M x 16 )	*/
ed247f487   wdenk   Initial revision
397
398
399
  #define FLASH_28F008S5	0x0080		/* Intel 28F008S5  (  1M =  64K x 16 )	*/
  #define FLASH_28F016SV	0x0081		/* Intel 28F016SV  ( 16M = 512k x 32 )	*/
  #define FLASH_28F800_B	0x0083		/* Intel E28F800B  (  1M = ? )		*/
2abbe0754   wdenk   * Patch by Nicola...
400
  #define FLASH_AM29F800B 0x0084		/* AMD Am29F800BB  (  1M = ? )		*/
ed247f487   wdenk   Initial revision
401
402
403
404
405
  #define FLASH_28F320J5	0x0085		/* Intel 28F320J5  (  4M = 128K x 32 )	*/
  #define FLASH_28F160S3	0x0086		/* Intel 28F160S3  ( 16M = 512K x 32 )	*/
  #define FLASH_28F320S3	0x0088		/* Intel 28F320S3  ( 32M = 512K x 64 )	*/
  #define FLASH_AM640U	0x0090		/* AMD Am29LV640U  ( 64M = 4M x 16 )	*/
  #define FLASH_AM033C	0x0091		/* AMD AM29LV033   ( 32M = 4M x 8 )	*/
2abbe0754   wdenk   * Patch by Nicola...
406
407
  #define FLASH_LH28F016SCT 0x0092	/* Sharp 28F016SCT ( 8 Meg Flash SIMM ) */
  #define FLASH_28F160F3B 0x0093		/* Intel 28F160F3B ( 16M = 1M x 16 )	*/
8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
408
  #define FLASH_AM065D	0x0093
ed247f487   wdenk   Initial revision
409

2abbe0754   wdenk   * Patch by Nicola...
410
  #define FLASH_28F640J5	0x0099		/* INTEL 28F640J5  ( 64M = 128K x  64)	*/
ed247f487   wdenk   Initial revision
411

2abbe0754   wdenk   * Patch by Nicola...
412
413
414
415
416
417
418
419
  #define FLASH_28F800C3T 0x009A		/* Intel 28F800C3T (  8M = 512K x 16 )	*/
  #define FLASH_28F800C3B 0x009B		/* Intel 28F800C3B (  8M = 512K x 16 )	*/
  #define FLASH_28F160C3T 0x009C		/* Intel 28F160C3T ( 16M = 1M x 16 )	*/
  #define FLASH_28F160C3B 0x009D		/* Intel 28F160C3B ( 16M = 1M x 16 )	*/
  #define FLASH_28F320C3T 0x009E		/* Intel 28F320C3T ( 32M = 2M x 16 )	*/
  #define FLASH_28F320C3B 0x009F		/* Intel 28F320C3B ( 32M = 2M x 16 )	*/
  #define FLASH_28F640C3T 0x00A0		/* Intel 28F640C3T ( 64M = 4M x 16 )	*/
  #define FLASH_28F640C3B 0x00A1		/* Intel 28F640C3B ( 64M = 4M x 16 )	*/
8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
420
421
422
423
424
425
426
  #define FLASH_AMLV320U	0x00A2		/* AMD 29LV320M	   ( 32M = 2M x 16 )	*/
  
  #define FLASH_AM033	0x00A3		/* AMD AmL033C90V1   (32M = 4M x 8)	*/
  #define FLASH_AM065	0x0093		/* AMD AmL065DU12RI  (64M = 8M x 8)	*/
  #define FLASH_AT040	0x00A5		/* Amtel AT49LV040   (4M = 512K x 8)	*/
  
  #define FLASH_AMLV640U	0x00A4		/* AMD 29LV640M	   ( 64M = 4M x 16 )	*/
f12e568ca   wdenk   * Add support for...
427
  #define FLASH_AMLV128U	0x00A6		/* AMD 29LV128M	   ( 128M = 8M x 16 )	*/
8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
428
  #define FLASH_AMLV320B	0x00A7		/* AMD 29LV320MB   ( 32M = 2M x 16 )	*/
d4ca31c40   wdenk   * Cleanup lowboot...
429
  #define FLASH_AMLV320T	0x00A8		/* AMD 29LV320MT   ( 32M = 2M x 16 )	*/
4d13cbad1   wdenk   * Patch by Toluna...
430
  #define FLASH_AMLV256U	0x00AA		/* AMD 29LV256M	   ( 256M = 16M x 16 )	*/
8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
431
  #define FLASH_MXLV320B	0x00AB		/* MX  29LV320MB   ( 32M = 2M x 16 )	*/
efa329cb8   wdenk   * Add start-up de...
432
  #define FLASH_MXLV320T	0x00AC		/* MX  29LV320MT   ( 32M = 2M x 16 )	*/
b54d32b40   wdenk   * Patch by Robert...
433
  #define FLASH_28F256L18T 0x00B0		/* Intel 28F256L18T 256M = 128K x 255 + 32k x 4 */
d4ca31c40   wdenk   * Cleanup lowboot...
434
435
  #define FLASH_AMDL163T	0x00B2		/* AMD AM29DL163T (2M x 16 )			*/
  #define FLASH_AMDL163B	0x00B3
b54d32b40   wdenk   * Patch by Robert...
436
  #define FLASH_28F64K3	0x00B4		/* Intel 28F64K3   (  64M)		*/
8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
437
438
  #define FLASH_28F128K3	0x00B6		/* Intel 28F128K3  ( 128M = 8M x 16 )	*/
  #define FLASH_28F256K3	0x00B8		/* Intel 28F256K3  ( 256M = 16M x 16 )	*/
b54d32b40   wdenk   * Patch by Robert...
439
440
441
442
  
  #define FLASH_28F320J3A 0x00C0		/* INTEL 28F320J3A ( 32M = 128K x  32)	*/
  #define FLASH_28F640J3A 0x00C2		/* INTEL 28F640J3A ( 64M = 128K x  64)	*/
  #define FLASH_28F128J3A 0x00C4		/* INTEL 28F128J3A (128M = 128K x 128)	*/
97c8d0bbb   Wolfgang Denk   Add support for 2...
443
  #define FLASH_28F256J3A 0x00C6		/* INTEL 28F256J3A (256M = 128K x 256)	*/
ed247f487   wdenk   Initial revision
444

b54d32b40   wdenk   * Patch by Robert...
445
  #define FLASH_FUJLV650	0x00D0		/* Fujitsu MBM 29LV650UE/651UE		*/
8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
446
  #define FLASH_MT28S4M16LC 0x00E1	/* Micron MT28S4M16LC			*/
9d5028c2f   wdenk   * Update for AT91...
447
  #define FLASH_S29GL064M 0x00F0		/* Spansion S29GL064M-R6		*/
7299712c8   Marian Balakowicz   Update for CAM520...
448
  #define FLASH_S29GL128N 0x00F1		/* Spansion S29GL128N			*/
bf9e3b38f   wdenk   * Some code cleanup
449

9ecb0c416   Vikas Manocha   stm32: stm32f4: m...
450
  #define FLASH_STM32	0x00F2		/* STM32 Embedded Flash */
eaaa4f7e0   rev13@wp.pl   ARMv7M: Add STM32...
451

ed247f487   wdenk   Initial revision
452
453
454
455
456
457
458
459
460
461
  #define FLASH_UNKNOWN	0xFFFF		/* unknown flash type			*/
  
  
  /* manufacturer offsets
   */
  #define FLASH_MAN_AMD	0x00000000	/* AMD					*/
  #define FLASH_MAN_FUJ	0x00010000	/* Fujitsu				*/
  #define FLASH_MAN_BM	0x00020000	/* Bright Microelectronics		*/
  #define FLASH_MAN_MX	0x00030000	/* MXIC					*/
  #define FLASH_MAN_STM	0x00040000
2abbe0754   wdenk   * Patch by Nicola...
462
  #define FLASH_MAN_TOSH	0x00050000	/* Toshiba				*/
8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
463
  #define FLASH_MAN_EXCEL 0x00060000	/* Excel Semiconductor			*/
ed247f487   wdenk   Initial revision
464
  #define FLASH_MAN_SST	0x00100000
2abbe0754   wdenk   * Patch by Nicola...
465
  #define FLASH_MAN_INTEL 0x00300000
ed247f487   wdenk   Initial revision
466
  #define FLASH_MAN_MT	0x00400000
2abbe0754   wdenk   * Patch by Nicola...
467
  #define FLASH_MAN_SHARP 0x00500000
8e6f1a8ec   Wolfgang Denk   Add Barco Streami...
468
  #define FLASH_MAN_ATM	0x00600000
260421a21   Stefan Roese   [PATCH] CFI drive...
469
  #define FLASH_MAN_CFI	0x01000000
30fd42cba   Purna Chandra Mandal   flash: add device...
470
  #define FLASH_MAN_MCHP	0x02000000	/* Microchip Technology		*/
ed247f487   wdenk   Initial revision
471

2abbe0754   wdenk   * Patch by Nicola...
472
  #define FLASH_TYPEMASK	0x0000FFFF	/* extract FLASH type	information	*/
ed247f487   wdenk   Initial revision
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
  #define FLASH_VENDMASK	0xFFFF0000	/* extract FLASH vendor information	*/
  
  #define FLASH_AMD_COMP	0x000FFFFF	/* Up to this ID, FLASH is compatible	*/
  					/* with AMD, Fujitsu and SST		*/
  					/* (JEDEC standard commands ?)		*/
  
  #define FLASH_BTYPE	0x0001		/* mask for bottom boot sector type	*/
  
  /*-----------------------------------------------------------------------
   * Timeout constants:
   *
   * We can't find any specifications for maximum chip erase times,
   * so these values are guestimates.
   */
  #define FLASH_ERASE_TIMEOUT	120000	/* timeout for erasing in ms		*/
  #define FLASH_WRITE_TIMEOUT	500	/* timeout for writes  in ms		*/
ed247f487   wdenk   Initial revision
489
  #endif /* _FLASH_H_ */