blob: 0173064b105465ec7a99ecce3751a93cbdf0ca30 [file] [log] [blame]
Marc Jones2d79f162017-05-22 21:35:16 -06001/*
2 * This file is part of the coreboot project.
3 *
Marshall Dawsonbeb12882017-05-23 18:57:47 -06004 * Copyright (C) 2015-2017 Advanced Micro Devices, Inc.
Marc Jones2d79f162017-05-22 21:35:16 -06005 *
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
Simon Glassb5c51772018-03-05 12:18:40 -070016#include <string.h>
Marc Jones2d79f162017-05-22 21:35:16 -060017#include <console/console.h>
18#include <device/device.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +020019#include <device/mmio.h>
Marc Jones2d79f162017-05-22 21:35:16 -060020#include <arch/acpi.h>
Richard Spiegel0ad74ac2017-12-08 16:53:29 -070021#include <amdblocks/agesawrapper.h>
Richard Spiegel2bbc3dc2017-12-06 16:14:58 -070022#include <amdblocks/amd_pci_util.h>
Marc Jones067031e2017-11-02 11:36:53 -060023#include <cbmem.h>
Martin Rothb77bc6f2017-11-11 14:33:47 -070024#include <baseboard/variants.h>
Marc Jones71f7f0a2017-11-21 23:29:55 -070025#include <boardid.h>
Simon Glassb5c51772018-03-05 12:18:40 -070026#include <smbios.h>
Marc Jones067031e2017-11-02 11:36:53 -060027#include <soc/nvs.h>
Richard Spiegel9dc56002017-12-18 16:25:42 -070028#include <soc/pci_devs.h>
Marc Jonesdf6b51b2017-11-29 20:07:46 -070029#include <soc/southbridge.h>
Marshall Dawson251d3052019-05-02 17:27:57 -060030#include <soc/smi.h>
Marshall Dawson69486ca2019-05-02 12:03:45 -060031#include <amdblocks/acpimmio.h>
Martin Roth6c623ca2017-11-16 22:14:53 -070032#include <variant/ec.h>
Marc Jones067031e2017-11-02 11:36:53 -060033#include <variant/thermal.h>
Marc Jones0a15ed52017-06-22 22:22:20 -060034#include <vendorcode/google/chromeos/chromeos.h>
Marc Jones2d79f162017-05-22 21:35:16 -060035
36/***********************************************************
37 * These arrays set up the FCH PCI_INTR registers 0xC00/0xC01.
38 * This table is responsible for physically routing the PIC and
39 * IOAPIC IRQs to the different PCI devices on the system. It
40 * is read and written via registers 0xC00/0xC01 as an
41 * Index/Data pair. These values are chipset and mainboard
42 * dependent and should be updated accordingly.
43 *
44 * These values are used by the PCI configuration space,
45 * MP Tables. TODO: Make ACPI use these values too.
46 */
Martin Roth6c14cd32018-01-11 16:25:28 -080047
Martin Roth6c14cd32018-01-11 16:25:28 -080048const u8 mainboard_picr_data[] = {
49 [0x00] = 0x03, 0x04, 0x05, 0x07, 0x0B, 0x1F, 0x1F, 0x1F,
50 [0x08] = 0xFA, 0xF1, 0x00, 0x00, 0x1F, 0x1F, 0x1F, 0x1F,
Richard Spiegel8f825e02018-02-12 08:36:10 -070051 [0x10] = 0x09, 0x1F, 0x1F, 0x03, 0x1F, 0x1F, 0x1F, 0x03,
Martin Roth6c14cd32018-01-11 16:25:28 -080052 [0x18] = 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
53 [0x20] = 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x00, 0x00,
54 [0x28] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
55 [0x30] = 0x05, 0x04, 0x05, 0x04, 0x04, 0x05, 0x04, 0x05,
56 [0x38] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Richard Spiegel8f825e02018-02-12 08:36:10 -070057 [0x40] = 0x04, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Martin Roth6c14cd32018-01-11 16:25:28 -080058 [0x48] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
59 [0x50] = 0x03, 0x04, 0x05, 0x07, 0x1F, 0x1F, 0x1F, 0x1F,
60 [0x58] = 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F,
61 [0x60] = 0x1F, 0x1F, 0x07, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F,
62 [0x68] = 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F,
63 [0x70] = 0x03, 0x0F, 0x06, 0x0E, 0x0A, 0x0B, 0x1F, 0x1F,
64 [0x78] = 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F,
65};
Marc Jones2d79f162017-05-22 21:35:16 -060066
Martin Roth6c14cd32018-01-11 16:25:28 -080067const u8 mainboard_intr_data[] = {
68 [0x00] = 0x10, 0x11, 0x12, 0x13, 0x14, 0x1F, 0x16, 0x17,
69 [0x08] = 0x00, 0x00, 0x00, 0x00, 0x1F, 0x1F, 0x1F, 0x1F,
70 [0x10] = 0x09, 0x1F, 0x1F, 0x10, 0x1F, 0x1F, 0x1F, 0x10,
71 [0x18] = 0x1F, 0x1F, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00,
72 [0x20] = 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x00, 0x00,
73 [0x28] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
74 [0x30] = 0x12, 0x11, 0x12, 0x11, 0x12, 0x11, 0x12, 0x00,
75 [0x38] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
76 [0x40] = 0x11, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
77 [0x48] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
78 [0x50] = 0x1F, 0x1F, 0x1F, 0x1F, 0x00, 0x00, 0x00, 0x00,
79 [0x58] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
80 [0x60] = 0x1F, 0x1F, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00,
81 [0x68] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
82 [0x70] = 0x03, 0x0F, 0x06, 0x0E, 0x0A, 0x0B, 0x1F, 0x1F,
83 [0x78] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
84};
Richard Spiegel9dc56002017-12-18 16:25:42 -070085
86/*
87 * This table defines the index into the picr/intr_data tables for each
88 * device. Any enabled device and slot that uses hardware interrupts should
89 * have an entry in this table to define its index into the FCH PCI_INTR
90 * register 0xC00/0xC01. This index will define the interrupt that it should
91 * use. Putting PIRQ_A into the PIN A index for a device will tell that
92 * device to use PIC IRQ 10 if it uses PIN A for its hardware INT.
93 */
94static const struct pirq_struct mainboard_pirq_data[] = {
95 { PCIE0_DEVFN, { PIRQ_A, PIRQ_B, PIRQ_C, PIRQ_D } },
96 { PCIE1_DEVFN, { PIRQ_B, PIRQ_C, PIRQ_D, PIRQ_A } },
97 { PCIE2_DEVFN, { PIRQ_C, PIRQ_D, PIRQ_A, PIRQ_B } },
98 { PCIE3_DEVFN, { PIRQ_D, PIRQ_A, PIRQ_B, PIRQ_C } },
99 { PCIE4_DEVFN, { PIRQ_A, PIRQ_B, PIRQ_C, PIRQ_D } },
100 { HDA0_DEVFN, { PIRQ_NC, PIRQ_HDA, PIRQ_NC, PIRQ_NC } },
101 { SD_DEVFN, { PIRQ_SD, PIRQ_NC, PIRQ_NC, PIRQ_NC } },
102 { SMBUS_DEVFN, { PIRQ_SMBUS, PIRQ_NC, PIRQ_NC, PIRQ_NC } },
103 { SATA_DEVFN, { PIRQ_SATA, PIRQ_NC, PIRQ_NC, PIRQ_NC } },
104 { EHCI1_DEVFN, { PIRQ_EHCI, PIRQ_NC, PIRQ_NC, PIRQ_NC } },
105 { XHCI_DEVFN, { PIRQ_XHCI, PIRQ_NC, PIRQ_NC, PIRQ_NC } },
106};
107
Marc Jones2d79f162017-05-22 21:35:16 -0600108/* PIRQ Setup */
109static void pirq_setup(void)
110{
Richard Spiegel9dc56002017-12-18 16:25:42 -0700111 pirq_data_ptr = mainboard_pirq_data;
112 pirq_data_size = ARRAY_SIZE(mainboard_pirq_data);
Marc Jones2d79f162017-05-22 21:35:16 -0600113 intr_data_ptr = mainboard_intr_data;
114 picr_data_ptr = mainboard_picr_data;
115}
116
Marc Jones9ad593b2017-06-22 22:19:55 -0600117static void mainboard_init(void *chip_info)
118{
Marc Jonesb6ac3a22017-10-05 21:57:33 -0600119 const struct sci_source *gpes;
120 size_t num;
Marc Jones71f7f0a2017-11-21 23:29:55 -0700121 int boardid = board_id();
Justin TerAvest3fe3f042018-02-14 19:10:15 -0700122 size_t num_gpios;
Richard Spiegel6fcb9b02018-04-18 08:06:33 -0700123 const struct soc_amd_gpio *gpios;
Marc Jones71f7f0a2017-11-21 23:29:55 -0700124
125 printk(BIOS_INFO, "Board ID: %d\n", boardid);
Marc Jonesb6ac3a22017-10-05 21:57:33 -0600126
Marc Jones9ad593b2017-06-22 22:19:55 -0600127 mainboard_ec_init();
Marc Jonesb6ac3a22017-10-05 21:57:33 -0600128
Justin TerAvest3fe3f042018-02-14 19:10:15 -0700129 gpios = variant_gpio_table(&num_gpios);
Marshall Dawson251d3052019-05-02 17:27:57 -0600130 program_gpios(gpios, num_gpios);
Justin TerAvest3fe3f042018-02-14 19:10:15 -0700131
Richard Spiegel2db06bb2018-04-20 16:50:12 -0700132 /*
133 * Some platforms use SCI not generated by a GPIO pin (event above 23).
134 * For these boards, gpe_configure_sci() is still needed, but all GPIO
135 * generated events (23-0) must be removed from gpe_table[].
136 * For boards that only have GPIO generated events, table gpe_table[]
137 * must be removed, and get_gpe_table() should return NULL.
138 */
Marc Jonesb6ac3a22017-10-05 21:57:33 -0600139 gpes = get_gpe_table(&num);
Richard Spiegel2db06bb2018-04-20 16:50:12 -0700140 if (gpes != NULL)
141 gpe_configure_sci(gpes, num);
Martin Roth6c14cd32018-01-11 16:25:28 -0800142
Daniel Kurtzf5e37752018-02-01 15:58:40 -0700143 /* Initialize i2c busses that were not initialized in bootblock */
144 i2c_soc_init();
145
Martin Roth6c14cd32018-01-11 16:25:28 -0800146 /* Set GenIntDisable so that GPIO 90 is configured as a GPIO. */
Martin Rothb250b232018-06-02 21:30:21 -0600147 pm_write8(PM_PCIB_CFG, pm_read8(PM_PCIB_CFG) | PM_GENINT_DISABLE);
Simon Glass4f160492018-05-23 15:34:04 -0600148
149 /* Set low-power mode for BayHub eMMC bridge's PCIe clock. */
Julius Werner55009af2019-12-02 22:03:27 -0800150 clrsetbits32((uint32_t *)(ACPIMMIO_MISC_BASE + GPP_CLK_CNTRL),
151 GPP_CLK2_REQ_MAP_MASK,
152 GPP_CLK2_REQ_MAP_CLK_REQ2 <<
153 GPP_CLK2_REQ_MAP_SHIFT);
Simon Glasse5771682018-07-11 15:51:27 -0600154
155 /* Same for the WiFi */
Julius Werner55009af2019-12-02 22:03:27 -0800156 clrsetbits32((uint32_t *)(ACPIMMIO_MISC_BASE + GPP_CLK_CNTRL),
157 GPP_CLK0_REQ_MAP_MASK,
158 GPP_CLK0_REQ_MAP_CLK_REQ0 <<
159 GPP_CLK0_REQ_MAP_SHIFT);
Marc Jones9ad593b2017-06-22 22:19:55 -0600160}
Marc Jones2d79f162017-05-22 21:35:16 -0600161
162/*************************************************
Marshall Dawsonbeb12882017-05-23 18:57:47 -0600163 * Dedicated mainboard function
Marc Jones2d79f162017-05-22 21:35:16 -0600164 *************************************************/
Elyes HAOUASd129d432018-05-04 20:23:33 +0200165static void kahlee_enable(struct device *dev)
Marc Jones2d79f162017-05-22 21:35:16 -0600166{
167 printk(BIOS_INFO, "Mainboard "
168 CONFIG_MAINBOARD_PART_NUMBER " Enable.\n");
169
170 /* Initialize the PIRQ data structures for consumption */
171 pirq_setup();
Marc Jones0a15ed52017-06-22 22:22:20 -0600172
173 dev->ops->acpi_inject_dsdt_generator = chromeos_dsdt_generator;
Marc Jones2d79f162017-05-22 21:35:16 -0600174}
175
Marc Jones067031e2017-11-02 11:36:53 -0600176
177static void mainboard_final(void *chip_info)
178{
179 struct global_nvs_t *gnvs;
180
181 gnvs = cbmem_find(CBMEM_ID_ACPI_GNVS);
182
183 if (gnvs) {
184 gnvs->tmps = CTL_TDP_SENSOR_ID;
185 gnvs->tcrt = CRITICAL_TEMPERATURE;
186 gnvs->tpsv = PASSIVE_TEMPERATURE;
187 }
188}
189
Marc Jonesdf6b51b2017-11-29 20:07:46 -0700190int mainboard_get_xhci_oc_map(uint16_t *map)
191{
192 return variant_get_xhci_oc_map(map);
193}
194
195int mainboard_get_ehci_oc_map(uint16_t *map)
196{
197 return variant_get_ehci_oc_map(map);
198}
199
Marc Jonesf3dc6592018-07-14 17:27:35 -0600200void mainboard_suspend_resume(void)
201{
202 variant_mainboard_suspend_resume();
203}
Marc Jonesf3dc6592018-07-14 17:27:35 -0600204
Marc Jones2d79f162017-05-22 21:35:16 -0600205struct chip_operations mainboard_ops = {
Marc Jones9ad593b2017-06-22 22:19:55 -0600206 .init = mainboard_init,
Marc Jones2d79f162017-05-22 21:35:16 -0600207 .enable_dev = kahlee_enable,
Marc Jones067031e2017-11-02 11:36:53 -0600208 .final = mainboard_final,
Marc Jones2d79f162017-05-22 21:35:16 -0600209};
Simon Glassb5c51772018-03-05 12:18:40 -0700210
Marc Jonesf3dc6592018-07-14 17:27:35 -0600211/* Variants may override these functions so see definitions in variants/ */
Aaron Durbin64031672018-04-21 14:45:32 -0600212uint8_t __weak variant_board_sku(void)
Simon Glassb5c51772018-03-05 12:18:40 -0700213{
214 return 0;
215}
216
Marc Jonesf3dc6592018-07-14 17:27:35 -0600217void __weak variant_mainboard_suspend_resume(void)
218{
219}
Marc Jonesf3dc6592018-07-14 17:27:35 -0600220
Nico Huberebd8a4f2017-11-01 09:49:16 +0100221const char *smbios_system_sku(void)
Simon Glassb5c51772018-03-05 12:18:40 -0700222{
223 static char sku_str[7]; /* sku{0..255} */
224
225 snprintf(sku_str, sizeof(sku_str), "sku%d", variant_board_sku());
226
227 return sku_str;
228}