Searched refs:flash_address (Results 1 – 5 of 5) sorted by relevance
| /LevelX-v6.2.1/common/src/ |
| D | lx_nor_flash_driver_write.c | 84 UINT _lx_nor_flash_driver_write(LX_NOR_FLASH *nor_flash, ULONG *flash_address, ULONG *source, ULON… in _lx_nor_flash_driver_write() argument 113 …if ((cache_entry_start) && (flash_address >= cache_entry_start) && (flash_address < cache_entry_en… in _lx_nor_flash_driver_write() 119 cache_offset = (ULONG)(flash_address - cache_entry_start); in _lx_nor_flash_driver_write() 132 status = (nor_flash -> lx_nor_flash_driver_write)(nor_flash, flash_address, source, words); in _lx_nor_flash_driver_write() 134 status = (nor_flash -> lx_nor_flash_driver_write)(flash_address, source, words); in _lx_nor_flash_driver_write() 146 status = (nor_flash -> lx_nor_flash_driver_write)(nor_flash, flash_address, source, words); in _lx_nor_flash_driver_write() 148 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 | 84 UINT _lx_nor_flash_driver_read(LX_NOR_FLASH *nor_flash, ULONG *flash_address, ULONG *destination, … in _lx_nor_flash_driver_read() argument 120 …if ((cache_entry_start) && (flash_address >= cache_entry_start) && (flash_address < cache_entry_en… in _lx_nor_flash_driver_read() 129 cache_offset = (ULONG)(flash_address - cache_entry_start); in _lx_nor_flash_driver_read() 160 cache_offset = (ULONG)(flash_address - nor_flash -> lx_nor_flash_base_address); in _lx_nor_flash_driver_read() 203 … status = (nor_flash -> lx_nor_flash_driver_read)(nor_flash, flash_address, destination, words); in _lx_nor_flash_driver_read() 205 status = (nor_flash -> lx_nor_flash_driver_read)(flash_address, destination, words); in _lx_nor_flash_driver_read() 217 status = (nor_flash -> lx_nor_flash_driver_read)(nor_flash, flash_address, destination, words); in _lx_nor_flash_driver_read() 219 status = (nor_flash -> lx_nor_flash_driver_read)(flash_address, destination, words); in _lx_nor_flash_driver_read()
|
| D | lx_nor_flash_simulator.c | 64 UINT _lx_nor_flash_simulator_read(LX_NOR_FLASH *nor_flash, ULONG *flash_address, ULONG *destinatio… 65 UINT _lx_nor_flash_simulator_write(LX_NOR_FLASH *nor_flash, ULONG *flash_address, ULONG *source, U… 70 UINT _lx_nor_flash_simulator_read(ULONG *flash_address, ULONG *destination, ULONG words); 71 UINT _lx_nor_flash_simulator_write(ULONG *flash_address, ULONG *source, ULONG words); 102 UINT _lx_nor_flash_simulator_read(LX_NOR_FLASH *nor_flash, ULONG *flash_address, ULONG *destinatio… in _lx_nor_flash_simulator_read() argument 104 UINT _lx_nor_flash_simulator_read(ULONG *flash_address, ULONG *destination, ULONG words) in _lx_nor_flash_simulator_read() 116 *destination++ = *flash_address++; in _lx_nor_flash_simulator_read() 124 UINT _lx_nor_flash_simulator_write(LX_NOR_FLASH *nor_flash, ULONG *flash_address, ULONG *source, U… in _lx_nor_flash_simulator_write() argument 126 UINT _lx_nor_flash_simulator_write(ULONG *flash_address, ULONG *source, ULONG words) in _lx_nor_flash_simulator_write() 139 *flash_address++ = *source++; in _lx_nor_flash_simulator_write()
|
| D | lx_nand_flash_simulator.c | 227 ULONG *flash_address; in _lx_nand_flash_simulator_read() local 237 flash_address = &(nand_memory_area[block].physical_pages[page].memory[0]); in _lx_nand_flash_simulator_read() 243 *destination++ = *flash_address++; in _lx_nand_flash_simulator_read() 297 ULONG *flash_address; in _lx_nand_flash_simulator_write() local 316 flash_address = &(nand_memory_area[block].physical_pages[page].memory[0]); in _lx_nand_flash_simulator_write() 324 if ((*source & *flash_address) != *source) in _lx_nand_flash_simulator_write() 328 *flash_address++ = *source++; in _lx_nand_flash_simulator_write()
|
| /LevelX-v6.2.1/common/inc/ |
| D | lx_api.h | 626 …_nor_flash_driver_read)(struct LX_NOR_FLASH_STRUCT *nor_flash, ULONG *flash_address, ULONG *destin… 627 …nor_flash_driver_write)(struct LX_NOR_FLASH_STRUCT *nor_flash, ULONG *flash_address, ULONG *source… 632 …UINT (*lx_nor_flash_driver_read)(ULONG *flash_address, ULONG *destinati… 633 …UINT (*lx_nor_flash_driver_write)(ULONG *flash_address, ULONG *source, … 815 UINT _lx_nor_flash_driver_read(LX_NOR_FLASH *nor_flash, ULONG *flash_address, ULONG *destination… 816 UINT _lx_nor_flash_driver_write(LX_NOR_FLASH *nor_flash, ULONG *flash_address, ULONG *source, UL…
|