nb/intel/i945/memmap: Convert to 96 characters line length
Also remove an extra star in comment. Change-Id: I2ef938573e75022dcb31c935dde7d3055e7a53f0 Signed-off-by: Elyes HAOUAS <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/40802 Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
This commit is contained in:
parent
576315e1be
commit
f49f4d48ba
|
@ -65,11 +65,10 @@ void *cbmem_top_chipset(void)
|
||||||
return (void *) top_of_ram;
|
return (void *) top_of_ram;
|
||||||
}
|
}
|
||||||
|
|
||||||
/** Decodes used Graphics Mode Select (GMS) to kilobytes. */
|
/* Decodes used Graphics Mode Select (GMS) to kilobytes. */
|
||||||
u32 decode_igd_memory_size(const u32 gms)
|
u32 decode_igd_memory_size(const u32 gms)
|
||||||
{
|
{
|
||||||
static const u16 ggc2uma[] = { 0, 1, 4, 8, 16, 32,
|
static const u16 ggc2uma[] = { 0, 1, 4, 8, 16, 32, 48, 64 };
|
||||||
48, 64 };
|
|
||||||
|
|
||||||
if (gms >= ARRAY_SIZE(ggc2uma))
|
if (gms >= ARRAY_SIZE(ggc2uma))
|
||||||
die("Bad Graphics Mode Select (GMS) setting.\n");
|
die("Bad Graphics Mode Select (GMS) setting.\n");
|
||||||
|
@ -91,9 +90,7 @@ void fill_postcar_frame(struct postcar_frame *pcf)
|
||||||
* RAM to cover both cbmem as the TSEG region.
|
* RAM to cover both cbmem as the TSEG region.
|
||||||
*/
|
*/
|
||||||
top_of_ram = (uintptr_t)cbmem_top();
|
top_of_ram = (uintptr_t)cbmem_top();
|
||||||
postcar_frame_add_mtrr(pcf, top_of_ram - 8*MiB, 8*MiB,
|
postcar_frame_add_mtrr(pcf, top_of_ram - 8*MiB, 8*MiB, MTRR_TYPE_WRBACK);
|
||||||
MTRR_TYPE_WRBACK);
|
|
||||||
postcar_frame_add_mtrr(pcf, northbridge_get_tseg_base(),
|
postcar_frame_add_mtrr(pcf, northbridge_get_tseg_base(),
|
||||||
northbridge_get_tseg_size(), MTRR_TYPE_WRBACK);
|
northbridge_get_tseg_size(), MTRR_TYPE_WRBACK);
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue