Draft implementation of SPIFFS integration
This commit is contained in:
		
							parent
							
								
									eac9504d8a
								
							
						
					
					
						commit
						5c12b7c7e9
					
				
					 8 changed files with 688 additions and 0 deletions
				
			
		
							
								
								
									
										17
									
								
								extras/spiffs/component.mk
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										17
									
								
								extras/spiffs/component.mk
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,17 @@
 | 
			
		|||
# Component makefile for extras/spiffs
 | 
			
		||||
 | 
			
		||||
SPIFFS_BASE_ADDR ?= 0x300000
 | 
			
		||||
SPIFFS_SIZE ?= 0x100000
 | 
			
		||||
 | 
			
		||||
INC_DIRS += $(spiffs_ROOT)
 | 
			
		||||
INC_DIRS += $(spiffs_ROOT)spiffs/src
 | 
			
		||||
 | 
			
		||||
# args for passing into compile rule generation
 | 
			
		||||
spiffs_SRC_DIR = $(spiffs_ROOT)spiffs/src
 | 
			
		||||
spiffs_SRC_DIR += $(spiffs_ROOT)
 | 
			
		||||
 | 
			
		||||
spiffs_CFLAGS = $(CFLAGS)
 | 
			
		||||
spiffs_CFLAGS += -DSPIFFS_BASE_ADDR=$(SPIFFS_BASE_ADDR)
 | 
			
		||||
spiffs_CFLAGS += -DSPIFFS_SIZE=$(SPIFFS_SIZE)
 | 
			
		||||
 | 
			
		||||
$(eval $(call component_compile_rules,spiffs))
 | 
			
		||||
							
								
								
									
										187
									
								
								extras/spiffs/esp_spiffs.c
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										187
									
								
								extras/spiffs/esp_spiffs.c
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,187 @@
 | 
			
		|||
/**
 | 
			
		||||
 * ESP8266 SPIFFS HAL configuration.
 | 
			
		||||
 *
 | 
			
		||||
 * Part of esp-open-rtos
 | 
			
		||||
 * Copyright (c) 2016 sheinz https://github.com/sheinz
 | 
			
		||||
 * MIT License
 | 
			
		||||
 */
 | 
			
		||||
#include "esp_spiffs.h"
 | 
			
		||||
#include "spiffs.h"
 | 
			
		||||
#include <espressif/spi_flash.h>
 | 
			
		||||
#include <stdbool.h>
 | 
			
		||||
 | 
			
		||||
spiffs fs;
 | 
			
		||||
 | 
			
		||||
static void *work_buf = 0;
 | 
			
		||||
static void *fds_buf = 0;
 | 
			
		||||
static void *cache_buf = 0;
 | 
			
		||||
 | 
			
		||||
/*
 | 
			
		||||
 * Flash addresses and size alignment is a rip-off of Arduino implementation.
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
static s32_t esp_spiffs_read(u32_t addr, u32_t size, u8_t *dst)
 | 
			
		||||
{
 | 
			
		||||
    uint32_t result = SPIFFS_OK;
 | 
			
		||||
    uint32_t alignedBegin = (addr + 3) & (~3);
 | 
			
		||||
    uint32_t alignedEnd = (addr + size) & (~3);
 | 
			
		||||
    if (alignedEnd < alignedBegin) {
 | 
			
		||||
        alignedEnd = alignedBegin;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (addr < alignedBegin) {
 | 
			
		||||
        uint32_t nb = alignedBegin - addr;
 | 
			
		||||
        uint32_t tmp;
 | 
			
		||||
        if (sdk_spi_flash_read(alignedEnd - 4, &tmp, 4) != SPI_FLASH_RESULT_OK) {
 | 
			
		||||
            printf("spi_flash_read failed\n");
 | 
			
		||||
            return SPIFFS_ERR_INTERNAL;
 | 
			
		||||
        }
 | 
			
		||||
        memcpy(dst, &tmp + 4 - nb, nb);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (alignedEnd != alignedBegin) {
 | 
			
		||||
        if (sdk_spi_flash_read(alignedBegin,
 | 
			
		||||
                    (uint32_t*) (dst + alignedBegin - addr),
 | 
			
		||||
                    alignedEnd - alignedBegin) != SPI_FLASH_RESULT_OK) {
 | 
			
		||||
            printf("spi_flash_read failed\n");
 | 
			
		||||
            return SPIFFS_ERR_INTERNAL;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (addr + size > alignedEnd) {
 | 
			
		||||
        uint32_t nb = addr + size - alignedEnd;
 | 
			
		||||
        uint32_t tmp;
 | 
			
		||||
        if (sdk_spi_flash_read(alignedEnd, &tmp, 4) != SPI_FLASH_RESULT_OK) {
 | 
			
		||||
            printf("spi_flash_read failed\n");
 | 
			
		||||
            return SPIFFS_ERR_INTERNAL;
 | 
			
		||||
        }
 | 
			
		||||
 | 
			
		||||
        memcpy(dst + size - nb, &tmp, nb);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return result;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static const int UNALIGNED_WRITE_BUFFER_SIZE = 512;
 | 
			
		||||
 | 
			
		||||
static s32_t esp_spiffs_write(u32_t addr, u32_t size, u8_t *src)
 | 
			
		||||
{
 | 
			
		||||
    uint32_t alignedBegin = (addr + 3) & (~3);
 | 
			
		||||
    uint32_t alignedEnd = (addr + size) & (~3);
 | 
			
		||||
    if (alignedEnd < alignedBegin) {
 | 
			
		||||
        alignedEnd = alignedBegin;
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (addr < alignedBegin) {
 | 
			
		||||
        uint32_t ofs = alignedBegin - addr;
 | 
			
		||||
        uint32_t nb = (size < ofs) ? size : ofs;
 | 
			
		||||
        uint8_t tmp[4] __attribute__((aligned(4))) = {0xff, 0xff, 0xff, 0xff};
 | 
			
		||||
        memcpy(tmp + 4 - ofs, src, nb);
 | 
			
		||||
        if (sdk_spi_flash_write(alignedBegin - 4, (uint32_t*) tmp, 4)
 | 
			
		||||
                != SPI_FLASH_RESULT_OK) {
 | 
			
		||||
            printf("spi_flash_write failed\n");
 | 
			
		||||
            return SPIFFS_ERR_INTERNAL;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (alignedEnd != alignedBegin) {
 | 
			
		||||
        uint32_t* srcLeftover = (uint32_t*) (src + alignedBegin - addr);
 | 
			
		||||
        uint32_t srcAlign = ((uint32_t) srcLeftover) & 3;
 | 
			
		||||
        if (!srcAlign) {
 | 
			
		||||
            if (sdk_spi_flash_write(alignedBegin, (uint32_t*) srcLeftover,
 | 
			
		||||
                    alignedEnd - alignedBegin) != SPI_FLASH_RESULT_OK) {
 | 
			
		||||
                printf("spi_flash_write failed\n");
 | 
			
		||||
                return SPIFFS_ERR_INTERNAL;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
        else {
 | 
			
		||||
            uint8_t buf[UNALIGNED_WRITE_BUFFER_SIZE];
 | 
			
		||||
            for (uint32_t sizeLeft = alignedEnd - alignedBegin; sizeLeft; ) {
 | 
			
		||||
                size_t willCopy = sizeLeft < sizeof(buf) ? sizeLeft : sizeof(buf);
 | 
			
		||||
                memcpy(buf, srcLeftover, willCopy);
 | 
			
		||||
 | 
			
		||||
                if (sdk_spi_flash_write(alignedBegin, (uint32_t*) buf, willCopy)
 | 
			
		||||
                        != SPI_FLASH_RESULT_OK) {
 | 
			
		||||
                    printf("spi_flash_write failed\n");
 | 
			
		||||
                    return SPIFFS_ERR_INTERNAL;
 | 
			
		||||
                }
 | 
			
		||||
 | 
			
		||||
                sizeLeft -= willCopy;
 | 
			
		||||
                srcLeftover += willCopy;
 | 
			
		||||
                alignedBegin += willCopy;
 | 
			
		||||
            }
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    if (addr + size > alignedEnd) {
 | 
			
		||||
        uint32_t nb = addr + size - alignedEnd;
 | 
			
		||||
        uint32_t tmp = 0xffffffff;
 | 
			
		||||
        memcpy(&tmp, src + size - nb, nb);
 | 
			
		||||
 | 
			
		||||
        if (sdk_spi_flash_write(alignedEnd, &tmp, 4) != SPI_FLASH_RESULT_OK) {
 | 
			
		||||
            printf("spi_flash_write failed\n");
 | 
			
		||||
            return SPIFFS_ERR_INTERNAL;
 | 
			
		||||
        }
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return SPIFFS_OK;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
static s32_t esp_spiffs_erase(u32_t addr, u32_t size)
 | 
			
		||||
{
 | 
			
		||||
    if (addr % SPI_FLASH_SEC_SIZE) {
 | 
			
		||||
        printf("Unaligned erase addr=%x\n", addr);
 | 
			
		||||
    }
 | 
			
		||||
    if (size % SPI_FLASH_SEC_SIZE) {
 | 
			
		||||
        printf("Unaligned erase size=%d\n", size);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    const uint32_t sector = addr / SPI_FLASH_SEC_SIZE;
 | 
			
		||||
    const uint32_t sectorCount = size / SPI_FLASH_SEC_SIZE;
 | 
			
		||||
 | 
			
		||||
    for (uint32_t i = 0; i < sectorCount; ++i) {
 | 
			
		||||
        sdk_spi_flash_erase_sector(sector + i);
 | 
			
		||||
    }
 | 
			
		||||
    return SPIFFS_OK;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
int32_t esp_spiffs_mount()
 | 
			
		||||
{
 | 
			
		||||
    spiffs_config config = {0};
 | 
			
		||||
 | 
			
		||||
    config.hal_read_f = esp_spiffs_read;
 | 
			
		||||
    config.hal_write_f = esp_spiffs_write;
 | 
			
		||||
    config.hal_erase_f = esp_spiffs_erase;
 | 
			
		||||
 | 
			
		||||
    size_t workBufSize = 2 * SPIFFS_CFG_LOG_PAGE_SZ();
 | 
			
		||||
    size_t fdsBufSize = SPIFFS_buffer_bytes_for_filedescs(&fs, 5);
 | 
			
		||||
    size_t cacheBufSize = SPIFFS_buffer_bytes_for_cache(&fs, 5);
 | 
			
		||||
 | 
			
		||||
    work_buf = malloc(workBufSize);
 | 
			
		||||
    fds_buf = malloc(fdsBufSize);
 | 
			
		||||
    cache_buf = malloc(cacheBufSize);
 | 
			
		||||
    printf("spiffs memory, work_buf_size=%d, fds_buf_size=%d, cache_buf_size=%d\n",
 | 
			
		||||
            workBufSize, fdsBufSize, cacheBufSize);
 | 
			
		||||
 | 
			
		||||
    int32_t err = SPIFFS_mount(&fs, &config, work_buf, fds_buf, fdsBufSize,
 | 
			
		||||
            cache_buf, cacheBufSize, 0);
 | 
			
		||||
 | 
			
		||||
    if (err != SPIFFS_OK) {
 | 
			
		||||
        printf("Error spiffs mount: %d\n", err);
 | 
			
		||||
    }
 | 
			
		||||
 | 
			
		||||
    return err;
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
void esp_spiffs_unmount()
 | 
			
		||||
{
 | 
			
		||||
    SPIFFS_unmount(&fs);
 | 
			
		||||
 | 
			
		||||
    free(work_buf);
 | 
			
		||||
    free(fds_buf);
 | 
			
		||||
    free(cache_buf);
 | 
			
		||||
 | 
			
		||||
    work_buf = 0;
 | 
			
		||||
    fds_buf = 0;
 | 
			
		||||
    cache_buf = 0;
 | 
			
		||||
}
 | 
			
		||||
							
								
								
									
										28
									
								
								extras/spiffs/esp_spiffs.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										28
									
								
								extras/spiffs/esp_spiffs.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,28 @@
 | 
			
		|||
/**
 | 
			
		||||
 * ESP8266 SPIFFS HAL configuration.
 | 
			
		||||
 *
 | 
			
		||||
 * Part of esp-open-rtos
 | 
			
		||||
 * Copyright (c) 2016 sheinz https://github.com/sheinz
 | 
			
		||||
 * MIT License
 | 
			
		||||
 */
 | 
			
		||||
#ifndef __ESP_SPIFFS_H__
 | 
			
		||||
#define __ESP_SPIFFS_H__
 | 
			
		||||
 | 
			
		||||
#include "spiffs.h"
 | 
			
		||||
 | 
			
		||||
extern spiffs fs;
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Provide SPIFFS with all necessary configuration, allocate memory buffers
 | 
			
		||||
 * and mount SPIFFS.
 | 
			
		||||
 *
 | 
			
		||||
 * Return SPIFFS return code.
 | 
			
		||||
 */
 | 
			
		||||
int32_t esp_spiffs_mount();
 | 
			
		||||
 | 
			
		||||
/**
 | 
			
		||||
 * Unmount SPIFFS and free all allocated buffers.
 | 
			
		||||
 */
 | 
			
		||||
void esp_spiffs_unmount();
 | 
			
		||||
 | 
			
		||||
#endif  // __ESP_SPIFFS_H__
 | 
			
		||||
							
								
								
									
										1
									
								
								extras/spiffs/spiffs
									
										
									
									
									
										Submodule
									
								
							
							
						
						
									
										1
									
								
								extras/spiffs/spiffs
									
										
									
									
									
										Submodule
									
								
							| 
						 | 
				
			
			@ -0,0 +1 @@
 | 
			
		|||
Subproject commit c6e94fdca5c1601b90c027167f8d453c48e482c4
 | 
			
		||||
							
								
								
									
										263
									
								
								extras/spiffs/spiffs_config.h
									
										
									
									
									
										Normal file
									
								
							
							
						
						
									
										263
									
								
								extras/spiffs/spiffs_config.h
									
										
									
									
									
										Normal file
									
								
							| 
						 | 
				
			
			@ -0,0 +1,263 @@
 | 
			
		|||
/*
 | 
			
		||||
 * spiffs_config.h
 | 
			
		||||
 *
 | 
			
		||||
 *  Created on: Jul 3, 2013
 | 
			
		||||
 *      Author: petera
 | 
			
		||||
 */
 | 
			
		||||
 | 
			
		||||
#ifndef SPIFFS_CONFIG_H_
 | 
			
		||||
#define SPIFFS_CONFIG_H_
 | 
			
		||||
 | 
			
		||||
// ----------- 8< ------------
 | 
			
		||||
#include <stdio.h>
 | 
			
		||||
#include <stdlib.h>
 | 
			
		||||
#include <string.h>
 | 
			
		||||
#include <stddef.h>
 | 
			
		||||
#include <stdint.h>
 | 
			
		||||
#include <ctype.h>
 | 
			
		||||
// #include <FreeRTOS.h>    // for vPortEnterCritical/vPortExitCritical
 | 
			
		||||
// ----------- >8 ------------
 | 
			
		||||
 | 
			
		||||
typedef signed int s32_t;
 | 
			
		||||
typedef unsigned int u32_t;
 | 
			
		||||
typedef signed short s16_t;
 | 
			
		||||
typedef unsigned short u16_t;
 | 
			
		||||
typedef signed char s8_t;
 | 
			
		||||
typedef unsigned char u8_t;
 | 
			
		||||
 | 
			
		||||
// compile time switches
 | 
			
		||||
 | 
			
		||||
// Set generic spiffs debug output call.
 | 
			
		||||
#ifndef SPIFFS_DBG
 | 
			
		||||
#define SPIFFS_DBG(...) //printf(__VA_ARGS__)
 | 
			
		||||
#endif
 | 
			
		||||
// Set spiffs debug output call for garbage collecting.
 | 
			
		||||
#ifndef SPIFFS_GC_DBG
 | 
			
		||||
#define SPIFFS_GC_DBG(...) //printf(__VA_ARGS__)
 | 
			
		||||
#endif
 | 
			
		||||
// Set spiffs debug output call for caching.
 | 
			
		||||
#ifndef SPIFFS_CACHE_DBG
 | 
			
		||||
#define SPIFFS_CACHE_DBG(...) //printf(__VA_ARGS__)
 | 
			
		||||
#endif
 | 
			
		||||
// Set spiffs debug output call for system consistency checks.
 | 
			
		||||
#ifndef SPIFFS_CHECK_DBG
 | 
			
		||||
#define SPIFFS_CHECK_DBG(...) //printf(__VA_ARGS__)
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Enable/disable API functions to determine exact number of bytes
 | 
			
		||||
// for filedescriptor and cache buffers. Once decided for a configuration,
 | 
			
		||||
// this can be disabled to reduce flash.
 | 
			
		||||
#ifndef SPIFFS_BUFFER_HELP
 | 
			
		||||
#define SPIFFS_BUFFER_HELP              1
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Enables/disable memory read caching of nucleus file system operations.
 | 
			
		||||
// If enabled, memory area must be provided for cache in SPIFFS_mount.
 | 
			
		||||
#ifndef  SPIFFS_CACHE
 | 
			
		||||
#define SPIFFS_CACHE                    1
 | 
			
		||||
#endif
 | 
			
		||||
#if SPIFFS_CACHE
 | 
			
		||||
// Enables memory write caching for file descriptors in hydrogen
 | 
			
		||||
#ifndef  SPIFFS_CACHE_WR
 | 
			
		||||
#define SPIFFS_CACHE_WR                 1
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Enable/disable statistics on caching. Debug/test purpose only.
 | 
			
		||||
#ifndef  SPIFFS_CACHE_STATS
 | 
			
		||||
#define SPIFFS_CACHE_STATS              0
 | 
			
		||||
#endif
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Always check header of each accessed page to ensure consistent state.
 | 
			
		||||
// If enabled it will increase number of reads, will increase flash.
 | 
			
		||||
#ifndef SPIFFS_PAGE_CHECK
 | 
			
		||||
#define SPIFFS_PAGE_CHECK               1
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Define maximum number of gc runs to perform to reach desired free pages.
 | 
			
		||||
#ifndef SPIFFS_GC_MAX_RUNS
 | 
			
		||||
#define SPIFFS_GC_MAX_RUNS              3
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Enable/disable statistics on gc. Debug/test purpose only.
 | 
			
		||||
#ifndef SPIFFS_GC_STATS
 | 
			
		||||
#define SPIFFS_GC_STATS                 0
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Garbage collecting examines all pages in a block which and sums up
 | 
			
		||||
// to a block score. Deleted pages normally gives positive score and
 | 
			
		||||
// used pages normally gives a negative score (as these must be moved).
 | 
			
		||||
// To have a fair wear-leveling, the erase age is also included in score,
 | 
			
		||||
// whose factor normally is the most positive.
 | 
			
		||||
// The larger the score, the more likely it is that the block will
 | 
			
		||||
// picked for garbage collection.
 | 
			
		||||
 | 
			
		||||
// Garbage collecting heuristics - weight used for deleted pages.
 | 
			
		||||
#ifndef SPIFFS_GC_HEUR_W_DELET
 | 
			
		||||
#define SPIFFS_GC_HEUR_W_DELET          (5)
 | 
			
		||||
#endif
 | 
			
		||||
// Garbage collecting heuristics - weight used for used pages.
 | 
			
		||||
#ifndef SPIFFS_GC_HEUR_W_USED
 | 
			
		||||
#define SPIFFS_GC_HEUR_W_USED           (-1)
 | 
			
		||||
#endif
 | 
			
		||||
// Garbage collecting heuristics - weight used for time between
 | 
			
		||||
// last erased and erase of this block.
 | 
			
		||||
#ifndef SPIFFS_GC_HEUR_W_ERASE_AGE
 | 
			
		||||
#define SPIFFS_GC_HEUR_W_ERASE_AGE      (50)
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Object name maximum length. Note that this length include the
 | 
			
		||||
// zero-termination character, meaning maximum string of characters
 | 
			
		||||
// can at most be SPIFFS_OBJ_NAME_LEN - 1.
 | 
			
		||||
#ifndef SPIFFS_OBJ_NAME_LEN
 | 
			
		||||
#define SPIFFS_OBJ_NAME_LEN             (32)
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Size of buffer allocated on stack used when copying data.
 | 
			
		||||
// Lower value generates more read/writes. No meaning having it bigger
 | 
			
		||||
// than logical page size.
 | 
			
		||||
#ifndef SPIFFS_COPY_BUFFER_STACK
 | 
			
		||||
#define SPIFFS_COPY_BUFFER_STACK        (64)
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Enable this to have an identifiable spiffs filesystem. This will look for
 | 
			
		||||
// a magic in all sectors to determine if this is a valid spiffs system or
 | 
			
		||||
// not on mount point. If not, SPIFFS_format must be called prior to mounting
 | 
			
		||||
// again.
 | 
			
		||||
#ifndef SPIFFS_USE_MAGIC
 | 
			
		||||
#define SPIFFS_USE_MAGIC                (0)
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#if SPIFFS_USE_MAGIC
 | 
			
		||||
// Only valid when SPIFFS_USE_MAGIC is enabled. If SPIFFS_USE_MAGIC_LENGTH is
 | 
			
		||||
// enabled, the magic will also be dependent on the length of the filesystem.
 | 
			
		||||
// For example, a filesystem configured and formatted for 4 megabytes will not
 | 
			
		||||
// be accepted for mounting with a configuration defining the filesystem as 2
 | 
			
		||||
// megabytes.
 | 
			
		||||
#ifndef SPIFFS_USE_MAGIC_LENGTH
 | 
			
		||||
#define SPIFFS_USE_MAGIC_LENGTH         (0)
 | 
			
		||||
#endif
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// SPIFFS_LOCK and SPIFFS_UNLOCK protects spiffs from reentrancy on api level
 | 
			
		||||
// These should be defined on a multithreaded system
 | 
			
		||||
 | 
			
		||||
// define this to enter a mutex if you're running on a multithreaded system
 | 
			
		||||
#ifndef SPIFFS_LOCK
 | 
			
		||||
#define SPIFFS_LOCK(fs)        // vPortEnterCritical()
 | 
			
		||||
#endif
 | 
			
		||||
// define this to exit a mutex if you're running on a multithreaded system
 | 
			
		||||
#ifndef SPIFFS_UNLOCK
 | 
			
		||||
#define SPIFFS_UNLOCK(fs)      // vPortExitCritical()
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Enable if only one spiffs instance with constant configuration will exist
 | 
			
		||||
// on the target. This will reduce calculations, flash and memory accesses.
 | 
			
		||||
// Parts of configuration must be defined below instead of at time of mount.
 | 
			
		||||
#ifndef SPIFFS_SINGLETON
 | 
			
		||||
#define SPIFFS_SINGLETON 1
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
#if SPIFFS_SINGLETON
 | 
			
		||||
// Instead of giving parameters in config struct, singleton build must
 | 
			
		||||
// give parameters in defines below.
 | 
			
		||||
#ifndef SPIFFS_CFG_PHYS_SZ
 | 
			
		||||
#define SPIFFS_CFG_PHYS_SZ(ignore)        (SPIFFS_SIZE)
 | 
			
		||||
#endif
 | 
			
		||||
#ifndef SPIFFS_CFG_PHYS_ERASE_SZ
 | 
			
		||||
#define SPIFFS_CFG_PHYS_ERASE_SZ(ignore)  (4*1024)
 | 
			
		||||
#endif
 | 
			
		||||
#ifndef SPIFFS_CFG_PHYS_ADDR
 | 
			
		||||
#define SPIFFS_CFG_PHYS_ADDR(ignore)      (SPIFFS_BASE_ADDR)
 | 
			
		||||
#endif
 | 
			
		||||
#ifndef SPIFFS_CFG_LOG_PAGE_SZ
 | 
			
		||||
#define SPIFFS_CFG_LOG_PAGE_SZ(ignore)    (256)
 | 
			
		||||
#endif
 | 
			
		||||
#ifndef SPIFFS_CFG_LOG_BLOCK_SZ
 | 
			
		||||
#define SPIFFS_CFG_LOG_BLOCK_SZ(ignore)   (4*1024)
 | 
			
		||||
#endif
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Enable this if your target needs aligned data for index tables
 | 
			
		||||
#ifndef SPIFFS_ALIGNED_OBJECT_INDEX_TABLES
 | 
			
		||||
#define SPIFFS_ALIGNED_OBJECT_INDEX_TABLES       1
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Enable this if you want the HAL callbacks to be called with the spiffs struct
 | 
			
		||||
#ifndef SPIFFS_HAL_CALLBACK_EXTRA
 | 
			
		||||
#define SPIFFS_HAL_CALLBACK_EXTRA         0
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Enable this if you want to add an integer offset to all file handles
 | 
			
		||||
// (spiffs_file). This is useful if running multiple instances of spiffs on
 | 
			
		||||
// same target, in order to recognise to what spiffs instance a file handle
 | 
			
		||||
// belongs.
 | 
			
		||||
// NB: This adds config field fh_ix_offset in the configuration struct when
 | 
			
		||||
// mounting, which must be defined.
 | 
			
		||||
#ifndef SPIFFS_FILEHDL_OFFSET
 | 
			
		||||
#define SPIFFS_FILEHDL_OFFSET                 0
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Enable this to compile a read only version of spiffs.
 | 
			
		||||
// This will reduce binary size of spiffs. All code comprising modification
 | 
			
		||||
// of the file system will not be compiled. Some config will be ignored.
 | 
			
		||||
// HAL functions for erasing and writing to spi-flash may be null. Cache
 | 
			
		||||
// can be disabled for even further binary size reduction (and ram savings).
 | 
			
		||||
// Functions modifying the fs will return SPIFFS_ERR_RO_NOT_IMPL.
 | 
			
		||||
// If the file system cannot be mounted due to aborted erase operation and
 | 
			
		||||
// SPIFFS_USE_MAGIC is enabled, SPIFFS_ERR_RO_ABORTED_OPERATION will be
 | 
			
		||||
// returned.
 | 
			
		||||
// Might be useful for e.g. bootloaders and such.
 | 
			
		||||
#ifndef SPIFFS_READ_ONLY
 | 
			
		||||
#define SPIFFS_READ_ONLY                      0
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Set SPIFFS_TEST_VISUALISATION to non-zero to enable SPIFFS_vis function
 | 
			
		||||
// in the api. This function will visualize all filesystem using given printf
 | 
			
		||||
// function.
 | 
			
		||||
#ifndef SPIFFS_TEST_VISUALISATION
 | 
			
		||||
#define SPIFFS_TEST_VISUALISATION         1
 | 
			
		||||
#endif
 | 
			
		||||
#if SPIFFS_TEST_VISUALISATION
 | 
			
		||||
#ifndef spiffs_printf
 | 
			
		||||
#define spiffs_printf(...)                printf(__VA_ARGS__)
 | 
			
		||||
#endif
 | 
			
		||||
// spiffs_printf argument for a free page
 | 
			
		||||
#ifndef SPIFFS_TEST_VIS_FREE_STR
 | 
			
		||||
#define SPIFFS_TEST_VIS_FREE_STR          "_"
 | 
			
		||||
#endif
 | 
			
		||||
// spiffs_printf argument for a deleted page
 | 
			
		||||
#ifndef SPIFFS_TEST_VIS_DELE_STR
 | 
			
		||||
#define SPIFFS_TEST_VIS_DELE_STR          "/"
 | 
			
		||||
#endif
 | 
			
		||||
// spiffs_printf argument for an index page for given object id
 | 
			
		||||
#ifndef SPIFFS_TEST_VIS_INDX_STR
 | 
			
		||||
#define SPIFFS_TEST_VIS_INDX_STR(id)      "i"
 | 
			
		||||
#endif
 | 
			
		||||
// spiffs_printf argument for a data page for given object id
 | 
			
		||||
#ifndef SPIFFS_TEST_VIS_DATA_STR
 | 
			
		||||
#define SPIFFS_TEST_VIS_DATA_STR(id)      "d"
 | 
			
		||||
#endif
 | 
			
		||||
#endif
 | 
			
		||||
 | 
			
		||||
// Types depending on configuration such as the amount of flash bytes
 | 
			
		||||
// given to spiffs file system in total (spiffs_file_system_size),
 | 
			
		||||
// the logical block size (log_block_size), and the logical page size
 | 
			
		||||
// (log_page_size)
 | 
			
		||||
 | 
			
		||||
// Block index type. Make sure the size of this type can hold
 | 
			
		||||
// the highest number of all blocks - i.e. spiffs_file_system_size / log_block_size
 | 
			
		||||
typedef u16_t spiffs_block_ix;
 | 
			
		||||
// Page index type. Make sure the size of this type can hold
 | 
			
		||||
// the highest page number of all pages - i.e. spiffs_file_system_size / log_page_size
 | 
			
		||||
typedef u16_t spiffs_page_ix;
 | 
			
		||||
// Object id type - most significant bit is reserved for index flag. Make sure the
 | 
			
		||||
// size of this type can hold the highest object id on a full system,
 | 
			
		||||
// i.e. 2 + (spiffs_file_system_size / (2*log_page_size))*2
 | 
			
		||||
typedef u16_t spiffs_obj_id;
 | 
			
		||||
// Object span index type. Make sure the size of this type can
 | 
			
		||||
// hold the largest possible span index on the system -
 | 
			
		||||
// i.e. (spiffs_file_system_size / log_page_size) - 1
 | 
			
		||||
typedef u16_t spiffs_span_ix;
 | 
			
		||||
 | 
			
		||||
#endif /* SPIFFS_CONFIG_H_ */
 | 
			
		||||
		Loading…
	
	Add table
		Add a link
		
	
		Reference in a new issue