Lines Matching full:map
101 struct cb_memory_range *map; in write_coreboot_table() local
115 /* populate memory map table */ in write_coreboot_table()
118 map = mem->map; in write_coreboot_table()
123 map->start.lo = e820[i].addr & 0xffffffff; in write_coreboot_table()
124 map->start.hi = e820[i].addr >> 32; in write_coreboot_table()
125 map->size.lo = e820[i].size & 0xffffffff; in write_coreboot_table()
126 map->size.hi = e820[i].size >> 32; in write_coreboot_table()
127 map->type = e820[i].type; in write_coreboot_table()
128 map++; in write_coreboot_table()
133 map->start.lo = cfg_tables->start & 0xffffffff; in write_coreboot_table()
134 map->start.hi = cfg_tables->start >> 32; in write_coreboot_table()
135 map->size.lo = cfg_tables->size & 0xffffffff; in write_coreboot_table()
136 map->size.hi = cfg_tables->size >> 32; in write_coreboot_table()
137 map->type = CB_MEM_TABLE; in write_coreboot_table()
138 map++; in write_coreboot_table()