Urja Rannikko has uploaded a new change for review. ( https://review.coreboot.org/19616 )
Change subject: Add a generic 27C256 definition (32k UV EPROM) ......................................................................
Add a generic 27C256 definition (32k UV EPROM)
This is so that they're readable and verifiable with -c 27C256, and that it is possible to read a correctly sized image from them.
Signed-off-by: Urja Rannikko urjaman@gmail.com
Change-Id: Ie726ff252bc398d78e76bfb5ed01359341b734f3 --- M flashchips.c 1 file changed, 14 insertions(+), 1 deletion(-)
git pull ssh://review.coreboot.org:29418/flashrom refs/changes/16/19616/1
diff --git a/flashchips.c b/flashchips.c index 40b6b8e..90c607f 100644 --- a/flashchips.c +++ b/flashchips.c @@ -15879,7 +15879,20 @@ .read = read_memmapped, .voltage = {3000, 3600}, /* Also has 12V fast program */ }, - + + { + .vendor = "Generic", /* "Unknown" gets filtered from -L. */ + .name = "27C256", + .bustype = BUS_PARALLEL, + .total_size = 32, + .page_size = 32 * 1024, + .tested = { .probe = NA, .read = OK, .erase = NA, .write = BAD }, + .probe = probe_dummy, + .write = NULL, + .read = read_memmapped, + .voltage = {4500, 5500}, + }, + { .vendor = "Unknown", .name = "SFDP-capable chip",