Home
last modified time | relevance | path

Searched refs:rom_table_end (Results 1 – 2 of 2) sorted by relevance

/external/coreboot/src/arch/x86/
Dtables.c15 static unsigned long write_pirq_table(unsigned long rom_table_end) in write_pirq_table() argument
23 rom_table_end = write_pirq_routing_table(rom_table_end); in write_pirq_table()
24 rom_table_end = ALIGN_UP(rom_table_end, 1024); in write_pirq_table()
44 return rom_table_end; in write_pirq_table()
47 static unsigned long write_mptable(unsigned long rom_table_end) in write_mptable() argument
55 rom_table_end = write_smp_table(rom_table_end); in write_mptable()
56 rom_table_end = ALIGN_UP(rom_table_end, 1024); in write_mptable()
73 return rom_table_end; in write_mptable()
76 static unsigned long write_acpi_table(unsigned long rom_table_end) in write_acpi_table() argument
101 rom_table_end = ALIGN_UP(rom_table_end, 16); in write_acpi_table()
[all …]
/external/coreboot/src/lib/
Dcoreboot_table.c466 static uintptr_t write_coreboot_table(uintptr_t rom_table_end) in write_coreboot_table() argument
471 (long)rom_table_end); in write_coreboot_table()
473 head = lb_table_init(rom_table_end); in write_coreboot_table()