northbridge/intel: move mrc_cache definition into a common header
The mrc_cache definition and the struct mrc_container are the same over all intel platforms. Change-Id: I128a4b5693d27ead709325c597ffe68a0cc78bab Signed-off-by: Alexander Couzens <lynxis@fe80.eu> Reviewed-on: https://review.coreboot.org/13998 Tested-by: build bot (Jenkins) Reviewed-by: Martin Roth <martinroth@google.com>
This commit is contained in:
parent
013accca7f
commit
81c5c761b3
|
@ -0,0 +1,15 @@
|
|||
#ifndef NORTHBRIDGE_INTEL_COMMON_MRC_CACHE_H
|
||||
#define NORTHBRIDGE_INTEL_COMMON_MRC_CACHE_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.
|
||||
} __attribute__ ((packed));
|
||||
|
||||
#endif /* NORTHBRIDGE_INTEL_COMMON_MRC_CACHE_H */
|
|
@ -215,10 +215,6 @@ void dump_mem(unsigned start, unsigned end);
|
|||
void report_platform_info(void);
|
||||
#endif /* !__SMM__ */
|
||||
|
||||
|
||||
#define MRC_DATA_ALIGN 0x1000
|
||||
#define MRC_DATA_SIGNATURE (('M'<<0)|('R'<<8)|('C'<<16)|('D'<<24))
|
||||
|
||||
#if !defined(__PRE_RAM__)
|
||||
#include "gma.h"
|
||||
int init_igd_opregion(igd_opregion_t *igd_opregion);
|
||||
|
|
|
@ -213,18 +213,7 @@ void dump_mem(unsigned start, unsigned end);
|
|||
void report_platform_info(void);
|
||||
#endif /* !__SMM__ */
|
||||
|
||||
|
||||
#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.
|
||||
} __attribute__ ((packed));
|
||||
|
||||
struct mrc_data_container;
|
||||
struct mrc_data_container *find_current_mrc_cache(void);
|
||||
#if !defined(__PRE_RAM__)
|
||||
#include "gma.h"
|
||||
|
|
|
@ -20,6 +20,7 @@
|
|||
#include <cbfs.h>
|
||||
#include <fmap.h>
|
||||
#include <ip_checksum.h>
|
||||
#include <northbridge/intel/common/mrc_cache.h>
|
||||
#include <device/device.h>
|
||||
#include <cbmem.h>
|
||||
#include "pei_data.h"
|
||||
|
|
|
@ -22,6 +22,7 @@
|
|||
#include <cbfs.h>
|
||||
#include <halt.h>
|
||||
#include <ip_checksum.h>
|
||||
#include <northbridge/intel/common/mrc_cache.h>
|
||||
#include <pc80/mc146818rtc.h>
|
||||
#include <device/pci_def.h>
|
||||
#include "raminit.h"
|
||||
|
|
|
@ -593,18 +593,7 @@ void dump_mem(unsigned start, unsigned end);
|
|||
void report_platform_info(void);
|
||||
#endif /* !__SMM__ */
|
||||
|
||||
|
||||
#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.
|
||||
} __attribute__ ((packed));
|
||||
|
||||
struct mrc_data_container;
|
||||
struct mrc_data_container *find_current_mrc_cache(void);
|
||||
#if !defined(__PRE_RAM__)
|
||||
#include "gma.h"
|
||||
|
|
|
@ -40,6 +40,7 @@
|
|||
#include <cpu/x86/mtrr.h>
|
||||
#include <cpu/intel/speedstep.h>
|
||||
#include <cpu/intel/turbo.h>
|
||||
#include <northbridge/intel/common/mrc_cache.h>
|
||||
#endif
|
||||
|
||||
#if !REAL
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#include <cbmem.h>
|
||||
#include "pei_data.h"
|
||||
#include "sandybridge.h"
|
||||
#include <northbridge/intel/common/mrc_cache.h>
|
||||
#include <spi-generic.h>
|
||||
#include <spi_flash.h>
|
||||
|
||||
|
|
|
@ -26,6 +26,7 @@
|
|||
#include <ip_checksum.h>
|
||||
#include <timestamp.h>
|
||||
#include <pc80/mc146818rtc.h>
|
||||
#include <northbridge/intel/common/mrc_cache.h>
|
||||
#include <device/pci_def.h>
|
||||
#include <memory_info.h>
|
||||
#include <smbios.h>
|
||||
|
|
|
@ -24,6 +24,7 @@
|
|||
#include <ip_checksum.h>
|
||||
#include <pc80/mc146818rtc.h>
|
||||
#include <device/pci_def.h>
|
||||
#include <northbridge/intel/common/mrc_cache.h>
|
||||
#include <halt.h>
|
||||
#include <timestamp.h>
|
||||
#include "raminit.h"
|
||||
|
|
|
@ -235,18 +235,7 @@ struct acpi_rsdp;
|
|||
unsigned long northbridge_write_acpi_tables(device_t device, unsigned long start, struct acpi_rsdp *rsdp);
|
||||
#endif
|
||||
|
||||
|
||||
#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.
|
||||
} __attribute__ ((packed));
|
||||
|
||||
struct mrc_data_container;
|
||||
struct mrc_data_container *find_current_mrc_cache(void);
|
||||
#if !defined(__PRE_RAM__)
|
||||
#include "gma.h"
|
||||
|
|
Loading…
Reference in New Issue