svn commit: r331188 - stable/11/sys/dev/flash

Eitan Adler eadler at FreeBSD.org
Mon Mar 19 06:56:31 UTC 2018


Author: eadler
Date: Mon Mar 19 06:56:30 2018
New Revision: 331188
URL: https://svnweb.freebsd.org/changeset/base/331188

Log:
  MFC r325113:
  
  Add Microchip 1-MBit SPI flash ID
  
  Used on the AmigaOne X5000.

Modified:
  stable/11/sys/dev/flash/mx25l.c
Directory Properties:
  stable/11/   (props changed)

Modified: stable/11/sys/dev/flash/mx25l.c
==============================================================================
--- stable/11/sys/dev/flash/mx25l.c	Mon Mar 19 06:55:26 2018	(r331187)
+++ stable/11/sys/dev/flash/mx25l.c	Mon Mar 19 06:56:30 2018	(r331188)
@@ -124,6 +124,7 @@ 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 },
+	{ "SST25VF010A", 0xbf, 0x2549, 4 * 1024, 32, FL_ERASE_4K | FL_ERASE_32K },
 	{ "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