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 tgl_dptf_platform_info = {
6  .use_eisa_hids = false,
7  /* _HID for the toplevel DPTF device, typically \_SB.DPTF */
8  .dptf_device_hid = "INTC1040",
9  /* _HID for Intel DPTF Generic Device (these require PTYP as well) */
10  .generic_hid = "INTC1043",
11  /* _HID for Intel DPTF Fan Device */
12  .fan_hid = "INTC1044",
13 };
14 
16 {
17  return &tgl_dptf_platform_info;
18 }
const struct dptf_platform_info * get_dptf_platform_info(void)
Definition: dptf.c:31
static const struct dptf_platform_info tgl_dptf_platform_info
Definition: dptf.c:5
bool use_eisa_hids
Definition: dptf.h:13