Searched refs:cfg_tables (Results 1 – 3 of 3) sorted by relevance
99 void write_coreboot_table(u32 addr, struct memory_area *cfg_tables) in write_coreboot_table() argument135 while (cfg_tables->size) { in write_coreboot_table()136 map->start.lo = cfg_tables->start & 0xffffffff; in write_coreboot_table()137 map->start.hi = cfg_tables->start >> 32; in write_coreboot_table()138 map->size.lo = cfg_tables->size & 0xffffffff; in write_coreboot_table()139 map->size.hi = cfg_tables->size >> 32; in write_coreboot_table()143 cfg_tables++; in write_coreboot_table()
82 struct memory_area cfg_tables[ARRAY_SIZE(table_list) + 1]; in write_tables() local107 cfg_tables[i].start = high_table; in write_tables()108 cfg_tables[i].size = table_size; in write_tables()128 cfg_tables[i].size = 0; in write_tables()129 write_coreboot_table(CB_TABLE_ADDR, cfg_tables); in write_tables()
355 void write_coreboot_table(u32 addr, struct memory_area *cfg_tables);
Completed in 7 milliseconds