summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/cannonlake/include/soc/me.h
diff options
context:
space:
mode:
authorDinesh Gehlot <digehlot@google.com>2023-02-20 13:57:16 +0000
committerLean Sheng Tan <sheng.tan@9elements.com>2023-02-24 11:57:12 +0000
commit9a5b743e56432ff13cecc814f1127f382779432d (patch)
tree7ee97fe5c635fd82d2a63242d3c119f28baa0145 /src/soc/intel/cannonlake/include/soc/me.h
parentb17f9e68821125893f4cb1a1ddb0da2a5a5dd25f (diff)
downloadcoreboot-9a5b743e56432ff13cecc814f1127f382779432d.tar.gz
coreboot-9a5b743e56432ff13cecc814f1127f382779432d.tar.bz2
coreboot-9a5b743e56432ff13cecc814f1127f382779432d.zip
soc/intel/cnl: Select CSE defined ME spec version for cannonlake
Cannonlake based SoCs uses Intel's Management Engine (ME), version 12. This patch selects ME 12 specification defined at common code and removes cannonlake SoC specific ME code and data structures. BUG=b:260309647 Signed-off-by: Dinesh Gehlot <digehlot@google.com> Change-Id: Ifc64cf63736bb730492b1732a22669a0415816a3 Reviewed-on: https://review.coreboot.org/c/coreboot/+/73140 Reviewed-by: Subrata Banik <subratabanik@google.com> Reviewed-by: Kapil Porwal <kapilporwal@google.com> Reviewed-by: Tarun Tuli <taruntuli@google.com> Tested-by: build bot (Jenkins) <no-reply@coreboot.org>
Diffstat (limited to 'src/soc/intel/cannonlake/include/soc/me.h')
-rw-r--r--src/soc/intel/cannonlake/include/soc/me.h78
1 files changed, 0 insertions, 78 deletions
diff --git a/src/soc/intel/cannonlake/include/soc/me.h b/src/soc/intel/cannonlake/include/soc/me.h
deleted file mode 100644
index 36b062eb6dc2..000000000000
--- a/src/soc/intel/cannonlake/include/soc/me.h
+++ /dev/null
@@ -1,78 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-
-#ifndef _CANNONLAKE_ME_H_
-#define _CANNONLAKE_ME_H_
-
-/* ME Host Firmware Status register 1 */
-union me_hfsts1 {
- uint32_t data;
- struct {
- uint32_t working_state : 4;
- uint32_t mfg_mode : 1;
- uint32_t fpt_bad : 1;
- uint32_t operation_state : 3;
- uint32_t fw_init_complete : 1;
- uint32_t ft_bup_ld_flr : 1;
- uint32_t update_in_progress : 1;
- uint32_t error_code : 4;
- uint32_t operation_mode : 4;
- uint32_t reserved_0 : 4;
- uint32_t boot_options_present : 1;
- uint32_t reserved_1 : 6;
- uint32_t d0i3_support_valid : 1;
- } __packed fields;
-};
-
-/* Host Firmware Status Register 2 */
-union me_hfsts2 {
- uint32_t data;
- struct {
- uint32_t reserved_0 : 4;
- uint32_t cpu_replaced : 1;
- uint32_t reserved_1 : 3;
- uint32_t cpu_replaced_valid : 1;
- uint32_t low_power_state : 1;
- uint32_t reserved_2 : 22;
- } __packed fields;
-};
-
-/* ME Host Firmware Status Register 3 */
-union me_hfsts3 {
- uint32_t data;
- struct {
- uint32_t reserved_0 : 4;
- uint32_t fw_sku : 3;
- uint32_t reserved_1 : 25;
- } __packed fields;
-};
-
-/* Host Firmware Status Register 4 */
-union me_hfsts4 {
- uint32_t data;
- struct {
- uint32_t reserved_0;
- } __packed fields;
-};
-
-/* Host Firmware Status Register 5 */
-union me_hfsts5 {
- uint32_t data;
- struct {
- uint32_t reserved_0;
- } __packed fields;
-};
-
-/* Host Firmware Status Register 6 */
-union me_hfsts6 {
- uint32_t data;
- struct {
- uint32_t reserved_0 : 1;
- uint32_t cpu_debug_disable : 1;
- uint32_t reserved_1 : 29;
- uint32_t txt_support : 1;
- } __packed fields;
-};
-
-void dump_me_status(void *unused);
-
-#endif /* _CANNONLAKE_ME_H_ */