Skip to content

Commit

Permalink
mb/msi: Generate SMBIOS table with ME FWSTS
Browse files Browse the repository at this point in the history
Signed-off-by: Michał Żygowski <[email protected]>
  • Loading branch information
miczyg1 committed Jan 1, 2024
1 parent 2a81905 commit a620bef
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
3 changes: 3 additions & 0 deletions src/mainboard/msi/ms7d25/mainboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <cpu/x86/msr.h>
#include <dasharo/options.h>
#include <device/device.h>
#include <intelblocks/cse.h>
#include <soc/pci_devs.h>
#include <soc/ramstage.h>
#include <smbios.h>
Expand Down Expand Up @@ -505,6 +506,8 @@ static int mainboard_smbios_data(struct device *dev, int *handle, unsigned long
{
int len = 0;

len += cse_write_smbios_type14(handle, current);

// add port information
len += smbios_write_type8(
current, handle,
Expand Down
3 changes: 3 additions & 0 deletions src/mainboard/msi/ms7e06/mainboard.c
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
#include <cpu/x86/msr.h>
#include <dasharo/options.h>
#include <device/device.h>
#include <intelblocks/cse.h>
#include <soc/pci_devs.h>
#include <soc/ramstage.h>
#include <smbios.h>
Expand Down Expand Up @@ -505,6 +506,8 @@ static int mainboard_smbios_data(struct device *dev, int *handle, unsigned long
{
int len = 0;

len += cse_write_smbios_type14(handle, current);

// add port information
len += smbios_write_type8(
current, handle,
Expand Down

0 comments on commit a620bef

Please sign in to comment.