Home
last modified time | relevance | path

Searched refs:LogicalAddress (Results 1 – 6 of 6) sorted by relevance

/freebsd/sys/dev/acpica/Osd/
H A DOsdMemory.c62 AcpiOsUnmapMemory(void *LogicalAddress, ACPI_SIZE Length) in AcpiOsUnmapMemory() argument
64 pmap_unmapbios(LogicalAddress, Length); in AcpiOsUnmapMemory()
68 AcpiOsGetPhysicalAddress(void *LogicalAddress, in AcpiOsGetPhysicalAddress() argument
90 void *LogicalAddress; in AcpiOsReadMemory() local
92 LogicalAddress = pmap_mapdev(Address, Width / 8); in AcpiOsReadMemory()
93 if (LogicalAddress == NULL) in AcpiOsReadMemory()
98 *Value = *(volatile uint8_t *)LogicalAddress; in AcpiOsReadMemory()
101 *Value = *(volatile uint16_t *)LogicalAddress; in AcpiOsReadMemory()
104 *Value = *(volatile uint32_t *)LogicalAddress; in AcpiOsReadMemory()
107 *Value = *(volatile uint64_t *)LogicalAddress; in AcpiOsReadMemory()
[all …]
/freebsd/sys/contrib/dev/acpica/components/executer/
H A Dexregion.c319 Mm->LogicalAddress = LogicalAddrPtr; in AcpiExSystemMemorySpaceHandler()
337 LogicalAddrPtr = Mm->LogicalAddress + in AcpiExSystemMemorySpaceHandler()
/freebsd/sys/contrib/dev/acpica/include/
H A Dacpiosxf.h368 void *LogicalAddress,
375 void *LogicalAddress,
H A Dactypes.h1468 UINT8 *LogicalAddress; member
H A Dactbl2.h3366 UINT64 LogicalAddress; member
/freebsd/sys/contrib/dev/acpica/components/events/
H A Devrgnini.c204 AcpiOsUnmapMemory(Mm->LogicalAddress, Mm->Length); in AcpiEvSystemMemoryRegionSetup()