blob: 492167946f880f888cb874c6503c1f77bf50005f [file] [log] [blame]
amanda_hwangb3b47e12018-03-08 11:04:40 +08001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright 2018 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
14 */
15
Shelley Chen467cce42018-03-07 14:22:28 -080016#include <arch/cpu.h>
17#include <assert.h>
18#include <baseboard/variants.h>
Furquan Shaikhf5b7e802018-05-07 14:42:27 -070019#include <cbfs.h>
amanda_hwangb3b47e12018-03-08 11:04:40 +080020#include <chip.h>
Furquan Shaikhf5b7e802018-05-07 14:42:27 -070021#include <commonlib/cbfs_serialized.h>
22#include <compiler.h>
amanda_hwangb3b47e12018-03-08 11:04:40 +080023#include <device/device.h>
Furquan Shaikhc6141b92018-05-10 21:58:39 -070024#include <drivers/intel/gma/opregion.h>
amanda_hwangb3b47e12018-03-08 11:04:40 +080025#include <ec/google/chromeec/ec.h>
Furquan Shaikhe3011452018-05-23 21:27:33 -070026#include <intelblocks/mp_init.h>
Shelley Chen467cce42018-03-07 14:22:28 -080027#include <smbios.h>
28#include <soc/ramstage.h>
29#include <string.h>
amanda_hwang04ccd5f2018-03-16 13:43:52 +080030#include <variant/sku.h>
amanda_hwangb3b47e12018-03-08 11:04:40 +080031
Furquan Shaikhe3011452018-05-23 21:27:33 -070032#define PL2_I7_SKU 44
33#define PL2_DEFAULT 29
34
35static uint32_t get_pl2(void)
36{
37 if (cpuid_eax(1) == CPUID_KABYLAKE_Y0)
38 return PL2_I7_SKU;
39
40 return PL2_DEFAULT;
41}
42
Zhuohao Leef7b59552018-03-17 05:00:49 +080043uint32_t variant_board_sku(void)
amanda_hwangb3b47e12018-03-08 11:04:40 +080044{
Zhuohao Leef7b59552018-03-17 05:00:49 +080045 static uint32_t sku_id = SKU_UNKNOWN;
amanda_hwangb3b47e12018-03-08 11:04:40 +080046 uint32_t id;
Zhuohao Leef7b59552018-03-17 05:00:49 +080047
48 if (sku_id != SKU_UNKNOWN)
amanda_hwangb3b47e12018-03-08 11:04:40 +080049 return sku_id;
50 if (google_chromeec_cbi_get_sku_id(&id))
51 return SKU_UNKNOWN;
52 sku_id = id;
Zhuohao Leef7b59552018-03-17 05:00:49 +080053
amanda_hwangb3b47e12018-03-08 11:04:40 +080054 return sku_id;
55}
56
Furquan Shaikhe3011452018-05-23 21:27:33 -070057/* Override dev tree settings per board */
amanda_hwangb3b47e12018-03-08 11:04:40 +080058void variant_devtree_update(void)
59{
Zhuohao Leef7b59552018-03-17 05:00:49 +080060 uint32_t sku_id = variant_board_sku();
Elyes HAOUASd129d432018-05-04 20:23:33 +020061 struct device *root = SA_DEV_ROOT;
amanda_hwangb3b47e12018-03-08 11:04:40 +080062 config_t *cfg = root->chip_info;
Furquan Shaikhe3011452018-05-23 21:27:33 -070063
64 /* Update PL2 based on SKU. */
65 cfg->tdp_pl2_override = get_pl2();
66
amanda_hwangb3b47e12018-03-08 11:04:40 +080067 switch (sku_id) {
68 case SKU_1_VAYNE:
Amanda Huang7024e662018-04-10 14:09:36 +080069 case SKU_2_VAYNE:
Furquan Shaikhe3011452018-05-23 21:27:33 -070070 /* Disable unused port USB port */
71 cfg->usb2_ports[5].enable = 0;
amanda_hwangb3b47e12018-03-08 11:04:40 +080072 break;
73 default:
74 break;
75 }
76}
Shelley Chen467cce42018-03-07 14:22:28 -080077
78const char *smbios_mainboard_sku(void)
79{
Zhuohao Leef7b59552018-03-17 05:00:49 +080080 static char sku_str[14]; /* sku{0..4294967295} */
Shelley Chen467cce42018-03-07 14:22:28 -080081
Zhuohao Leef7b59552018-03-17 05:00:49 +080082 snprintf(sku_str, sizeof(sku_str), "sku%u", variant_board_sku());
Shelley Chen467cce42018-03-07 14:22:28 -080083
84 return sku_str;
85}
Furquan Shaikhf5b7e802018-05-07 14:42:27 -070086
87#define OEM_UNKNOWN 0xff
88
89/*
90 * Read OEM ID from EC using cbi commands.
91 * Return value:
92 * Success = OEM ID read from EC
93 * Failure = OEM_UNKNOWN (0xff)
94 */
95static uint8_t read_oem_id(void)
96{
97 static uint8_t oem_id = OEM_UNKNOWN;
98 uint32_t id;
99
100 if (oem_id != OEM_UNKNOWN)
101 return oem_id;
102
103 if (google_chromeec_cbi_get_oem_id(&id))
104 return OEM_UNKNOWN;
105
106 if (id > OEM_UNKNOWN) {
107 printk(BIOS_ERR, "%s: OEM ID too big %u!\n", __func__, id);
108 return OEM_UNKNOWN;
109 }
110
111 oem_id = id;
112 printk(BIOS_DEBUG, "%s: OEM ID=%d\n", __func__, oem_id);
113
114 return oem_id;
115}
116
117/* "oem.bin" in cbfs contains array of records using the following structure. */
118struct oem_mapping {
119 uint8_t oem_id;
120 char oem_name[10];
121} __packed;
122
123/* Local buffer to read "oem.bin" */
124static char oem_bin_data[200];
125
126const char *smbios_mainboard_manufacturer(void)
127{
128 uint8_t oem_id = read_oem_id();
129 const struct oem_mapping *oem_entry = (void *)&oem_bin_data;
130 size_t oem_data_size;
131 size_t curr = 0;
132 static const char *manuf;
133
134 if (manuf)
135 return manuf;
136
137 /* If OEM ID cannot be determined, return default manuf string. */
138 if (oem_id == OEM_UNKNOWN)
139 return CONFIG_MAINBOARD_SMBIOS_MANUFACTURER;
140
141 oem_data_size = cbfs_boot_load_file("oem.bin", oem_bin_data,
142 sizeof(oem_bin_data),
143 CBFS_TYPE_RAW);
144
145 while ((curr < oem_data_size) &&
146 ((oem_data_size - curr) >= sizeof(*oem_entry))) {
147 if (oem_id == oem_entry->oem_id) {
148 manuf = oem_entry->oem_name;
149 break;
150 }
151 curr += sizeof(*oem_entry);
152 oem_entry++;
153 }
154
155 if (manuf == NULL)
156 manuf = CONFIG_MAINBOARD_SMBIOS_MANUFACTURER;
157
158 return manuf;
159}
Furquan Shaikhc6141b92018-05-10 21:58:39 -0700160
161const char *mainboard_vbt_filename(void)
162{
163 uint32_t sku_id = variant_board_sku();
164
165 switch (sku_id) {
Ivy Jianfaafbfb2018-05-14 09:38:20 +0800166 case SKU_0_PANTHEON:
167 case SKU_1_PANTHEON:
168 return "vbt-pantheon.bin";
Furquan Shaikhc6141b92018-05-10 21:58:39 -0700169 default:
170 return "vbt.bin";
171 break;
172 }
173}