Lines Matching defs:address
4 * Module Name: exregion - ACPI default op_region (address space) handlers
22 * address - Where in the space to read or write
31 * DESCRIPTION: Handler for the System Memory address space (Op Region)
36 acpi_physical_address address,
89 (void)acpi_ut_short_divide((u64) address, length, NULL, &remainder);
100 if (!mm || (address < mm->physical_address) ||
101 ((u64) address + length > (u64) mm->physical_address + mm->length)) {
105 * Look for an existing saved mapping covering the address range
113 if (address < mm->physical_address)
116 if ((u64) address + length >
129 ACPI_FORMAT_UINT64(address), length));
134 * October 2009: Attempt to map from the requested address to the
139 ((mem_info->address + mem_info->length) - address);
153 (ACPI_ROUND_UP(address, ACPI_DEFAULT_PAGE_SIZE) - address);
162 /* Create a new mapping starting at the address given */
164 logical_addr_ptr = acpi_os_map_memory(address, map_length);
168 ACPI_FORMAT_UINT64(address),
174 /* Save the physical address and mapping size */
177 mm->physical_address = address;
192 * Generate a logical pointer corresponding to the address we want to
196 ((u64) address - (u64) mm->physical_address);
200 bit_width, function, ACPI_FORMAT_UINT64(address)));
206 * address was checked for alignment above. We do not attempt to break the
288 * address - Where in the space to read or write
297 * DESCRIPTION: Handler for the System IO address space (Op Region)
303 acpi_physical_address address,
315 bit_width, function, ACPI_FORMAT_UINT64(address)));
322 status = acpi_hw_read_port((acpi_io_address)address,
329 status = acpi_hw_write_port((acpi_io_address)address,
348 * address - Where in the space to read or write
357 * DESCRIPTION: Handler for the PCI Config address space (Op Region)
363 acpi_physical_address address,
383 * value - input value for write, output address for read
387 pci_register = (u16) (u32) address;
426 * address - Where in the space to read or write
435 * DESCRIPTION: Handler for the CMOS address space (Op Region)
441 acpi_physical_address address,
459 * address - Where in the space to read or write
468 * DESCRIPTION: Handler for the PCI bar_target address space (Op Region)
474 acpi_physical_address address,
492 * address - Where in the space to read or write
501 * DESCRIPTION: Handler for the Data Table address space (Op Region)
507 acpi_physical_address address,
519 (address - ACPI_PTR_TO_PHYSADDR(mapping->pointer));