-
Notifications
You must be signed in to change notification settings - Fork 1.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
arch/esp32_partition: add some partition operation interfaces for esp32
Relocate the enum ota_img_ctrl_e and ota_img_bootseq_e to a directory visible to the application. Inspect if the MTD partition (factory/ota_0/ota_1) is mapped as text. Adding an ioctl interface ota_invalidate_bootseq() to the ESP32 partitions, by deleting the corresponding otadata, makes the boot sequence (ota_0/1) invalid.
- Loading branch information
Showing
4 changed files
with
200 additions
and
22 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,58 @@ | ||
/**************************************************************************** | ||
* arch/xtensa/include/esp32/partition.h | ||
* | ||
* Licensed to the Apache Software Foundation (ASF) under one or more | ||
* contributor license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright ownership. The | ||
* ASF licenses this file to you 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. | ||
* | ||
****************************************************************************/ | ||
|
||
#ifndef __ARCH_XTENSA_INCLUDE_ESP32_PARTITION_H | ||
#define __ARCH_XTENSA_INCLUDE_ESP32_PARTITION_H | ||
|
||
/**************************************************************************** | ||
* Included Files | ||
****************************************************************************/ | ||
|
||
#include <stddef.h> | ||
|
||
/**************************************************************************** | ||
* Public Types | ||
****************************************************************************/ | ||
|
||
/* OTA image operation code */ | ||
|
||
enum ota_img_ctrl | ||
{ | ||
OTA_IMG_GET_BOOT = 0xe1, | ||
OTA_IMG_SET_BOOT = 0xe2, | ||
OTA_IMG_SET_ENCRYPTED = 0xe3, | ||
OTA_IMG_GET_ENCRYPTED = 0xe4, | ||
OTA_IMG_GET_TYPE = 0xe5, | ||
OTA_IMG_GET_SUBTYPE = 0xe6, | ||
OTA_IMG_INVALIDATE_BOOT = 0xe7, | ||
OTA_IMG_IS_MAPPED_AS_TEXT = 0xe8, | ||
}; | ||
|
||
/* OTA image boot sequency */ | ||
|
||
enum ota_img_bootseq | ||
{ | ||
OTA_IMG_BOOT_FACTORY = 0, | ||
OTA_IMG_BOOT_OTA_0 = 1, | ||
OTA_IMG_BOOT_OTA_1 = 2, | ||
OTA_IMG_BOOT_SEQ_MAX | ||
}; | ||
|
||
#endif /* __ARCH_XTENSA_INCLUDE_ESP32_PARTITION_H */ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters