diff options
Diffstat (limited to 'include/flash.h')
-rw-r--r-- | include/flash.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/include/flash.h b/include/flash.h index 197c11ea..23222c72 100644 --- a/include/flash.h +++ b/include/flash.h @@ -161,6 +161,9 @@ enum write_granularity { */ #define FEATURE_SCUR (1 << 24) +/* Whether chip has configuration register (RDCR/WRSR_EXT2 commands) */ +#define FEATURE_CFGR (1 << 25) + #define ERASED_VALUE(flash) (((flash)->chip->feature_bits & FEATURE_ERASED_ZERO) ? 0x00 : 0xff) #define UNERASED_VALUE(flash) (((flash)->chip->feature_bits & FEATURE_ERASED_ZERO) ? 0xff : 0x00) @@ -196,6 +199,7 @@ enum flash_reg { STATUS2, STATUS3, SECURITY, + CONFIG, MAX_REGISTERS }; |