Searched refs:flash_address (Results 1 – 5 of 5) sorted by relevance
/LevelX-v6.3.0/common/src/ |
D | lx_nor_flash_driver_write.c | 85 UINT _lx_nor_flash_driver_write(LX_NOR_FLASH *nor_flash, ULONG *flash_address, ULONG *source, ULON… in _lx_nor_flash_driver_write() argument 114 …if ((cache_entry_start) && (flash_address >= cache_entry_start) && (flash_address < cache_entry_en… in _lx_nor_flash_driver_write() 120 cache_offset = (ULONG)(flash_address - cache_entry_start); in _lx_nor_flash_driver_write() 133 status = (nor_flash -> lx_nor_flash_driver_write)(nor_flash, flash_address, source, words); in _lx_nor_flash_driver_write() 135 status = (nor_flash -> lx_nor_flash_driver_write)(flash_address, source, words); in _lx_nor_flash_driver_write() 147 status = (nor_flash -> lx_nor_flash_driver_write)(nor_flash, flash_address, source, words); in _lx_nor_flash_driver_write() 149 status = (nor_flash -> lx_nor_flash_driver_write)(flash_address, source, words); in _lx_nor_flash_driver_write()
|
D | lx_nor_flash_driver_read.c | 85 UINT _lx_nor_flash_driver_read(LX_NOR_FLASH *nor_flash, ULONG *flash_address, ULONG *destination, … in _lx_nor_flash_driver_read() argument 121 …if ((cache_entry_start) && (flash_address >= cache_entry_start) && (flash_address < cache_entry_en… in _lx_nor_flash_driver_read() 130 cache_offset = (ULONG)(flash_address - cache_entry_start); in _lx_nor_flash_driver_read() 161 cache_offset = (ULONG)(flash_address - nor_flash -> lx_nor_flash_base_address); in _lx_nor_flash_driver_read() 204 … status = (nor_flash -> lx_nor_flash_driver_read)(nor_flash, flash_address, destination, words); in _lx_nor_flash_driver_read() 206 status = (nor_flash -> lx_nor_flash_driver_read)(flash_address, destination, words); in _lx_nor_flash_driver_read() 218 status = (nor_flash -> lx_nor_flash_driver_read)(nor_flash, flash_address, destination, words); in _lx_nor_flash_driver_read() 220 status = (nor_flash -> lx_nor_flash_driver_read)(flash_address, destination, words); in _lx_nor_flash_driver_read()
|
D | lx_nor_flash_simulator.c | 65 UINT _lx_nor_flash_simulator_read(LX_NOR_FLASH *nor_flash, ULONG *flash_address, ULONG *destinatio… 66 UINT _lx_nor_flash_simulator_write(LX_NOR_FLASH *nor_flash, ULONG *flash_address, ULONG *source, U… 71 UINT _lx_nor_flash_simulator_read(ULONG *flash_address, ULONG *destination, ULONG words); 72 UINT _lx_nor_flash_simulator_write(ULONG *flash_address, ULONG *source, ULONG words); 103 UINT _lx_nor_flash_simulator_read(LX_NOR_FLASH *nor_flash, ULONG *flash_address, ULONG *destinatio… in _lx_nor_flash_simulator_read() argument 105 UINT _lx_nor_flash_simulator_read(ULONG *flash_address, ULONG *destination, ULONG words) in _lx_nor_flash_simulator_read() 117 *destination++ = *flash_address++; in _lx_nor_flash_simulator_read() 125 UINT _lx_nor_flash_simulator_write(LX_NOR_FLASH *nor_flash, ULONG *flash_address, ULONG *source, U… in _lx_nor_flash_simulator_write() argument 127 UINT _lx_nor_flash_simulator_write(ULONG *flash_address, ULONG *source, ULONG words) in _lx_nor_flash_simulator_write() 140 *flash_address++ = *source++; in _lx_nor_flash_simulator_write()
|
D | lx_nand_flash_simulator.c | 228 ULONG *flash_address; in _lx_nand_flash_simulator_read() local 238 flash_address = &(nand_memory_area[block].physical_pages[page].memory[0]); in _lx_nand_flash_simulator_read() 244 *destination++ = *flash_address++; in _lx_nand_flash_simulator_read() 298 ULONG *flash_address; in _lx_nand_flash_simulator_write() local 317 flash_address = &(nand_memory_area[block].physical_pages[page].memory[0]); in _lx_nand_flash_simulator_write() 325 if ((*source & *flash_address) != *source) in _lx_nand_flash_simulator_write() 329 *flash_address++ = *source++; in _lx_nand_flash_simulator_write()
|
/LevelX-v6.3.0/common/inc/ |
D | lx_api.h | 608 …_nor_flash_driver_read)(struct LX_NOR_FLASH_STRUCT *nor_flash, ULONG *flash_address, ULONG *destin… 609 …nor_flash_driver_write)(struct LX_NOR_FLASH_STRUCT *nor_flash, ULONG *flash_address, ULONG *source… 614 …UINT (*lx_nor_flash_driver_read)(ULONG *flash_address, ULONG *destinati… 615 …UINT (*lx_nor_flash_driver_write)(ULONG *flash_address, ULONG *source, … 797 UINT _lx_nor_flash_driver_read(LX_NOR_FLASH *nor_flash, ULONG *flash_address, ULONG *destination… 798 UINT _lx_nor_flash_driver_write(LX_NOR_FLASH *nor_flash, ULONG *flash_address, ULONG *source, UL…
|