Skip to content

Commit 06166ad

Browse files
ginkgmmahavirj
authored andcommitted
feat(soc): add Kconfig rev min option and increase max ver for H2 v1.2
1 parent c97b63d commit 06166ad

File tree

1 file changed

+5
-7
lines changed

1 file changed

+5
-7
lines changed

components/esp_hw_support/port/esp32h2/Kconfig.hw_support

Lines changed: 5 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -15,13 +15,16 @@ choice ESP32H2_REV_MIN
1515
bool "Rev v0.1 (ECO1)"
1616
config ESP32H2_REV_MIN_2
1717
bool "Rev v0.2 (ECO2)"
18+
config ESP32H2_REV_MIN_102
19+
bool "Rev v1.2"
1820
endchoice
1921

2022
config ESP32H2_REV_MIN_FULL
2123
int
2224
default 0 if ESP32H2_REV_MIN_0
2325
default 1 if ESP32H2_REV_MIN_1
2426
default 2 if ESP32H2_REV_MIN_2
27+
default 102 if ESP32H2_REV_MIN_102
2528

2629
config ESP_REV_MIN_FULL
2730
int
@@ -31,26 +34,21 @@ config ESP_REV_MIN_FULL
3134
# MAX Revision
3235
#
3336

34-
comment "Maximum Supported ESP32-H2 Revision (Rev v0.99)"
37+
comment "Maximum Supported ESP32-H2 Revision (Rev v1.99)"
3538
# Maximum revision that IDF supports.
3639
# It can not be changed by user.
3740
# Only Espressif can change it when a new version will be supported in IDF.
3841
# Supports all chips starting from ESP32H2_REV_MIN_FULL to ESP32H2_REV_MAX_FULL
3942

4043
config ESP32H2_REV_MAX_FULL
4144
int
42-
default 199 if ESP32H2_REV100_DEVELOPMENT
43-
default 99 if !ESP32H2_REV100_DEVELOPMENT
45+
default 199
4446
# keep in sync the "Maximum Supported Revision" description with this value
4547

4648
config ESP_REV_MAX_FULL
4749
int
4850
default ESP32H2_REV_MAX_FULL
4951

50-
config ESP32H2_REV100_DEVELOPMENT
51-
bool "Develop on ESP32-H2 v1.0 and above (Preview)"
52-
default y if IDF_CI_BUILD
53-
5452
config ESP_EFUSE_BLOCK_REV_MIN_FULL
5553
int "Minimum Supported ESP32-H2 eFuse Block Revision"
5654
default 0

0 commit comments

Comments
 (0)