aboutsummaryrefslogtreecommitdiff
path: root/src/northbridge/intel/common/mrc_cache.h
diff options
context:
space:
mode:
authorArthur Heymans <arthur@aheymans.xyz>2018-01-29 10:19:03 +0100
committerPatrick Georgi <pgeorgi@google.com>2018-05-18 12:21:41 +0000
commit4021a5acb36e69c511db12aa24abd56063f4933a (patch)
tree0232345ce846224b7295081c137fbc63b4630869 /src/northbridge/intel/common/mrc_cache.h
parentdc71e254941cf922e4686fc40bf8d77f3ccfe447 (diff)
nb/common/intel: Remove the mrc cache code
This is now unused, since all intel northbridges now use the equivalent in drivers/mrc_cache. Change-Id: I3e4b4afa53acc0a82b4ba961f13f816b04931fea Signed-off-by: Arthur Heymans <arthur@aheymans.xyz> Reviewed-on: https://review.coreboot.org/23485 Reviewed-by: Patrick Rudolph <siro@das-labor.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/northbridge/intel/common/mrc_cache.h')
-rw-r--r--src/northbridge/intel/common/mrc_cache.h20
1 files changed, 0 insertions, 20 deletions
diff --git a/src/northbridge/intel/common/mrc_cache.h b/src/northbridge/intel/common/mrc_cache.h
deleted file mode 100644
index 6f0dd6ef74..0000000000
--- a/src/northbridge/intel/common/mrc_cache.h
+++ /dev/null
@@ -1,20 +0,0 @@
-#ifndef NORTHBRIDGE_INTEL_COMMON_MRC_CACHE_H
-#define NORTHBRIDGE_INTEL_COMMON_MRC_CACHE_H
-
-#include <compiler.h>
-
-#define MRC_DATA_ALIGN 0x1000
-#define MRC_DATA_SIGNATURE (('M'<<0)|('R'<<8)|('C'<<16)|('D'<<24))
-
-struct mrc_data_container {
- u32 mrc_signature; // "MRCD"
- u32 mrc_data_size; // Actual total size of this structure
- u32 mrc_checksum; // IP style checksum
- u32 reserved; // For header alignment
- u8 mrc_data[0]; // Variable size, platform/run time dependent.
-} __packed;
-
-struct mrc_data_container *find_current_mrc_cache(void);
-struct mrc_data_container *store_current_mrc_cache(void *data, unsigned length);
-
-#endif /* NORTHBRIDGE_INTEL_COMMON_MRC_CACHE_H */