nrfxlib API 2.8.99
Loading...
Searching...
No Matches
nrf_modem_bootloader.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2020 Nordic Semiconductor ASA
3 *
4 * SPDX-License-Identifier: LicenseRef-Nordic-5-Clause
5 */
6
14#ifndef NRF_BOOTLOADER_H__
15#define NRF_BOOTLOADER_H__
16
17#include <stddef.h>
18#include <stdint.h>
19
20#ifdef __cplusplus
21extern "C" {
22#endif
23
25#define NRF_MODEM_BOOTLOADER_DIGEST_LEN 8
27#define NRF_MODEM_BOOTLOADER_UUID_LEN 36
28
33
38
44
62int nrf_modem_bootloader_bl_write(void *src, uint32_t len);
63
87int nrf_modem_bootloader_fw_write(uint32_t addr, void *src, uint32_t len);
88
104
121 size_t num_segments,
122 struct nrf_modem_bootloader_digest *digest_buffer);
123
138
153int nrf_modem_bootloader_verify(const void *data, uint32_t len);
154
155#ifdef __cplusplus
156}
157#endif
158
159#endif /* NRF_BOOTLOADER_H__ */
int nrf_modem_bootloader_fw_write(uint32_t addr, void *src, uint32_t len)
Write a segment of the firmware to the modem.
#define NRF_MODEM_BOOTLOADER_UUID_LEN
UUID buffer length.
Definition nrf_modem_bootloader.h:27
int nrf_modem_bootloader_digest(struct nrf_modem_bootloader_fw_segment *segments, size_t num_segments, struct nrf_modem_bootloader_digest *digest_buffer)
Read a digest hash data from the modem.
int nrf_modem_bootloader_update(void)
Complete bootloader or firmware update.
int nrf_modem_bootloader_uuid(struct nrf_modem_bootloader_uuid *modem_uuid)
Read modem UUID data.
int nrf_modem_bootloader_bl_write(void *src, uint32_t len)
Write a segment of the bootloader to the modem.
#define NRF_MODEM_BOOTLOADER_DIGEST_LEN
Digest buffer length.
Definition nrf_modem_bootloader.h:25
int nrf_modem_bootloader_verify(const void *data, uint32_t len)
Verify the modem' firmware signature.
uint32_t data[8]
Definition nrf_modem_bootloader.h:31
Storage for 256-bit digest/hash replies.
Definition nrf_modem_bootloader.h:30
uint32_t end_addr
Definition nrf_modem_bootloader.h:42
uint32_t start_addr
Definition nrf_modem_bootloader.h:41
Bootloader segment.
Definition nrf_modem_bootloader.h:40
uint8_t data[36]
Definition nrf_modem_bootloader.h:36
Modem UUID response.
Definition nrf_modem_bootloader.h:35