diff --git a/src/mainboard/starlabs/byte_adl/cfr.c b/src/mainboard/starlabs/byte_adl/cfr.c index 9936025c25..e80108ba42 100644 --- a/src/mainboard/starlabs/byte_adl/cfr.c +++ b/src/mainboard/starlabs/byte_adl/cfr.c @@ -47,6 +47,15 @@ static struct sm_obj_form devices_group = { }, }; +static struct sm_obj_form security_group = { + .ui_name = "Security", + .obj_list = (const struct sm_object *[]) { + &intel_tme, + NULL + }, +}; + + static struct sm_obj_form pci_group = { .ui_name = "PCI", .obj_list = (const struct sm_object *[]) { @@ -70,6 +79,7 @@ static struct sm_obj_form *sm_root[] = { &processor_group, &power_group, &devices_group, + &security_group, &pci_group, &coreboot_group, NULL diff --git a/src/mainboard/starlabs/lite/cfr.c b/src/mainboard/starlabs/lite/cfr.c index ae1cfdbbd3..81d236ea86 100644 --- a/src/mainboard/starlabs/lite/cfr.c +++ b/src/mainboard/starlabs/lite/cfr.c @@ -54,6 +54,15 @@ static struct sm_obj_form devices_group = { }, }; +static struct sm_obj_form security_group = { + .ui_name = "Security", + .obj_list = (const struct sm_object *[]) { + &intel_tme, + NULL + }, +}; + + static struct sm_obj_form pci_group = { .ui_name = "PCI", .obj_list = (const struct sm_object *[]) { @@ -80,6 +89,7 @@ static struct sm_obj_form *sm_root[] = { &power_group, &keyboard_group, &devices_group, + &security_group, &pci_group, &coreboot_group, NULL diff --git a/src/mainboard/starlabs/starbook/cfr.c b/src/mainboard/starlabs/starbook/cfr.c index ab5f84e663..d317d2e531 100644 --- a/src/mainboard/starlabs/starbook/cfr.c +++ b/src/mainboard/starlabs/starbook/cfr.c @@ -84,6 +84,14 @@ static struct sm_obj_form devices_group = { }, }; +static struct sm_obj_form security_group = { + .ui_name = "Security", + .obj_list = (const struct sm_object *[]) { + &intel_tme, + NULL + }, +}; + static struct sm_obj_form pci_group = { .ui_name = "PCI", .obj_list = (const struct sm_object *[]) { @@ -117,6 +125,7 @@ static struct sm_obj_form *sm_root[] = { &power_group, &keyboard_group, &devices_group, + &security_group, &pci_group, &coreboot_group, NULL diff --git a/src/mainboard/starlabs/starfighter/cfr.c b/src/mainboard/starlabs/starfighter/cfr.c index 01488d4865..e925fa731c 100644 --- a/src/mainboard/starlabs/starfighter/cfr.c +++ b/src/mainboard/starlabs/starfighter/cfr.c @@ -73,6 +73,14 @@ static struct sm_obj_form devices_group = { }, }; +static struct sm_obj_form security_group = { + .ui_name = "Security", + .obj_list = (const struct sm_object *[]) { + &intel_tme, + NULL + }, +}; + static struct sm_obj_form pci_group = { .ui_name = "PCI", .obj_list = (const struct sm_object *[]) { @@ -102,6 +110,7 @@ static struct sm_obj_form *sm_root[] = { &power_group, &keyboard_group, &devices_group, + &security_group, &pci_group, &coreboot_group, NULL diff --git a/src/mainboard/starlabs/starlite_adl/cfr.c b/src/mainboard/starlabs/starlite_adl/cfr.c index 6416dc4a77..62370cfc2d 100644 --- a/src/mainboard/starlabs/starlite_adl/cfr.c +++ b/src/mainboard/starlabs/starlite_adl/cfr.c @@ -75,6 +75,14 @@ static struct sm_obj_form devices_group = { }, }; +static struct sm_obj_form security_group = { + .ui_name = "Security", + .obj_list = (const struct sm_object *[]) { + &intel_tme, + NULL + }, +}; + static struct sm_obj_form pci_group = { .ui_name = "PCI", .obj_list = (const struct sm_object *[]) { @@ -100,6 +108,7 @@ static struct sm_obj_form *sm_root[] = { &processor_group, &power_group, &devices_group, + &security_group, &pci_group, &coreboot_group, NULL