summaryrefslogtreecommitdiff
path: root/src/mainboard/google/brox/variants/jubilant/variant.c
blob: c6b26260090e5ec8ba69d4719ee8c0af309f971e (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
/* SPDX-License-Identifier: GPL-2.0-only */

#include <assert.h>
#include <baseboard/variants.h>
#include <chip.h>
#include <device/device.h>
#include <fw_config.h>
#include <sar.h>

void variant_update_soc_chip_config(struct soc_intel_alderlake_config *config)
{
	if (fw_config_probe(FW_CONFIG(WIFI_BT, WIFI_BT_CNVI))) {
		printk(BIOS_INFO, "CNVi bluetooth enabled by fw_config\n");
		config->cnvi_bt_core = true;
		config->cnvi_bt_audio_offload = true;
	} else {
		printk(BIOS_INFO, "CNVi bluetooth disabled by fw_config\n");
		config->cnvi_bt_core = false;
		config->cnvi_bt_audio_offload = false;
	}
}

const char *get_wifi_sar_cbfs_filename(void)
{
	return get_wifi_sar_fw_config_filename(FW_CONFIG_FIELD(WIFI_BT));
}

void variant_devtree_update(void)
{
	struct device *ufs = DEV_PTR(ufs);
	struct device *ish = DEV_PTR(ish);
	struct device *nvme_rp = DEV_PTR(pcie4_0);

	if (fw_config_probe(FW_CONFIG(STORAGE, STORAGE_UNKNOWN))) {
		printk(BIOS_INFO, "fw_config storage is unknown so enable all storage devices.\n");
		return;
	}

	if (!fw_config_probe(FW_CONFIG(STORAGE, STORAGE_NVME))) {
		printk(BIOS_INFO, "NVMe disabled by fw_config.\n");
		nvme_rp->enabled = 0;
	}

	if (!fw_config_probe(FW_CONFIG(STORAGE, STORAGE_UFS))) {
		printk(BIOS_INFO, "UFS disabled by fw_config.\n");
		ufs->enabled = 0;
		ish->enabled = 0;
	}
}