coreboot
coreboot is an Open Source project aimed at replacing the proprietary BIOS found in most computers.
dptf.c
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-only */
2 
4 
5 static const struct dptf_platform_info jsl_dptf_platform_info = {
6  .use_eisa_hids = true,
7  /* _HID for the toplevel DPTF device, typically \_SB.DPTF */
8  .dptf_device_hid = "INT3400",
9  /* _HID for Intel DPTF Generic Device (these require PTYP as well) */
10  .generic_hid = "INT3403",
11  /* _HID for Intel DPTF Fan Device */
12  .fan_hid = "INT3404",
13 };
14 
16 {
17  return &jsl_dptf_platform_info;
18 }
const struct dptf_platform_info * get_dptf_platform_info(void)
Definition: dptf.c:31
static const struct dptf_platform_info jsl_dptf_platform_info
Definition: dptf.c:5
bool use_eisa_hids
Definition: dptf.h:13