Arthur Heymans has uploaded this change for review. ( https://review.coreboot.org/27140
Change subject: soc/intel/baytrail: Fix Kconfig for mrc.bin inclusion
......................................................................
soc/intel/baytrail: Fix Kconfig for mrc.bin inclusion
Is used the sandybridge systemagent binary and mentioned that in the
help text which is simply wrong and won't work.
This copies the nb/intel/haswell/Kconfig to not include an mrc.bin by
default.
Change-Id: I2e151a66abc6dab710abdbb92c0c28884d88912e
Signed-off-by: Arthur Heymans <arthur(a)aheymans.xyz>
---
M src/soc/intel/baytrail/Kconfig
1 file changed, 8 insertions(+), 12 deletions(-)
git pull ssh://review.coreboot.org:29418/coreboot refs/changes/40/27140/1
diff --git a/src/soc/intel/baytrail/Kconfig b/src/soc/intel/baytrail/Kconfig
index 1f7e21e..b4dc823 100644
--- a/src/soc/intel/baytrail/Kconfig
+++ b/src/soc/intel/baytrail/Kconfig
@@ -67,22 +67,20 @@
default 0x100000
config HAVE_MRC
- bool "Add a Memory Reference Code binary"
- default y
+ bool "Add a System Agent binary"
help
- Select this option to add a blob containing
- memory reference code.
+ Select this option to add a System Agent binary to
+ the resulting coreboot image.
+
Note: Without this binary coreboot will not work
-if HAVE_MRC
-
config MRC_FILE
- string "Intel memory refeference code path and filename"
- default "3rdparty/blobs/northbridge/intel/sandybridge/systemagent-r6.bin"
+ string "Intel System Agent path and filename"
+ depends on HAVE_MRC
+ default "mrc.bin"
help
The path and filename of the file to use as System Agent
- binary. Note that this points to the sandybridge binary file
- which is will not work, but it serves its purpose to do builds.
+ binary.
config MRC_BIN_ADDRESS
hex
@@ -92,8 +90,6 @@
bool "Enable MRC RMT training + debug prints"
default n
-endif # HAVE_MRC
-
# Cache As RAM region layout:
#
# +-------------+ DCACHE_RAM_BASE + DCACHE_RAM_SIZE + DCACHE_RAM_MRC_VAR_SIZE
--
To view, visit https://review.coreboot.org/27140
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: coreboot
Gerrit-Branch: master
Gerrit-MessageType: newchange
Gerrit-Change-Id: I2e151a66abc6dab710abdbb92c0c28884d88912e
Gerrit-Change-Number: 27140
Gerrit-PatchSet: 1
Gerrit-Owner: Arthur Heymans <arthur(a)aheymans.xyz>
Nico Huber has uploaded a new patch set (#2). ( https://review.coreboot.org/27138 )
Change subject: gma: Implement automatic CPU detection
......................................................................
gma: Implement automatic CPU detection
In dynamic CPU configurations, Config.Detect_CPU() sets the CPU
variables according to the given PCI device id. In static confi-
gurations it does nothing.
We update the default configs to make use of this feature where
applicable. This should still give us full build-test coverage
while cutting the amount of tests in half.
Change-Id: I8ce31c867f97c8d6ef99ca096cb45f7719e78a19
Signed-off-by: Nico Huber <nico.h(a)gmx.de>
---
M common/Makefile.inc
A common/dyncpu/hw-gfx-gma-config.adb
M common/hw-gfx-gma-config.ads.template
M common/hw-gfx-gma.adb
D configs/broadwell
D configs/broadwell_ult
M configs/broxton
M configs/g45
M configs/haswell
D configs/haswell_ult
M configs/ironlake
R configs/ironlake_edp
D configs/ivybridge_lvds
D configs/sandybridge
M configs/skylake
D configs/skylake_ult
16 files changed, 62 insertions(+), 63 deletions(-)
git pull ssh://review.coreboot.org:29418/libgfxinit refs/changes/38/27138/2
--
To view, visit https://review.coreboot.org/27138
To unsubscribe, or for help writing mail filters, visit https://review.coreboot.org/settings
Gerrit-Project: libgfxinit
Gerrit-Branch: master
Gerrit-MessageType: newpatchset
Gerrit-Change-Id: I8ce31c867f97c8d6ef99ca096cb45f7719e78a19
Gerrit-Change-Number: 27138
Gerrit-PatchSet: 2
Gerrit-Owner: Nico Huber <nico.h(a)gmx.de>