Skip site navigation (1)Skip section navigation (2)
Date:      Tue, 7 Sep 2021 12:10:10 GMT
From:      Jessica Clarke <jrtc27@FreeBSD.org>
To:        src-committers@FreeBSD.org, dev-commits-src-all@FreeBSD.org, dev-commits-src-branches@FreeBSD.org
Subject:   git: 01ecff28ad50 - stable/13 - mx25l: Add support for Integrated Silicon Solution is25wp256
Message-ID:  <202109071210.187CAANC091031@gitrepo.freebsd.org>

next in thread | raw e-mail | index | archive | help
The branch stable/13 has been updated by jrtc27:

URL: https://cgit.FreeBSD.org/src/commit/?id=01ecff28ad5072c660a4268faf4caac82824b2dc

commit 01ecff28ad5072c660a4268faf4caac82824b2dc
Author:     Thomas Skibo <thomas-bsd@skibo.net>
AuthorDate: 2021-08-30 20:39:20 +0000
Commit:     Jessica Clarke <jrtc27@FreeBSD.org>
CommitDate: 2021-09-07 12:08:20 +0000

    mx25l: Add support for Integrated Silicon Solution is25wp256
    
    This is used for the on-board flash on the HiFive Unmatched board.
    
    Reviewed by:    #riscv, jrtc27
    MFC after:      1 week
    Differential Revision: https://reviews.freebsd.org/D31562
    
    (cherry picked from commit 416ac155bb750fa55917daf340abe4ef04e7d4e6)
---
 sys/dev/flash/mx25l.c | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/sys/dev/flash/mx25l.c b/sys/dev/flash/mx25l.c
index be845c2064f9..9608bbf57314 100644
--- a/sys/dev/flash/mx25l.c
+++ b/sys/dev/flash/mx25l.c
@@ -152,6 +152,9 @@ 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 },
+
+	/* Integrated Silicon Solution */
+	{ "is25wp256",	0x9d, 0x7019, 64 * 1024, 512, FL_ERASE_4K | FL_ENABLE_4B_ADDR},
 };
 
 static int



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?202109071210.187CAANC091031>