svn commit: r355808 - stable/12/sys/dev/flash
Emmanuel Vadot
manu at FreeBSD.org
Mon Dec 16 17:59:02 UTC 2019
Author: manu
Date: Mon Dec 16 17:59:02 2019
New Revision: 355808
URL: https://svnweb.freebsd.org/changeset/base/355808
Log:
MFC r354086:
flash: Add GigaDevice gd25q128 flash
Add this flash chip which is a 128Mb spi flash.
Modified:
stable/12/sys/dev/flash/mx25l.c
Directory Properties:
stable/12/ (props changed)
Modified: stable/12/sys/dev/flash/mx25l.c
==============================================================================
--- stable/12/sys/dev/flash/mx25l.c Mon Dec 16 17:45:15 2019 (r355807)
+++ stable/12/sys/dev/flash/mx25l.c Mon Dec 16 17:59:02 2019 (r355808)
@@ -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-stable-12
mailing list