Home
last modified time | relevance | path

Searched refs:revision (Results 1 – 25 of 38) sorted by relevance

12

/hal_espressif-latest/zephyr/common/
Dsoc_init.c68 unsigned int revision = efuse_hal_chip_revision(); in check_chip_validity() local
69 unsigned int major_rev = revision / 100; in check_chip_validity()
70 unsigned int minor_rev = revision % 100; in check_chip_validity()
74 if (!ESP_CHIP_REV_ABOVE(revision, min_rev)) { in check_chip_validity()
85 if ((IS_MAX_REV_SET(max_rev) && (revision > max_rev) && in check_chip_validity()
125 unsigned int revision = efuse_hal_chip_revision(); in check_bootloader_validity() local
126 unsigned int major = revision / 100; in check_bootloader_validity()
127 unsigned int minor = revision % 100; in check_bootloader_validity()
/hal_espressif-latest/components/esp_hw_support/port/esp32c6/
DKconfig.hw_support5 Required minimum chip revision. ESP-IDF will check for it and
6 reject to boot if the chip revision fails the check.
9 The complied binary will only support chips above this revision,
32 # Maximum revision that IDF supports.
Dchip_info.c15 out_info->revision = efuse_hal_chip_revision(); in esp_chip_info()
/hal_espressif-latest/components/esp_hw_support/port/esp32s2/
DKconfig.hw_support5 Required minimum chip revision. ESP-IDF will check for it and
6 reject to boot if the chip revision fails the check.
9 The complied binary will only support chips above this revision,
32 # Maximum revision that IDF supports.
Dchip_info.c19 out_info->revision = efuse_hal_chip_revision(); in esp_chip_info()
/hal_espressif-latest/components/esp_hw_support/port/esp32s3/
DKconfig.hw_support5 Required minimum chip revision. ESP-IDF will check for it and
6 reject to boot if the chip revision fails the check.
9 The complied binary will only support chips above this revision,
35 # Maximum revision that IDF supports.
Dchip_info.c15 out_info->revision = efuse_hal_chip_revision(); in esp_chip_info()
/hal_espressif-latest/components/esp_hw_support/port/esp32c2/
DKconfig.hw_support5 Required minimum chip revision. ESP-IDF will check for it and
6 reject to boot if the chip revision fails the check.
9 The complied binary will only support chips above this revision,
35 # Maximum revision that IDF supports.
Dchip_info.c15 out_info->revision = efuse_hal_chip_revision(); in esp_chip_info()
/hal_espressif-latest/components/bootloader_support/src/
Dbootloader_common_loader.c69 unsigned revision = efuse_hal_chip_revision(); in bootloader_common_check_chip_validity() local
70 unsigned int major_rev = revision / 100; in bootloader_common_check_chip_validity()
71 unsigned int minor_rev = revision % 100; in bootloader_common_check_chip_validity()
74 if (!ESP_CHIP_REV_ABOVE(revision, min_rev)) { in bootloader_common_check_chip_validity()
83 …if ((IS_MAX_REV_SET(max_rev) && (revision > max_rev) && !efuse_ll_get_disable_wafer_version_major(… in bootloader_common_check_chip_validity()
Dbootloader_init.c44 unsigned int revision = efuse_hal_chip_revision(); in bootloader_check_bootloader_validity() local
45 unsigned int major = revision / 100; in bootloader_check_bootloader_validity()
46 unsigned int minor = revision % 100; in bootloader_check_bootloader_validity()
/hal_espressif-latest/components/esp_hw_support/port/esp32h2/
DKconfig.hw_support5 Required minimum chip revision. ESP-IDF will check for it and
6 reject to boot if the chip revision fails the check.
9 The complied binary will only support chips above this revision,
38 # Maximum revision that IDF supports.
Dchip_info.c15 out_info->revision = efuse_hal_chip_revision(); in esp_chip_info()
/hal_espressif-latest/components/esp_hw_support/port/esp32c3/
DKconfig.hw_support5 Required minimum chip revision. ESP-IDF will check for it and
6 reject to boot if the chip revision fails the check.
9 The complied binary will only support chips above this revision,
44 # Maximum revision that IDF supports.
Dchip_info.c15 out_info->revision = efuse_hal_chip_revision(); in esp_chip_info()
/hal_espressif-latest/components/esp_hw_support/port/esp32/
DKconfig.hw_support5 Required minimum chip revision. ESP-IDF will check for it and
6 reject to boot if the chip revision fails the check.
9 The complied binary will only support chips above this revision,
56 # Maximum revision that IDF supports.
Dchip_info.c20 out_info->revision = efuse_hal_chip_revision(); in esp_chip_info()
/hal_espressif-latest/tools/idf_monitor/idf_monitor_base/
Dchip_specific_config.py51 def get_chip_config(chip, revision=0): argument
60 rev_number = int(revision)
/hal_espressif-latest/zephyr/scripts/blobs/
DREADME.md3 This document explains how to generate `module.yml` file to add specific revision of wifi and BT RF…
7 1. Update `submodules.txt` file by changing revision values, folder path and URLs.
/hal_espressif-latest/components/esp_hw_support/port/linux/
Dchip_info.c18 out_info->revision = 0; in esp_chip_info()
/hal_espressif-latest/components/esp_hw_support/include/
Desp_chip_info.h47 …uint16_t revision; //!< chip revision number (in format MXX; where M - wafer major version, … member
/hal_espressif-latest/components/esp_system/
Dstartup.c480 unsigned revision = efuse_hal_chip_revision(); in start_cpu0_default() local
481 ESP_EARLY_LOGI(TAG, "Chip rev: v%d.%d", revision / 100, revision % 100); in start_cpu0_default()
/hal_espressif-latest/tools/esptool_py/docs/en/advanced-topics/
Dfirmware-image-format.rst135 …| 6 | Minimal chip revision supported by the image (deprecated, use the following field) …
137 …| 7-8 | Minimal chip revision supported by the image (in format: major * 100 + minor) …
139 …| 9-10 | Maximal chip revision supported by the image (in format: major * 100 + minor) …
/hal_espressif-latest/tools/esptool_py/esptool/targets/
Desp32.py217 revision = {
223 return revision
/hal_espressif-latest/tools/esptool_py/docs/en/esptool/
Dflasher-stub.rst8 …facturing and cannot be updated. A new version is issued only when a new chip revision is released.

12