/************************************************************************************//** * \file Demo\ARM7_LPC2000_Olimex_LPC_L2294_GCC\Boot\extflash.c * \brief Bootloader external flash driver source file. * \ingroup Boot_ARM7_LPC2000_Olimex_LPC_L2294_GCC * \internal *---------------------------------------------------------------------------------------- * C O P Y R I G H T *---------------------------------------------------------------------------------------- * Copyright (c) 2011 by Feaser http://www.feaser.com All rights reserved * *---------------------------------------------------------------------------------------- * L I C E N S E *---------------------------------------------------------------------------------------- * This file is part of OpenBLT. OpenBLT is free software: you can redistribute it and/or * modify it under the terms of the GNU General Public License as published by the Free * Software Foundation, either version 3 of the License, or (at your option) any later * version. * * OpenBLT is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR * PURPOSE. See the GNU General Public License for more details. * * You have received a copy of the GNU General Public License along with OpenBLT. It * should be located in ".\Doc\license.html". If not, contact Feaser to obtain a copy. * * \endinternal ****************************************************************************************/ /**************************************************************************************** * Include files ****************************************************************************************/ #include "boot.h" /* bootloader generic header */ #if (BOOT_NVM_HOOKS_ENABLE > 0) /**************************************************************************************** * Macro definitions ****************************************************************************************/ /** \brief Value for an invalid flash sector. */ #define FLASH_INVALID_SECTOR (0xff) /** \brief Value for an invalid flash address. */ #define FLASH_INVALID_ADDRESS (0xffffffff) /** \brief Standard size of a flash block for writing. */ #define FLASH_WRITE_BLOCK_SIZE (512) /** \brief Total numbers of sectors in array flashLayout[]. */ #define FLASH_TOTAL_SECTORS (sizeof(flashLayout)/sizeof(flashLayout[0])) /** \brief C3 Intel flash read array command. */ #define FLASH_CMD_READ_ARRAY_MODE (0xFF) /** \brief C3 Intel flash read id command. */ #define FLASH_CMD_READ_ID_MODE (0x90) /** \brief C3 Intel flash erase command. */ #define FLASH_CMD_ERASE_MODE (0x20) /** \brief C3 Intel flash read status command. */ #define FLASH_CMD_READ_STATUS_MODE (0x70) /** \brief C3 Intel flash change lock command. */ #define FLASH_CMD_CHANGE_LOCK_MODE (0x60) /** \brief C3 Intel flash unlock sector command. */ #define FLASH_CMD_UNLOCK_SECTOR (0xD0) /** \brief C3 Intel flash lock sector command. */ #define FLASH_CMD_LOCK_SECTOR (0x01) /** \brief C3 Intel flash program command. */ #define FLASH_CMD_PROGRAM_MODE (0x40) /** \brief C3 Intel flash erase confirm command. */ #define FLASH_CMD_ERASE_CONFIRM (0xD0) /** \brief C3 Intel flash clear status command. */ #define FLASH_CMD_CLEAR_STATUS (0x50) /** \brief C3 Intel flash lock bit. */ #define FLASH_LOCK_BIT (0x01) /** \brief C3 Intel flash status ready bit. */ #define FLASH_STATUS_READY_BIT (0x80) /** \brief C3 Intel flash locked error code. */ #define FLASH_ERR_LOCKED (0x02) /** \brief C3 Intel flash Vpp range error code. */ #define FLASH_ERR_VPP_RANGE (0x08) /** \brief C3 Intel flash program error code. */ #define FLASH_ERR_PROGRAM (0x10) /** \brief C3 Intel flash command sequence error code. */ #define FLASH_ERR_CMD_SEQ (0x10) /** \brief C3 Intel flash erase error code. */ #define FLASH_ERR_ERASE (0x20) /** \brief Flash erase timeout value. */ #define FLASH_ERASE_TIMEOUT ((blt_int32u)5000000) /** \brief Flash program timeout value. */ #define FLASH_PROGRAM_TIMEOUT ((blt_int32u)1000000) /** \brief Supported Intel C3 flash manufacturer ID. */ #define FLASH_DEV_MAN_ID ((blt_int16u)0x0089) /** \brief Supported Intel C3 flash device ID. */ #define FLASH_DEV_ID ((blt_int16u)0x88c3) /** \brief Offset for reading manufacturer ID. */ #define FLASH_DEVINFO_MAN_ID ((blt_int16u)0x0000) /** \brief Offset for reading device ID. */ #define FLASH_DEVINFO_DEV_ID ((blt_int16u)0x0001) /** \brief Offset for reading lock status. */ #define FLASH_DEVINFO_LOCK_STATUS ((blt_int16u)0x0002) /** \brief Runtime efficient macro for obtaining the manufacturer ID. */ #define ExtFlashGetManID() (ExtFlashGetDeviceInfo(flashLayout[0].sector_start, \ FLASH_DEVINFO_MAN_ID)) /** \brief Runtime efficient macro for obtaining the device ID. */ #define ExtFlashGetDevID() (ExtFlashGetDeviceInfo(flashLayout[0].sector_start, \ FLASH_DEVINFO_DEV_ID)) /** \brief Runtime efficient macro for obtaining the lock status. */ #define ExtFlashGetLockStatus(base) (ExtFlashGetDeviceInfo(base, \ FLASH_DEVINFO_LOCK_STATUS)) /**************************************************************************************** * Type definitions ****************************************************************************************/ /** \brief Flash sector descriptor type. */ typedef struct { blt_addr sector_start; /**< sector start address */ blt_int32u sector_size; /**< sector size in bytes */ blt_int8u sector_num; /**< sector number */ } tFlashSector; /** \brief Structure type for grouping flash block information. * \details Programming is done per block of max FLASH_WRITE_BLOCK_SIZE. for this a * flash block manager is implemented in this driver. this flash block manager * depends on this flash block info structure. It holds the base address of * the flash block and the data that should be programmed into the flash * block. */ typedef struct { blt_addr base_addr; /**< Base address for the flash operation.*/ blt_int8u data[FLASH_WRITE_BLOCK_SIZE]; /**< Data array. */ } tFlashBlockInfo; /**************************************************************************************** * Function prototypes ****************************************************************************************/ static blt_bool ExtFlashInitBlock(tFlashBlockInfo *block, blt_addr address); static tFlashBlockInfo *ExtFlashSwitchBlock(tFlashBlockInfo *block, blt_addr base_addr); static blt_bool ExtFlashAddToBlock(tFlashBlockInfo *block, blt_addr address, blt_int8u *data, blt_int32u len); static blt_bool ExtFlashWriteBlock(tFlashBlockInfo *block); static blt_bool ExtFlashEraseSector(blt_addr sector_base); static blt_int16u ExtFlashGetDeviceInfo(blt_addr block_base, blt_int16u info); static void ExtFlashLockSector(blt_addr sector_base); static void ExtFlashUnlockSector(blt_addr sector_base); static blt_int8u ExtFlashGetSector(blt_addr address); /**************************************************************************************** * Local constant declarations ****************************************************************************************/ /** \brief Array wit the layout of the flash memory. * \details The current layout supports the 2MB external C3 Intel flash: * - manufacturer id = 0x0089 * - device id = 0x88c3 (16 Mbit bottom boot device) * Note that what Intel calls a block in the user manual, is called a sector in this * driver. */ static const tFlashSector flashLayout[] = { { 0x80000000, 0x02000, 0}, /* flash sector 0 - 8 kbyte */ { 0x80002000, 0x02000, 1}, /* flash sector 1 - 8 kbyte */ { 0x80004000, 0x02000, 2}, /* flash sector 2 - 8 kbyte */ { 0x80006000, 0x02000, 3}, /* flash sector 3 - 8 kbyte */ { 0x80008000, 0x02000, 4}, /* flash sector 4 - 8 kbyte */ { 0x8000A000, 0x02000, 5}, /* flash sector 5 - 8 kbyte */ { 0x8000C000, 0x02000, 6}, /* flash sector 6 - 8 kbyte */ { 0x8000E000, 0x02000, 7}, /* flash sector 7 - 8 kbyte */ { 0x80010000, 0x10000, 8}, /* flash sector 8 - 64 kbyte */ { 0x80020000, 0x10000, 9}, /* flash sector 9 - 64 kbyte */ { 0x80030000, 0x10000, 10}, /* flash sector 10 - 64 kbyte */ { 0x80040000, 0x10000, 11}, /* flash sector 11 - 64 kbyte */ { 0x80050000, 0x10000, 12}, /* flash sector 12 - 64 kbyte */ { 0x80060000, 0x10000, 13}, /* flash sector 13 - 64 kbyte */ { 0x80070000, 0x10000, 14}, /* flash sector 14 - 64 kbyte */ { 0x80080000, 0x10000, 15}, /* flash sector 15 - 64 kbyte */ { 0x80090000, 0x10000, 16}, /* flash sector 16 - 64 kbyte */ { 0x800A0000, 0x10000, 17}, /* flash sector 17 - 64 kbyte */ { 0x800B0000, 0x10000, 18}, /* flash sector 18 - 64 kbyte */ { 0x800C0000, 0x10000, 19}, /* flash sector 19 - 64 kbyte */ { 0x800D0000, 0x10000, 20}, /* flash sector 20 - 64 kbyte */ { 0x800E0000, 0x10000, 21}, /* flash sector 21 - 64 kbyte */ { 0x800F0000, 0x10000, 22}, /* flash sector 22 - 64 kbyte */ { 0x80100000, 0x10000, 23}, /* flash sector 23 - 64 kbyte */ { 0x80110000, 0x10000, 24}, /* flash sector 24 - 64 kbyte */ { 0x80120000, 0x10000, 25}, /* flash sector 25 - 64 kbyte */ { 0x80130000, 0x10000, 26}, /* flash sector 26 - 64 kbyte */ { 0x80140000, 0x10000, 27}, /* flash sector 27 - 64 kbyte */ { 0x80150000, 0x10000, 28}, /* flash sector 28 - 64 kbyte */ { 0x80160000, 0x10000, 29}, /* flash sector 29 - 64 kbyte */ { 0x80170000, 0x10000, 30}, /* flash sector 30 - 64 kbyte */ { 0x80180000, 0x10000, 31}, /* flash sector 31 - 64 kbyte */ { 0x80190000, 0x10000, 32}, /* flash sector 32 - 64 kbyte */ { 0x801A0000, 0x10000, 33}, /* flash sector 33 - 64 kbyte */ { 0x801B0000, 0x10000, 34}, /* flash sector 34 - 64 kbyte */ { 0x801C0000, 0x10000, 35}, /* flash sector 35 - 64 kbyte */ { 0x801D0000, 0x10000, 36}, /* flash sector 36 - 64 kbyte */ { 0x801E0000, 0x10000, 37}, /* flash sector 37 - 64 kbyte */ { 0x801F0000, 0x10000, 38} /* flash sector 38 - 64 kbyte */ }; /**************************************************************************************** * Local data declarations ****************************************************************************************/ /** \brief Local variable with information about the flash block that is currently * being operated on. * \details The smallest amount of flash that can be programmed is * FLASH_WRITE_BLOCK_SIZE. A flash block manager is implemented in this driver * and stores info in this variable. Whenever new data should be flashed, it * is first added to a RAM buffer, which is part of this variable. Whenever * the RAM buffer, which has the size of a flash block, is full or data needs * to be written to a different block, the contents of the RAM buffer are * programmed to flash. The flash block manager requires some software * overhead, yet results is faster flash programming because data is first * harvested, ideally until there is enough to program an entire flash block, * before the flash device is actually operated on. */ static tFlashBlockInfo blockInfo; /************************************************************************************//** ** \brief Initializes the flash driver. ** \return none. ** ****************************************************************************************/ void ExtFlashInit(void) { /* init the flash block info struct by setting the address to an invalid address */ blockInfo.base_addr = FLASH_INVALID_ADDRESS; /* check the flash device identification */ if ((ExtFlashGetManID() != FLASH_DEV_MAN_ID) || (ExtFlashGetDevID() != FLASH_DEV_ID)) { ASSERT_RT(BLT_FALSE); } } /*** end of ExtFlashInit ***/ /************************************************************************************//** ** \brief Writes the data to flash. ** \param addr Start address. ** \param len Length in bytes. ** \param data Pointer to the data buffer. ** \return BLT_NVM_OKAY if successful, BLT_NVM_NOT_IN_RANGE if the address is ** not within the supported memory range, or BLT_NVM_ERROR is the write ** operation failed. ** ****************************************************************************************/ blt_int8u ExtFlashWrite(blt_addr addr, blt_int32u len, blt_int8u *data) { /* make sure the addresses are within the flash device */ if ( (ExtFlashGetSector(addr) == FLASH_INVALID_SECTOR) || \ (ExtFlashGetSector(addr+len-1) == FLASH_INVALID_SECTOR) ) { return BLT_NVM_NOT_IN_RANGE; } /* let the block manager handle it */ if (ExtFlashAddToBlock(&blockInfo, addr, data, len) == BLT_FALSE) { return BLT_NVM_ERROR; } return BLT_NVM_OKAY; } /*** end of FlashWrite ***/ /************************************************************************************//** ** \brief Erases the flash memory. Note that this function also checks that no ** data is erased outside the flash memory region. ** \param addr Start address. ** \param len Length in bytes. ** \return BLT_NVM_OKAY if successful, BLT_NVM_NOT_IN_RANGE if the address is ** not within the supported memory range, or BLT_NVM_ERROR is the erase ** operation failed. ** ****************************************************************************************/ blt_int8u ExtFlashErase(blt_addr addr, blt_int32u len) { blt_int8u first_sector; blt_int8u last_sector; blt_int8u sectorIdx; /* obtain the first and last sector number */ first_sector = ExtFlashGetSector(addr); last_sector = ExtFlashGetSector(addr+len-1); /* check them */ if ( (first_sector == FLASH_INVALID_SECTOR) || (last_sector == FLASH_INVALID_SECTOR) ) { return BLT_NVM_NOT_IN_RANGE; } /* erase the sectors one-by-one */ for (sectorIdx = first_sector; sectorIdx <= last_sector; sectorIdx++) { /* keep the watchdog happy */ CopService(); /* erase the sector */ if (ExtFlashEraseSector(flashLayout[sectorIdx].sector_start) == BLT_FALSE) { return BLT_NVM_ERROR; } } /* done so return the result of the operation */ return BLT_NVM_OKAY; } /*** end of ExtFlashErase ***/ /************************************************************************************//** ** \brief Finalizes the flash driver operations. ** \return BLT_TRUE is succesful, BLT_FALSE otherwise. ** ****************************************************************************************/ blt_bool ExtFlashDone(void) { /* check if there is still data waiting to be programmed */ if (blockInfo.base_addr != FLASH_INVALID_ADDRESS) { if (ExtFlashWriteBlock(&blockInfo) == BLT_FALSE) { return BLT_FALSE; } } /* still here so all is okay */ return BLT_TRUE; } /*** end of ExtFlashDone ***/ /************************************************************************************//** ** \brief Copies data currently in flash to the block->data and sets the ** base address. ** \param block Pointer to flash block info structure to operate on. ** \param address Base address of the block data. ** \return BLT_TRUE is succesful, BLT_FALSE otherwise. ** ****************************************************************************************/ static blt_bool ExtFlashInitBlock(tFlashBlockInfo *block, blt_addr address) { /* check address alignment */ if ((address % FLASH_WRITE_BLOCK_SIZE) != 0) { return BLT_FALSE; } /* make sure that we are initializing a new block and not the same one */ if (block->base_addr == address) { /* block already initialized, so nothing to do */ return BLT_TRUE; } /* set the base address and copies the current data from flash */ block->base_addr = address; CpuMemCopy((blt_addr)block->data, address, FLASH_WRITE_BLOCK_SIZE); return BLT_TRUE; } /*** end of ExtFlashInitBlock ***/ /************************************************************************************//** ** \brief Switches blocks by programming the current one and initializing the next. ** \param block Pointer to flash block info structure to operate on. ** \param base_addr Base address for the next block. ** \return The pointer of the block info struct that is no being used, or a NULL ** pointer in case of error. ** ****************************************************************************************/ static tFlashBlockInfo *ExtFlashSwitchBlock(tFlashBlockInfo *block, blt_addr base_addr) { /* need to switch to a new block, so program the current one and init the next */ if (ExtFlashWriteBlock(block) == BLT_FALSE) { return BLT_NULL; } /* initialize the new block when necessary */ if (ExtFlashInitBlock(block, base_addr) == BLT_FALSE) { return BLT_NULL; } /* still here to all is okay */ return block; } /*** end of ExtFlashSwitchBlock ***/ /************************************************************************************//** ** \brief Programming is done per block. This function adds data to the block ** that is currently collecting data to be written to flash. If the ** address is outside of the current block, the current block is written ** to flash an a new block is initialized. ** \param block Pointer to flash block info structure to operate on. ** \param address Flash destination address. ** \param data Pointer to the byte array with data. ** \param len Number of bytes to add to the block. ** \return BLT_TRUE if successful, BLT_FALSE otherwise. ** ****************************************************************************************/ static blt_bool ExtFlashAddToBlock(tFlashBlockInfo *block, blt_addr address, blt_int8u *data, blt_int32u len) { blt_addr current_base_addr; blt_int8u *dst; blt_int8u *src; /* determine the current base address */ current_base_addr = (address/FLASH_WRITE_BLOCK_SIZE)*FLASH_WRITE_BLOCK_SIZE; /* make sure the blockInfo is not uninitialized */ if (block->base_addr == FLASH_INVALID_ADDRESS) { /* initialize the blockInfo struct for the current block */ if (ExtFlashInitBlock(block, current_base_addr) == BLT_FALSE) { return BLT_FALSE; } } /* check if the new data fits in the current block */ if (block->base_addr != current_base_addr) { /* need to switch to a new block, so program the current one and init the next */ block = ExtFlashSwitchBlock(block, current_base_addr); if (block == BLT_NULL) { return BLT_FALSE; } } /* add the data to the current block, but check for block overflow */ dst = &(block->data[address - block->base_addr]); src = data; do { /* keep the watchdog happy */ CopService(); /* buffer overflow? */ if ((blt_addr)(dst-&(block->data[0])) >= FLASH_WRITE_BLOCK_SIZE) { /* need to switch to a new block, so program the current one and init the next */ block = ExtFlashSwitchBlock(block, current_base_addr+FLASH_WRITE_BLOCK_SIZE); if (block == BLT_NULL) { return BLT_FALSE; } /* reset destination pointer */ dst = &(block->data[0]); } /* write the data to the buffer */ *dst = *src; /* update pointers */ dst++; src++; /* decrement byte counter */ len--; } while (len > 0); /* still here so all is good */ return BLT_TRUE; } /*** end of ExtFlashAddToBlock ***/ /************************************************************************************//** ** \brief Programs FLASH_WRITE_BLOCK_SIZE bytes to flash from the block->data array. ** \param block Pointer to flash block info structure to operate on. ** \return BLT_TRUE if successful, BLT_FALSE otherwise. ** ****************************************************************************************/ static blt_bool ExtFlashWriteBlock(tFlashBlockInfo *block) { volatile blt_int16u *pAddr; volatile blt_int16u *pData; blt_bool result = BLT_TRUE; volatile blt_int32u timeout = 0; /* unlock the sector */ ExtFlashUnlockSector(block->base_addr); /* init pointer to valid address in the flash block */ pAddr = (blt_int16u *)block->base_addr; /* init pointer to start of block data */ pData = (blt_int16u *)block->data; /* program all block data 16-bits at a time */ while ((blt_addr)pAddr < (block->base_addr+FLASH_WRITE_BLOCK_SIZE)) { /* keep the watchdog happy */ CopService(); /* issue program setup command */ *pAddr = FLASH_CMD_PROGRAM_MODE; /* write 16-bit data that is to be programmed to start programming operation */ *pAddr = *pData; /* check status register for completion */ *pAddr = FLASH_CMD_READ_STATUS_MODE; /* wait for completion or timeout */ while( ((*pAddr & FLASH_STATUS_READY_BIT) == 0) && (timeout < FLASH_PROGRAM_TIMEOUT) ) { timeout++; } /* check for possible errors */ if ( (timeout >= FLASH_ERASE_TIMEOUT) || \ ((*pAddr & (FLASH_ERR_LOCKED | FLASH_ERR_VPP_RANGE | FLASH_ERR_PROGRAM))!= 0) ) { result = BLT_FALSE; } /* clear the status register */ *pAddr = FLASH_CMD_CLEAR_STATUS; /* increment address and data pointers */ pAddr++; pData++; } /* lock the sector. this also switches back to read array mode */ ExtFlashLockSector(block->base_addr); /* inform the caller about the result */ return result; } /*** end of ExtFlashWriteBlock ***/ /************************************************************************************//** ** \brief Erases the flash sector. ** \param sector_base Base address of the sector to erase. ** \return BLT_TRUE if successful, BLT_FALSE otherwise. ** ****************************************************************************************/ static blt_bool ExtFlashEraseSector(blt_addr sector_base) { volatile blt_int16u *pAddr; blt_bool result = BLT_TRUE; volatile blt_int32u timeout = 0; /* unlock the sector */ ExtFlashUnlockSector(sector_base); /* init pointer to valid address in the flash sector */ pAddr = (blt_int16u *)sector_base; /* issue erase setup command */ *pAddr = FLASH_CMD_ERASE_MODE; /* issue erase confirm command */ *pAddr = FLASH_CMD_ERASE_CONFIRM; /* check status register for completion */ *pAddr = FLASH_CMD_READ_STATUS_MODE; /* wait for completion or timeout */ while( ((*pAddr & FLASH_STATUS_READY_BIT) == 0) && (timeout < FLASH_ERASE_TIMEOUT) ) { timeout++; } /* check for possible errors */ if ( (timeout >= FLASH_ERASE_TIMEOUT) || \ ((*pAddr & (FLASH_ERR_LOCKED | FLASH_ERR_VPP_RANGE | FLASH_ERR_ERASE))!= 0) ) { result = BLT_FALSE; } /* clear the status register */ *pAddr = FLASH_CMD_CLEAR_STATUS; /* lock the sector. this also switches back to read array mode */ ExtFlashLockSector(sector_base); /* inform the caller about the result */ return result; } /*** end of ExtFlashEraseSector ***/ /************************************************************************************//** ** \brief Locks the flash sector. ** \param sector_base Base address of the sector to lock. ** \return none. ** ****************************************************************************************/ static void ExtFlashLockSector(blt_addr sector_base) { volatile blt_int16u *pAddr; /* no need to lock a sector that is already locked */ if ((ExtFlashGetLockStatus(sector_base) & FLASH_LOCK_BIT) != 0) { return; } /* init pointer to valid address in the flash sector */ pAddr = (blt_int16u *)sector_base; /* switch to change lock mode */ *pAddr = FLASH_CMD_CHANGE_LOCK_MODE; /* unlock the sector */ *pAddr = FLASH_CMD_LOCK_SECTOR; /* check that the sector is now actually locked */ ASSERT_RT((ExtFlashGetLockStatus(sector_base) & FLASH_LOCK_BIT) != 0); } /*** end of ExtFlashLockSector ***/ /************************************************************************************//** ** \brief Unlocks the flash sector. ** \param sector_base Base address of the sector to unlock. ** \return none. ** ****************************************************************************************/ static void ExtFlashUnlockSector(blt_addr sector_base) { volatile blt_int16u *pAddr; /* no need to unlock a sector that is already unlocked */ if ((ExtFlashGetLockStatus(sector_base) & FLASH_LOCK_BIT) == 0) { return; } /* init pointer to valid address in the flash sector */ pAddr = (blt_int16u *)sector_base; /* switch to change lock mode */ *pAddr = FLASH_CMD_CHANGE_LOCK_MODE; /* unlock the sector */ *pAddr = FLASH_CMD_UNLOCK_SECTOR; /* check that the sector is now actually unlocked */ ASSERT_RT((ExtFlashGetLockStatus(sector_base) & FLASH_LOCK_BIT) == 0); } /*** end of ExtFlashUnlockSector ***/ /************************************************************************************//** ** \brief Obtains device information from the flash device. ** \param sector_base Base address of the sector to get the info from. ** \param info Identifier to the type of info to obtain. ** \return Device info. ** ****************************************************************************************/ static blt_int16u ExtFlashGetDeviceInfo(blt_addr sector_base, blt_int16u info) { volatile blt_int16u *pAddr; blt_int16u readData; /* init pointer to any valid address in the flash device */ pAddr = (blt_int16u *)sector_base + info; /* switch to read identifier mode */ *pAddr = FLASH_CMD_READ_ID_MODE; /* read the info */ readData = *pAddr; /* switch back to reading mode */ *pAddr = FLASH_CMD_READ_ARRAY_MODE; /* return the result */ return readData; } /*** end of ExtFlashGetDeviceInfo ***/ /************************************************************************************//** ** \brief Determines the flash sector the address is in. ** \param address Address in the flash sector. ** \return Flash sector number or FLASH_INVALID_SECTOR ** ****************************************************************************************/ static blt_int8u ExtFlashGetSector(blt_addr address) { blt_int8u sectorIdx; /* search through the sectors to find the right one */ for (sectorIdx = 0; sectorIdx < FLASH_TOTAL_SECTORS; sectorIdx++) { /* keep the watchdog happy */ CopService(); /* is the address in this sector? */ if ( (address >= flashLayout[sectorIdx].sector_start) && \ (address < (flashLayout[sectorIdx].sector_start + \ flashLayout[sectorIdx].sector_size)) ) { /* return the sector number */ return flashLayout[sectorIdx].sector_num; } } /* still here so no valid sector found */ return FLASH_INVALID_SECTOR; } /*** end of ExtFlashGetSector ***/ #endif /*********************************** end of extflash.c *********************************/