sconfig: Add SMBIOS type 9 entries
Add the new field 'smbios_slot_desc', which takes 2 to 4 arguments. The field is valid for PCI devices and only compiled if SMBIOS table generation is enabled. smbios_slot_desc arguments: 1. slot type 2. slot lenth 3. slot designation (optional) 4. slot data width (optional) Example: device pci 1c.1 on smbios_slot_desc "21" "3" "MINI-PCI-FULL" "8" end # PCIe Port #2 Integrated Wireless LAN Tested on Lenovo T520. Change-Id: If95aae3c322d3da47637613b9a872ba1f7af9080 Signed-off-by: Patrick Rudolph <patrick.rudolph@9elements.com> Reviewed-on: https://review.coreboot.org/c/coreboot/+/32307 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Paul Menzel <paulepanter@users.sourceforge.net> Reviewed-by: Philipp Deppenwiese <zaolin.daisuki@gmail.com>
This commit is contained in:
committed by
Patrick Georgi
parent
1a93058448
commit
ac24d3c311
@ -141,6 +141,18 @@ struct device {
|
||||
struct bus *bus;
|
||||
/* Pointer to last bus under this device. */
|
||||
struct bus *last_bus;
|
||||
|
||||
/* SMBIOS slot type */
|
||||
char *smbios_slot_type;
|
||||
|
||||
/* SMBIOS slot data width */
|
||||
char *smbios_slot_data_width;
|
||||
|
||||
/* SMBIOS slot description for reference designation */
|
||||
char *smbios_slot_designation;
|
||||
|
||||
/* SMBIOS slot length */
|
||||
char *smbios_slot_length;
|
||||
};
|
||||
|
||||
extern struct bus *root_parent;
|
||||
@ -158,6 +170,9 @@ void add_pci_subsystem_ids(struct bus *bus, int vendor, int device,
|
||||
void add_ioapic_info(struct bus *bus, int apicid, const char *_srcpin,
|
||||
int irqpin);
|
||||
|
||||
void add_slot_desc(struct bus *bus, char *type, char *length, char *designation,
|
||||
char *data_width);
|
||||
|
||||
void yyrestart(FILE *input_file);
|
||||
|
||||
/* Add chip data to tail of queue. */
|
||||
|
Reference in New Issue
Block a user