summaryrefslogtreecommitdiff
path: root/chip/host/config.h
diff options
context:
space:
mode:
Diffstat (limited to 'chip/host/config.h')
-rw-r--r--chip/host/config.h20
1 files changed, 7 insertions, 13 deletions
diff --git a/chip/host/config.h b/chip/host/config.h
index 7f2df4e467..c296e1b7cc 100644
--- a/chip/host/config.h
+++ b/chip/host/config.h
@@ -22,24 +22,18 @@
#define CONFIG_FW_IMAGE_SIZE (64 * 1024)
#define CONFIG_FW_RO_OFF 0
-#define CONFIG_FW_RO_SIZE (CONFIG_FW_IMAGE_SIZE \
- - CONFIG_SECTION_FLASH_PSTATE_SIZE)
+#define CONFIG_FW_RO_SIZE (CONFIG_FW_IMAGE_SIZE - CONFIG_FW_PSTATE_SIZE)
#define CONFIG_FW_RW_OFF CONFIG_FW_IMAGE_SIZE
#define CONFIG_FW_RW_SIZE CONFIG_FW_IMAGE_SIZE
-
-#define CONFIG_SECTION_RO_OFF CONFIG_FW_RO_OFF
-#define CONFIG_SECTION_RO_SIZE CONFIG_FW_RO_SIZE
-#define CONFIG_SECTION_RW_OFF CONFIG_FW_RW_OFF
-#define CONFIG_SECTION_RW_SIZE CONFIG_FW_RW_SIZE
-#define CONFIG_SECTION_WP_RO_OFF CONFIG_FW_RO_OFF
-#define CONFIG_SECTION_WP_RO_SIZE CONFIG_FW_IMAGE_SIZE
+#define CONFIG_FW_WP_RO_OFF CONFIG_FW_RO_OFF
+#define CONFIG_FW_WP_RO_SIZE CONFIG_FW_IMAGE_SIZE
/*
- * Put this after RO to give RW more space. This also makes RO write protect
- * region contiguous.
+ * Put this after RO to give RW more space and make RO write protect region
+ * contiguous.
*/
-#define CONFIG_SECTION_FLASH_PSTATE_SIZE (1 * CONFIG_FLASH_BANK_SIZE)
-#define CONFIG_SECTION_FLASH_PSTATE_OFF CONFIG_FW_RO_OFF + CONFIG_FW_RO_SIZE
+#define CONFIG_FW_PSTATE_OFF CONFIG_FW_RO_SIZE
+#define CONFIG_FW_PSTATE_SIZE CONFIG_FLASH_BANK_SIZE
/* Maximum number of deferrable functions */
#define DEFERRABLE_MAX_COUNT 8