mirror of
				https://github.com/eledio-devices/thirdparty-littlefs.git
				synced 2025-11-01 00:38:29 +01:00 
			
		
		
		
	- Removed old tests and test scripts
- Reorganize the block devices to live under one directory
- Plugged new test framework into Makefile
renamed:
- scripts/test_.py -> scripts/test.py
- tests_ -> tests
- {file,ram,test}bd/* -> bd/*
It took a surprising amount of effort to make the Makefile behave since
it turns out the "test_%" rule could override "tests/test_%.toml.test"
which is generated as part of test.py.
		
	
		
			
				
	
	
		
			139 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			139 lines
		
	
	
		
			4.6 KiB
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * Block device emulated in RAM
 | |
|  *
 | |
|  * Copyright (c) 2017, Arm Limited. All rights reserved.
 | |
|  * SPDX-License-Identifier: BSD-3-Clause
 | |
|  */
 | |
| #include "bd/lfs_rambd.h"
 | |
| 
 | |
| int lfs_rambd_createcfg(const struct lfs_config *cfg,
 | |
|         const struct lfs_rambd_config *bdcfg) {
 | |
|     LFS_TRACE("lfs_rambd_createcfg(%p {.context=%p, "
 | |
|                 ".read=%p, .prog=%p, .erase=%p, .sync=%p, "
 | |
|                 ".read_size=%"PRIu32", .prog_size=%"PRIu32", "
 | |
|                 ".block_size=%"PRIu32", .block_count=%"PRIu32"}, "
 | |
|                 "%p {.erase_value=%"PRId32", .buffer=%p})",
 | |
|             (void*)cfg, cfg->context,
 | |
|             (void*)(uintptr_t)cfg->read, (void*)(uintptr_t)cfg->prog,
 | |
|             (void*)(uintptr_t)cfg->erase, (void*)(uintptr_t)cfg->sync,
 | |
|             cfg->read_size, cfg->prog_size, cfg->block_size, cfg->block_count,
 | |
|             (void*)bdcfg, bdcfg->erase_value, bdcfg->buffer);
 | |
|     lfs_rambd_t *bd = cfg->context;
 | |
|     bd->cfg = bdcfg;
 | |
| 
 | |
|     // allocate buffer?
 | |
|     if (bd->cfg->buffer) {
 | |
|         bd->buffer = bd->cfg->buffer;
 | |
|     } else {
 | |
|         bd->buffer = lfs_malloc(cfg->block_size * cfg->block_count);
 | |
|         if (!bd->buffer) {
 | |
|             LFS_TRACE("lfs_rambd_createcfg -> %d", LFS_ERR_NOMEM);
 | |
|             return LFS_ERR_NOMEM;
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     // zero for reproducability?
 | |
|     if (bd->cfg->erase_value != -1) {
 | |
|         memset(bd->buffer, bd->cfg->erase_value,
 | |
|                 cfg->block_size * cfg->block_count);
 | |
|     }
 | |
| 
 | |
|     LFS_TRACE("lfs_rambd_createcfg -> %d", 0);
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| int lfs_rambd_create(const struct lfs_config *cfg) {
 | |
|     LFS_TRACE("lfs_rambd_create(%p {.context=%p, "
 | |
|                 ".read=%p, .prog=%p, .erase=%p, .sync=%p, "
 | |
|                 ".read_size=%"PRIu32", .prog_size=%"PRIu32", "
 | |
|                 ".block_size=%"PRIu32", .block_count=%"PRIu32"})",
 | |
|             (void*)cfg, cfg->context,
 | |
|             (void*)(uintptr_t)cfg->read, (void*)(uintptr_t)cfg->prog,
 | |
|             (void*)(uintptr_t)cfg->erase, (void*)(uintptr_t)cfg->sync,
 | |
|             cfg->read_size, cfg->prog_size, cfg->block_size, cfg->block_count);
 | |
|     static const struct lfs_rambd_config defaults = {.erase_value=-1};
 | |
|     int err = lfs_rambd_createcfg(cfg, &defaults);
 | |
|     LFS_TRACE("lfs_rambd_create -> %d", err);
 | |
|     return err;
 | |
| }
 | |
| 
 | |
| int lfs_rambd_destroy(const struct lfs_config *cfg) {
 | |
|     LFS_TRACE("lfs_rambd_destroy(%p)", (void*)cfg);
 | |
|     // clean up memory
 | |
|     lfs_rambd_t *bd = cfg->context;
 | |
|     if (!bd->cfg->buffer) {
 | |
|         lfs_free(bd->buffer);
 | |
|     }
 | |
|     LFS_TRACE("lfs_rambd_destroy -> %d", 0);
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| int lfs_rambd_read(const struct lfs_config *cfg, lfs_block_t block,
 | |
|         lfs_off_t off, void *buffer, lfs_size_t size) {
 | |
|     LFS_TRACE("lfs_rambd_read(%p, 0x%"PRIx32", %"PRIu32", %p, %"PRIu32")",
 | |
|             (void*)cfg, block, off, buffer, size);
 | |
|     lfs_rambd_t *bd = cfg->context;
 | |
| 
 | |
|     // check if read is valid
 | |
|     LFS_ASSERT(off  % cfg->read_size == 0);
 | |
|     LFS_ASSERT(size % cfg->read_size == 0);
 | |
|     LFS_ASSERT(block < cfg->block_count);
 | |
| 
 | |
|     // read data
 | |
|     memcpy(buffer, &bd->buffer[block*cfg->block_size + off], size);
 | |
| 
 | |
|     LFS_TRACE("lfs_rambd_read -> %d", 0);
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| int lfs_rambd_prog(const struct lfs_config *cfg, lfs_block_t block,
 | |
|         lfs_off_t off, const void *buffer, lfs_size_t size) {
 | |
|     LFS_TRACE("lfs_rambd_prog(%p, 0x%"PRIx32", %"PRIu32", %p, %"PRIu32")",
 | |
|             (void*)cfg, block, off, buffer, size);
 | |
|     lfs_rambd_t *bd = cfg->context;
 | |
| 
 | |
|     // check if write is valid
 | |
|     LFS_ASSERT(off  % cfg->prog_size == 0);
 | |
|     LFS_ASSERT(size % cfg->prog_size == 0);
 | |
|     LFS_ASSERT(block < cfg->block_count);
 | |
| 
 | |
|     // check that data was erased? only needed for testing
 | |
|     if (bd->cfg->erase_value != -1) {
 | |
|         for (lfs_off_t i = 0; i < size; i++) {
 | |
|             LFS_ASSERT(bd->buffer[block*cfg->block_size + off + i] ==
 | |
|                     bd->cfg->erase_value);
 | |
|         }
 | |
|     }
 | |
| 
 | |
|     // program data
 | |
|     memcpy(&bd->buffer[block*cfg->block_size + off], buffer, size);
 | |
| 
 | |
|     LFS_TRACE("lfs_rambd_prog -> %d", 0);
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| int lfs_rambd_erase(const struct lfs_config *cfg, lfs_block_t block) {
 | |
|     LFS_TRACE("lfs_rambd_erase(%p, 0x%"PRIx32")", (void*)cfg, block);
 | |
|     lfs_rambd_t *bd = cfg->context;
 | |
| 
 | |
|     // check if erase is valid
 | |
|     LFS_ASSERT(block < cfg->block_count);
 | |
| 
 | |
|     // erase, only needed for testing
 | |
|     if (bd->cfg->erase_value != -1) {
 | |
|         memset(&bd->buffer[block*cfg->block_size],
 | |
|                 bd->cfg->erase_value, cfg->block_size);
 | |
|     }
 | |
| 
 | |
|     LFS_TRACE("lfs_rambd_erase -> %d", 0);
 | |
|     return 0;
 | |
| }
 | |
| 
 | |
| int lfs_rambd_sync(const struct lfs_config *cfg) {
 | |
|     LFS_TRACE("lfs_rambd_sync(%p)", (void*)cfg);
 | |
|     // sync does nothing because we aren't backed by anything real
 | |
|     (void)cfg;
 | |
|     LFS_TRACE("lfs_rambd_sync -> %d", 0);
 | |
|     return 0;
 | |
| }
 |