summaryrefslogtreecommitdiffstats
path: root/src/soc/intel/jasperlake/dptf.c
diff options
context:
space:
mode:
authorSubrata Banik <subratabanik@google.com>2022-12-19 23:14:35 +0530
committerFelix Held <felix-coreboot@felixheld.de>2022-12-23 13:00:30 +0000
commite9ac9f97e84ea4ceec3f2468f3ca2b5f2c47fbf2 (patch)
tree64d8ebee4fb17259bb61c7f2411a3e03aba85c49 /src/soc/intel/jasperlake/dptf.c
parentaf20628a48d8a741a744dc0ecbfbc49524713eaf (diff)
downloadcoreboot-e9ac9f97e84ea4ceec3f2468f3ca2b5f2c47fbf2.tar.gz
coreboot-e9ac9f97e84ea4ceec3f2468f3ca2b5f2c47fbf2.tar.bz2
coreboot-e9ac9f97e84ea4ceec3f2468f3ca2b5f2c47fbf2.zip
soc/intel: Drop SoC specific DPTF implementation
This patch drops the SoC specific implementation as DPTF driver can now fillin those platform specific data using SoC specific macros. Signed-off-by: Subrata Banik <subratabanik@google.com> Change-Id: If65976f15374ba2410b537b1646ce466ba02969b Reviewed-on: https://review.coreboot.org/c/coreboot/+/71112 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Kapil Porwal <kapilporwal@google.com>
Diffstat (limited to 'src/soc/intel/jasperlake/dptf.c')
-rw-r--r--src/soc/intel/jasperlake/dptf.c19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/soc/intel/jasperlake/dptf.c b/src/soc/intel/jasperlake/dptf.c
deleted file mode 100644
index 5656fd7509e3..000000000000
--- a/src/soc/intel/jasperlake/dptf.c
+++ /dev/null
@@ -1,19 +0,0 @@
-/* SPDX-License-Identifier: GPL-2.0-only */
-
-#include <drivers/intel/dptf/dptf.h>
-#include <soc/dptf.h>
-
-static const struct dptf_platform_info jsl_dptf_platform_info = {
- .use_eisa_hids = CONFIG(DPTF_USE_EISA_HID),
- /* _HID for the toplevel DPTF device, typically \_SB.DPTF */
- .dptf_device_hid = DPTF_DPTF_DEVICE,
- /* _HID for Intel DPTF Generic Device (these require PTYP as well) */
- .generic_hid = DPTF_GEN_DEVICE,
- /* _HID for Intel DPTF Fan Device */
- .fan_hid = DPTF_FAN_DEVICE,
-};
-
-const struct dptf_platform_info *soc_get_dptf_platform_info(void)
-{
- return &jsl_dptf_platform_info;
-}