Sergej Ivanov (getinaks(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/9292
-gerrit
commit f2155182970986a68417c5e6a4bde2533f627f5d
Author: Sergej Ivanov <getinaks(a)gmail.com>
Date: Fri Apr 3 16:58:19 2015 +0300
fix amd hudson definition for LPC_DEV
In agesa code for hudson southbridge LPC_DEV is not defined,
but used. Instead of LPC_DEV defined PCU_DEV. This will fix it
Change-Id: Ie7db791e9eb607008e70e446fc6fd28114742750
Signed-off-by: Sergej Ivanov <getinaks(a)gmail.com>
---
src/southbridge/amd/agesa/hudson/pci_devs.h | 1 +
1 file changed, 1 insertion(+)
diff --git a/src/southbridge/amd/agesa/hudson/pci_devs.h b/src/southbridge/amd/agesa/hudson/pci_devs.h
index cff7dca..1974ef3 100644
--- a/src/southbridge/amd/agesa/hudson/pci_devs.h
+++ b/src/southbridge/amd/agesa/hudson/pci_devs.h
@@ -85,6 +85,7 @@
/* LPC BUS */
#define PCU_DEV 0x14
+#define LPC_DEV 0x14 // No LPC_DEV (maybe misspell with PCU_DEV)
#define LPC_FUNC 3
#define LPC_DEVID 0x780E
#define LPC_DEVFN PCI_DEVFN(LPC_DEV,LPC_FUNC)
the following patch was just integrated into master:
commit 604fe254c9c94179f36b6a801666c9dcaaf0c2aa
Author: Aaron Durbin <adurbin(a)chromium.org>
Date: Fri Mar 20 16:47:21 2015 -0500
tegra132: implement platform_prog_run()
The tegra132 SoC is currently booting up on the AVP cpu which
bootstraps the rest of the SoC. Upon exiting romstage it
runs ramstage from its faster armv8 core. Instead of hard
coding the stage loading operations use run_ramstage().
Change-Id: Ib9b3eecf376ae022f910295920a085bde6e17f9f
Signed-off-by: Aaron Durbin <adurbin(a)chromium.org>
Reviewed-on: http://review.coreboot.org/8848
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marc.jones(a)se-eng.com>
See http://review.coreboot.org/8848 for details.
-gerrit
the following patch was just integrated into master:
commit 825a5a85b17439985610c5b2769caba6b348700a
Author: Aaron Durbin <adurbin(a)chromium.org>
Date: Fri Mar 20 16:42:17 2015 -0500
tegra124: implement platform_prog_run()
The tegra124 SoC is currently booting up on the AVP cpu which
bootstraps the rest of the SoC. Upon exiting bootblock it
runs romstage from its faster armv7 core. Instead of hard
coding the stage loading operations use run_romstage().
Change-Id: Idddcfd5443f08d4dd41e1d9b71650ff6d4b14bc4
Signed-off-by: Aaron Durbin <adurbin(a)chromium.org>
Reviewed-on: http://review.coreboot.org/8847
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marc.jones(a)se-eng.com>
See http://review.coreboot.org/8847 for details.
-gerrit
the following patch was just integrated into master:
commit 460703bbb4f1a51b9ecd19ac78ec62c97502a4a2
Author: Aaron Durbin <adurbin(a)chromium.org>
Date: Fri Mar 27 21:17:22 2015 -0500
rmodule: use struct prog while loading rmodules
The rmod_stage_load structure contained the same fields
as struct prog. In order to more closely integrate with the
rest of program loading use struct prog.
Change-Id: Ib7f45d0b3573e6d518864deacc4002802b11aa9c
Signed-off-by: Aaron Durbin <adurbin(a)chromium.org>
Reviewed-on: http://review.coreboot.org/9143
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marc.jones(a)se-eng.com>
See http://review.coreboot.org/9143 for details.
-gerrit
the following patch was just integrated into master:
commit ce9efe061a23bc3e3d2a4c17cf29692ce6f9eb53
Author: Aaron Durbin <adurbin(a)chromium.org>
Date: Fri Mar 20 16:37:12 2015 -0500
program loading: unify on struct prog
Instead of having different structures for loading
ramstage and payload align to using struct prog.
This also removes arch_payload_run() in favor of
the prog_run() interface.
Change-Id: I31483096094eacc713a7433811cd69cc5621c43e
Signed-off-by: Aaron Durbin <adurbin(a)chromium.org>
Reviewed-on: http://review.coreboot.org/8849
Tested-by: Raptor Engineering Automated Test Stand <noreply(a)raptorengineeringinc.com>
Tested-by: build bot (Jenkins)
Reviewed-by: Marc Jones <marc.jones(a)se-eng.com>
See http://review.coreboot.org/8849 for details.
-gerrit
the following patch was just integrated into master:
commit b3847e64242228166976f425cd42331db7857551
Author: Aaron Durbin <adurbin(a)chromium.org>
Date: Fri Mar 20 15:55:08 2015 -0500
program loading: add prog_run() function
The prog_run() function abstracts away what is required
for running a given program. Within it, there are 2
calls: 1. platform_prog_run() and 2. arch_prog_run().
The platform_prog_run() allows for a chipset to intercept
a program that will be run. This allows for CPU switching
as currently needed in t124 and t132.
Change-Id: I22a5dd5bfb1018e7e46475e47ac993a0941e2a8c
Signed-off-by: Aaron Durbin <adurbin(a)chromium.org>
Reviewed-on: http://review.coreboot.org/8846
Tested-by: build bot (Jenkins)
Tested-by: Raptor Engineering Automated Test Stand <noreply(a)raptorengineeringinc.com>
Reviewed-by: Marc Jones <marc.jones(a)se-eng.com>
See http://review.coreboot.org/8846 for details.
-gerrit