blob: e42b8ea098b43b9bba56eac318bea733e6948d1c [file] [log] [blame]
Tarun Tuli537213a2023-03-29 13:18:43 +00001/* SPDX-License-Identifier: GPL-2.0-or-later */
2
3#include <baseboard/variants.h>
4#include <device/pci_ids.h>
5
6const struct cpu_power_limits limits[] = {
7 /* SKU_ID, TDP (Watts), pl1_min, pl1_max, pl2_min, pl2_max, pl4 */
8 /* Following values are for performance config as per document #686872 */
9 { PCI_DID_INTEL_RPL_P_ID_1, 45, 18000, 45000, 115000, 115000, 210000 },
10 { PCI_DID_INTEL_RPL_P_ID_2, 28, 10000, 28000, 64000, 64000, 126000 },
11 { PCI_DID_INTEL_RPL_P_ID_3, 15, 6000, 15000, 55000, 55000, 114000 },
12};
13
14void variant_devtree_update(void)
15{
16 size_t total_entries = ARRAY_SIZE(limits);
17 variant_update_power_limits(limits, total_entries);
18}