blob: be6804cd45a210258c39528ca38a2749f382cc45 [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 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
15const struct dptf_platform_info *get_dptf_platform_info(void)
16{
17 return &jsl_dptf_platform_info;
18}