-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathramcrc32bd.h
102 lines (82 loc) · 2.59 KB
/
ramcrc32bd.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
/*
* An example of crc32 based error-correcting block device in RAM
*
* Copyright (c) 2024, The littlefs authors.
* SPDX-License-Identifier: BSD-3-Clause
*/
#ifndef RAMCRC32BD_H
#define RAMCRC32BD_H
#include "lfs.h"
#include "lfs_util.h"
#ifdef __cplusplus
extern "C"
{
#endif
// Block device specific tracing
#ifndef RAMCRC32BD_TRACE
#ifdef RAMCRC32BD_YES_TRACE
#define RAMCRC32BD_TRACE(...) LFS_TRACE(__VA_ARGS__)
#else
#define RAMCRC32BD_TRACE(...)
#endif
#endif
// rambd config
struct ramcrc32bd_config {
// Size of a codeword in bytes.
//
// Smaller codewords have fewer collisions and we can correct more
// bit errors:
//
// - code_size<=536870907 => 1 bit error correctable
// - code_size<=371 => 2 bit errors correctable
// - code_size<=21 => 3 bit errors correctable
//
// A crc32 is 4 bytes, so read_size and prog_size = code_size - 4.
lfs_size_t code_size;
// Size of an erase operation in bytes.
//
// Must be a multiple of code_size.
lfs_size_t erase_size;
// Number of erase blocks on the device.
lfs_size_t erase_count;
// Number of bit errors to try to correct.
//
// There is a tradeoff here. Every bit error you try to correct is two
// fewer bit errors you can detect reliably. That being said, recovering
// from errors is usually more useful.
//
// By default, when zero, tries to correct as many errors as possible.
// -1 disables error correction and errors on any errors.
lfs_ssize_t error_correction;
// Optional statically allocated buffer for the block device.
void *buffer;
};
// rambd state
typedef struct ramcrc32bd {
uint8_t *buffer;
const struct ramcrc32bd_config *cfg;
} ramcrc32bd_t;
// Create a RAM block device
int ramcrc32bd_create(const struct lfs_config *cfg,
const struct ramcrc32bd_config *bdcfg);
// Clean up memory associated with block device
int ramcrc32bd_destroy(const struct lfs_config *cfg);
// Read a block
int ramcrc32bd_read(const struct lfs_config *cfg, lfs_block_t block,
lfs_off_t off, void *buffer, lfs_size_t size);
// Program a block
//
// The block must have previously been erased.
int ramcrc32bd_prog(const struct lfs_config *cfg, lfs_block_t block,
lfs_off_t off, const void *buffer, lfs_size_t size);
// Erase a block
//
// A block must be erased before being programmed. The
// state of an erased block is undefined.
int ramcrc32bd_erase(const struct lfs_config *cfg, lfs_block_t block);
// Sync the block device
int ramcrc32bd_sync(const struct lfs_config *cfg);
#ifdef __cplusplus
} /* extern "C" */
#endif
#endif