From 8403ccb49f98d1583736984c92d62735d9d466b5 Mon Sep 17 00:00:00 2001 From: Uwe Hermann Date: Sat, 16 May 2009 21:39:19 +0000 Subject: Add proper workaround for 3COM 3C90xB cards, which need special fixups (the 3C90xC ones don't) This is tested on hardware. Also, add initial support for the Atmel AT29C010A chip (which I inserted in a 3COM 3C90xB card for testing). It can be detected, read works, erase works, but write will need some additional code (will post in another patch later). Corresponding to flashrom svn r520. Signed-off-by: Uwe Hermann Acked-by: Carl-Daniel Hailfinger --- flashchips.c | 14 ++++++++++++++ 1 file changed, 14 insertions(+) (limited to 'flashchips.c') diff --git a/flashchips.c b/flashchips.c index eb241a9..36307c1 100644 --- a/flashchips.c +++ b/flashchips.c @@ -376,6 +376,20 @@ struct flashchip flashchips[] = { { .vendor = "Atmel", + .name = "AT29C010A", + .manufacture_id = ATMEL_ID, + .model_id = AT_29C010A, + .total_size = 128, + .page_size = 128, + .tested = TEST_OK_PRE, + .probe = probe_jedec, + .erase = erase_chip_jedec, + .write = write_jedec, /* FIXME */ + .read = read_memmapped, + }, + + { + .vendor = "Atmel", .name = "AT29C020", .manufacture_id = ATMEL_ID, .model_id = AT_29C020, -- cgit v1.1