diff options
author | Sridhar Siricilla <sridhar.siricilla@intel.com> | 2019-09-23 19:38:21 +0530 |
---|---|---|
committer | Subrata Banik <subrata.banik@intel.com> | 2019-09-25 06:26:14 +0000 |
commit | f35eee94bd810c9403b9fe65a8341a2eb8c8a722 (patch) | |
tree | b839c03cbf3140dba0111d699758d4386e12acfc /src/soc/intel/common | |
parent | e39becf5216419fa0a08c1d8632474fd8a9a5738 (diff) |
soc/intel/(apl,skl,cnl,common): Move mkhi_hdr structure definition to common
Removed mkhi_hdr structure definition from multiple SOCs, and moved to common.
TEST=Built code for Hatch, apollolake boards.
Change-Id: Ifeba0ed4d98975049179d1b47fb22c06a927dc29
Signed-off-by: Sridhar Siricilla <sridhar.siricilla@intel.com>
Reviewed-on: https://review.coreboot.org/c/coreboot/+/35545
Reviewed-by: Furquan Shaikh <furquan@google.com>
Reviewed-by: Subrata Banik <subrata.banik@intel.com>
Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/common')
-rw-r--r-- | src/soc/intel/common/block/cse/cse.c | 8 | ||||
-rw-r--r-- | src/soc/intel/common/block/include/intelblocks/cse.h | 9 |
2 files changed, 9 insertions, 8 deletions
diff --git a/src/soc/intel/common/block/cse/cse.c b/src/soc/intel/common/block/cse/cse.c index debbf1fbf4..0bd5c72ef5 100644 --- a/src/soc/intel/common/block/cse/cse.c +++ b/src/soc/intel/common/block/cse/cse.c @@ -90,14 +90,6 @@ static struct cse_device { uintptr_t sec_bar; } g_cse; -/* HECI Message Header */ -struct mkhi_hdr { - uint8_t group_id; - uint8_t command:7; - uint8_t is_resp:1; - uint8_t rsvd; - uint8_t result; -} __packed; /* * Initialize the device with provided temporary BAR. If BAR is 0 use a * default. This is intended for pre-mem usage only where BARs haven't been diff --git a/src/soc/intel/common/block/include/intelblocks/cse.h b/src/soc/intel/common/block/include/intelblocks/cse.h index 378f41713c..b4bfe68924 100644 --- a/src/soc/intel/common/block/include/intelblocks/cse.h +++ b/src/soc/intel/common/block/include/intelblocks/cse.h @@ -53,6 +53,15 @@ union me_hfsts1 { } __packed fields; }; +/* HECI Message Header */ +struct mkhi_hdr { + uint8_t group_id; + uint8_t command:7; + uint8_t is_resp:1; + uint8_t rsvd; + uint8_t result; +} __packed; + /* set up device for use in early boot enviroument with temp bar */ void heci_init(uintptr_t bar); /* |