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

Emmanuel Vadot manu at FreeBSD.org
Fri Oct 25 17:56:25 UTC 2019


Author: manu
Date: Fri Oct 25 17:56:24 2019
New Revision: 354086
URL: https://svnweb.freebsd.org/changeset/base/354086

Log:
  flash: Add GigaDevice gd25q128 flash
  
  Add this flash chip which is a 128Mb spi flash.
  
  MFC after:	1 week

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

Modified: head/sys/dev/flash/mx25l.c
==============================================================================
--- head/sys/dev/flash/mx25l.c	Fri Oct 25 17:54:37 2019	(r354085)
+++ head/sys/dev/flash/mx25l.c	Fri Oct 25 17:56:24 2019	(r354086)
@@ -150,6 +150,7 @@ static struct mx25l_flash_ident flash_devices[] = {
 
 	/* GigaDevice */
 	{ "gd25q64",	0xc8, 0x4017, 64 * 1024, 128, FL_ERASE_4K },
+	{ "gd25q128",	0xc8, 0x4018, 64 * 1024, 256, FL_ERASE_4K },
 };
 
 static int


More information about the svn-src-head mailing list