33 lines
1.1 KiB
C
33 lines
1.1 KiB
C
|
/* Copyright 2020 Espressif Systems (Shanghai) PTE LTD
|
||
|
*
|
||
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
||
|
* you may not use this file except in compliance with the License.
|
||
|
* You may obtain a copy of the License at
|
||
|
*
|
||
|
* http://www.apache.org/licenses/LICENSE-2.0
|
||
|
*
|
||
|
* Unless required by applicable law or agreed to in writing, software
|
||
|
* distributed under the License is distributed on an "AS IS" BASIS,
|
||
|
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
||
|
* See the License for the specific language governing permissions and
|
||
|
* limitations under the License.
|
||
|
*/
|
||
|
|
||
|
#pragma once
|
||
|
|
||
|
#include <stdint.h>
|
||
|
#include "esp_loader.h"
|
||
|
|
||
|
typedef struct {
|
||
|
uint32_t cmd;
|
||
|
uint32_t usr;
|
||
|
uint32_t usr1;
|
||
|
uint32_t usr2;
|
||
|
uint32_t w0;
|
||
|
uint32_t mosi_dlen;
|
||
|
uint32_t miso_dlen;
|
||
|
} target_registers_t;
|
||
|
|
||
|
esp_loader_error_t loader_detect_chip(target_chip_t *target, const target_registers_t **regs);
|
||
|
esp_loader_error_t loader_read_spi_config(target_chip_t target_chip, uint32_t *spi_config);
|
||
|
int encryption_in_begin_flash_cmd(target_chip_t target);
|