Andrey Petrov (andrey.petrov(a)intel.com) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15454
-gerrit
commit e23dd41ac43ddc0a872f39ed5a9ec6ae894247a3
Author: Andrey Petrov <andrey.petrov(a)intel.com>
Date: Fri Jun 24 18:15:09 2016 -0700
WIP: soc/intel/apollolake: Update stage link addresses for 768 KiB cache
Update link addresses for romstage and verstage. Also change build time
relocation address for FSP-M to match.
Actual addresses are ballpark estimate and need to be validated.
BUG=chrome-os-partner:51959
Change-Id: Ia51a341f05b33151ea5fda9f8620408b5a15bc19
Signed-off-by: Andrey Petrov <andrey.petrov(a)intel.com>
---
src/soc/intel/apollolake/Kconfig | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/src/soc/intel/apollolake/Kconfig b/src/soc/intel/apollolake/Kconfig
index f51dbfb..43249f1 100644
--- a/src/soc/intel/apollolake/Kconfig
+++ b/src/soc/intel/apollolake/Kconfig
@@ -120,13 +120,13 @@ config X86_TOP4G_BOOTMEDIA_MAP
config ROMSTAGE_ADDR
hex
- default 0xfef3e000
+ default 0xfef11000
help
The base address (in CAR) where romstage should be linked
config VERSTAGE_ADDR
hex
- default 0xfef60000
+ default 0xfef40000
help
The base address (in CAR) where verstage should be linked
@@ -136,7 +136,7 @@ config CACHE_MRC_SETTINGS
config FSP_M_ADDR
hex
- default 0xfef60000
+ default 0xfef40000
help
The address FSP-M will be relocated to during build time
Aaron Durbin (adurbin(a)chromium.org) just uploaded a new patch set to gerrit, which you can find at https://review.coreboot.org/15503
-gerrit
commit d1ff194ba382e58b03acdc86e51fefd076324cc7
Author: Aaron Durbin <adurbin(a)chromium.org>
Date: Wed Jun 29 17:28:02 2016 -0500
soc/intel/common: use nvs.h include for nhlt code
The nvs.h header is the one which defines global_nvs_t proper.
Don't rely on an indirect inclusion.
Change-Id: I89d6a73f65e408c73f068b4a35b5efd361a6e5d3
Signed-off-by: Aaron Durbin <adurbin(a)chromium.org>
---
src/soc/intel/common/nhlt.c | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/soc/intel/common/nhlt.c b/src/soc/intel/common/nhlt.c
index d498152..03a4b4f 100644
--- a/src/soc/intel/common/nhlt.c
+++ b/src/soc/intel/common/nhlt.c
@@ -15,7 +15,7 @@
#include <cbmem.h>
#include <nhlt.h>
-#include <soc/acpi.h>
+#include <soc/nvs.h>
uintptr_t nhlt_soc_serialize(struct nhlt *nhlt, uintptr_t acpi_addr)
{
the following patch was just integrated into master:
commit c4c83839675c74854a3fbd548f5757968ec1c6fe
Author: Aaron Durbin <adurbin(a)chromium.org>
Date: Wed Jun 29 16:17:02 2016 -0500
soc/intel/apollolake: fix space indention in pm.h
More spaces missed in review.
Change-Id: I842da05ca6ad4f2c13d2d42433e41da57ccf7f96
Signed-off-by: Aaron Durbin <adurbin(a)chromium.org>
Reviewed-on: https://review.coreboot.org/15500
Reviewed-by: Furquan Shaikh <furquan(a)google.com>
Tested-by: build bot (Jenkins)
See https://review.coreboot.org/15500 for details.
-gerrit