Date: Thu, 17 May 2018 10:13:18 +0000 (UTC) From: Emmanuel Vadot <manu@FreeBSD.org> To: src-committers@freebsd.org, svn-src-all@freebsd.org, svn-src-head@freebsd.org Subject: svn commit: r333706 - head/sys/dev/flash Message-ID: <201805171013.w4HADIMm037316@repo.freebsd.org>
next in thread | raw e-mail | index | archive | help
Author: manu Date: Thu May 17 10:13:18 2018 New Revision: 333706 URL: https://svnweb.freebsd.org/changeset/base/333706 Log: mx25l: Add mx25l1606e This is a 16Mbits spi flash arranged in 32x64k blocks or 512x4k sectors. Modified: head/sys/dev/flash/mx25l.c Modified: head/sys/dev/flash/mx25l.c ============================================================================== --- head/sys/dev/flash/mx25l.c Thu May 17 10:01:47 2018 (r333705) +++ head/sys/dev/flash/mx25l.c Thu May 17 10:13:18 2018 (r333706) @@ -124,6 +124,7 @@ struct mx25l_flash_ident flash_devices[] = { { "en25q64", 0x1c, 0x3017, 64 * 1024, 128, FL_ERASE_4K }, { "m25p32", 0x20, 0x2016, 64 * 1024, 64, FL_NONE }, { "m25p64", 0x20, 0x2017, 64 * 1024, 128, FL_NONE }, + { "mx25l1606e", 0xc2, 0x2015, 64 * 1024, 32, FL_ERASE_4K}, { "mx25ll32", 0xc2, 0x2016, 64 * 1024, 64, FL_NONE }, { "mx25ll64", 0xc2, 0x2017, 64 * 1024, 128, FL_NONE }, { "mx25ll128", 0xc2, 0x2018, 64 * 1024, 256, FL_ERASE_4K | FL_ERASE_32K },
Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201805171013.w4HADIMm037316>