summaryrefslogtreecommitdiffstats
path: root/include/spi.h
diff options
context:
space:
mode:
authorSergii Dmytruk <sergii.dmytruk@3mdeb.com>2021-11-27 15:14:27 +0200
committerAnastasia Klimchuk <aklm@chromium.org>2022-11-19 06:54:20 +0000
commitf32f5e31d99531ee61bd31c64f41cc4baee68d57 (patch)
tree9bbd6bd0081abf32038f38c658018d54a121d8b1 /include/spi.h
parented351cc602e5f21a47ad3f06696a7fe72e82c198 (diff)
downloadflashrom-f32f5e31d99531ee61bd31c64f41cc4baee68d57.tar.gz
flashrom-f32f5e31d99531ee61bd31c64f41cc4baee68d57.tar.bz2
flashrom-f32f5e31d99531ee61bd31c64f41cc4baee68d57.zip
spi25_statusreg.c: support reading security register
Not to be confused with "secure registers" of OTP. Security register is a dedicated status register for security-related bits. You don't write its value directly, issuing special write commands with no data set separate OTP bits to 1 automatically (WRSCUR, WPSEL commands). No WREN is necessary, but at least some datasheets indicate BUSY state after those write commands. Unlike cases where OTP bit is part of SR and can only be written while in OTP mode, security register can only be written outside of the mode. The register is found in at least these chips by Macronix: * MX25L6436E * MX25L6445E * MX25L6465E * MX25L6473E Change-Id: Iae1753ca4cb051127a5bcbeba7f064053adb8dae Signed-off-by: Sergii Dmytruk <sergii.dmytruk@3mdeb.com> Reviewed-on: https://review.coreboot.org/c/flashrom/+/59709 Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Edward O'Callaghan <quasisec@chromium.org> Reviewed-by: Nikolai Artemiev <nartemiev@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'include/spi.h')
-rw-r--r--include/spi.h10
1 files changed, 10 insertions, 0 deletions
diff --git a/include/spi.h b/include/spi.h
index 9b38cab64..c77866c41 100644
--- a/include/spi.h
+++ b/include/spi.h
@@ -167,6 +167,16 @@
#define JEDEC_WRSR3_OUTSIZE 0x02
#define JEDEC_WRSR3_INSIZE 0x00
+/* Read Security Register */
+#define JEDEC_RDSCUR 0x2b
+#define JEDEC_RDSCUR_OUTSIZE 0x01
+#define JEDEC_RDSCUR_INSIZE 0x01
+
+/* Write Security Register */
+#define JEDEC_WRSCUR 0x2f
+#define JEDEC_WRSCUR_OUTSIZE 0x01
+#define JEDEC_WRSCUR_INSIZE 0x00
+
/* Enter 4-byte Address Mode */
#define JEDEC_ENTER_4_BYTE_ADDR_MODE 0xB7