Zephyr API Documentation  3.5.0
A Scalable Open Source RTOS
3.5.0
All Data Structures Files Functions Variables Typedefs Enumerations Enumerator Macros Modules Pages
stream_flash.h
Go to the documentation of this file.
1/*
2 * Copyright (c) 2017, 2020 Nordic Semiconductor ASA
3 * Copyright (c) 2017 Linaro Limited
4 *
5 * SPDX-License-Identifier: Apache-2.0
6 */
7
13#ifndef ZEPHYR_INCLUDE_STORAGE_STREAM_FLASH_H_
14#define ZEPHYR_INCLUDE_STORAGE_STREAM_FLASH_H_
15
24#include <stdbool.h>
26
27#ifdef __cplusplus
28extern "C" {
29#endif
30
46typedef int (*stream_flash_callback_t)(uint8_t *buf, size_t len, size_t offset);
47
55 uint8_t *buf; /* Write buffer */
56 size_t buf_len; /* Length of write buffer */
57 size_t buf_bytes; /* Number of bytes currently stored in write buf */
58 const struct device *fdev; /* Flash device */
59 size_t bytes_written; /* Number of bytes written to flash */
60 size_t offset; /* Offset from base of flash device to write area */
61 size_t available; /* Available bytes in write area */
62 stream_flash_callback_t callback; /* Callback invoked after write op */
63#ifdef CONFIG_STREAM_FLASH_ERASE
64 off_t last_erased_page_start_offset; /* Last erased offset */
65#endif
66};
67
84int stream_flash_init(struct stream_flash_ctx *ctx, const struct device *fdev,
85 uint8_t *buf, size_t buf_len, size_t offset, size_t size,
97
116 size_t len, bool flush);
117
131
147 const char *settings_key);
148
159 const char *settings_key);
160
171 const char *settings_key);
172
173#ifdef __cplusplus
174}
175#endif
176
181#endif /* ZEPHYR_INCLUDE_STORAGE_STREAM_FLASH_H_ */
irp nz macro MOVR cc s mov cc s endm endr irp aw macro LDR aa off
Definition: asm-macro-32-bit-gnu.h:17
Public API for FLASH drivers.
int stream_flash_progress_load(struct stream_flash_ctx *ctx, const char *settings_key)
Load persistent stream write progress stored with key settings_key .
int(* stream_flash_callback_t)(uint8_t *buf, size_t len, size_t offset)
Signature for callback invoked after flash write completes.
Definition: stream_flash.h:46
int stream_flash_init(struct stream_flash_ctx *ctx, const struct device *fdev, uint8_t *buf, size_t buf_len, size_t offset, size_t size, stream_flash_callback_t cb)
Initialize context needed for stream writes to flash.
int stream_flash_progress_save(struct stream_flash_ctx *ctx, const char *settings_key)
Save persistent stream write progress using key settings_key .
int stream_flash_erase_page(struct stream_flash_ctx *ctx, off_t off)
Erase the flash page to which a given offset belongs.
int stream_flash_buffered_write(struct stream_flash_ctx *ctx, const uint8_t *data, size_t len, bool flush)
Process input buffers to be written to flash device in single blocks.
size_t stream_flash_bytes_written(struct stream_flash_ctx *ctx)
Read number of bytes written to the flash.
int stream_flash_progress_clear(struct stream_flash_ctx *ctx, const char *settings_key)
Clear persistent stream write progress stored with key settings_key .
__INTPTR_TYPE__ off_t
Definition: types.h:36
__UINT8_TYPE__ uint8_t
Definition: stdint.h:88
Runtime device structure (in ROM) per driver instance.
Definition: device.h:381
void * data
Address of the device instance private data.
Definition: device.h:391
Structure for stream flash context.
Definition: stream_flash.h:54
stream_flash_callback_t callback
Definition: stream_flash.h:62
uint8_t * buf
Definition: stream_flash.h:55
size_t offset
Definition: stream_flash.h:60
size_t bytes_written
Definition: stream_flash.h:59
size_t buf_bytes
Definition: stream_flash.h:57
const struct device * fdev
Definition: stream_flash.h:58
size_t available
Definition: stream_flash.h:61
size_t buf_len
Definition: stream_flash.h:56