Lines Matching defs:Address
51 //Actual page address = Column address + Page address + Block address.
58 //BlockAddressStart = Start of the Block address in actual NAND
59 //PageAddressStart = Start of the Page address in actual NAND
73 UINT8 Address
76 MmioWrite16(GPMC_NAND_ADDRESS_0, Address);
93 UINTN Address
96 //Column address
97 NandSendAddress(Address & 0xff);
98 Address >>= 8;
100 //Column address
101 NandSendAddress(Address & 0x07);
102 Address >>= 3;
104 //Page and Block address
105 NandSendAddress(Address & 0xff);
106 Address >>= 8;
108 //Block address
109 NandSendAddress(Address & 0xff);
110 Address >>= 8;
112 //Block address
113 NandSendAddress(Address & 0x01);
157 //Send one address cycle.
290 UINTN Address;
298 //Generate device address in bytes to access specific block and page index
299 Address = GetActualPageAddressInBytes(BlockIndex, PageIndex);
304 //Send 5 Address cycles to access specific device address
305 NandSendAddressCycles(Address);
359 UINTN Address;
366 //Generate device address in bytes to access specific block and page index
367 Address = GetActualPageAddressInBytes(BlockIndex, PageIndex);
372 //Send 5 Address cycles to access specific device address
373 NandSendAddressCycles(Address);
435 UINTN Address;
439 //Generate device address in bytes to access specific block and page index
440 Address = GetActualPageAddressInBytes(BlockIndex, 0);
445 //Send 3 address cycles to device to access Page address and Block address
446 Address >>= 11; //Ignore column addresses
448 NandSendAddress(Address & 0xff);
449 Address >>= 8;
451 NandSendAddress(Address & 0xff);
452 Address >>= 8;
454 NandSendAddress(Address & 0xff);