summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/broadwell/me_status.c
diff options
context:
space:
mode:
authorDuncan Laurie <dlaurie@chromium.org>2014-10-03 15:34:09 -0700
committerPatrick Georgi <pgeorgi@google.com>2015-04-04 12:39:51 +0200
commit0b92a5e6076dfc9c03140ad61c0f9588a85b2e41 (patch)
tree90a1dd0520f1732744774b3f3e7ca5b55d12760a /src/soc/intel/broadwell/me_status.c
parent88b004d6fc0c68218716f3952395872aede61951 (diff)
downloadcoreboot-0b92a5e6076dfc9c03140ad61c0f9588a85b2e41.tar.gz
coreboot-0b92a5e6076dfc9c03140ad61c0f9588a85b2e41.tar.bz2
coreboot-0b92a5e6076dfc9c03140ad61c0f9588a85b2e41.zip
broadwell: Fix building with USE=quiet-cb
This function needs to be available in different LOGLEVELs. BUG=chrome-os-partner:28234 BRANCH=samus TEST=USE=quiet-cb emerge-samus coreboot Change-Id: Ib56995db64a7417a637eb8a93350fc40e6f83340 Signed-off-by: Stefan Reinauer <reinauer@chromium.org> Original-Commit-Id: 716d26c82a7df1dccf8956f301ab0e103fcedcff Original-Change-Id: Ia8f0d05af24c9070c8c9241a3a7e137f845d1cab Original-Signed-off-by: Duncan Laurie <dlaurie@chromium.org> Original-Reviewed-on: https://chromium-review.googlesource.com/221540 Original-Reviewed-by: Aaron Durbin <adurbin@chromium.org> Reviewed-on: http://review.coreboot.org/9262 Tested-by: build bot (Jenkins) Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Patrick Georgi <pgeorgi@google.com>
Diffstat (limited to 'src/soc/intel/broadwell/me_status.c')
-rw-r--r--src/soc/intel/broadwell/me_status.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/soc/intel/broadwell/me_status.c b/src/soc/intel/broadwell/me_status.c
index 31eff3cd0801..033e4e21122f 100644
--- a/src/soc/intel/broadwell/me_status.c
+++ b/src/soc/intel/broadwell/me_status.c
@@ -27,6 +27,12 @@
#include <broadwell/me.h>
#include <delay.h>
+static inline void me_read_dword_ptr(void *ptr, int offset)
+{
+ u32 dword = pci_read_config32(PCH_DEV_ME, offset);
+ memcpy(ptr, &dword, sizeof(dword));
+}
+
#if (CONFIG_DEFAULT_CONSOLE_LOGLEVEL >= BIOS_DEBUG)
/* HFS1[3:0] Current Working State Values */
@@ -201,12 +207,6 @@ static const char *me_progress_policy_values[] = {
"Required VSCC values for flash parts do not match",
};
-static inline void me_read_dword_ptr(void *ptr, int offset)
-{
- u32 dword = pci_read_config32(PCH_DEV_ME, offset);
- memcpy(ptr, &dword, sizeof(dword));
-}
-
void intel_me_status(void)
{
struct me_hfs _hfs, *hfs = &_hfs;