[flashrom] [commit] r1097 - trunk

repository service svn at flashrom.org
Thu Jul 22 17:20:44 CEST 2010


Author: hailfinger
Date: Thu Jul 22 17:20:43 2010
New Revision: 1097
URL: http://flashrom.org/trac/coreboot/changeset/1097

Log:
Add support for the Intel 28F002BC-T.

Signed-off-by: Joshua Roys <roysjosh at gmail.com>
Acked-by: Carl-Daniel Hailfinger <c-d.hailfinger.devel.2006 at gmx.net>

Modified:
   trunk/flashchips.c
   trunk/flashchips.h

Modified: trunk/flashchips.c
==============================================================================
--- trunk/flashchips.c	Thu Jul 22 13:44:38 2010	(r1096)
+++ trunk/flashchips.c	Thu Jul 22 17:20:43 2010	(r1097)
@@ -2814,6 +2814,33 @@
 
 	{
 		.vendor		= "Intel",
+		.name		= "28F002BC-T",
+		.bustype	= CHIP_BUSTYPE_PARALLEL,
+		.manufacture_id	= INTEL_ID,
+		.model_id	= P28F002BC,
+		.total_size	= 256,
+		.page_size	= 256 * 1024,
+		.tested		= TEST_UNTESTED,
+		.probe		= probe_82802ab,
+		.probe_timing	= TIMING_ZERO, /* Datasheet has no timing info specified */
+		.block_erasers	=
+		{
+			{
+				.eraseblocks = {
+					{128 * 1024, 1},
+					{96 * 1024, 1},
+					{8 * 1024, 2},
+					{16 * 1024, 1},
+				},
+				.block_erase = erase_block_82802ab,
+			},
+		},
+		.write		= write_82802ab,
+		.read		= read_memmapped,
+	},
+
+	{
+		.vendor		= "Intel",
 		.name		= "28F004S5",
 		.bustype	= CHIP_BUSTYPE_PARALLEL,
 		.manufacture_id	= INTEL_ID,

Modified: trunk/flashchips.h
==============================================================================
--- trunk/flashchips.h	Thu Jul 22 13:44:38 2010	(r1096)
+++ trunk/flashchips.h	Thu Jul 22 17:20:43 2010	(r1097)
@@ -274,6 +274,7 @@
 #define E_28F016S5		0xAA
 #define P28F001BXT		0x94	/* 28F001BX-T */
 #define P28F001BXB		0x95	/* 28F001BX-B */
+#define P28F002BC		0x7C	/* 28F002BC-T */
 #define P28F004BT		0x78	/* 28F004BV/BE-T */
 #define P28F004BB		0x79	/* 28F004BV/BE-B */
 #define P28F400BT		0x70	/* 28F400BV/CV/CE-T */




More information about the flashrom mailing list