blob: 3392a3c990ddf1c04081b298df471556c38cdca3 [file] [log] [blame]
Angel Pons08b52802020-04-05 13:22:20 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Hannah Williams5e83e8b2018-02-09 18:35:17 -08002
Furquan Shaikh76cedd22020-05-02 10:24:23 -07003#include <acpi/acpi.h>
Marco Chen07c80b22020-12-21 22:10:21 +08004#include <baseboard/cbi_ssfc.h>
Hannah Williams5e83e8b2018-02-09 18:35:17 -08005#include <baseboard/variants.h>
6#include <boardid.h>
Karthikeyan Ramasubramanian02592ec2019-06-06 15:57:47 -06007#include <bootstate.h>
Hannah Williams5e83e8b2018-02-09 18:35:17 -08008#include <console/console.h>
9#include <device/device.h>
Furquan Shaikh617fcf32018-08-08 13:30:44 -070010#include <device/pci_def.h>
11#include <device/pci_ops.h>
Marco Chen07c80b22020-12-21 22:10:21 +080012#include <drivers/i2c/generic/chip.h>
Furquan Shaikh367956d52018-07-20 13:50:16 -070013#include <ec/google/chromeec/ec.h>
Hannah Williams5e83e8b2018-02-09 18:35:17 -080014#include <ec/ec.h>
Karthikeyan Ramasubramanian02592ec2019-06-06 15:57:47 -060015#include <intelblocks/xhci.h>
Hannah Williams5e83e8b2018-02-09 18:35:17 -080016#include <nhlt.h>
Furquan Shaikh367956d52018-07-20 13:50:16 -070017#include <smbios.h>
Aaron Durbin2fcc0342018-07-25 08:06:21 -060018#include <soc/cpu.h>
Hannah Williams5e83e8b2018-02-09 18:35:17 -080019#include <soc/gpio.h>
20#include <soc/nhlt.h>
Furquan Shaikh617fcf32018-08-08 13:30:44 -070021#include <soc/pci_devs.h>
22#include <stdint.h>
Hannah Williams5e83e8b2018-02-09 18:35:17 -080023#include <variant/ec.h>
24#include <variant/gpio.h>
25
Marco Chen07c80b22020-12-21 22:10:21 +080026extern struct chip_operations drivers_i2c_generic_ops;
Eric Lai598f2ba2021-04-15 11:43:02 +080027extern struct chip_operations drivers_i2c_cs42l42_ops;
Marco Chen07c80b22020-12-21 22:10:21 +080028extern struct chip_operations drivers_i2c_da7219_ops;
29
Furquan Shaikh617fcf32018-08-08 13:30:44 -070030static bool is_cnvi_held_in_reset(void)
31{
Kyösti Mälkkie7377552018-06-21 16:20:55 +030032 struct device *dev = pcidev_path_on_root(PCH_DEVFN_CNVI);
Furquan Shaikh617fcf32018-08-08 13:30:44 -070033 uint32_t reg = pci_read_config32(dev, PCI_VENDOR_ID);
34
35 /*
36 * If vendor/device ID for CNVi reads as 0xffffffff, then it is safe to
37 * assume that it is being held in reset.
38 */
39 if (reg == 0xffffffff)
40 return true;
41
42 return false;
43}
44
Furquan Shaikh65428992018-08-09 10:11:26 -070045static void disable_wifi_wake(void)
46{
47 static const struct pad_config wifi_wake_gpio[] = {
48 PAD_NC(GPIO_119, UP_20K),
49 };
50
51 gpio_configure_pads(wifi_wake_gpio, ARRAY_SIZE(wifi_wake_gpio));
52}
53
Marco Chen07c80b22020-12-21 22:10:21 +080054/*
55 * GPIO_137 for two audio codecs right now has the different configuration so
56 * if SSFC indicates that codec is different than default one then GPIO_137
57 * needs to be overridden for the corresponding second source.
58 */
59static void gpio_modification_by_ssfc(struct pad_config *table, size_t num)
60{
61 /* For RT5682, GPIO 137 should be set as EDGE_BOTH. */
62 const struct pad_config rt5682_gpio_137 = PAD_CFG_GPI_APIC_IOS(GPIO_137,
63 NONE, DEEP, EDGE_BOTH, INVERT, HIZCRx1, DISPUPD);
Paul Huang0f0edee2021-12-03 10:17:15 +080064 enum ssfc_audio_codec codec = ssfc_get_audio_codec();
Marco Chen07c80b22020-12-21 22:10:21 +080065
66 if (table == NULL || num == 0)
67 return;
68
69 /*
70 * Currently we only have the case of RT5682 as the second source. And
71 * in case of Ampton which used RT5682 as the default source, it didn't
Martin Roth50863da2021-10-01 14:37:30 -060072 * provide override_table right now so it will be returned earlier since
Marco Chen07c80b22020-12-21 22:10:21 +080073 * table above is NULL.
74 */
Paul Huang0f0edee2021-12-03 10:17:15 +080075 if ((codec != SSFC_AUDIO_CODEC_RT5682) &&
76 (codec != SSFC_AUDIO_CODEC_RT5682_VS))
Marco Chen07c80b22020-12-21 22:10:21 +080077 return;
78
79 while (num--) {
80 if (table->pad == GPIO_137) {
81 *table = rt5682_gpio_137;
82 printk(BIOS_INFO,
83 "Configure GPIO 137 based on SSFC.\n");
84 return;
85 }
86
87 table++;
88 }
89}
90
Hannah Williams5e83e8b2018-02-09 18:35:17 -080091static void mainboard_init(void *chip_info)
92{
93 int boardid;
Furquan Shaikh06a41f12018-07-25 14:30:59 -070094 const struct pad_config *base_pads;
95 const struct pad_config *override_pads;
96 size_t base_num, override_num;
Hannah Williams5e83e8b2018-02-09 18:35:17 -080097
98 boardid = board_id();
99 printk(BIOS_INFO, "Board ID: %d\n", boardid);
100
Matt DeVillier52a22fa2022-09-23 13:24:39 -0500101 base_pads = baseboard_gpio_table(&base_num);
Furquan Shaikh06a41f12018-07-25 14:30:59 -0700102 override_pads = variant_override_gpio_table(&override_num);
Marco Chen07c80b22020-12-21 22:10:21 +0800103 gpio_modification_by_ssfc((struct pad_config *)override_pads,
104 override_num);
Furquan Shaikh06a41f12018-07-25 14:30:59 -0700105
106 gpio_configure_pads_with_override(base_pads, base_num,
107 override_pads, override_num);
Hannah Williams5e83e8b2018-02-09 18:35:17 -0800108
Furquan Shaikh65428992018-08-09 10:11:26 -0700109 if (!is_cnvi_held_in_reset())
110 disable_wifi_wake();
111
Hannah Williams5e83e8b2018-02-09 18:35:17 -0800112 mainboard_ec_init();
113}
114
115static unsigned long mainboard_write_acpi_tables(
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700116 const struct device *device, unsigned long current, acpi_rsdp_t *rsdp)
Hannah Williams5e83e8b2018-02-09 18:35:17 -0800117{
118 uintptr_t start_addr;
119 uintptr_t end_addr;
120 struct nhlt *nhlt;
121
122 start_addr = current;
123
124 nhlt = nhlt_init();
125
126 if (nhlt == NULL)
127 return start_addr;
128
129 variant_nhlt_init(nhlt);
130
131 end_addr = nhlt_soc_serialize(nhlt, start_addr);
132
133 if (end_addr != start_addr)
134 acpi_add_table(rsdp, (void *)start_addr);
135
136 return end_addr;
137}
138
Elyes HAOUASd129d432018-05-04 20:23:33 +0200139static void mainboard_enable(struct device *dev)
Hannah Williams5e83e8b2018-02-09 18:35:17 -0800140{
141 dev->ops->write_acpi_tables = mainboard_write_acpi_tables;
Hannah Williams5e83e8b2018-02-09 18:35:17 -0800142}
143
144struct chip_operations mainboard_ops = {
145 .init = mainboard_init,
146 .enable_dev = mainboard_enable,
147};
Furquan Shaikh367956d52018-07-20 13:50:16 -0700148
Aaron Durbin2fcc0342018-07-25 08:06:21 -0600149void __weak variant_update_devtree(struct device *dev)
150{
151 /* Place holder for common updates. */
152}
153
Furquan Shaikh617fcf32018-08-08 13:30:44 -0700154/*
155 * Check if CNVi PCI device is released from reset. If yes, then the system is
156 * booting with CNVi module. In this case, the PCIe device for WiFi needs to
157 * be disabled. If CNVi device is held in reset, then disable it.
158 */
159static void wifi_device_update(void)
160{
161 struct device *dev;
162 unsigned int devfn;
163
164 if (is_cnvi_held_in_reset())
165 devfn = PCH_DEVFN_CNVI;
166 else
167 devfn = PCH_DEVFN_PCIE1;
168
Kyösti Mälkkie7377552018-06-21 16:20:55 +0300169 dev = pcidev_path_on_root(devfn);
John Zhaoa2c0cf52018-08-20 10:27:39 -0700170 if (dev)
171 dev->enabled = 0;
Furquan Shaikh617fcf32018-08-08 13:30:44 -0700172}
173
Marco Chen07c80b22020-12-21 22:10:21 +0800174/*
175 * Base on SSFC value in the CBI from EC to enable one of audio codec sources in
176 * the device tree.
177 */
178static void audio_codec_device_update(void)
179{
180 struct device *audio_dev = NULL;
181 struct bus *audio_i2c_bus =
Arthur Heymans7fcd4d52023-08-24 15:12:19 +0200182 pcidev_path_on_root(PCH_DEVFN_I2C5)->downstream;
Marco Chen07c80b22020-12-21 22:10:21 +0800183 enum ssfc_audio_codec codec = ssfc_get_audio_codec();
184
185 while ((audio_dev = dev_bus_each_child(audio_i2c_bus, audio_dev))) {
186 if (audio_dev->chip_info == NULL)
187 continue;
188
189 if ((audio_dev->chip_ops == &drivers_i2c_da7219_ops) &&
190 (codec == SSFC_AUDIO_CODEC_DA7219)) {
191 printk(BIOS_INFO, "enable DA7219.\n");
192 continue;
193 }
194
Paul Huang0f0edee2021-12-03 10:17:15 +0800195 if (audio_dev->chip_ops == &drivers_i2c_generic_ops) {
Marco Chen07c80b22020-12-21 22:10:21 +0800196 struct drivers_i2c_generic_config *cfg =
197 audio_dev->chip_info;
198
Paul Huang0f0edee2021-12-03 10:17:15 +0800199 if ((cfg != NULL && !strcmp(cfg->hid, "10EC5682")) &&
200 (codec == SSFC_AUDIO_CODEC_RT5682)) {
201 printk(BIOS_INFO, "enable RT5682 VD.\n");
202 continue;
203 }
204
205 if ((cfg != NULL && !strcmp(cfg->hid, "10EC5682")) &&
206 (codec == SSFC_AUDIO_CODEC_RT5682_VS)) {
207 cfg->hid = "RTL5682";
208 printk(BIOS_INFO, "enable RT5682 VS.\n");
209 continue;
210 }
211
212 if ((cfg != NULL && !strcmp(cfg->hid, "RTL5682")) &&
213 (codec == SSFC_AUDIO_CODEC_RT5682_VS)) {
214 printk(BIOS_INFO, "enable RT5682 VS.\n");
Marco Chen07c80b22020-12-21 22:10:21 +0800215 continue;
216 }
217 }
Eric Lai598f2ba2021-04-15 11:43:02 +0800218
219 if ((audio_dev->chip_ops == &drivers_i2c_cs42l42_ops) &&
220 (codec == SSFC_AUDIO_CODEC_CS42L42)) {
221 printk(BIOS_INFO, "enable CS42L42.\n");
222 continue;
223 }
224
Eric Lai5c633dc2021-04-14 11:43:17 +0800225 printk(BIOS_INFO, "%s has been disabled\n", audio_dev->chip_ops->name);
Marco Chen07c80b22020-12-21 22:10:21 +0800226 audio_dev->enabled = 0;
227 }
228}
229
Aaron Durbin2fcc0342018-07-25 08:06:21 -0600230void mainboard_devtree_update(struct device *dev)
231{
Furquan Shaikh617fcf32018-08-08 13:30:44 -0700232 /* Apply common devtree updates. */
233 wifi_device_update();
Marco Chen07c80b22020-12-21 22:10:21 +0800234 audio_codec_device_update();
Furquan Shaikh617fcf32018-08-08 13:30:44 -0700235
Aaron Durbin2fcc0342018-07-25 08:06:21 -0600236 /* Defer to variant for board-specific updates. */
237 variant_update_devtree(dev);
238}
Wisley Chenbd3568a2018-11-06 17:38:57 +0800239
Karthikeyan Ramasubramanian02592ec2019-06-06 15:57:47 -0600240bool __weak variant_ext_usb_status(unsigned int port_type, unsigned int port_id)
241{
242 /* All externally visible USB ports are present */
243 return true;
244}
245
246static void disable_unused_devices(void *unused)
247{
248 usb_xhci_disable_unused(variant_ext_usb_status);
249}
250
251BOOT_STATE_INIT_ENTRY(BS_DEV_INIT, BS_ON_EXIT, disable_unused_devices, NULL);