|
|
@@ -7,6 +7,7 @@
|
|
|
#include <stdint.h>
|
|
|
#include <stdbool.h>
|
|
|
#include <string.h>
|
|
|
+#include <inttypes.h>
|
|
|
|
|
|
// Macros, may be replaced by system specific wrappers. Arguments to these
|
|
|
// macros must not have side-effects as the macros can be removed for a smaller
|
|
|
@@ -55,6 +56,15 @@ static inline uint32_t lfs_min(uint32_t a, uint32_t b) {
|
|
|
return (a < b) ? a : b;
|
|
|
}
|
|
|
|
|
|
+// Align to nearest multiple of a size
|
|
|
+static inline uint32_t lfs_aligndown(uint32_t a, uint32_t alignment) {
|
|
|
+ return a - (a % alignment);
|
|
|
+}
|
|
|
+
|
|
|
+static inline uint32_t lfs_alignup(uint32_t a, uint32_t alignment) {
|
|
|
+ return lfs_aligndown(a + alignment-1, alignment);
|
|
|
+}
|
|
|
+
|
|
|
// Find the next smallest power of 2 less than or equal to a
|
|
|
static inline uint32_t lfs_npw2(uint32_t a) {
|
|
|
#if !defined(LFS_NO_INTRINSICS) && (defined(__GNUC__) || defined(__CC_ARM))
|
|
|
@@ -98,7 +108,7 @@ static inline int lfs_scmp(uint32_t a, uint32_t b) {
|
|
|
return (int)(unsigned)(a - b);
|
|
|
}
|
|
|
|
|
|
-// Convert from 32-bit little-endian to native order
|
|
|
+// Convert between 32-bit little-endian and native order
|
|
|
static inline uint32_t lfs_fromle32(uint32_t a) {
|
|
|
#if !defined(LFS_NO_INTRINSICS) && ( \
|
|
|
(defined( BYTE_ORDER ) && BYTE_ORDER == ORDER_LITTLE_ENDIAN ) || \
|
|
|
@@ -118,19 +128,44 @@ static inline uint32_t lfs_fromle32(uint32_t a) {
|
|
|
#endif
|
|
|
}
|
|
|
|
|
|
-// Convert to 32-bit little-endian from native order
|
|
|
static inline uint32_t lfs_tole32(uint32_t a) {
|
|
|
return lfs_fromle32(a);
|
|
|
}
|
|
|
|
|
|
+// Convert between 32-bit big-endian and native order
|
|
|
+static inline uint32_t lfs_frombe32(uint32_t a) {
|
|
|
+#if !defined(LFS_NO_INTRINSICS) && ( \
|
|
|
+ (defined( BYTE_ORDER ) && BYTE_ORDER == ORDER_LITTLE_ENDIAN ) || \
|
|
|
+ (defined(__BYTE_ORDER ) && __BYTE_ORDER == __ORDER_LITTLE_ENDIAN ) || \
|
|
|
+ (defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_LITTLE_ENDIAN__))
|
|
|
+ return __builtin_bswap32(a);
|
|
|
+#elif !defined(LFS_NO_INTRINSICS) && ( \
|
|
|
+ (defined( BYTE_ORDER ) && BYTE_ORDER == ORDER_BIG_ENDIAN ) || \
|
|
|
+ (defined(__BYTE_ORDER ) && __BYTE_ORDER == __ORDER_BIG_ENDIAN ) || \
|
|
|
+ (defined(__BYTE_ORDER__) && __BYTE_ORDER__ == __ORDER_BIG_ENDIAN__))
|
|
|
+ return a;
|
|
|
+#else
|
|
|
+ return (((uint8_t*)&a)[0] << 24) |
|
|
|
+ (((uint8_t*)&a)[1] << 16) |
|
|
|
+ (((uint8_t*)&a)[2] << 8) |
|
|
|
+ (((uint8_t*)&a)[3] << 0);
|
|
|
+#endif
|
|
|
+}
|
|
|
+
|
|
|
+static inline uint32_t lfs_tobe32(uint32_t a) {
|
|
|
+ return lfs_frombe32(a);
|
|
|
+}
|
|
|
+
|
|
|
// Calculate CRC-32 with polynomial = 0x04c11db7
|
|
|
-void lfs_crc(uint32_t *crc, const void *buffer, size_t size);
|
|
|
+uint32_t lfs_crc(uint32_t crc, const void *buffer, size_t size);
|
|
|
|
|
|
// Allocate memory, only used if buffers are not provided to littlefs
|
|
|
+// Note, memory must be 64-bit aligned
|
|
|
static inline void *lfs_malloc(size_t size) {
|
|
|
#ifndef LFS_NO_MALLOC
|
|
|
return rt_malloc(size);
|
|
|
#else
|
|
|
+ (void)size;
|
|
|
return NULL;
|
|
|
#endif
|
|
|
}
|
|
|
@@ -139,6 +174,8 @@ static inline void *lfs_malloc(size_t size) {
|
|
|
static inline void lfs_free(void *p) {
|
|
|
#ifndef LFS_NO_MALLOC
|
|
|
rt_free(p);
|
|
|
+#else
|
|
|
+ (void)p;
|
|
|
#endif
|
|
|
}
|
|
|
|