Alexandru Gagniuc (mr.nuke.me(a)gmail.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/5423
-gerrit
commit ba72e0706c9f406d4fc6da549fedae4780317d73
Author: Alexandru Gagniuc <mr.nuke.me(a)gmail.com>
Date: Sat Mar 29 17:07:26 2014 -0500
southbridge/amd/agesa/hudson: Clean up AGESA #includes
NOTFORMERGE: EDIT commit message to include proper hash
Just like in commit
<HASH HERE> vendorcode/amd/agesa/fam15tn: Clean #includes in public headers
Include AGESA headers specifying the path relative to AGESA_ROOT. The
path is specified relative to AGESA_ROOT as opposed to src/ since this
code may include headers from different AGESA families, depending on
the board.
Change-Id: Ide38cc34e207a8b617d1d319fd9c17a785f55833
Signed-off-by: Alexandru Gagniuc <mr.nuke.me(a)gmail.com>
---
src/southbridge/amd/agesa/hudson/imc.c | 8 ++++----
src/southbridge/amd/agesa/hudson/resume.c | 4 ++--
src/southbridge/amd/agesa/hudson/spi.c | 2 +-
3 files changed, 7 insertions(+), 7 deletions(-)
diff --git a/src/southbridge/amd/agesa/hudson/imc.c b/src/southbridge/amd/agesa/hudson/imc.c
index af9e865..d706292 100644
--- a/src/southbridge/amd/agesa/hudson/imc.c
+++ b/src/southbridge/amd/agesa/hudson/imc.c
@@ -22,10 +22,10 @@
#include <delay.h>
#include "Porting.h"
#include "AGESA.h"
-#include "amdlib.h"
-#include "Fch.h"
-#include "FchCommonCfg.h"
-#include "FchPlatform.h"
+#include <Lib/amdlib.h>
+#include <Proc/Fch/Fch.h>
+#include <Proc/Fch/Common/FchCommonCfg.h>
+#include <Proc/Fch/FchPlatform.h>
void imc_reg_init(void)
{
diff --git a/src/southbridge/amd/agesa/hudson/resume.c b/src/southbridge/amd/agesa/hudson/resume.c
index 0d40d6c..ecf06a0 100644
--- a/src/southbridge/amd/agesa/hudson/resume.c
+++ b/src/southbridge/amd/agesa/hudson/resume.c
@@ -17,8 +17,8 @@
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
-#include "FchPlatform.h"
-#include "Fch.h"
+#include <Proc/Fch/FchPlatform.h>
+#include <Proc/Fch/Fch.h>
#include <cpu/amd/agesa/s3_resume.h>
#include <device/device.h>
#include "hudson.h"
diff --git a/src/southbridge/amd/agesa/hudson/spi.c b/src/southbridge/amd/agesa/hudson/spi.c
index b89ea5d..a46bf08 100644
--- a/src/southbridge/amd/agesa/hudson/spi.c
+++ b/src/southbridge/amd/agesa/hudson/spi.c
@@ -26,7 +26,7 @@
#include <device/pci_ops.h>
#if defined (CONFIG_HUDSON_IMC_FWM)
-#include "FchPlatform.h"
+#include <Proc/Fch/FchPlatform.h>
static int bus_claimed = 0;
#endif
the following patch was just integrated into master:
commit 5046fa9b7bdcb964446ba4222b31f145756519d6
Author: Alexandru Gagniuc <mr.nuke.me(a)gmail.com>
Date: Sat Dec 28 15:10:28 2013 -0500
cubieboard: Enable the SD controller and mux SD pins
This step needs to be done before calling any MMC functionality.
Change-Id: I88763072c8a541ddba794e79fb55e82eb2f187a9
Signed-off-by: Alexandru Gagniuc <mr.nuke.me(a)gmail.com>
See http://review.coreboot.org/4745 for details.
-gerrit