123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990 |
- /*
- * Copyright (c) 2006-2018, RT-Thread Development Team
- *
- * SPDX-License-Identifier: Apache-2.0
- *
- * Change Logs:
- * Date Author Notes
- * 2018-05-17 armink the first version
- */
- #include <fal.h>
- #include <string.h>
- /* flash device table, must defined by user */
- #if !defined(FAL_FLASH_DEV_TABLE)
- #error "You must defined flash device table (FAL_FLASH_DEV_TABLE) on 'fal_cfg.h'"
- #endif
- static const struct fal_flash_dev * const device_table[] = FAL_FLASH_DEV_TABLE;
- static const size_t device_table_len = sizeof(device_table) / sizeof(device_table[0]);
- static uint8_t init_ok = 0;
- /**
- * Initialize all flash device on FAL flash table
- *
- * @return result
- */
- int fal_flash_init(void)
- {
- size_t i, j, offset;
- if (init_ok)
- {
- return 0;
- }
- for (i = 0; i < device_table_len; i++)
- {
- assert(device_table[i]->ops.read);
- assert(device_table[i]->ops.write);
- assert(device_table[i]->ops.erase);
- /* init flash device on flash table */
- if (device_table[i]->ops.init)
- {
- device_table[i]->ops.init();
- }
- log_d("Flash device | %*.*s | addr: 0x%08lx | len: 0x%08x | blk_size: 0x%08x |initialized finish.",
- FAL_DEV_NAME_MAX, FAL_DEV_NAME_MAX, device_table[i]->name, device_table[i]->addr, device_table[i]->len,
- device_table[i]->blk_size);
- offset = 0;
- for (j = 0; j < FAL_DEV_BLK_MAX; j ++)
- {
- const struct flash_blk *blk = &device_table[i]->blocks[j];
- size_t blk_len = blk->count * blk->size;
- if (blk->count == 0 || blk->size == 0)
- break;
- log_d(" blk%2d | addr: 0x%08lx | len: 0x%08x | blk_size: 0x%08x |initialized finish.",
- j, device_table[i]->addr + offset, blk_len, blk->size);
- offset += blk_len;
- }
- }
- init_ok = 1;
- return 0;
- }
- /**
- * find flash device by name
- *
- * @param name flash device name
- *
- * @return != NULL: flash device
- * NULL: not found
- */
- const struct fal_flash_dev *fal_flash_device_find(const char *name)
- {
- assert(init_ok);
- assert(name);
- size_t i;
- for (i = 0; i < device_table_len; i++)
- {
- if (!strncmp(name, device_table[i]->name, FAL_DEV_NAME_MAX)) {
- return device_table[i];
- }
- }
- return NULL;
- }
|