-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathMacro.h
More file actions
executable file
·583 lines (503 loc) · 13.9 KB
/
Macro.h
File metadata and controls
executable file
·583 lines (503 loc) · 13.9 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
#pragma once
#ifndef _MACRO_H
#define _MACRO_H
#include <stdbool.h>
#include <stddef.h>
#include <stdio.h>
#include <unistd.h>
// new defined macros
#define IS_NAND_FLASH {if()}
//programmer info RQ
#define PROGINFO_REQUEST 0x08
#define SET_VCC 0x09 ///< set VCC
#define SET_VPP 0x03 ///< set VPP
//#define SET_CS 0x14
//#define SET_IOMODE 0x15
//#define SET_SPICLK 0x61
//#define SET_HOLD 0x1D
#define SET_SA 0x0A
//first field of RQ
#define OUT_REQUEST 0x42
#define IN_REQUEST 0xC2
//second field of RQ in case of bulk transfer
//#define TRANSCEIVE 0x01
//#define DTC_READ 0x20
//#define WRITE 0x30
//#define READ_EEPROM 0x05
//#define WRITE_EEPROM 0x06
// values of Request Field of a setup packet
typedef unsigned short WORD;
typedef unsigned char BYTE;
typedef unsigned long DWORD;
typedef struct FirmwareInfo {
char Programmer[20];
char Version[10];
char FPGAVersion[10];
unsigned int dwSignature;
unsigned int Rev[3];
unsigned int FirstIndex;
unsigned int FirstSize;
unsigned int SecondIndex;
unsigned int SecondSize;
} FW_INFO;
typedef enum {
TRANSCEIVE = 0x01,
DTC_READ = 0x20,
WRITE = 0x30,
ATMEL45_WRITE = 0x31,
READ_EEPROM = 0x05,
WRITE_EEPROM = 0x06,
GET_BUTTON_STATUS = 0x11,
GET_UID = 0x12,
SET_CS = 0x14,
SET_IOMODE = 0x15,
FW_UPDATE = 0x1A,
FPGA_UPDATE = 0x1B,
READ_FPGA_VERSION = 0x1C,
SET_HOLD = 0x1D,
DTC_READ_NAND = 0x40,
WRITE_NAND = 0x50,
MICRON_XIP_RESET =0x99,
SET_SPICLK = 0x61,
DOWNLOAD_PROJECT =0x63,
GET_PROJECT_NAME =0x64,
CHECK_SD_CARD = 0x65,
READ_PROJECT =0x66,
DL_IC_INFO_NAND =0x67,
READ_IC_INFO_NAND =0x68,
READ_ONBOARD_NAND =0x73,
GET_FW_STATUS =0x9B, //0x9A: Set //0x9B:Get
} USB_CMD;
typedef struct ChipInfo {
char TypeName[100];
char ICType[16];
size_t UniqueID;
size_t ChipIDMask;
char Class[100];
char Description[256];
char Manufacturer[100];
char ManufactureUrl[100];
char Voltage[20];
char Clock[20];
char ProgramIOMethod[20];
char type[16];
size_t ManufactureID;
size_t JedecDeviceID;
size_t AlternativeID;
size_t ChipSizeInByte;
size_t SectorSizeInByte;
size_t PageSizeInByte;
size_t BlockSizeInByte;
size_t MaxErasableSegmentInByte;
size_t AddrWidth;
size_t ReadDummyLen;
bool DualID;
size_t VppSupport;
bool MXIC_WPmode;
size_t IDNumber;
size_t RDIDCommand;
size_t Timeout;
size_t VoltageInMv;
// SPI NAND
size_t SpareSizeInByte;//NAND
size_t nCA_Rd;
size_t nCA_Wr;
size_t DefaultDataUnitSize;
size_t DefaultErrorBits;
size_t BBMark;
size_t SupportedProduct;
size_t ECCParityGroup;
size_t ECCProtectStartAddr;
size_t ECCProtectDis;
size_t ECCProtectLength;
bool ECCEnable;
bool QPIEnable;
size_t ChipEraseTime;
size_t EraseCmd;
size_t ProgramCmd;
size_t ReadCmd;
size_t ProtectBlockMask;
size_t UnlockCmd;
size_t RDSRCnt;
size_t WRSRCnt;
size_t WRSRCmd;
size_t RDSRCmd;
size_t WRCRCmd;
size_t RDCRCmd;
size_t QEbitAddr;
bool SupportLUT;
} CHIP_INFO;
#pragma pack(push,1)
typedef struct spi_nand_info{
unsigned short Hearder;//A1A1
unsigned short Version;//0x0001
unsigned short Type;//0x0001 for spi nand
unsigned short STsize;//size of this struct
unsigned int ChipID;
unsigned int ChipIDMask;
unsigned short RealPagesize; //for real OP. include spare area size , when scanBB , this size not include spare area size
unsigned short PagesPerBlock;
unsigned int Blocks;
//24
unsigned int BlockIndex;
unsigned int BlockCount;
//32
unsigned short EN_spareArea;
unsigned short SPA_pagesize; //spare area pagesize
unsigned short MA_pagesize; //main area pagesize
unsigned char BeCmd;
unsigned char RdCmd;
unsigned char WrCmd;
unsigned char AddrLen;
unsigned char nCA_Rd;
unsigned char nCA_Wr;
unsigned char Dummy;
//44
unsigned short MaxERR_bits;
unsigned short BBMark;
unsigned char BB_BYTE_TYPE;//0:not skip, 0x11:~0xFF, 0x10:~0x00, 0x21: ~0xFFFF, 0x20:~0x0000
unsigned char BBM_TYPE;//0:no BBM, 1: skip BB, 2:others
unsigned short BBK_TOTAL;//only useful after BB scan.
//52
unsigned char StartBB; //set 0: no start BB,set 1, start BB scan. If ready, device will set 2.
unsigned char UNprotect_type;// 1 enable. other default
unsigned char En_internalECC;//0 disable, 1 enable. 0xff default
//55
unsigned int EraseStartBlock;
unsigned int EraseEndBlock;
//63
unsigned char EraseMode;//0:not enable; 1: force erase; 2: skip bad block(must Start BB before)
//64
unsigned char EraseStatus;//0:Pass; 1: Fail
unsigned char saveSTA; //enable save STA
//66
unsigned short rfu0;
unsigned short perPageSizeForErrBit;
unsigned char ReadSatus_mode;//1:w25N512G
unsigned short VFMODE; //[3]==0:old:[3:0]MaxErrorBit, [15:4]:ErrorBit reset size; size={256xErrorBit[7:4]+ErrorBit[15:8]}
//[3]==1:new: [15:8]Max Error Bit allowed
//[2:0]==MODE 0:DS 1:DSDSDS..DS 2:DDDD...DSSSS...S 3:DDD...D 4: for internal ECC skip
unsigned short VFCOFGL; //for mode 0,1,2,3:
unsigned short VFCOFGH; //[31:16]: Data Unit size;
//[15:0]: Ecc Unit size;
//for mode 4:
//[31:16]: User Data mask
//[15:0]: Internal ECC address mask
unsigned short staPVpagesize;
unsigned int staPVpages;
unsigned int staPVsize;
unsigned char rfu[34];
unsigned short crc;
}SELECT_SPI_NAND_INFO;
#pragma pack(pop)
struct EraseCommand
{
unsigned char ChipErase;
unsigned char SectorErase;
unsigned char DieErase;
unsigned char RFU2;
} ;
struct ReadCommand
{
unsigned char SingleRead;
unsigned char DualRead;
unsigned char QuadRead;
unsigned char RFU3;
} ;
struct ProgramCommand
{
unsigned char SingleProgram;
unsigned char DualProgram;
unsigned char QuadProgram;
unsigned char RFU4;
} ;
struct CNANDContext
{
//bool is_S25FL128P_256KSectors;
const unsigned short cbyRLine[5];// = {0x111,0x121,0x122,0x141,0x144};
const unsigned short cbyPLine[5] ;//= {0x111,0x111,0x111,0x141,0x144};
unsigned int realPageSize;
unsigned int realSpareAreaSize;
unsigned int realBlockSize;
unsigned int realChipSize;
struct EraseCommand EraseCmd;
struct ReadCommand ReadCmd;
struct ProgramCommand ProgramCmd;
};
struct Block_Parameter
{
unsigned int block_sart;
unsigned int block_cnt;
unsigned int block_end;
};
struct ProgrgmPatitionTable
{
unsigned int pt_cnt;
struct Block_Parameter PT[];
};
struct BadBlockTable
{
unsigned short cnt;
unsigned short bbt[255];
};
//third field of RQ
#define CTRL_TIMEOUT 3000 ///< time out for control pipe or for firmwire
// fourth field of RQ
#define RESULT_IN 0x01 ///< result in or not
#define NO_RESULT_IN 0x00
#define GET_REGISTER 0x01 ///< get register value or not
#define NO_REGISTER 0x00
#define RFU 0x00
// bulk write mode
#define PAGE_PROGRAM 0x01 ///< pp via bulk pipes
#define PAGE_WRITE 0x02 ///< pw via bulk pipes
#define AAI_1_BYTE 0x03
#define AAI_2_BYTE 0x04
#define PP_128BYTE 0x05
#define PP_AT26DF041 0x06 ///< PP AT26DF041
#define PP_SB_FPGA 0x07 ///< Silicon Blue FPGA
#define MODE_NUMONYX_PCM 0x08 ///< Mode_Numonyx_pcm
#define PP_4ADR_256BYTE 0x09
#define PP_32BYTE 0x0A
#define PP_4ADDR_256BYTE_12 0x0B
#define PP_4ADDR_256BYTE_MICROM 0x0C
#define PP_4ADDR_256BYTE_S70FS01GS 0x0D
#define PP_PROGRAM_DIE2 0x0E
#define PP_PROGRAM_MX25L202XX 0x0F
#define PP_PROGRAM_ANYSIZE_PAGESIZE 0x11
// bulk read mode
#define BULK_NORM_READ 0x01 ///< read via bulk pipes
#define BULK_FAST_READ 0x02 ///< fast read via bulk pipes
#define BULK_AT45xx_READ 0x03 ///< fast read via bulk pipes
#define BULK_4BYTE_FAST_READ 0x04 ///< For size is bigger than 128Mb
#define BULK_4BYTE_FAST_READ_MICRON 0x05 //for 0x0c
#define BULK_FAST_READ_DIE2 0x06 ///< fast read via bulk pipes
#define BULK_4BYTE_NORM_READ 0x07 //FW 7.2.26_FPGA_D
#define BULK_QUAD_READ 0x09 //FW 7.2.29
//for flash card
#define POLLING 0x02 ///< polling
#define SET_VPP 0x03 ///< set vpp
#define VPP_OFF 0x00 ///< vpp value
#define VPP_9V 0x01
#define VPP_12V 0x02
#define SET_TARGET_FLASH 0x04 ///< set target FLASH_TRAY
#define APPLICATION_MEMORY_1 0x00 ///< application memory chip 1
#define FLASH_CARD 0x01 ///< flash card
#define APPLICATION_MEMORY_2 0x02 ///< application memory chip 2
//for io & LED
#define SET_IO 0x07 ///< request
//IO number
#define IO_1 0x01
#define IO_2 0x02
#define IO_3 0x04
#define IO_4 0x08
//led number
#define LED_RED 0x01
#define LED_GREEN 0x02
#define LED_ORANGE 0x04
#define SUPPORT_ST
#define SUPPORT_SST
#define SUPPORT_WINBOND
#define SUPPORT_PMC
#define SUPPORT_SPANSION
#define SUPPORT_MACRONIX
#define SUPPORT_EON
#define SUPPORT_ATMEL
#define SUPPORT_AMIC
#define SUPPORT_ESMT
#define SUPPORT_INTEL
#define SUPPORT_SANYO
#define SUPPORT_TSI
#define SUPPORT_FREESCALE
#define SUPPORT_SILICONBLUE
#define SUPPORT_NANTRONICS
#define SUPPORT_ATO
#define SUPPORT_FIDELIX
#define SUPPORT_FUDAN
#define SUPPORT_GIGADEVICE
// memory support list
#ifdef SUPPORT_NANTRONICS
#define SUPPORT_NANTRONICS_N25Sxx "N25Sxx"
#endif
#ifdef SUPPORT_ATO
#define SUPPORT_ATO_ATO25Qxx "ATO25Qxx"
#endif
#ifdef SUPPORT_GIGADEVICE
#define SUPPORT_GIGADEVICE_GD25SXXX_LARGE "GD25Sxxx_Large"
#define SUPPORT_GIGADEVICE_GD5F1GQ4xCx "GD5F1GQ4xCx"
#endif
#ifdef SUPPORT_ST
#define SUPPORT_ST_M25PExx "M25PExx"
#define SUPPORT_ST_M25Pxx "M25Pxx"
#define SUPPORT_ST_M25Pxx_Large "M25Pxx_Large"
#define SUPPORT_ST_M45PExx "M45PExx"
#define SUPPORT_NUMONYX_Alverstone "Alverstone"
#define SUPPORT_NUMONYX_N25Qxxx_Large "N25Qxxx_Large"
#define SUPPORT_NUMONYX_N25Qxxx_Large_2Die "N25Qxxx_Large_2Die"
#define SUPPORT_NUMONYX_N25Qxxx_Large_4Die "N25Qxxx_Large_4Die"
#endif
#ifdef SUPPORT_SST
#define SUPPORT_SST_25xFxxA "25xFxxA"
#define SUPPORT_SST_25xFxxB "25xFxxB"
#define SUPPORT_SST_25xFxxC "25xFxxC"
#define SUPPORT_SST_25xFxx "25xFxx"
#define SUPPORT_SST_26xFxxC "26VFxxC"
#endif
#ifdef SUPPORT_WINBOND
#define SUPPORT_WINBOND_W25Bxx "W25Bxx"
#define SUPPORT_WINBOND_W25Pxx "W25Pxx"
#define SUPPORT_WINBOND_W25Pxx_Large "W25Pxx_Large"
#define SUPPORT_WINBOND_W25Qxx_Large "W25Qxx_Large"
#define SUPPORT_WINBOND_W25Xxx "W25Xxx"
#define SUPPORT_WINBOND_W25Mxx_Large "W25Mxx_Large"
#endif
#ifdef SUPPORT_PMC
#define SUPPORT_PMC_PM25LVxxx "PM25LVxxx"
#define SUPPORT_PMC_PM25Wxxx "PM25Wxxx"
#endif
#ifdef SUPPORT_SPANSION
#define SUPPORT_SPANSION_S25FLxx "S25FLxxx"
#define SUPPORT_SPANSION_S25FLxx_Large "S25FLxxx_Large"
#define SUPPORT_SPANSION_S25FLxxS_Large "S25FSxxxS_Large"
#define SUPPORT_SPANSION_S25FLxxL_Large "S25FLxxxL_Large"
#define SUPPORT_SPANSION_S70FSxx_Large "S70FSxxx_Large"
#endif
#ifdef SUPPORT_MACRONIX
#define SUPPORT_MACRONIX_MX25Lxxx "MX25Lxxx"
#define SUPPORT_MACRONIX_MX25Lxxx_Large "MX25Lxxx_Large"
#define SUPPORT_MACRONIX_MX25Lxxx_PP32 "MX25Lxxx_PP32"
#endif
#ifdef SUPPORT_EON
#define SUPPORT_EON_EN25Xxx "EN25Xxx"
#define SUPPORT_EON_EN25QHxx_Large "EN25QHxx_Large"
#endif
#ifdef SUPPORT_ATMEL
#define SUPPORT_ATMEL_AT26xxx "AT26xxx"
#define SUPPORT_ATMEL_AT25Fxxx "AT25Fxxx"
#define SUPPORT_ATMEL_AT25FSxxx "AT25FSxxx"
#define SUPPORT_ATMEL_45DBxxxD "AT45DBxxxD"
#define SUPPORT_ATMEL_45DBxxxB "AT45DBxxxB"
#endif
#ifdef SUPPORT_AMIC
#define SUPPORT_AMIC_A25Lxxx "A25Lxxx"
#define SUPPORT_AMIC_A25LQxxx "A25LQxxx"
#endif
#ifdef SUPPORT_ESMT
#define SUPPORT_ESMT_F25Lxx "F25Lxx"
#endif
#ifdef SUPPORT_INTEL
#define SUPPORT_INTEL_S33 "S33"
#endif
#ifdef SUPPORT_FREESCALE
#define SUPPORT_FREESCALE_MCF "MCF"
#endif
#ifdef SUPPORT_SANYO
#define SUPPORT_SANYO_LE25FWxxx "LE25FWxxx"
#endif
#ifdef SUPPORT_TSI
#define SUPPORT_TSI_TS25Lxx "TS25Lxx"
#define SUPPORT_TSI_TS25Lxx_0A "TS25Lxx_0A"
#endif
#ifdef SUPPORT_SILICONBLUE
#define SUPPORT_SILICONBLUE_iCE65 "iCE65"
#endif
#ifdef SUPPORT_FIDELIX
#define SUPPORT_FIDELIX_FM25Qxx "FM25Qxx"
#endif
#ifdef SUPPORT_FUDAN
#define SUPPORT_FUDAN_FM25Fxx "FM25Fxx"
#endif
// for usb
#define USB_TIMEOUT 800000 ///< time out value for usb EP2
// for SR reads
#define MAX_TRIALS 0x80000
#define BIT0 0x01
#define BIT1 0x02
#define BIT2 0x04
#define BIT3 0x08
#define BIT4 0x10
#define BIT5 0x20
#define BIT6 0x40
#define BIT7 0x80
#define BIT8 0x100
#define BIT9 0x200
#define BIT10 0x400
#define BIT11 0x800
#define BIT12 0x1000
#define BIT13 0x2000
#define BIT14 0x4000
#define BIT15 0x8000
#define BIT16 0x10000
#define BIT17 0x20000
#define BIT18 0x40000
#define ERASE BIT0
#define PROGRAM BIT1
#define VERIFY BIT2
#define BLANK BIT3
#define DETECT BIT4
#define BATCH BIT5
#define TYPE BIT6
#define FSUM BIT7
#define CSUM BIT8
#define READ_TO_FILE BIT9
#define BLINK BIT10
#define DEVICE_ID BIT11
#define LIST_TYPE BIT12
#define LOADFILEWITHVERIFY BIT13
#define CHECK_INFO BIT14
#define SPECIAL_ERASE BIT15
#define SPECIAL_PROGRAM BIT16
#define SPECIAL_AUTO BIT17
#define BATCH_WITH_FORCEERASE BIT18
struct CAddressRange {
size_t start;
size_t end;
size_t length;
};
enum {
SITE_NORMAL = 0,
SITE_BUSY,
SITE_ERROR,
SITE_OK,
};
enum {
Seriase_45 = 0x08,
Seriase_25 = 0x00,
};
typedef enum {
vccPOWEROFF = 0x00,
vcc3_5V = 0x10,
vcc2_5V = 0x11,
vcc1_8V = 0x12,
vccdo_nothing = 0xFF,
} VCC_VALUE;
typedef enum
{
IO_Single = 0x00,
IO_Dual1 =0x01,
IO_Dual2 =0x02,//sf600 not support 122
IO_Quad1 =0x03,
IO_Quad2 =0x04,
IO_Quad3 =0x05, // Quad command 4-4-4
IO_Octa1 =0x89, // Octal command for Macronix (888)
IO_Octa2 =0x88, // Octal command for Micron (888)
} IO_VALUE;
enum { // value dedicated by the spec
STARTUP_APPLI_SF_1 = 0,
STARTUP_APPLI_CARD = 1,
STARTUP_APPLI_SF_2 = 2,
STARTUP_APPLI_SF_SKT = 3,
STARTUP_SPECIFY_LATER = 0xFE,
STARTUP_PREVIOUS = 0xFF
};
enum {
clk_24M = 0x00,
clk_8M = 0x01,
clk_12M = 0x02,
clk_3M = 0x03,
clk_2180K = 0x04,
clk_1500K = 0x05,
clk_750K = 0x06,
clk_375K = 0x07,
};
#endif //_MACRO_H