]> sigrok.org Git - libsigrokdecode.git/blame - decoders/spiflash/lists.py
spiflash: Remove hardcoded Macronix references.
[libsigrokdecode.git] / decoders / spiflash / lists.py
CommitLineData
c2446117
UH
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.
22cmds = {
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
49device_name = {
db188228
UH
50 'macronix': {
51 0x14: 'MX25L1605D',
52 0x15: 'MX25L3205D',
53 0x16: 'MX25L6405D',
54 },
c2446117
UH
55}
56
57chips = {
58 # Macronix
59 'macronix_mx25l1605d': {
60 'vendor': 'Macronix',
61 'model': 'MX25L1605D',
62 'res_id': 0x14,
63 'rems_id': 0xc214,
64 'rems2_id': 0xc214,
65 'rdid_id': 0xc22015,
66 'page_size': 256,
67 'sector_size': 4 * 1024,
68 'block_size': 64 * 1024,
69 },
70 'macronix_mx25l3205d': {
71 'vendor': 'Macronix',
72 'model': 'MX25L3205D',
73 'res_id': 0x15,
74 'rems_id': 0xc215,
75 'rems2_id': 0xc215,
76 'rdid_id': 0xc22016,
77 'page_size': 256,
78 'sector_size': 4 * 1024,
79 'block_size': 64 * 1024,
80 },
81 'macronix_mx25l6405d': {
82 'vendor': 'Macronix',
83 'model': 'MX25L6405D',
84 'res_id': 0x16,
85 'rems_id': 0xc216,
86 'rems2_id': 0xc216,
87 'rdid_id': 0xc22017,
88 'page_size': 256,
89 'sector_size': 4 * 1024,
90 'block_size': 64 * 1024,
91 },
92}