Home
last modified time | relevance | path

Searched refs:raw_flash_id (Results 1 – 3 of 3) sorted by relevance

/hal_espressif-latest/components/bootloader_support/bootloader_flash/src/
Dflash_qio_mode.c70 uint32_t raw_flash_id; in bootloader_enable_qio_mode() local
78 raw_flash_id = g_rom_flashchip.device_id; in bootloader_enable_qio_mode()
79 ESP_EARLY_LOGD(TAG, "Raw SPI flash chip id 0x%"PRIx32, raw_flash_id); in bootloader_enable_qio_mode()
81 mfg_id = (raw_flash_id >> 16) & 0xFF; in bootloader_enable_qio_mode()
82 flash_id = raw_flash_id & 0xFFFF; in bootloader_enable_qio_mode()
/hal_espressif-latest/components/spi_flash/
Dmemspi_host_driver.c97 uint32_t raw_flash_id = id_buf; in memspi_host_read_id_hs() local
98 ESP_EARLY_LOGV(TAG, "raw_chip_id: %X\n", raw_flash_id); in memspi_host_read_id_hs()
99 if (raw_flash_id == 0xFFFFFF || raw_flash_id == 0) { in memspi_host_read_id_hs()
104 uint8_t mfg_id = raw_flash_id & 0xFF; in memspi_host_read_id_hs()
105 uint16_t flash_id = (raw_flash_id >> 16) | (raw_flash_id & 0xFF00); in memspi_host_read_id_hs()
Dspi_flash_chip_mxic_opi.c121 uint32_t raw_flash_id = __builtin_bswap32(id_buf); in spi_flash_chip_mxic_opi_read_id() local
122 if (raw_flash_id == 0xFFFFFF || raw_flash_id == 0) { in spi_flash_chip_mxic_opi_read_id()
127 *out_chip_id = (raw_flash_id >> 8); in spi_flash_chip_mxic_opi_read_id()