From: Stefan Mahr Date: Tue, 24 May 2011 12:58:03 +0000 (+0200) Subject: add support for spansion flash on mindspeed c300 eval board X-Git-Tag: v0.5.0-rc1~58 X-Git-Url: https://review.openocd.org/gitweb?p=openocd.git;a=commitdiff_plain;h=6d6837f988cbce26de0195ad69736241501cdb0e add support for spansion flash on mindspeed c300 eval board Signed-off-by: Stefan Mahr --- diff --git a/src/flash/nor/non_cfi.c b/src/flash/nor/non_cfi.c index 795f60da18..9c516c257b 100644 --- a/src/flash/nor/non_cfi.c +++ b/src/flash/nor/non_cfi.c @@ -90,6 +90,20 @@ static struct non_cfi non_cfi_flashes[] = { ERASE_REGION(128, 4*KB) } }, + { + .mfr = CFI_MFR_AMD, /* Spansion AM29LV040B */ + .id = 0x4f, + .pri_id = 0x02, + .dev_size = 512*KB, + .interface_desc = 0x0, /* x8 only device */ + .max_buf_write_size = 0x0, + .status_poll_mask = CFI_STATUS_POLL_MASK_DQ5_DQ6_DQ7, + .num_erase_regions = 1, + .erase_region_info = + { + ERASE_REGION(8, 64*KB) + } + }, { .mfr = CFI_MFR_SST, .id = 0x2780,