]> sigrok.org Git - libsigrokdecode.git/blob - decoders/spiflash/lists.py
spiflash: Add FIDELIX FM25Q32 metadata.
[libsigrokdecode.git] / decoders / spiflash / lists.py
1 ##
2 ## This file is part of the libsigrokdecode project.
3 ##
4 ## Copyright (C) 2015 Uwe Hermann <uwe@hermann-uwe.de>
5 ##
6 ## This program is free software; you can redistribute it and/or modify
7 ## it under the terms of the GNU General Public License as published by
8 ## the Free Software Foundation; either version 2 of the License, or
9 ## (at your option) any later version.
10 ##
11 ## This program is distributed in the hope that it will be useful,
12 ## but WITHOUT ANY WARRANTY; without even the implied warranty of
13 ## MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 ## GNU General Public License for more details.
15 ##
16 ## You should have received a copy of the GNU General Public License
17 ## along with this program; if not, write to the Free Software
18 ## Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301 USA
19 ##
20
21 # Dict which maps command IDs to their names and descriptions.
22 cmds = {
23     0x06: ('WREN', 'Write enable'),
24     0x04: ('WRDI', 'Write disable'),
25     0x9f: ('RDID', 'Read identification'),
26     0x05: ('RDSR', 'Read status register'),
27     0x01: ('WRSR', 'Write status register'),
28     0x03: ('READ', 'Read data'),
29     0x0b: ('FAST/READ', 'Fast read data'),
30     0xbb: ('2READ', '2x I/O read'),
31     0x20: ('SE', 'Sector erase'),
32     0xd8: ('BE', 'Block erase'),
33     0x60: ('CE', 'Chip erase'),
34     0xc7: ('CE2', 'Chip erase'), # Alternative command ID
35     0x02: ('PP', 'Page program'),
36     0xad: ('CP', 'Continuously program mode'),
37     0xb9: ('DP', 'Deep power down'),
38     0xab: ('RDP/RES', 'Release from deep powerdown / Read electronic ID'),
39     0x90: ('REMS', 'Read electronic manufacturer & device ID'),
40     0xef: ('REMS2', 'Read ID for 2x I/O mode'),
41     0xb1: ('ENSO', 'Enter secured OTP'),
42     0xc1: ('EXSO', 'Exit secured OTP'),
43     0x2b: ('RDSCUR', 'Read security register'),
44     0x2f: ('WRSCUR', 'Write security register'),
45     0x70: ('ESRY', 'Enable SO to output RY/BY#'),
46     0x80: ('DSRY', 'Disable SO to output RY/BY#'),
47 }
48
49 device_name = {
50     'fidelix': {
51         0x15: 'FM25Q32',
52     },
53     'macronix': {
54         0x14: 'MX25L1605D',
55         0x15: 'MX25L3205D',
56         0x16: 'MX25L6405D',
57     },
58 }
59
60 chips = {
61     # FIDELIX
62     'fidelix_fm25q32': {
63         'vendor': 'FIDELIX',
64         'model': 'FM25Q32',
65         'res_id': 0x15,
66         'rems_id': 0xa115,
67         'rems2_id': 0xa115,
68         'rdid_id': 0xa14016,
69         'page_size': 256,
70         'sector_size': 4 * 1024,
71         'block_size': 64 * 1024,
72     },
73     # Macronix
74     'macronix_mx25l1605d': {
75         'vendor': 'Macronix',
76         'model': 'MX25L1605D',
77         'res_id': 0x14,
78         'rems_id': 0xc214,
79         'rems2_id': 0xc214,
80         'rdid_id': 0xc22015,
81         'page_size': 256,
82         'sector_size': 4 * 1024,
83         'block_size': 64 * 1024,
84     },
85     'macronix_mx25l3205d': {
86         'vendor': 'Macronix',
87         'model': 'MX25L3205D',
88         'res_id': 0x15,
89         'rems_id': 0xc215,
90         'rems2_id': 0xc215,
91         'rdid_id': 0xc22016,
92         'page_size': 256,
93         'sector_size': 4 * 1024,
94         'block_size': 64 * 1024,
95     },
96     'macronix_mx25l6405d': {
97         'vendor': 'Macronix',
98         'model': 'MX25L6405D',
99         'res_id': 0x16,
100         'rems_id': 0xc216,
101         'rems2_id': 0xc216,
102         'rdid_id': 0xc22017,
103         'page_size': 256,
104         'sector_size': 4 * 1024,
105         'block_size': 64 * 1024,
106     },
107 }