[ 2996919 ] Support for MX29LV320C

git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1783 b68d4a1b-bc3d-0410-92ed-d4ac073336b7
master
Arnim Läuger 15 years ago
parent a3df1304fb
commit 5e9cdfb8c6

@ -1,3 +1,7 @@
2010-05-19 Arnim Laeuger <arniml>
* src/flash/amd.c, doc/UrJTAG.txt: [ 2996919 ] Support for MX29LV320C
2010-05-05 Mike Frysinger <vapier@gentoo.org>
* src/cmd/cmd_debug.c (string_to_log_level): Tweak the -1 sanity check to

@ -303,6 +303,7 @@ be untested combinations of chip type, bus width, ...
* Intel 28FxxxK18 (28F640K18, 28F128K18, 28F256K18)
* AMD Am29LV64xD (Am29LV640D, Am29LV641D, Am29LV642D)
* AMD Am29xx040B (Am29F040B, Am29LV040B)
* Macronix MX29LV160, MX29LV320, MX29LV640
UrJTAG uses the multi-byte write mode if supported by the particular flash
device. The flash code will automatically switch to this algorithm if the

@ -389,6 +389,12 @@ amd_flash_print_info (urj_log_level_t ll, urj_flash_cfi_array_t *cfi_array)
case 0x2249:
urj_log (ll, "MX29LV160B");
break;
case 0x22a7:
urj_log (ll, "MX29LV320CT");
break;
case 0x22a8:
urj_log (ll, "MX29LV320CB");
break;
case 0x22CB:
urj_log (ll, "MX29LV640B");
break;

Loading…
Cancel
Save