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

Adrian Chadd adrian at FreeBSD.org
Thu Nov 5 03:13:12 UTC 2015


Author: adrian
Date: Thu Nov  5 03:13:10 2015
New Revision: 290380
URL: https://svnweb.freebsd.org/changeset/base/290380

Log:
  Add support for s25fl256s.  I /think/ it's a 32mb NOR flash part.
  
  This is submitted by a FreeBSD wifi user who has requested they not
  be named.  Thankyou!

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

Modified: head/sys/dev/flash/mx25l.c
==============================================================================
--- head/sys/dev/flash/mx25l.c	Thu Nov  5 02:09:48 2015	(r290379)
+++ head/sys/dev/flash/mx25l.c	Thu Nov  5 03:13:10 2015	(r290380)
@@ -107,6 +107,7 @@ struct mx25l_flash_ident flash_devices[]
 	{ "s25fl032",	0x01, 0x0215, 64 * 1024, 64, FL_NONE },
 	{ "s25fl064",	0x01, 0x0216, 64 * 1024, 128, FL_NONE },
 	{ "s25fl128",	0x01, 0x2018, 64 * 1024, 256, FL_NONE },
+	{ "s25fl256s",	0x01, 0x0219, 64 * 1024, 512, FL_NONE },
 	{ "SST25VF032B", 0xbf, 0x254a, 64 * 1024, 64, FL_ERASE_4K | FL_ERASE_32K },
 
 	/* Winbond -- w25x "blocks" are 64K, "sectors" are 4KiB */


More information about the svn-src-all mailing list