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

Nick O'Brien nick at FreeBSD.org
Fri Oct 2 17:33:56 UTC 2020


Author: nick
Date: Fri Oct  2 17:33:56 2020
New Revision: 366366
URL: https://svnweb.freebsd.org/changeset/base/366366

Log:
  flash: Add support for SPI flash s25fl512s
  
  Reviewed by:	kp
  Approved by:	kp (mentor)
  Sponsored by:	Axiado

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

Modified: head/sys/dev/flash/mx25l.c
==============================================================================
--- head/sys/dev/flash/mx25l.c	Fri Oct  2 17:06:05 2020	(r366365)
+++ head/sys/dev/flash/mx25l.c	Fri Oct  2 17:33:56 2020	(r366366)
@@ -133,6 +133,7 @@ static struct mx25l_flash_ident flash_devices[] = {
 	{ "s25fl064",	0x01, 0x0216, 64 * 1024, 128, FL_NONE },
 	{ "s25fl128",	0x01, 0x2018, 64 * 1024, 256, FL_NONE },
 	{ "s25fl256s",	0x01, 0x0219, 64 * 1024, 512, FL_NONE },
+	{ "s25fl512s",	0x01, 0x0220, 64 * 1024, 1024, FL_NONE },
 	{ "SST25VF010A", 0xbf, 0x2549, 4 * 1024, 32, FL_ERASE_4K | FL_ERASE_32K },
 	{ "SST25VF032B", 0xbf, 0x254a, 64 * 1024, 64, FL_ERASE_4K | FL_ERASE_32K },
 


More information about the svn-src-all mailing list