• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/acpi/acpica/

Lines Matching defs:address

65  * PARAMETERS:  address                    - Pointer to the XSDT
77 acpi_tb_check_xsdt(acpi_physical_address address)
86 table = acpi_os_map_memory(address, sizeof(struct acpi_table_header));
95 table = acpi_os_map_memory(address, length);
225 * PARAMETERS: Address - Table physical address
235 acpi_tb_print_table_header(acpi_physical_address address,
249 header->signature, ACPI_CAST_PTR(void, address),
261 ACPI_CAST_PTR (void, address),
276 local_header.signature, ACPI_CAST_PTR(void, address),
432 * PARAMETERS: Address - Physical address of DSDT or FACS
447 acpi_tb_install_table(acpi_physical_address address,
456 if (!address) {
458 "Null physical address for ACPI table [%s]",
466 acpi_os_map_memory(address, sizeof(struct acpi_table_header));
493 address)));
497 address = ACPI_PTR_TO_PHYSADDR(override_table);
508 acpi_gbl_root_table_list.tables[table_index].address = address;
517 acpi_tb_print_table_header(address, table_to_install);
537 * RETURN: Physical address extracted from the root table
553 * Get the table physical address (32-bit for RSDT, 64-bit for XSDT):
574 /* Will truncate 64-bit address to 32 bits, issue warning */
611 acpi_physical_address address;
620 * Map the entire RSDP and extract the address of the RSDT or XSDT
640 address = (acpi_physical_address) rsdp->xsdt_physical_address;
647 address = (acpi_physical_address) rsdp->rsdt_physical_address;
658 if (acpi_tb_check_xsdt(address) == AE_NULL_ENTRY) {
660 address = rsdt_address;
668 table = acpi_os_map_memory(address, sizeof(struct acpi_table_header));
673 acpi_tb_print_table_header(address, table);
686 table = acpi_os_map_memory(address, length);
733 /* Get the table physical address (32-bit for RSDT, 64-bit for XSDT) */
736 current_table_count].address =
755 address, NULL, i);