Damien Zammit (damien(a)zamaudio.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16494
-gerrit
commit ef0a933b90bb1a0045a5d68d0c4cbd6a37dfa851
Author: Damien Zammit <damien(a)zamaudio.com>
Date: Mon Sep 5 02:32:40 2016 +1000
nb/intel/x4x: Increase MMIO PCI space to 2GiB
This is necessary for PCI express graphics card add-ons,
otherwise the pci allocator cannot fit the mmio for the
add on card into the space it has available and the OS
turns off the card. Old value was 1GiB.
Change-Id: I606994501b15e636fe209d1ed4b3d3f73b42bf5c
Signed-off-by: Damien Zammit <damien(a)zamaudio.com>
---
src/northbridge/intel/x4x/raminit_ddr2.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/northbridge/intel/x4x/raminit_ddr2.c b/src/northbridge/intel/x4x/raminit_ddr2.c
index ed6ab60..206ea0b 100644
--- a/src/northbridge/intel/x4x/raminit_ddr2.c
+++ b/src/northbridge/intel/x4x/raminit_ddr2.c
@@ -1633,7 +1633,7 @@ static void mmap_ddr2(struct sysinfo *s)
gfxsize = ggc2uma[(ggc & 0xf0) >> 4];
gttsize = ggc2gtt[(ggc & 0xf00) >> 8];
tsegsize = 1; // 1MB TSEG
- mmiosize = 0x400; // 1GB MMIO
+ mmiosize = 0x800; // 2GB MMIO
tom = s->channel_capacity[0] + s->channel_capacity[1] - ME_UMA_SIZEMB;
tolud = MIN(0x1000 - mmiosize, tom);
Marshall Dawson (marshalldawson3rd(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/16493
-gerrit
commit 21529d251b21bded15f5bd5a57290a0da8f51514
Author: Marshall Dawson <marshalldawson3rd(a)gmail.com>
Date: Sun Sep 4 08:38:33 2016 -0600
Kconfig: Relocate DEVICETREE symbol
Place config DEVICETREE after the sourced mainboard Kconfig. This
gives the mainboard the opportunity to set a unique default value.
Change-Id: Id877e1e8f555334a99b6c0ee1782d06a4a2b7a04
Signed-off-by: Marshall Dawson <marshalldawson3rd(a)gmail.com>
---
src/Kconfig | 22 +++++++++++-----------
1 file changed, 11 insertions(+), 11 deletions(-)
diff --git a/src/Kconfig b/src/Kconfig
index 64da061..a43a979 100644
--- a/src/Kconfig
+++ b/src/Kconfig
@@ -341,17 +341,6 @@ config BOARD_ID_STRING
This string is placed in the 'board_id' CBFS file for indicating
board type.
-config DEVICETREE
- string
- default "devicetree.cb"
- help
- This symbol allows mainboards to select a different file under their
- mainboard directory for the devicetree.cb file. This allows the board
- variants that need different devicetrees to be in the same directory.
-
- Examples: "devicetree.variant.cb"
- "variant/devicetree.cb"
-
config RAM_CODE_SUPPORT
bool
default n
@@ -382,6 +371,17 @@ menu "Mainboard"
source "src/mainboard/Kconfig"
+config DEVICETREE
+ string
+ default "devicetree.cb"
+ help
+ This symbol allows mainboards to select a different file under their
+ mainboard directory for the devicetree.cb file. This allows the board
+ variants that need different devicetrees to be in the same directory.
+
+ Examples: "devicetree.variant.cb"
+ "variant/devicetree.cb"
+
# defaults for CBFS_SIZE are set at the end of the file.
config CBFS_SIZE
hex "Size of CBFS filesystem in ROM"