diff options
author | Uwe Hermann <uwe@hermann-uwe.de> | 2016-10-30 11:28:38 +0100 |
---|---|---|
committer | Uwe Hermann <uwe@hermann-uwe.de> | 2016-11-07 02:00:55 +0100 |
commit | 03ec43f06ea5675828316228f4e26f8152859c99 (patch) | |
tree | 59762f95d0225b8e7b0cad4f84425dd1f354e726 /decoders | |
parent | db1882287c6e29d7c22f55f21c0735a67e580d3d (diff) | |
download | libsigrokdecode-03ec43f06ea5675828316228f4e26f8152859c99.tar.gz libsigrokdecode-03ec43f06ea5675828316228f4e26f8152859c99.zip |
spiflash: Add FIDELIX FM25Q32 metadata.
Diffstat (limited to 'decoders')
-rw-r--r-- | decoders/spiflash/lists.py | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/decoders/spiflash/lists.py b/decoders/spiflash/lists.py index a2a0a65..9a06992 100644 --- a/decoders/spiflash/lists.py +++ b/decoders/spiflash/lists.py @@ -47,6 +47,9 @@ cmds = { } device_name = { + 'fidelix': { + 0x15: 'FM25Q32', + }, 'macronix': { 0x14: 'MX25L1605D', 0x15: 'MX25L3205D', @@ -55,6 +58,18 @@ device_name = { } chips = { + # FIDELIX + 'fidelix_fm25q32': { + 'vendor': 'FIDELIX', + 'model': 'FM25Q32', + 'res_id': 0x15, + 'rems_id': 0xa115, + 'rems2_id': 0xa115, + 'rdid_id': 0xa14016, + 'page_size': 256, + 'sector_size': 4 * 1024, + 'block_size': 64 * 1024, + }, # Macronix 'macronix_mx25l1605d': { 'vendor': 'Macronix', |