nb/intel/pineview/northbridge.c: Fix overlapping resources
Fixed resources should not overlap. Change-Id: I166e0095ac0cc0dd8271a693bb452f505a1a9413 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/49626 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
This commit is contained in:
parent
95a1142019
commit
4338ae3194
|
@ -98,7 +98,7 @@ static void mch_domain_read_resources(struct device *dev)
|
|||
|
||||
/* Report the memory regions */
|
||||
ram_resource(dev, index++, 0, 0xa0000 / KiB);
|
||||
ram_resource(dev, index++, 0xc0000 / KiB, tomk - 0xc0000 / KiB);
|
||||
ram_resource(dev, index++, 1 * MiB / KiB, tomk - 1 * MiB / KiB);
|
||||
mmio_resource(dev, index++, tseg_basek, tseg_sizek);
|
||||
mmio_resource(dev, index++, gtt_basek, gsm_sizek);
|
||||
mmio_resource(dev, index++, igd_basek, gms_sizek);
|
||||
|
|
Loading…
Reference in New Issue