| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125 |
- /*
- * SPDX-FileCopyrightText: 2020-2022 Espressif Systems (Shanghai) CO LTD
- *
- * SPDX-License-Identifier: Apache-2.0
- */
- #pragma once
- #include <stdint.h>
- #include "esp_err.h"
- #include "esp_attr.h"
- #ifdef __cplusplus
- extern "C" {
- #endif
- typedef unsigned (*bootloader_flash_read_status_fn_t)(void);
- typedef void (*bootloader_flash_write_status_fn_t)(unsigned);
- typedef struct __attribute__((packed))
- {
- const char *manufacturer;
- uint8_t mfg_id; /* 8-bit JEDEC manufacturer ID */
- uint16_t flash_id; /* 16-bit JEDEC flash chip ID */
- uint16_t id_mask; /* Bits to match on in flash chip ID */
- bootloader_flash_read_status_fn_t read_status_fn;
- bootloader_flash_write_status_fn_t write_status_fn;
- uint8_t status_qio_bit;
- } bootloader_qio_info_t;
- /**
- * @brief Read 8 bit status using RDSR command
- *
- * @return Value of SR1.
- */
- unsigned bootloader_read_status_8b_rdsr(void);
- /**
- * @brief Read 8 bit status (second byte) using RDSR2 command
- *
- * @return Value of SR2
- */
- unsigned bootloader_read_status_8b_rdsr2(void);
- /**
- * @brief Read 8 bit status (third byte) using RDSR3 command
- *
- * @return Value of SR3
- */
- unsigned bootloader_read_status_8b_rdsr3(void);
- /**
- * @brief Read 16 bit status using RDSR & RDSR2 (low and high bytes)
- *
- * @return Value of SR2#SR1.
- */
- unsigned bootloader_read_status_16b_rdsr_rdsr2(void);
- /**
- * @brief Write 8 bit status using WRSR
- */
- void bootloader_write_status_8b_wrsr(unsigned new_status);
- /**
- * @brief Write 8 bit status (second byte) using WRSR2.
- */
- void bootloader_write_status_8b_wrsr2(unsigned new_status);
- /**
- * @brief Write 8 bit status (third byte) using WRSR3.
- */
- void bootloader_write_status_8b_wrsr3(unsigned new_status);
- /**
- * @brief Write 16 bit status using WRSR, (both write SR1 and SR2)
- */
- void bootloader_write_status_16b_wrsr(unsigned new_status);
- /**
- * @brief Read 8 bit status of XM25QU64A.
- *
- * @return Value of 8 bit SR.
- */
- unsigned bootloader_read_status_8b_xmc25qu64a(void);
- /**
- * @brief Write 8 bit status for XM25QU64A
- */
- void bootloader_write_status_8b_xmc25qu64a(unsigned new_status);
- /* Array of known flash chips and data to enable Quad I/O mode
- Manufacturer & flash ID can be tested by running "esptool.py
- flash_id"
- If manufacturer ID matches, and flash ID ORed with flash ID mask
- matches, enable_qio_mode() will execute "Read Cmd", test if bit
- number "QIE Bit" is set, and if not set it will call "Write Cmd"
- with this bit set.
- Searching of this table stops when the first match is found.
- */
- extern const bootloader_qio_info_t __attribute__((weak)) bootloader_flash_qe_support_list[];
- /**
- * @brief Unlock Flash write protect.
- * Please do not call this function in SDK.
- *
- * @note This can be overridden because it's attribute weak.
- */
- esp_err_t __attribute__((weak)) bootloader_flash_unlock(void);
- #if CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_QUAD_FLASH || CONFIG_BOOTLOADER_CACHE_32BIT_ADDR_OCTAL_FLASH
- /**
- * @brief Enable 32bits address flash(larger than 16MB) can map to cache.
- *
- * @param flash_mode SPI flash working mode.
- *
- * @note This can be overridden because it's attribute weak.
- */
- void __attribute__((weak)) bootloader_flash_32bits_address_map_enable(esp_rom_spiflash_read_mode_t flash_mode);
- #endif
- #ifdef __cplusplus
- }
- #endif
|