Stefan Reinauer (stefan.reinauer(a)coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10612
-gerrit
commit 11e371eb9e311a18e9bb04d673b2f474181cd677
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Sat Jun 20 21:40:42 2015 +0200
autoport: Include 'default_irq_route.asl' into DSDT
After commit with Change-Id Ia1839ed3 (sandy/ivy: Include
IRQ routes from platform), update autoport to include
that file into the DSDT.
Change-Id: I14534438d0b433895f384539c8b413eaa53d943a
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Signed-off-by: Vladimir Serbinenko <phcoder(a)gmail.com>
---
util/autoport/bd82x6x.go | 2 ++
1 file changed, 2 insertions(+)
diff --git a/util/autoport/bd82x6x.go b/util/autoport/bd82x6x.go
index 4a0f503..8756d07 100644
--- a/util/autoport/bd82x6x.go
+++ b/util/autoport/bd82x6x.go
@@ -273,6 +273,8 @@ func (b bd82x6x) Scan(ctx Context, addr PCIDevData) {
})
DSDTPCI0Includes = append(DSDTPCI0Includes, DSDTInclude{
File: "southbridge/intel/bd82x6x/acpi/pch.asl",
+ }, DSDTInclude{
+ File: "southbridge/intel/bd82x6x/acpi/default_irq_route.asl",
})
sb := Create(ctx, "early_southbridge.c")
Stefan Reinauer (stefan.reinauer(a)coreboot.org) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/10585
-gerrit
commit 6e82ae3ee42eac628302f798fe209be360305312
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Thu Jun 18 01:19:50 2015 -0700
prog_loader: Play nice with gc-sections
With an x86_64-elf toolchain, this code that is unused
outside of ramstage, is causing undefined references.
Help the compiler along a little bit by conditionally compiling
the code in ramstage only.
Change-Id: I75518149b53c24eda4b985b0fef856447e196dec
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
---
src/lib/prog_loaders.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/lib/prog_loaders.c b/src/lib/prog_loaders.c
index ec5eeb8..7c00aba 100644
--- a/src/lib/prog_loaders.c
+++ b/src/lib/prog_loaders.c
@@ -121,6 +121,8 @@ fail:
die("Ramstage was not loaded!\n");
}
+#ifdef __RAMSTAGE__ // gc-sections should take care of this
+
static struct prog global_payload =
PROG_INIT(ASSET_PAYLOAD, CONFIG_CBFS_PREFIX "/payload");
@@ -170,3 +172,5 @@ void payload_run(void)
prog_run(payload);
}
+
+#endif
the following patch was just integrated into master:
commit 6ab0fd0a9455d35dde5c359845d35bb337b7666e
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Thu Jun 18 22:03:19 2015 -0700
vendorcode: Use cross archiver for libagesa.a on AMD f14
Change-Id: I61a9f65a1ac4c95096d0ff071a95984cf219caa8
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-on: http://review.coreboot.org/10593
Reviewed-by: Marc Jones <marc.jones(a)se-eng.com>
Tested-by: build bot (Jenkins)
See http://review.coreboot.org/10593 for details.
-gerrit
the following patch was just integrated into master:
commit b838469e62e1ec74172a6b27b91060f6c4314f2e
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Tue Jun 23 13:21:23 2015 -0700
arm-trusted-firmware: update marker
Change-Id: I8dddeead3c23a03803e7d8d5b2bfb8a15c5c2807
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-on: http://review.coreboot.org/10645
Reviewed-by: Patrick Georgi <pgeorgi(a)google.com>
Tested-by: build bot (Jenkins)
See http://review.coreboot.org/10645 for details.
-gerrit
the following patch was just integrated into master:
commit 23ec0a570e11dd9da30641ca1ce4a2d5985b9fb7
Author: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Date: Fri Jun 19 15:55:49 2015 -0700
lippert/frontrunner-af: 64bit fixes
Change-Id: Ia764798c8b58497e2b453bd000dd06816c28f98f
Signed-off-by: Stefan Reinauer <stefan.reinauer(a)coreboot.org>
Reviewed-on: http://review.coreboot.org/10600
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marc.jones(a)se-eng.com>
See http://review.coreboot.org/10600 for details.
-gerrit