1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <cpu/intel/turbo.h>
4 #include <device/device.h>
5 #include <device/pci_def.h>
10 #include "soc/intel/apollolake/chip.h"
12 enum cmos_power_profile
get_power_profile(enum cmos_power_profile fallback
)
14 const unsigned int power_profile
= get_uint_option("power_profile", fallback
);
15 return power_profile
< NUM_POWER_PROFILES
? power_profile
: fallback
;
18 void devtree_update(void)
20 config_t
*cfg
= config_of_soc();
22 struct soc_power_limits_config
*soc_conf
=
23 &cfg
->power_limits_config
;
25 struct device
*nic_dev
= pcidev_on_root(0x0c, 0);
27 /* Update PL1 & PL2 based on CMOS settings */
28 switch (get_power_profile(PP_POWER_SAVER
)) {
31 soc_conf
->tdp_pl1_override
= 6;
32 soc_conf
->tdp_pl2_override
= 10;
36 soc_conf
->tdp_pl1_override
= 10;
37 soc_conf
->tdp_pl2_override
= 15;
41 soc_conf
->tdp_pl1_override
= 10;
42 soc_conf
->tdp_pl2_override
= 20;
47 /* Enable/Disable Wireless based on CMOS settings */
48 if (get_uint_option("wireless", 1) == 0)
51 /* Enable/Disable Webcam based on CMOS settings */
52 cfg
->usb2_port
[CONFIG_WEBCAM_USB_PORT
].enable
= get_uint_option("webcam", 1);