From d7adb29de7835e38daa8e786794a6e923c3a92c2 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Arnim=20L=C3=A4uger?= Date: Sun, 17 May 2009 22:07:46 +0000 Subject: [PATCH] added Winbond W19B320AT/B flash chip git-svn-id: https://urjtag.svn.sourceforge.net/svnroot/urjtag/trunk@1600 b68d4a1b-bc3d-0410-92ed-d4ac073336b7 --- urjtag/ChangeLog | 4 ++++ urjtag/src/flash/amd.c | 19 ++++++++++++++++--- 2 files changed, 20 insertions(+), 3 deletions(-) diff --git a/urjtag/ChangeLog b/urjtag/ChangeLog index 63125010..541a7f04 100644 --- a/urjtag/ChangeLog +++ b/urjtag/ChangeLog @@ -1,3 +1,7 @@ +2009-05-18 Arnim Laeuger + + * src/flash/amd.c: added Winbond W19B320AT/B flash chip + 2009-05-16 Arnim Laeuger * src/bus/ixp435.c, src/bus/buses.c, src/bus/buses.h, diff --git a/urjtag/src/flash/amd.c b/urjtag/src/flash/amd.c index b3072125..a5c53d01 100644 --- a/urjtag/src/flash/amd.c +++ b/urjtag/src/flash/amd.c @@ -305,7 +305,7 @@ amd_flash_print_info (urj_log_level_t ll, urj_flash_cfi_array_t *cfi_array) prot = URJ_BUS_READ (bus, cfi_array->address + (0x02 << o)) & 0xFF; amd_flash_read_array (cfi_array); /* AMD reset */ urj_log (ll, _("Chip: AMD Flash\n\tManufacturer: ")); - switch (mid) + switch (mid & 0xff) { case 0x0001: urj_log (ll, "AMD"); @@ -387,6 +387,19 @@ amd_flash_print_info (urj_log_level_t ll, urj_flash_cfi_array_t *cfi_array) break; } break; + case 0x00DA: + urj_log (ll, "Winbond"); + urj_log (ll, _("\n\tChip: ")); + switch (cid & 0xff) + { + case 0x007E: + urj_log (ll, "W19B320AT/B"); + break; + default: + urj_log (ll, _("Unknown (ID 0x%04x)"), cid); + break; + } + break; default: urj_log (ll, _("Unknown manufacturer (ID 0x%04x) Chip (ID 0x%04x)"), mid, cid); @@ -622,7 +635,7 @@ urj_flash_driver_t urj_flash_amd_32_flash_driver = { urj_flash_driver_t urj_flash_amd_16_flash_driver = { 2, /* buswidth */ N_("AMD/Fujitsu Standard Command Set"), - N_("supported: AMD 29LV800B, S29GLxxxN; MX29LV640B; 1x16 Bit"), + N_("supported: AMD 29LV800B, S29GLxxxN; MX29LV640B, W19B320AT/B; 1x16 Bit"), amd_flash_autodetect16, amd_flash_print_info, amd_flash_erase_block, @@ -634,7 +647,7 @@ urj_flash_driver_t urj_flash_amd_16_flash_driver = { urj_flash_driver_t urj_flash_amd_8_flash_driver = { 1, /* buswidth */ N_("AMD/Fujitsu Standard Command Set"), - N_("supported: AMD 29LV160, AMD 29LV065D, AMD 29LV040B, S29GLxxxN; 1x8 Bit"), + N_("supported: AMD 29LV160, AMD 29LV065D, AMD 29LV040B, S29GLxxxN, W19B320AT/B; 1x8 Bit"), amd_flash_autodetect8, amd_flash_print_info, amd_flash_erase_block,