123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810 |
- /**************************************************************************************************
-
- Phyplus Microelectronics Limited confidential and proprietary.
- All rights reserved.
- IMPORTANT: All rights of this software belong to Phyplus Microelectronics
- Limited ("Phyplus"). Your use of this Software is limited to those
- specific rights granted under the terms of the business contract, the
- confidential agreement, the non-disclosure agreement and any other forms
- of agreements as a customer or a partner of Phyplus. You may not use this
- Software unless you agree to abide by the terms of these agreements.
- You acknowledge that the Software may not be modified, copied,
- distributed or disclosed unless embedded on a Phyplus Bluetooth Low Energy
- (BLE) integrated circuit, either as a product or is integrated into your
- products. Other than for the aforementioned purposes, you may not use,
- reproduce, copy, prepare derivative works of, modify, distribute, perform,
- display or sell this Software and/or its documentation for any purposes.
- YOU FURTHER ACKNOWLEDGE AND AGREE THAT THE SOFTWARE AND DOCUMENTATION ARE
- PROVIDED AS IS WITHOUT WARRANTY OF ANY KIND, EITHER EXPRESS OR IMPLIED,
- INCLUDING WITHOUT LIMITATION, ANY WARRANTY OF MERCHANTABILITY, TITLE,
- NON-INFRINGEMENT AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL
- PHYPLUS OR ITS SUBSIDIARIES BE LIABLE OR OBLIGATED UNDER CONTRACT,
- NEGLIGENCE, STRICT LIABILITY, CONTRIBUTION, BREACH OF WARRANTY, OR OTHER
- LEGAL EQUITABLE THEORY ANY DIRECT OR INDIRECT DAMAGES OR EXPENSES
- INCLUDING BUT NOT LIMITED TO ANY INCIDENTAL, SPECIAL, INDIRECT, PUNITIVE
- OR CONSEQUENTIAL DAMAGES, LOST PROFITS OR LOST DATA, COST OF PROCUREMENT
- OF SUBSTITUTE GOODS, TECHNOLOGY, SERVICES, OR ANY CLAIMS BY THIRD PARTIES
- (INCLUDING BUT NOT LIMITED TO ANY DEFENSE THEREOF), OR OTHER SIMILAR COSTS.
-
- **************************************************************************************************/
- /*******************************************************************************
- * @file fs.c
- * @brief Contains all functions support for spi driver
- * @version 0.0
- * @date 18. Oct. 2017
- * @author
- *
- * Copyright(C) 2016, PhyPlus Semiconductor
- * All rights reserved.
- *
- *******************************************************************************/
- #include "osal.h"
- #include "common.h"
- #include "flash.h"
- #include "fs.h"
- #include "error.h"
- //#include "log.h"
- static uint8_t fs_sector_num;
- static uint32_t fs_offset_address;
- #define FS_ITEM_LEN_16BYTE 0
- #define FS_ITEM_LEN_32BYTE 1
- #define FS_ITEM_LEN_64BYTE 2
- #ifndef FS_SETTING
- #define FS_SETTING FS_ITEM_LEN_16BYTE
- #endif
- #if (FS_SETTING == FS_ITEM_LEN_16BYTE)
- #define FS_ITEM_LEN 16
- #elif (FS_SETTING == FS_ITEM_LEN_32BYTE)
- #define FS_ITEM_LEN 32
- #elif (FS_SETTING == FS_ITEM_LEN_64BYTE)
- #define FS_ITEM_LEN 64
- #else
- #error please check your config parameter
- #endif
- /*
- fs struct:
- sector0
- sector_head
- file_head(4byte)+file_data
- ...
- file_head(4byte)+file_data
- */
- //please do not modify the following parameters
- #define FS_ITEM_HEAD_LEN 4
- #define FS_ITEM_DATA_LEN (FS_ITEM_LEN - FS_ITEM_HEAD_LEN)
- #define FS_SECTOR_ITEM_NUM (4096/FS_ITEM_LEN - 1)
- #define FS_SECTOR_NUM_BUFFER_SIZE (312/4)
- #define FS_ABSOLUTE_ADDR(offset) (fs.cfg.sector_addr + offset)
- typedef enum{
- ITEM_DEL = 0x00,//zone is deleted
- ITEM_UNUSED = 0x03,//zone is free
- ITEM_USED = 0x02,//zone is used
- ITEM_RESERVED = 0x01//to be extend
- }item_pro;
- typedef enum{
- ITEM_SF = 0x03,//single frame file
- ITEM_MF_F = 0x01,//multiple frame file,first frame
- ITEM_MF_C = 0x02,//multiple frame file,continue frame
- ITEM_MF_E = 0x00//multiple frame file,end frame
- }item_frame;
- typedef enum{
- FLASH_UNCHECK = 0,//before analysis fs
- FLASH_NEW = 1,//new fs,its are 0xFF
- FLASH_ORIGINAL_ORDER = 2,//fs has data,its order is the original
- FLASH_NEW_ORDER = 3,//fs has data,its order is not the original
- FLASH_CONTEXT_ERROR = 4,//fs has data,but data is broken
- }FS_FLASH_TYPE;
- /*
- file head struct:
- len(12bit)+frame(2bit)+pro(2bit)+id(16bit)
- */
- typedef union
- {
- struct
- {
- uint32_t id:16;//file id
- uint32_t pro:2;//file property
- uint32_t frame:2;//file frame
- uint32_t len:12;//file length
- } b;
- uint32_t reg;
- } fs_item_t;
- /*
- sector head struct:
- sector_addr(one word)+(ff+index+item_len+sector_num)(one word)+(0xffffffff)(one word)~(0xffffffff)(one word)
- */
- typedef struct{
- uint32_t sector_addr;//fs start address
- uint8_t sector_num;//fs sector number
- uint8_t item_len;//item length
- uint8_t index;//sector index
- uint8_t reserved[FS_ITEM_LEN-7];
- }fs_cfg_t;
- typedef struct{
- fs_cfg_t cfg;
- uint8_t current_sector;//free sector index
- uint8_t exchange_sector;//exchange sector,only use it when garbage collect
- uint16_t offset;//free position in free sector index
- }fs_t;
- static fs_t fs;
- static bool fs_init_flag = false;
- typedef enum{
- SEARCH_FREE_ITEM = 0,
- SEARCH_APPOINTED_ITEM = 1,
- SEARCH_DELETED_ITEMS = 2,
- }search_type;
- extern uint32_t __psr(void);//check if in int process
- static void fs_erase_ucds_all_sector(void)
- {
- int i;
-
- for(i=0;i<fs_sector_num;i++)
- flash_sector_erase(fs_offset_address + (i*4096));
- }
- static void fs_erase_ucds_one_sector(uint32_t addr_erase)
- {
- flash_sector_erase(fs_offset_address + addr_erase);
- }
- static int spif_write(uint32_t addr,uint8_t* value,uint16_t len)
- {
- uint32_t i = 0,data;
-
- if(__psr()&0x3f){
- return PPlus_ERR_FS_IN_INT;
- }
-
- if((addr < fs_offset_address) || (addr >= (fs_offset_address+fs_sector_num*4096)) || ((addr&0x03)>0)){
- return PPlus_ERR_FS_PARAMETER;
- }
-
- while(i < len){
- switch(len - i)
- {
- case 1:
- data = *(value+i);
- break;
- case 2:
- data = *(value+i) + ((*(value+i+1)) << 8);
- break;
- case 3:
- data = *(value+i) + ((*(value+i+1)) << 8) + ((*(value+i+2)) << 16);
- break;
- default:
- data = *(value+i) + ((*(value+i+1)) << 8) + ((*(value+i+2)) << 16) + ((*(value+i+3)) << 24);
- break;
- }
-
- if(WriteFlash(addr,data) == 0){
- return PPlus_ERR_FS_WRITE_FAILED;
- }
- addr += 4;
- i += 4;
- }
-
- return PPlus_SUCCESS;
- }
- static uint32_t spif_read(uint32_t addr,uint8_t* buf,uint32_t len)
- {
- uint32_t i = 0,count = 0;
- uint32_t temp = 0;
-
- if ((addr < fs_offset_address) || (addr >= (fs_offset_address + fs_sector_num*4096)) || (buf == NULL) || (len == 0))
- {
- return PPlus_ERR_FS_PARAMETER;
- }
- else
- {
- count = len/4 + ((len % 4) ? 1 : 0);
- for(i = 0;i < count;i++)
- {
- temp = ReadFlashWord(addr + (i<<2));
- *(buf + (i << 2) + 0) = (temp & 0xff);
- *(buf + (i << 2) + 1) = (temp & 0xff00)>>8;
- *(buf + (i << 2) + 2) = (temp & 0xff0000)>>16;
- *(buf + (i << 2) + 3) = (temp & 0xff000000)>>24;
- }
- }
- return PPlus_SUCCESS;
- }
- static void check_addr(uint32_t* addr)
- {
- if((*addr % 4096) == 0)
- {
- *addr += sizeof(fs_cfg_t);
- if(*addr >= 4096 *fs_sector_num)
- *addr -= 4096 *fs_sector_num;
- }
- }
- static int fs_search_items(search_type type,uint32_t* para1,uint32_t* para2)
- {
- uint8_t m,n;
- uint16_t j,g_offset = 1;
- uint32_t sector_addr,ab_addr;
- fs_item_t i1;
- bool from_last_sector = false;
-
- for(m = 1;m < fs_sector_num;m++)
- {
- n = (m + fs.exchange_sector) % fs.cfg.sector_num;
-
- if(g_offset >= FS_SECTOR_ITEM_NUM){
- g_offset -= FS_SECTOR_ITEM_NUM;
-
- if(g_offset >= FS_SECTOR_ITEM_NUM){
- continue;
- }
- }
-
- if(SEARCH_FREE_ITEM == type)
- fs.current_sector = (m + fs.exchange_sector) % fs.cfg.sector_num;
-
- sector_addr = n * 4096;
-
- for(j = 1;j <= FS_SECTOR_ITEM_NUM;j++)
- {
- if(from_last_sector == true){
- from_last_sector = false;
- j += g_offset;
- }
- else{
- if(g_offset > 1){
- if((j - 2 + g_offset) < FS_SECTOR_ITEM_NUM){
- j = j - 1 + g_offset;
- }
- else{
- g_offset -= (FS_SECTOR_ITEM_NUM + 2 - j);
- from_last_sector = true;
- break;
- }
- }
- }
- ab_addr = sector_addr + (j * FS_ITEM_LEN);
- spif_read(FS_ABSOLUTE_ADDR(ab_addr),(uint8_t*)&i1,FS_ITEM_HEAD_LEN);
- switch(type)
- {
- case SEARCH_FREE_ITEM:
- {
- switch(i1.b.pro)
- {
- case ITEM_DEL:
- case ITEM_USED:
- {
- if(i1.b.frame == ITEM_MF_F)
- g_offset = (i1.b.len/FS_ITEM_DATA_LEN) + ((i1.b.len%FS_ITEM_DATA_LEN)?1:0);
- else
- g_offset = 1;
- }
- break;
- case ITEM_UNUSED:
- *para1 = ab_addr%4096;
- return PPlus_SUCCESS;
- default:
- break;
- }
- }
- break;
-
- case SEARCH_APPOINTED_ITEM:
- {
- switch(i1.b.pro)
- {
- case ITEM_DEL:
- case ITEM_USED:
- if((ITEM_USED == i1.b.pro) && (i1.b.id == (uint16)(*para1)))
- {
- *para2 = ab_addr;
- return PPlus_SUCCESS;
- }
- else
- {
- if(i1.b.frame == ITEM_MF_F)
- g_offset = (i1.b.len/FS_ITEM_DATA_LEN) + ((i1.b.len%FS_ITEM_DATA_LEN)?1:0);
- else
- g_offset = 1;
- }
- break;
-
- case ITEM_UNUSED:
- return PPlus_ERR_FS_NOT_FIND_ID;
-
- default:
- break;
- }
- }
- break;
-
- case SEARCH_DELETED_ITEMS:
- {
- switch(i1.b.pro)
- {
- case ITEM_DEL:
- {
- if(i1.b.frame == ITEM_MF_F){
- g_offset = (i1.b.len/FS_ITEM_DATA_LEN) + ((i1.b.len%FS_ITEM_DATA_LEN)?1:0);
- *para1 += g_offset*FS_ITEM_DATA_LEN;
- }
- else{
- g_offset = 1;
- *para1 += FS_ITEM_DATA_LEN;
- }
- *para2 += 1;
- }
- break;
-
- case ITEM_USED:
- {
- if(i1.b.frame == ITEM_MF_F){
- g_offset = (i1.b.len/FS_ITEM_DATA_LEN) + ((i1.b.len%FS_ITEM_DATA_LEN)?1:0);
- }
- else{
- g_offset = 1;
- }
- }
- break;
-
- case ITEM_UNUSED:
- return PPlus_SUCCESS;
-
- default:
- break;
- }
- }
- break;
-
- default:
- return PPlus_ERR_INVALID_PARAM;
- }
- }
- }
- switch(type)
- {
- case SEARCH_FREE_ITEM:
- return PPlus_ERR_FS_FULL;
- case SEARCH_APPOINTED_ITEM:
- return PPlus_ERR_FS_NOT_FIND_ID;
- default:
- return PPlus_SUCCESS;
- }
- }
- static int fs_get_free_item(void)
- {
- int ret;
- uint32_t posiztion = 0;
- if(fs_init_flag == false)
- return PPlus_ERR_FS_UNINITIALIZED;
-
- ret = fs_search_items(SEARCH_FREE_ITEM,&posiztion,0);
- if(PPlus_SUCCESS == ret){
- fs.offset = posiztion;
- }else if(PPlus_ERR_FS_FULL == ret){
- fs.offset = 4096;
- }
-
- return ret;
- }
- static int fs_init(void)
- {
- uint8_t i = 0,sector_order[FS_SECTOR_NUM_BUFFER_SIZE],ret = PPlus_ERR_FS_UNINITIALIZED;
- FS_FLASH_TYPE flash = FLASH_UNCHECK;
- fs_cfg_t flash_rd_cfg;
-
- fs.cfg.sector_addr = fs_offset_address;
- fs.cfg.sector_num = fs_sector_num;;
- fs.cfg.index = 0xff;
- fs.cfg.item_len = FS_ITEM_LEN;
- osal_memset((fs.cfg.reserved),0xff,(FS_ITEM_LEN-7)*sizeof(uint8_t));
- osal_memset((sector_order),0x00,FS_SECTOR_NUM_BUFFER_SIZE);
-
- for(i = 0;i < fs.cfg.sector_num;i++)
- {
- spif_read(FS_ABSOLUTE_ADDR(4096*i),(uint8_t*)(&flash_rd_cfg),sizeof(fs_cfg_t));
- if((flash_rd_cfg.sector_addr == fs.cfg.sector_addr) &&
- (flash_rd_cfg.sector_num == fs.cfg.sector_num) &&
- (flash_rd_cfg.item_len == fs.cfg.item_len))
- {
- if(flash_rd_cfg.index < (fs_sector_num - 1))
- {
- if(i == flash_rd_cfg.index)
- flash = FLASH_ORIGINAL_ORDER;
- else
- flash = FLASH_NEW_ORDER;
- sector_order[i] = flash_rd_cfg.index;
- fs.cfg.index = flash_rd_cfg.index;
- }
- else
- {
- flash = FLASH_CONTEXT_ERROR;
- break;
- }
- }
- else if((flash_rd_cfg.sector_addr == 0xffffffff) &&
- (flash_rd_cfg.sector_num == 0xff) &&
- (flash_rd_cfg.item_len == 0xff))
- {
- sector_order[i] = 0xff;
- }
- else
- {
- flash = FLASH_CONTEXT_ERROR;
- break;
- }
- }
- if(flash == FLASH_CONTEXT_ERROR){
- return PPlus_ERR_FS_CONTEXT;
- }
- if(fs.cfg.index == 0xff)
- flash = FLASH_NEW;
-
- if(flash == FLASH_NEW)
- {
- for(i = 0;i < (fs.cfg.sector_num - 1);i++)
- {
- fs.cfg.index = i;
- if(PPlus_SUCCESS != spif_write((FS_ABSOLUTE_ADDR(4096*i)),(uint8_t*)(&(fs.cfg)),sizeof(fs_cfg_t))){
- return PPlus_ERR_FS_WRITE_FAILED;
- }
- }
- fs.current_sector = 0;
- fs.exchange_sector = fs.cfg.sector_num - 1;
- fs.offset = sizeof(fs_cfg_t);
- fs_init_flag = TRUE;
- }
- else
- {
- for(i = 0;i < fs.cfg.sector_num;i++){
- if(sector_order[i] == 0)
- break;
- }
-
- if(i < fs.cfg.sector_num)
- {
- fs.exchange_sector = (i + fs.cfg.sector_num - 1) % fs.cfg.sector_num;
- fs_init_flag = TRUE;
- ret = fs_get_free_item();
- if((ret != PPlus_ERR_FS_FULL) && (ret != PPlus_SUCCESS)){
- return PPlus_ERR_FS_RESERVED_ERROR;
- }
- }
- }
-
- return PPlus_SUCCESS;
- }
- uint32_t hal_fs_get_free_size(void)
- {
- uint32_t size = 0;
-
- if(fs_init_flag == false){
- //LOG("fs_init_flag = false,free\n");
- return 0;
- }
- if(fs.offset < 4096)
- {
- size = ((fs.exchange_sector + fs.cfg.sector_num - fs.current_sector - 1)%fs.cfg.sector_num)*(4096-sizeof(fs_cfg_t));
- size += (4096 - fs.offset);
- size = size*FS_ITEM_DATA_LEN/FS_ITEM_LEN;
- }
- return size;
- }
- int hal_fs_get_garbage_size(uint32_t* garbage_file_num)
- {
- uint32_t garbage_size = 0,garbage_count = 0;
- int ret;
-
- if(fs_init_flag == false)
- return PPlus_ERR_FS_UNINITIALIZED;
-
- ret = fs_search_items(SEARCH_DELETED_ITEMS,&garbage_size,&garbage_count);
- if(PPlus_SUCCESS == ret){
- if(NULL != garbage_file_num)
- *garbage_file_num = garbage_count;
- return garbage_size;
- }
- return PPlus_ERR_FATAL;
- }
- int hal_fs_item_find_id(uint16_t id,uint32_t* id_addr)
- {
- int ret;
- uint32_t file_id = 0;
-
- if(fs_init_flag == false)
- return PPlus_ERR_FS_UNINITIALIZED;
-
- file_id = id & 0xffff;
- ret = fs_search_items(SEARCH_APPOINTED_ITEM,&file_id,id_addr);
- return ret;
- }
- int hal_fs_item_write(uint16_t id,uint8_t* buf,uint16_t len)
- {
- uint8_t frame_len,wr_buf[FS_ITEM_LEN];
- uint16_t i,item_len;
- uint32_t addr;
- fs_item_t i1;
- if(__psr()&0x3f){
- return PPlus_ERR_FS_IN_INT;
- }
-
- if(fs_init_flag == false){
- //LOG("fs_init_flag = false,write\n");
- return PPlus_ERR_FS_UNINITIALIZED;
- }
-
- if((buf == NULL) || (len == 0)||(len > 4095))
- return PPlus_ERR_FS_PARAMETER;
-
- if(len > hal_fs_get_free_size())
- return PPlus_ERR_FS_NOT_ENOUGH_SIZE;
- //if(hal_fs_item_find_id(id,&addr) == PPlus_SUCCESS)
- // return PPlus_ERR_FS_EXIST_SAME_ID;
- if(hal_fs_item_find_id(id,&addr) == PPlus_SUCCESS){
- if(PPlus_SUCCESS != hal_fs_item_del(id))
- return PPlus_ERR_FATAL;
- }
-
- item_len = len;
- i1.b.len = len;
- i1.b.id = id;
- i1.b.pro = ITEM_USED;
-
- if(len <= FS_ITEM_DATA_LEN)
- i1.b.frame = ITEM_SF;
-
- i = 0;
- while(len > 0)
- {
- if(len > FS_ITEM_DATA_LEN)
- {
- if(item_len == len)
- i1.b.frame = ITEM_MF_F;
- else
- i1.b.frame = ITEM_MF_C;
-
- frame_len = FS_ITEM_DATA_LEN;
- len -= FS_ITEM_DATA_LEN;
- }
- else
- {
- if((i1.b.frame == ITEM_MF_C) || (i1.b.frame == ITEM_MF_F))
- i1.b.frame = ITEM_MF_E;
- frame_len = len;
- len = 0;
- }
-
- addr = FS_ABSOLUTE_ADDR((fs.current_sector * 4096) + fs.offset);
- osal_memcpy(wr_buf,(uint8_t*)(&i1.reg),FS_ITEM_HEAD_LEN);
- osal_memcpy((wr_buf + FS_ITEM_HEAD_LEN),(buf + i),frame_len);
- if(PPlus_SUCCESS != spif_write(addr,wr_buf,(frame_len+FS_ITEM_HEAD_LEN)))
- return PPlus_ERR_FS_WRITE_FAILED;
-
- i += frame_len;
- fs.offset += FS_ITEM_LEN;
-
- if(fs.offset == 4096)
- {
- if(((fs.current_sector + 1) % fs.cfg.sector_num) != fs.exchange_sector)
- {
- fs.offset = sizeof(fs_cfg_t);
- fs.current_sector = (fs.current_sector + 1) % fs.cfg.sector_num;
- }
- }
- }
-
- return PPlus_SUCCESS;
- }
- int hal_fs_item_read(uint16_t id,uint8_t* buf,uint16_t buf_len,uint16_t* len)
- {
- uint8_t rd_len;
- uint16_t i = 0,temp_len;
- uint32_t addr;
- fs_item_t i1;
-
- if(__psr()&0x3f){
- return PPlus_ERR_FS_IN_INT;
- }
-
- if(fs_init_flag == false)
- return PPlus_ERR_FS_UNINITIALIZED;
- if((buf == NULL) || (buf_len == 0))
- return PPlus_ERR_FS_PARAMETER;
-
- if(hal_fs_item_find_id(id,&addr) == PPlus_SUCCESS)
- {
- spif_read(FS_ABSOLUTE_ADDR(addr),(uint8_t*)&i1,FS_ITEM_HEAD_LEN);
- if(len != NULL){
- *len = i1.b.len;
- }
- temp_len = i1.b.len;
-
- if(buf_len >= i1.b.len)
- {
- while(temp_len > 0)
- {
- rd_len = (temp_len >= FS_ITEM_DATA_LEN) ? FS_ITEM_DATA_LEN : temp_len;
- spif_read(FS_ABSOLUTE_ADDR(addr + FS_ITEM_HEAD_LEN),(buf + i),rd_len);
- temp_len -= rd_len;
-
- addr += FS_ITEM_LEN;
- i += rd_len;
-
- check_addr(&addr);
- }
- return PPlus_SUCCESS;
- }
- return PPlus_ERR_FS_BUFFER_TOO_SMALL;
- }
- return PPlus_ERR_FS_NOT_FIND_ID;
- }
- int hal_fs_item_del(uint16_t id)
- {
- uint16_t i = 0,count = 1;
- uint32_t addr = 0;
- fs_item_t i1;
- if(__psr()&0x3f){
- return PPlus_ERR_FS_IN_INT;
- }
-
- if(fs_init_flag == FALSE)
- return PPlus_ERR_FS_UNINITIALIZED;
-
- if(hal_fs_item_find_id(id,&addr) == PPlus_SUCCESS)
- {
- spif_read(FS_ABSOLUTE_ADDR(addr),(uint8_t*)&i1,FS_ITEM_HEAD_LEN);
- count = i1.b.len/FS_ITEM_DATA_LEN + ((i1.b.len % FS_ITEM_DATA_LEN)?1:0);
-
- for(i = 0;i < count;i++)
- {
- spif_read(FS_ABSOLUTE_ADDR(addr),(uint8_t*)&i1,FS_ITEM_HEAD_LEN);
- i1.b.pro = ITEM_DEL;
- if(PPlus_SUCCESS != spif_write(FS_ABSOLUTE_ADDR(addr),(uint8_t*)(&i1.reg),FS_ITEM_HEAD_LEN))
- return PPlus_ERR_FS_WRITE_FAILED;
-
- addr += FS_ITEM_LEN;
- check_addr(&addr);
- }
- return PPlus_SUCCESS;
- }
- else
- {
- return PPlus_ERR_FS_NOT_FIND_ID;
- }
- }
- int hal_fs_garbage_collect(void)
- {
- uint8_t i,j,buf[FS_ITEM_DATA_LEN];
- uint8_t from_sector_index = 0,to_sector_index = 0;
- uint32_t addr_rd=0,addr_wr=0,addr_erase;
- fs_item_t i1;
- if(__psr()&0x3f){
- return PPlus_ERR_FS_IN_INT;
- }
-
- if(fs_init_flag == FALSE)
- return PPlus_ERR_FS_UNINITIALIZED;
- to_sector_index = fs.exchange_sector;
- from_sector_index = (fs.exchange_sector + 1) % fs.cfg.sector_num;
- addr_wr = 4096*to_sector_index;
- for(i = 0;i < (fs.cfg.sector_num - 1);i++)
- {
- addr_rd = 4096*((from_sector_index + i) % fs.cfg.sector_num);
- addr_erase = addr_rd;
-
- fs.cfg.index = i;
- if(PPlus_SUCCESS != spif_write(FS_ABSOLUTE_ADDR((4096*((to_sector_index + i) % fs.cfg.sector_num))),(uint8_t*)(&(fs.cfg)),sizeof(fs_cfg_t)))
- return PPlus_ERR_FS_WRITE_FAILED;
-
- if(i == 0)
- addr_wr += sizeof(fs_cfg_t);
-
- addr_rd += sizeof(fs_cfg_t);
- for(j = 0;j < FS_SECTOR_ITEM_NUM;j++)
- {
- spif_read(FS_ABSOLUTE_ADDR(addr_rd),(uint8_t*)&i1,FS_ITEM_HEAD_LEN);
- if(i1.b.pro == ITEM_USED)
- {
- spif_read(FS_ABSOLUTE_ADDR(addr_rd + FS_ITEM_HEAD_LEN),buf,FS_ITEM_DATA_LEN);
- if(PPlus_SUCCESS != spif_write(FS_ABSOLUTE_ADDR(addr_wr),(uint8_t*)(&i1.reg),FS_ITEM_HEAD_LEN))
- return PPlus_ERR_FS_WRITE_FAILED;
- if(PPlus_SUCCESS != spif_write(FS_ABSOLUTE_ADDR(addr_wr + FS_ITEM_HEAD_LEN),buf,FS_ITEM_DATA_LEN))
- return PPlus_ERR_FS_WRITE_FAILED;
-
- addr_wr += FS_ITEM_LEN;
- check_addr(&addr_wr);
- }
- else if(i1.b.pro == ITEM_UNUSED)
- {
- break;
- }
- addr_rd += FS_ITEM_LEN;
- }
-
- fs_erase_ucds_one_sector(addr_erase);
- }
-
- return fs_init();
- }
- int hal_fs_format(uint32_t fs_start_address,uint8_t sector_num)
- {
- if(__psr()&0x3f){
- return PPlus_ERR_FS_IN_INT;
- }
- fs_init_flag = FALSE;
-
- if((fs_start_address % 0x1000) || (sector_num < 3)){
- return PPlus_ERR_INVALID_PARAM;
- }
-
- fs_sector_num = sector_num;
- fs_offset_address = fs_start_address;
-
- fs_erase_ucds_all_sector();
- return hal_fs_init(fs_start_address,sector_num);
- }
- int hal_fs_init(uint32_t fs_start_address,uint8_t sector_num)
- {
- if(fs_init_flag == TRUE){
- return PPlus_ERR_FS_UNINITIALIZED;
- }
- if((fs_start_address % 0x1000) || (sector_num < 3)){
- return PPlus_ERR_INVALID_PARAM;
- }
-
- fs_sector_num = sector_num;
- fs_offset_address = fs_start_address;
-
- return fs_init();
- }
- bool hal_fs_initialized(void)
- {
- return fs_init_flag;
- }
|