nb/intel/pineview: Fix clearing memory
The regions TSEG, GSM, GMS should not be marked as cacheable resources. Change-Id: I083b096cf3ed250bca722674abe9feffdb2436d1 Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/c/coreboot/+/47174 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com> Reviewed-by: Nico Huber <nico.h@gmx.de>
This commit is contained in:
parent
6e98292821
commit
ac12976f0c
|
@ -98,9 +98,9 @@ static void mch_domain_read_resources(struct device *dev)
|
|||
/* Report the memory regions */
|
||||
ram_resource(dev, index++, 0, 640);
|
||||
ram_resource(dev, index++, 768, tomk - 768);
|
||||
reserved_ram_resource(dev, index++, tseg_basek, tseg_sizek);
|
||||
reserved_ram_resource(dev, index++, gtt_basek, gsm_sizek);
|
||||
reserved_ram_resource(dev, index++, igd_basek, gms_sizek);
|
||||
mmio_resource(dev, index++, tseg_basek, tseg_sizek);
|
||||
mmio_resource(dev, index++, gtt_basek, gsm_sizek);
|
||||
mmio_resource(dev, index++, igd_basek, gms_sizek);
|
||||
reserved_ram_resource(dev, index++, cbmem_topk, delta_cbmem);
|
||||
|
||||
/*
|
||||
|
|
Loading…
Reference in New Issue