blob: 2f0427e6c755647bcbe92b9deae5ce45c6415937 [file] [log] [blame]
Tim Wawrzynczak7f7c3882021-04-09 12:15:21 -06001/* SPDX-License-Identifier: GPL-2.0-only */
2
3#include <drivers/intel/dptf/dptf.h>
4
5static 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
15const struct dptf_platform_info *get_dptf_platform_info(void)
16{
17 return &tgl_dptf_platform_info;
18}