Lines Matching refs:addr
261 IOMapperIOVMFree(ppnum_t addr, unsigned pages) in IOMapperIOVMFree() argument
264 IOMapper::gSystem->iovmUnmapMemory(NULL, NULL, ptoa_64(addr), ptoa_64(pages)); in IOMapperIOVMFree()
269 IOMapperInsertPage(ppnum_t addr, unsigned offset, ppnum_t page) in IOMapperInsertPage() argument
274 if (!addr) { in IOMapperInsertPage()
278 ptoa_64(addr), ptoa_64(offset), ptoa_64(page), ptoa_64(1)); in IOMapperInsertPage()
279 return addr + offset; in IOMapperInsertPage()
298 addr64_t addr = IOMapper::gSystem->mapToPhysicalAddress(address); in IOMappedRead8() local
299 return (UInt8) ml_phys_read_byte_64(addr); in IOMappedRead8()
311 addr64_t addr = IOMapper::gSystem->mapToPhysicalAddress(address); in IOMappedRead16() local
312 return (UInt16) ml_phys_read_half_64(addr); in IOMappedRead16()
324 addr64_t addr = IOMapper::gSystem->mapToPhysicalAddress(address); in IOMappedRead32() local
325 return (UInt32) ml_phys_read_word_64(addr); in IOMappedRead32()
337 addr64_t addr = IOMapper::gSystem->mapToPhysicalAddress(address); in IOMappedRead64() local
338 return (UInt64) ml_phys_read_double_64(addr); in IOMappedRead64()
350 addr64_t addr = IOMapper::gSystem->mapToPhysicalAddress(address); in IOMappedWrite8() local
351 ml_phys_write_byte_64(addr, value); in IOMappedWrite8()
363 addr64_t addr = IOMapper::gSystem->mapToPhysicalAddress(address); in IOMappedWrite16() local
364 ml_phys_write_half_64(addr, value); in IOMappedWrite16()
376 addr64_t addr = IOMapper::gSystem->mapToPhysicalAddress(address); in IOMappedWrite32() local
377 ml_phys_write_word_64(addr, value); in IOMappedWrite32()
389 addr64_t addr = IOMapper::gSystem->mapToPhysicalAddress(address); in IOMappedWrite64() local
390 ml_phys_write_double_64(addr, value); in IOMappedWrite64()