blob: d3f8100b5d4bc9e2804cea1304547bd34ee353cf [file] [log] [blame]
Sean Rhodes5da05b62022-01-10 21:58:04 +00001/* SPDX-License-Identifier: GPL-2.0-only */
2
Sean Rhodes7a21e532022-06-07 22:45:20 +01003#include <cpu/intel/turbo.h>
Sean Rhodes5da05b62022-01-10 21:58:04 +00004#include <device/device.h>
5#include <device/pci_def.h>
6#include <option.h>
7#include <types.h>
8#include <variants.h>
9
10#include "soc/intel/apollolake/chip.h"
11
12enum cmos_power_profile get_power_profile(enum cmos_power_profile fallback)
13{
14 const unsigned int power_profile = get_uint_option("power_profile", fallback);
15 return power_profile < NUM_POWER_PROFILES ? power_profile : fallback;
16}
17
18void devtree_update(void)
19{
20 config_t *cfg = config_of_soc();
21
22 struct soc_power_limits_config *soc_conf =
23 &cfg->power_limits_config;
24
25 struct device *nic_dev = pcidev_on_root(0x0c, 0);
26
27 /* Update PL1 & PL2 based on CMOS settings */
28 switch (get_power_profile(PP_POWER_SAVER)) {
29 case PP_POWER_SAVER:
Sean Rhodes7a21e532022-06-07 22:45:20 +010030 disable_turbo();
Sean Rhodes83d34102022-05-24 21:56:45 +010031 soc_conf->tdp_pl1_override = 6;
32 soc_conf->tdp_pl2_override = 10;
33 cfg->tcc_offset = 15;
Sean Rhodes5da05b62022-01-10 21:58:04 +000034 break;
35 case PP_BALANCED:
Sean Rhodes83d34102022-05-24 21:56:45 +010036 soc_conf->tdp_pl1_override = 10;
37 soc_conf->tdp_pl2_override = 15;
38 cfg->tcc_offset = 10;
Sean Rhodes5da05b62022-01-10 21:58:04 +000039 break;
40 case PP_PERFORMANCE:
Sean Rhodes83d34102022-05-24 21:56:45 +010041 soc_conf->tdp_pl1_override = 10;
42 soc_conf->tdp_pl2_override = 20;
43 cfg->tcc_offset = 5;
Sean Rhodes5da05b62022-01-10 21:58:04 +000044 break;
45 }
46
47 /* Enable/Disable Wireless based on CMOS settings */
48 if (get_uint_option("wireless", 1) == 0)
49 nic_dev->enabled = 0;
50
51 /* Enable/Disable Webcam based on CMOS settings */
Sean Rhodes5c0e3d42022-05-20 10:28:39 +010052 cfg->usb2_port[CONFIG_WEBCAM_USB_PORT].enable = get_uint_option("webcam", 1);
Sean Rhodes5da05b62022-01-10 21:58:04 +000053}