Commit 1a5eaa1a authored by Andrew Morgan's avatar Andrew Morgan Committed by Carl-Daniel Hailfinger
Browse files

Support Atmel AT49F020 256kB parallel flash


Corresponding to flashrom svn r1036.
Signed-off-by: default avatarAndrew Morgan <ziltro@ziltro.com>
Acked-by: default avatarCarl-Daniel Hailfinger <c-d.hailfinger.devel.2006@gmx.net>
parent 4146ceda
......@@ -1070,6 +1070,29 @@ struct flashchip flashchips[] = {
.read = read_memmapped,
},
{
.vendor = "Atmel",
.name = "AT49F020",
.bustype = CHIP_BUSTYPE_PARALLEL,
.manufacture_id = ATMEL_ID,
.model_id = AT_49F020,
.total_size = 256,
.page_size = 256,
.feature_bits = FEATURE_EITHER_RESET,
.tested = TEST_OK_PREW,
.probe = probe_jedec,
.probe_timing = TIMING_ZERO, /* Datasheet has no timing info specified */
.block_erasers =
{
{
.eraseblocks = { {256 * 1024, 1} },
.block_erase = erase_chip_block_jedec,
}
},
.write = write_jedec_1,
.read = read_memmapped,
},
{
.vendor = "Atmel",
.name = "AT49F002(N)",
......
......@@ -144,6 +144,7 @@
#define AT_45DB642 /* No ID available */
#define AT_45DB642D 0x2800
#define AT_49BV512 0x03
#define AT_49F020 0x0B
#define AT_49F002N 0x07 /* for AT49F002(N) */
#define AT_49F002NT 0x08 /* for AT49F002(N)T */
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment