eeprom.c 20.6 KB
Newer Older
1 2 3 4 5 6 7 8 9 10
#include "ln88xx.h"
#include <string.h>

#include "hal/hal_common.h"
#include "hal/flash.h"
#include "utils/debug/art_assert.h"
#include "utils/debug/log.h"
#include "osal/osal.h"
#include "utils/eeprom.h"
#include "utils/system_parameter.h"
S
supowang 已提交
11
#include "flash_partition_table.h"
12 13 14 15

#define PAGE_SIZE                   (1*SIZE_4KB)

/* EEPROM start address in Flash */
S
supowang 已提交
16
#define EEPROM_START_ADDRESS    ((uint32_t)(SIMU_EEPROM_SPACE_OFFSET))
17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584

/* Pages 0 and 1 base and end addresses */
#define PAGE0_BASE_ADDRESS      ((uint32_t)(EEPROM_START_ADDRESS))
#define PAGE0_END_ADDRESS       ((uint32_t)(EEPROM_START_ADDRESS + (PAGE_SIZE - 1)))

#define PAGE1_BASE_ADDRESS      ((uint32_t)(PAGE0_BASE_ADDRESS + PAGE_SIZE))
#define PAGE1_END_ADDRESS       ((uint32_t)(PAGE1_BASE_ADDRESS + (PAGE_SIZE - 1)))

/* Used Flash pages for EEPROM emulation */
#define PAGE0                   ((uint16_t)0x0000)
#define PAGE1                   ((uint16_t)0x0001)

/* No valid page define */
#define NO_VALID_PAGE           ((uint16_t)0x00AB)

/* Page status definitions */
#define ERASED                  ((uint16_t)0xFFFF)     /* PAGE is empty */
#define RECEIVE_DATA            ((uint16_t)0xEEEE)     /* PAGE is marked to receive data */
#define VALID_PAGE              ((uint16_t)0x0000)     /* PAGE containing valid data */

/* Valid pages in read and write defines */
#define READ_FROM_VALID_PAGE    ((uint8_t)0x00)
#define WRITE_IN_VALID_PAGE     ((uint8_t)0x01)

/* Page full define */
#define PAGE_FULL               ((uint8_t)0x80)


typedef struct eeprom_ctrl {
    uint16_t *buffer;
    uint16_t  vaddr_end;
    uint16_t  value;
    uint32_t  bit_flag_size;
    uint8_t   *bit_flag;
}eeprom_ctrl_t;

static eeprom_ctrl_t g_eeprom_ctrl = {0};

static HAL_StatusTypeDef EE_Format(void);
static uint16_t EE_FindValidPage(uint8_t Operation);
static uint16_t EE_VerifyPageFullWriteVariable(uint16_t VirtAddress, uint16_t Data);
static uint16_t EE_PageCopy(uint32_t srcPageStart, uint32_t destPageStart);
static uint16_t EE_PageTransfer(uint16_t VirtAddress, uint16_t Data);
static uint32_t EE_BinarySearch(uint32_t startAddress, uint32_t endAddress, uint32_t key);
static bool EE_LoadFlashDataToRAM(uint16_t *buffer);

static eeprom_ctrl_t *EE_GetInstance(void)
{
    return &g_eeprom_ctrl;
}

/**
  * @brief  Restore the pages to a known good state in case of page's status
  *   corruption after a power loss.
  * @param  None.
  * @retval - Flash error code: on write Flash error
  *         - HAL_OK: on success
  */
int EE_Init(uint16_t *buffer, uint32_t size)
{
    int ret = 0;
    uint16_t PageStatus0 = 6, PageStatus1 = 6;
    HAL_StatusTypeDef FlashStatus;
    uint16_t value = 0;
    eeprom_ctrl_t *eeprom_ctrl = EE_GetInstance();

    ART_ASSERT(buffer && size > 0);
    eeprom_ctrl->buffer = buffer;
    eeprom_ctrl->vaddr_end = (size >> 1);
    eeprom_ctrl->bit_flag_size = DIV_ROUND_UP(size, 2*8);
    eeprom_ctrl->bit_flag = OS_Malloc(eeprom_ctrl->bit_flag_size);

    /* Get Page0 status */
    FLASH_ReadByCache(PAGE0_BASE_ADDRESS, sizeof(uint16_t), (uint8_t *)&PageStatus0);
    /* Get Page1 status */
    FLASH_ReadByCache(PAGE1_BASE_ADDRESS, sizeof(uint16_t), (uint8_t *)&PageStatus1);

    /* Check for invalid header states and repair if necessary */
    switch (PageStatus0) {
        case ERASED:
            if (PageStatus1 == VALID_PAGE) { 
                /* Page0 erased, Page1 valid */
                /* Erase Page0 */
                //FLASH_Erase(PAGE0_BASE_ADDRESS, PAGE_SIZE);
            } else if (PageStatus1 == RECEIVE_DATA) { 
                /* Page0 erased, Page1 receive */
                FLASH_Erase(PAGE0_BASE_ADDRESS, PAGE_SIZE);
                value = VALID_PAGE;
                FLASH_Program(PAGE1_BASE_ADDRESS, sizeof(uint16_t), (uint8_t *)&value);
            } else { 
                /* First EEPROM access (Page0&1 are erased) or invalid state -> format EEPROM */
                /* Erase both Page0 and Page1 and set Page0 as valid page */
                FlashStatus = EE_Format();
                /* If erase/program operation was failed, a Flash error code is returned */
                if (FlashStatus != HAL_OK) {
                    return -1;
                }
                ret = -1;
            }
            break;

        case RECEIVE_DATA:
            if (PageStatus1 == VALID_PAGE) { 
                /* Page0 receive, Page1 valid */
                /* Transfer data from Page1 to Page0 */
                EE_PageCopy(PAGE1_BASE_ADDRESS, PAGE0_BASE_ADDRESS);
                
                /* Mark Page0 as valid */
                value = VALID_PAGE;
                FLASH_Program(PAGE0_BASE_ADDRESS, sizeof(uint16_t), (uint8_t *)&value);
                FLASH_Erase(PAGE1_BASE_ADDRESS, PAGE_SIZE);
            } else if (PageStatus1 == ERASED) { /* Page0 receive, Page1 erased */
                //FLASH_Erase(PAGE1_BASE_ADDRESS, PAGE_SIZE);
                value = VALID_PAGE;
                FLASH_Program(PAGE0_BASE_ADDRESS, sizeof(uint16_t), (uint8_t *)&value);
            } else { 
                /* Invalid state -> format eeprom */
                /* Erase both Page0 and Page1 and set Page0 as valid page */
                FlashStatus = EE_Format();
                /* If erase/program operation was failed, a Flash error code is returned */
                if (FlashStatus != HAL_OK) {
                    return -1;
                }
                ret = -1;
            }
            break;

        case VALID_PAGE:
            if (PageStatus1 == VALID_PAGE) { 
                /* Invalid state -> format eeprom */
                /* Erase both Page0 and Page1 and set Page0 as valid page */
                FlashStatus = EE_Format();
                /* If erase/program operation was failed, a Flash error code is returned */
                if (FlashStatus != HAL_OK) {
                    return -1;
                }
                ret = -1;
            } else if (PageStatus1 == ERASED) { /* Page0 valid, Page1 erased */
                //FLASH_Erase(PAGE1_BASE_ADDRESS, PAGE_SIZE);
            } else { 
                /* Page0 valid, Page1 receive */
                /* Transfer data from Page0 to Page1 */
                EE_PageCopy(PAGE0_BASE_ADDRESS, PAGE1_BASE_ADDRESS);

                value = VALID_PAGE;
                FLASH_Program(PAGE1_BASE_ADDRESS, sizeof(uint16_t), (uint8_t *)&value);
                FLASH_Erase(PAGE0_BASE_ADDRESS, PAGE_SIZE);
            }
            break;

        default:  
            /* Any other state -> format eeprom */
            /* Erase both Page0 and Page1 and set Page0 as valid page */
            FlashStatus = EE_Format();
            /* If erase/program operation was failed, a Flash error code is returned */
            if (FlashStatus != HAL_OK) {
                return -1;
            }
            ret = -1;
            break;
    }

    if(ret == 0 && !EE_LoadFlashDataToRAM(buffer)){
        memset(buffer, 0, size);
        FlashStatus = EE_Format();
        /* If erase/program operation was failed, a Flash error code is returned */
        if (FlashStatus != HAL_OK) {
            return -1;
        }
        ret = -1;
    }
    return ret;
}
int EE_DeInit(void)
{
    eeprom_ctrl_t *eeprom_ctrl = EE_GetInstance();

    if(eeprom_ctrl->bit_flag){
        OS_Free(eeprom_ctrl->bit_flag);
    }
    return 0;
}


/**
  * @brief  Returns the last stored variable data, if found, which correspond to
  *   the passed virtual address
  * @param  VirtAddress: Variable virtual address
  * @param  Data: Global variable contains the read variable value
  * @retval Success or error status:
  *           - 0: if variable was found
  *           - 1: if the variable was not found
  *           - NO_VALID_PAGE: if no valid page was found.
  */
uint16_t EE_ReadVariable(uint16_t VirtAddress, uint16_t *Data)
{
    uint16_t ValidPage = PAGE0;
    uint16_t AddressValue = 0x5555, ReadStatus = 1, AddressData = 0;
    uint32_t Address = 0, PageStartAddress = 0, dataEndAddress;
    uint32_t value;

    /* Get active Page for read operation */
    ValidPage = EE_FindValidPage(READ_FROM_VALID_PAGE);

    /* Check if there is no valid page */
    if (ValidPage == NO_VALID_PAGE) {
        LOG(LOG_LVL_ERROR, "[%s, %d]NO_VALID_PAGE\r\n", __func__, __LINE__);
        return  NO_VALID_PAGE;
    }

    /* Get the valid Page start Address */
    PageStartAddress = (uint32_t)(EEPROM_START_ADDRESS + (uint32_t)(ValidPage * PAGE_SIZE));

    /* Get the valid Page end Address */
    Address = (uint32_t)((EEPROM_START_ADDRESS - 2) + (uint32_t)((1 + ValidPage) * PAGE_SIZE));

    dataEndAddress = EE_BinarySearch(PageStartAddress, Address, 0xFFFFFFFF);
    Address = dataEndAddress - 4;
    
    /* Check each active page address starting from end */
    while (Address > (PageStartAddress + 2)) {
        /* Get the current location content to be compared with virtual address */
        FLASH_ReadByCache(Address, sizeof(uint32_t), (uint8_t *)&value);
        AddressValue = (value >> 16) & 0xFFFF;
        AddressData = value & 0xFFFF;
        /* Compare the read address with the virtual address */
        if (AddressValue == VirtAddress) {
            *Data = AddressData;
            /* In case variable value is read, reset ReadStatus flag */
            ReadStatus = 0;
            break;
        } else {
            /* Next address location */
            Address = Address - 4;
        }
    }

    /* Return ReadStatus value: (0: variable exist, 1: variable doesn't exist) */
    return ReadStatus;
}


/**
  * @brief  Writes/upadtes variable data in EEPROM.
  * @param  VirtAddress: Variable virtual address
  * @param  Data: 16 bit data to be written
  * @retval Success or error status:
  *           - HAL_OK: on success
  *           - PAGE_FULL: if valid page is full
  *           - NO_VALID_PAGE: if no valid page was found
  *           - Flash error code: on write Flash error
  */
uint16_t EE_WriteVariable(uint16_t VirtAddress, uint16_t Data)
{
    uint16_t Status = 0;

    /* Write the variable virtual address and value in the EEPROM */
    Status = EE_VerifyPageFullWriteVariable(VirtAddress, Data);

    /* In case the EEPROM active page is full */
    if (Status == PAGE_FULL) {
        /* Perform Page transfer */
        Status = EE_PageTransfer(VirtAddress, Data);
    }

    /* Return last operation status */
    return Status;
}

/**
  * @brief  Erases PAGE0 and PAGE1 and writes VALID_PAGE header to PAGE0
  * @param  None
  * @retval Status of the last operation (Flash write or erase) done during
  *         EEPROM formating
  */
static HAL_StatusTypeDef EE_Format(void)
{
    HAL_StatusTypeDef FlashStatus = HAL_OK;
    uint16_t value = 0;

    FLASH_Erase(PAGE0_BASE_ADDRESS, PAGE_SIZE);
    value = VALID_PAGE;
    FLASH_Program(PAGE0_BASE_ADDRESS, sizeof(uint16_t), (uint8_t *)&value);
    FLASH_Erase(PAGE1_BASE_ADDRESS, PAGE_SIZE);
    return FlashStatus;
}

/**
  * @brief  Find valid Page for write or read operation
  * @param  Operation: operation to achieve on the valid page.
  *   This parameter can be one of the following values:
  *     @arg READ_FROM_VALID_PAGE: read operation from valid page
  *     @arg WRITE_IN_VALID_PAGE: write operation from valid page
  * @retval Valid page number (PAGE0 or PAGE1) or NO_VALID_PAGE in case
  *   of no valid page was found
  */
static uint16_t EE_FindValidPage(uint8_t Operation)
{
    uint16_t PageStatus0 = 6, PageStatus1 = 6;

    /* Get Page0 actual status */
    FLASH_ReadByCache(PAGE0_BASE_ADDRESS, sizeof(uint16_t), (uint8_t *)&PageStatus0);

    /* Get Page1 actual status */
    FLASH_ReadByCache(PAGE1_BASE_ADDRESS, sizeof(uint16_t), (uint8_t *)&PageStatus1);

    /* Write or read operation */
    switch (Operation) {
        case WRITE_IN_VALID_PAGE:   /* ---- Write operation ---- */
            if (PageStatus1 == VALID_PAGE) {
                /* Page0 receiving data */
                if (PageStatus0 == RECEIVE_DATA) {
                    return PAGE0;         /* Page0 valid */
                } else {
                    return PAGE1;         /* Page1 valid */
                }
            } else if (PageStatus0 == VALID_PAGE) {
                /* Page1 receiving data */
                if (PageStatus1 == RECEIVE_DATA) {
                    return PAGE1;         /* Page1 valid */
                } else {
                    return PAGE0;         /* Page0 valid */
                }
            } else {
                return NO_VALID_PAGE;   /* No valid Page */
            }

        case READ_FROM_VALID_PAGE:  /* ---- Read operation ---- */
            if (PageStatus0 == VALID_PAGE) {
                return PAGE0;           /* Page0 valid */
            } else if (PageStatus1 == VALID_PAGE) {
                return PAGE1;           /* Page1 valid */
            } else {
                return NO_VALID_PAGE ;  /* No valid Page */
            }

        default:
            return PAGE0;             /* Page0 valid */
    }
}


/**
  * @brief  Verify if active page is full and Writes variable in EEPROM.
  * @param  VirtAddress: 16 bit virtual address of the variable
  * @param  Data: 16 bit data to be written as variable value
  * @retval Success or error status:
  *           - HAL_OK: on success
  *           - PAGE_FULL: if valid page is full
  *           - NO_VALID_PAGE: if no valid page was found
  *           - Flash error code: on write Flash error
  */
static uint16_t EE_VerifyPageFullWriteVariable(uint16_t VirtAddress, uint16_t Data)
{
    HAL_StatusTypeDef FlashStatus = HAL_OK;
    uint16_t ValidPage = PAGE0;
    uint32_t Address = 0, PageEndAddress = 0, targetAddress, value = 0;

    /* Get valid Page for write operation */
    ValidPage = EE_FindValidPage(WRITE_IN_VALID_PAGE);

    /* Check if there is no valid page */
    if (ValidPage == NO_VALID_PAGE) {
        LOG(LOG_LVL_ERROR, "[%s, %d]NO_VALID_PAGE\r\n", __func__, __LINE__);
        return  NO_VALID_PAGE;
    }

    /* Get the valid Page start Address */
    Address = (uint32_t)(EEPROM_START_ADDRESS + (uint32_t)(ValidPage * PAGE_SIZE));

    /* Get the valid Page end Address */
    PageEndAddress = (uint32_t)((EEPROM_START_ADDRESS - 2) + (uint32_t)((1 + ValidPage) * PAGE_SIZE));

    /* Check each active page address starting from begining */
    targetAddress = EE_BinarySearch(Address, PageEndAddress, 0xFFFFFFFF);
    if( targetAddress > Address && targetAddress <= PageEndAddress){
        value = Data | (VirtAddress<<16);
        FLASH_Program(targetAddress, sizeof(uint32_t), (uint8_t *)&value);
        return FlashStatus;
    }

    /* Return PAGE_FULL in case the valid page is full */
    return PAGE_FULL;
}

uint16_t EE_PageCopy(uint32_t srcPageStart, uint32_t destPageStart)
{
    eeprom_ctrl_t *eeprom_ctrl = NULL;
    uint32_t       srcAddr = 0, srcDataEndAddr = 0, value = 0;
    uint16_t       virtualAddr = 0, data = 0, EepromStatus = 0;
    int            i = 0, j = 0, count = 0;
    uint8_t        *bit_flag = eeprom_ctrl->bit_flag, *flag = NULL;

    eeprom_ctrl = EE_GetInstance();
    memset(bit_flag, 0, eeprom_ctrl->bit_flag_size);
    /* 
     * srcPageStart is the valid Page start Address
     * Get the valid Page end Address 
     */
    srcAddr = srcPageStart + PAGE_SIZE - 2;

    srcDataEndAddr = EE_BinarySearch(srcPageStart, srcAddr, 0xFFFFFFFF);
    srcAddr = srcDataEndAddr - 4;
    
    /* Check each active page address starting from end */
    while ((srcAddr > srcPageStart) && srcAddr < (srcDataEndAddr + 2)) {
        /* Get the current location content to be compared with virtual address */
        FLASH_ReadByCache(srcAddr, sizeof(uint32_t), (uint8_t *)&value);
        virtualAddr = (value >> 16) & 0xFFFF;
        data = value & 0xFFFF;
        ART_ASSERT(virtualAddr < eeprom_ctrl->vaddr_end);
        i = virtualAddr / 8;
        j = virtualAddr % 8;
        flag = &bit_flag[i];
        if(!GET_BIT(*flag, j)){
            SET_BIT(*flag, j);
            /* Transfer the variable to the new active page */
            EepromStatus = EE_VerifyPageFullWriteVariable(virtualAddr, data);
            /* If program operation was failed, a Flash error code is returned */
            if (EepromStatus != HAL_OK) {
                return EepromStatus;
            }
            count++;
            if(count >= eeprom_ctrl->vaddr_end){
                break;
            }
        }
        srcAddr = srcAddr - 4;
    }
    return HAL_OK;
}

/**
  * @brief  Transfers last updated variables data from the full Page to
  *   an empty one.
  * @param  VirtAddress: 16 bit virtual address of the variable
  * @param  Data: 16 bit data to be written as variable value
  * @retval Success or error status:
  *           - HAL_OK: on success
  *           - PAGE_FULL: if valid page is full
  *           - NO_VALID_PAGE: if no valid page was found
  *           - Flash error code: on write Flash error
  */
static uint16_t EE_PageTransfer(uint16_t VirtAddress, uint16_t Data)
{
    uint32_t NewPageAddress = 0, OldPageAddress = 0, value = 0;
    uint16_t ValidPage = PAGE0;
    uint16_t EepromStatus = 0;
    eeprom_ctrl_t *eeprom_ctrl = EE_GetInstance();

    /* Get active Page for read operation */
    ValidPage = EE_FindValidPage(READ_FROM_VALID_PAGE);

    if (ValidPage == PAGE1) {     
        /* Page1 valid */
        /* New page address where variable will be moved to */
        NewPageAddress = PAGE0_BASE_ADDRESS;

        /* Old page address where variable will be taken from */
        OldPageAddress = PAGE1_BASE_ADDRESS;
    } else if (ValidPage == PAGE0) { 
        /* Page0 valid */
        /* New page address where variable will be moved to */
        NewPageAddress = PAGE1_BASE_ADDRESS;

        /* Old page address where variable will be taken from */
        OldPageAddress = PAGE0_BASE_ADDRESS;
    } else {
        LOG(LOG_LVL_ERROR, "[%s, %d]NO_VALID_PAGE\r\n", __func__, __LINE__);
        return NO_VALID_PAGE;       /* No valid Page */
    }
    value = RECEIVE_DATA;
    FLASH_Program(NewPageAddress, sizeof(uint16_t), (uint8_t *)&value);
    /* Write the variable passed as parameter in the new active page */
    EepromStatus = EE_VerifyPageFullWriteVariable(VirtAddress, Data);
    /* If program operation was failed, a Flash error code is returned */
    if (EepromStatus != HAL_OK) {
        return EepromStatus;
    }

    EE_PageCopy(OldPageAddress, NewPageAddress);

    value = VALID_PAGE;
    FLASH_Program(NewPageAddress, sizeof(uint16_t), (uint8_t *)&value);
	FLASH_Erase(OldPageAddress, PAGE_SIZE);
    /* Return last operation flash status */
    return HAL_OK;
}

uint32_t EE_BinarySearch(uint32_t startAddr, uint32_t endAddr, uint32_t key)
{
    int low = 0, mid = 0, high = 0;
    uint32_t value = 0;

    endAddr &= ~(0x3);
    ART_ASSERT(!(startAddr & 0x3) && !(endAddr & 0x3));
    low = startAddr >> 2;
    high = endAddr >> 2;
    while (low <= high){
        mid = (low + high) / 2;
        FLASH_ReadByCache(mid<<2, sizeof(uint32_t), (uint8_t *)&value);
        if(key != value){
            low = mid + 1;
        }else{
            FLASH_ReadByCache((mid - 1)<<2, sizeof(uint32_t), (uint8_t *)&value);
            if(key != value){
            	return mid<<2;
            }
            high = mid - 1;
        }
    }

    return low<<2;
}

bool EE_LoadFlashDataToRAM(uint16_t *buffer)
{
    bool ret = false;
    eeprom_ctrl_t *eeprom_ctrl = EE_GetInstance();
    uint16_t ValidPage = PAGE0;
    uint16_t virtualAddress = 0, virtualAddressValue = 0;
    uint32_t Address = 0, PageStartAddress = 0, dataEndAddress = 0, value = 0;
    uint8_t *bit_flag = eeprom_ctrl->bit_flag, *flag = NULL;
    int i,j, count = 0;

    memset(bit_flag, 0, eeprom_ctrl->bit_flag_size);
    /* Get active Page for read operation */
    ValidPage = EE_FindValidPage(READ_FROM_VALID_PAGE);

    /* Check if there is no valid page */
    if (ValidPage == NO_VALID_PAGE) {
        LOG(LOG_LVL_ERROR, "[%s, %d]NO_VALID_PAGE\r\n", __func__, __LINE__);
        goto out;
    }

    /* Get the valid Page start Address */
    PageStartAddress = (uint32_t)(EEPROM_START_ADDRESS + (uint32_t)(ValidPage * PAGE_SIZE));

    /* Get the valid Page end Address */
    Address = (uint32_t)((EEPROM_START_ADDRESS - 2) + (uint32_t)((1 + ValidPage) * PAGE_SIZE));

    dataEndAddress = EE_BinarySearch(PageStartAddress, Address, 0xFFFFFFFF);
    Address = dataEndAddress - 4;
    while (Address > (PageStartAddress + 2)) {
        FLASH_ReadByCache(Address, sizeof(uint32_t), (uint8_t *)&value);
        virtualAddress = (value >> 16) & 0xFFFF;
        virtualAddressValue = value & 0xFFFF;
        if(virtualAddress > eeprom_ctrl->vaddr_end){
            goto out;
        }
        i = virtualAddress / 8;
        j = virtualAddress % 8;
        flag = &bit_flag[i];
        if(!GET_BIT(*flag, j)){
            SET_BIT(*flag, j);
            buffer[virtualAddress] = virtualAddressValue;
            count++;
            if(count >= eeprom_ctrl->vaddr_end){
                break;
            }
        }
        Address = Address - 4;
    }
    ret = true;
out:
    return ret;
}