svn commit: r211432 - head/sys/dev/flash

Adrian Chadd adrian at FreeBSD.org
Tue Aug 17 16:27:13 UTC 2010


Author: adrian
Date: Tue Aug 17 16:27:13 2010
New Revision: 211432
URL: http://svn.freebsd.org/changeset/base/211432

Log:
  Add s25sl064a, an 8mb SPI flash part.

Modified:
  head/sys/dev/flash/mx25l.c

Modified: head/sys/dev/flash/mx25l.c
==============================================================================
--- head/sys/dev/flash/mx25l.c	Tue Aug 17 16:25:44 2010	(r211431)
+++ head/sys/dev/flash/mx25l.c	Tue Aug 17 16:27:13 2010	(r211432)
@@ -93,6 +93,7 @@ struct mx25l_flash_ident flash_devices[]
 	{ "mx25ll64",  0xc2, 0x2017, 64 * 1024, 128, FL_NONE },
 	{ "mx25ll128", 0xc2, 0x2018, 64 * 1024, 256, FL_ERASE_4K | FL_ERASE_32K },
 	{ "s25fl128",  0x01, 0x2018, 64 * 1024, 256, FL_NONE },
+	{ "s25sl064a", 0x01, 0x0216, 64 * 1024, 128, FL_NONE },
 };
 
 static uint8_t


More information about the svn-src-all mailing list