]> sigrok.org Git - libsigrokdecode.git/blob - decoders/spiflash/lists.py
spiflash: Add Winbond W25Q80DV 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, see <http://www.gnu.org/licenses/>.
18 ##
19
20 from collections import OrderedDict
21
22 # OrderedDict which maps command IDs to their names and descriptions.
23 # Please keep this sorted by command ID.
24 # Don't forget to update 'Ann' in pd.py if you add/remove items here.
25 cmds = OrderedDict([
26     (0x01, ('WRSR', 'Write status register')),
27     (0x02, ('PP', 'Page program')),
28     (0x03, ('READ', 'Read data')),
29     (0x04, ('WRDI', 'Write disable')),
30     (0x05, ('RDSR', 'Read status register')),
31     (0x06, ('WREN', 'Write enable')),
32     (0x0b, ('FAST/READ', 'Fast read data')),
33     (0x20, ('SE', 'Sector erase')),
34     (0x2b, ('RDSCUR', 'Read security register')),
35     (0x2f, ('WRSCUR', 'Write security register')),
36     (0x35, ('RDSR2', 'Read status register 2')),
37     (0x60, ('CE', 'Chip erase')),
38     (0x70, ('ESRY', 'Enable SO to output RY/BY#')),
39     (0x80, ('DSRY', 'Disable SO to output RY/BY#')),
40     (0x82, ('WRITE1', 'Main memory page program through buffer 1 with built-in erase')),
41     (0x85, ('WRITE2', 'Main memory page program through buffer 2 with built-in erase')),
42     (0x90, ('REMS', 'Read electronic manufacturer & device ID')),
43     (0x9f, ('RDID', 'Read identification')),
44     (0xab, ('RDP/RES', 'Release from deep powerdown / Read electronic ID')),
45     (0xad, ('CP', 'Continuously program mode')),
46     (0xb1, ('ENSO', 'Enter secured OTP')),
47     (0xb9, ('DP', 'Deep power down')),
48     (0xbb, ('2READ', '2x I/O read')), # a.k.a. "Fast read dual I/O".
49     (0xc1, ('EXSO', 'Exit secured OTP')),
50     (0xc7, ('CE2', 'Chip erase')), # Alternative command ID
51     (0xd7, ('STATUS', 'Status register read')),
52     (0xd8, ('BE', 'Block erase')),
53     (0xef, ('REMS2', 'Read ID for 2x I/O mode')),
54 ])
55
56 device_name = {
57     'adesto': {
58         0x00: 'AT45Dxxx family, standard series',
59     },
60     'fidelix': {
61         0x15: 'FM25Q32',
62     },
63     'macronix': {
64         0x14: 'MX25L1605D',
65         0x15: 'MX25L3205D',
66         0x16: 'MX25L6405D',
67     },
68     'winbond': {
69         0x13: 'W25Q80DV',
70     },
71 }
72
73 chips = {
74     # Adesto
75     'adesto_at45db161e': {
76         'vendor': 'Adesto',
77         'model': 'AT45DB161E',
78         'res_id': 0xff, # The chip doesn't emit an ID here.
79         'rems_id': 0xffff, # Not supported by the chip.
80         'rems2_id': 0xffff, # Not supported by the chip.
81         'rdid_id': 0x1f26000100, # RDID and 2 extra "EDI" bytes.
82         'page_size': 528, # Configurable, could also be 512 bytes.
83         'sector_size': 128 * 1024,
84         'block_size': 4 * 1024,
85     },
86     # FIDELIX
87     'fidelix_fm25q32': {
88         'vendor': 'FIDELIX',
89         'model': 'FM25Q32',
90         'res_id': 0x15,
91         'rems_id': 0xa115,
92         'rems2_id': 0xa115,
93         'rdid_id': 0xa14016,
94         'page_size': 256,
95         'sector_size': 4 * 1024,
96         'block_size': 64 * 1024,
97     },
98     # Macronix
99     'macronix_mx25l1605d': {
100         'vendor': 'Macronix',
101         'model': 'MX25L1605D',
102         'res_id': 0x14,
103         'rems_id': 0xc214,
104         'rems2_id': 0xc214,
105         'rdid_id': 0xc22015,
106         'page_size': 256,
107         'sector_size': 4 * 1024,
108         'block_size': 64 * 1024,
109     },
110     'macronix_mx25l3205d': {
111         'vendor': 'Macronix',
112         'model': 'MX25L3205D',
113         'res_id': 0x15,
114         'rems_id': 0xc215,
115         'rems2_id': 0xc215,
116         'rdid_id': 0xc22016,
117         'page_size': 256,
118         'sector_size': 4 * 1024,
119         'block_size': 64 * 1024,
120     },
121     'macronix_mx25l6405d': {
122         'vendor': 'Macronix',
123         'model': 'MX25L6405D',
124         'res_id': 0x16,
125         'rems_id': 0xc216,
126         'rems2_id': 0xc216,
127         'rdid_id': 0xc22017,
128         'page_size': 256,
129         'sector_size': 4 * 1024,
130         'block_size': 64 * 1024,
131     },
132     # Winbond
133     'winbond_w25q80dv': {
134         'vendor': 'Winbond',
135         'model': 'W25Q80DV',
136         'res_id': 0x13,
137         'rems_id': 0xef13,
138         'rems2_id': 0xffff, # Not supported by the chip.
139         'rdid_id': 0xef4014,
140         'page_size': 256,
141         'sector_size': 4 * 1024,
142         'block_size': 64 * 1024, # Configurable, could also be 32 * 1024 bytes.
143     },
144 }