You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
316 B
13 lines
316 B
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* DMI defines for use by IPMI
|
|
*/
|
|
|
|
#define IPMI_DMI_TYPE_KCS 0x01
|
|
#define IPMI_DMI_TYPE_SMIC 0x02
|
|
#define IPMI_DMI_TYPE_BT 0x03
|
|
#define IPMI_DMI_TYPE_SSIF 0x04
|
|
|
|
#ifdef CONFIG_IPMI_DMI_DECODE
|
|
int ipmi_dmi_get_slave_addr(int type, u32 flags, unsigned long base_addr);
|
|
#endif
|
|
|