blob: 6ba69a36659ae7119aca0b9f30121b84392e8243 [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>
Aaron Durbin64031672018-04-21 14:45:32 -060017#include <compiler.h>
Marc Jones2d79f162017-05-22 21:35:16 -060018#include <console/console.h>
19#include <device/device.h>
20#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>
Martin Roth6c623ca2017-11-16 22:14:53 -070030#include <variant/ec.h>
Marc Jones067031e2017-11-02 11:36:53 -060031#include <variant/thermal.h>
Marc Jones0a15ed52017-06-22 22:22:20 -060032#include <vendorcode/google/chromeos/chromeos.h>
Marc Jones2d79f162017-05-22 21:35:16 -060033
34/***********************************************************
35 * These arrays set up the FCH PCI_INTR registers 0xC00/0xC01.
36 * This table is responsible for physically routing the PIC and
37 * IOAPIC IRQs to the different PCI devices on the system. It
38 * is read and written via registers 0xC00/0xC01 as an
39 * Index/Data pair. These values are chipset and mainboard
40 * dependent and should be updated accordingly.
41 *
42 * These values are used by the PCI configuration space,
43 * MP Tables. TODO: Make ACPI use these values too.
44 */
Martin Roth6c14cd32018-01-11 16:25:28 -080045
Martin Roth6c14cd32018-01-11 16:25:28 -080046const u8 mainboard_picr_data[] = {
47 [0x00] = 0x03, 0x04, 0x05, 0x07, 0x0B, 0x1F, 0x1F, 0x1F,
48 [0x08] = 0xFA, 0xF1, 0x00, 0x00, 0x1F, 0x1F, 0x1F, 0x1F,
Richard Spiegel8f825e02018-02-12 08:36:10 -070049 [0x10] = 0x09, 0x1F, 0x1F, 0x03, 0x1F, 0x1F, 0x1F, 0x03,
Martin Roth6c14cd32018-01-11 16:25:28 -080050 [0x18] = 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
51 [0x20] = 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x00, 0x00,
52 [0x28] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
53 [0x30] = 0x05, 0x04, 0x05, 0x04, 0x04, 0x05, 0x04, 0x05,
54 [0x38] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Richard Spiegel8f825e02018-02-12 08:36:10 -070055 [0x40] = 0x04, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
Martin Roth6c14cd32018-01-11 16:25:28 -080056 [0x48] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
57 [0x50] = 0x03, 0x04, 0x05, 0x07, 0x1F, 0x1F, 0x1F, 0x1F,
58 [0x58] = 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F,
59 [0x60] = 0x1F, 0x1F, 0x07, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F,
60 [0x68] = 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F,
61 [0x70] = 0x03, 0x0F, 0x06, 0x0E, 0x0A, 0x0B, 0x1F, 0x1F,
62 [0x78] = 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F,
63};
Marc Jones2d79f162017-05-22 21:35:16 -060064
Martin Roth6c14cd32018-01-11 16:25:28 -080065const u8 mainboard_intr_data[] = {
66 [0x00] = 0x10, 0x11, 0x12, 0x13, 0x14, 0x1F, 0x16, 0x17,
67 [0x08] = 0x00, 0x00, 0x00, 0x00, 0x1F, 0x1F, 0x1F, 0x1F,
68 [0x10] = 0x09, 0x1F, 0x1F, 0x10, 0x1F, 0x1F, 0x1F, 0x10,
69 [0x18] = 0x1F, 0x1F, 0x1F, 0x00, 0x00, 0x00, 0x00, 0x00,
70 [0x20] = 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x1F, 0x00, 0x00,
71 [0x28] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
72 [0x30] = 0x12, 0x11, 0x12, 0x11, 0x12, 0x11, 0x12, 0x00,
73 [0x38] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
74 [0x40] = 0x11, 0x13, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
75 [0x48] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
76 [0x50] = 0x1F, 0x1F, 0x1F, 0x1F, 0x00, 0x00, 0x00, 0x00,
77 [0x58] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
78 [0x60] = 0x1F, 0x1F, 0x07, 0x00, 0x00, 0x00, 0x00, 0x00,
79 [0x68] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
80 [0x70] = 0x03, 0x0F, 0x06, 0x0E, 0x0A, 0x0B, 0x1F, 0x1F,
81 [0x78] = 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00, 0x00,
82};
Richard Spiegel9dc56002017-12-18 16:25:42 -070083
84/*
85 * This table defines the index into the picr/intr_data tables for each
86 * device. Any enabled device and slot that uses hardware interrupts should
87 * have an entry in this table to define its index into the FCH PCI_INTR
88 * register 0xC00/0xC01. This index will define the interrupt that it should
89 * use. Putting PIRQ_A into the PIN A index for a device will tell that
90 * device to use PIC IRQ 10 if it uses PIN A for its hardware INT.
91 */
92static const struct pirq_struct mainboard_pirq_data[] = {
93 { PCIE0_DEVFN, { PIRQ_A, PIRQ_B, PIRQ_C, PIRQ_D } },
94 { PCIE1_DEVFN, { PIRQ_B, PIRQ_C, PIRQ_D, PIRQ_A } },
95 { PCIE2_DEVFN, { PIRQ_C, PIRQ_D, PIRQ_A, PIRQ_B } },
96 { PCIE3_DEVFN, { PIRQ_D, PIRQ_A, PIRQ_B, PIRQ_C } },
97 { PCIE4_DEVFN, { PIRQ_A, PIRQ_B, PIRQ_C, PIRQ_D } },
98 { HDA0_DEVFN, { PIRQ_NC, PIRQ_HDA, PIRQ_NC, PIRQ_NC } },
99 { SD_DEVFN, { PIRQ_SD, PIRQ_NC, PIRQ_NC, PIRQ_NC } },
100 { SMBUS_DEVFN, { PIRQ_SMBUS, PIRQ_NC, PIRQ_NC, PIRQ_NC } },
101 { SATA_DEVFN, { PIRQ_SATA, PIRQ_NC, PIRQ_NC, PIRQ_NC } },
102 { EHCI1_DEVFN, { PIRQ_EHCI, PIRQ_NC, PIRQ_NC, PIRQ_NC } },
103 { XHCI_DEVFN, { PIRQ_XHCI, PIRQ_NC, PIRQ_NC, PIRQ_NC } },
104};
105
Marc Jones2d79f162017-05-22 21:35:16 -0600106/* PIRQ Setup */
107static void pirq_setup(void)
108{
Richard Spiegel9dc56002017-12-18 16:25:42 -0700109 pirq_data_ptr = mainboard_pirq_data;
110 pirq_data_size = ARRAY_SIZE(mainboard_pirq_data);
Marc Jones2d79f162017-05-22 21:35:16 -0600111 intr_data_ptr = mainboard_intr_data;
112 picr_data_ptr = mainboard_picr_data;
113}
114
Marc Jones9ad593b2017-06-22 22:19:55 -0600115static void mainboard_init(void *chip_info)
116{
Marc Jonesb6ac3a22017-10-05 21:57:33 -0600117 const struct sci_source *gpes;
118 size_t num;
Marc Jones71f7f0a2017-11-21 23:29:55 -0700119 int boardid = board_id();
Justin TerAvest3fe3f042018-02-14 19:10:15 -0700120 size_t num_gpios;
Richard Spiegel6fcb9b02018-04-18 08:06:33 -0700121 const struct soc_amd_gpio *gpios;
Marc Jones71f7f0a2017-11-21 23:29:55 -0700122
123 printk(BIOS_INFO, "Board ID: %d\n", boardid);
Marc Jonesb6ac3a22017-10-05 21:57:33 -0600124
Marc Jones9ad593b2017-06-22 22:19:55 -0600125 mainboard_ec_init();
Marc Jonesb6ac3a22017-10-05 21:57:33 -0600126
Justin TerAvest3fe3f042018-02-14 19:10:15 -0700127 gpios = variant_gpio_table(&num_gpios);
128 sb_program_gpios(gpios, num_gpios);
129
Richard Spiegel2db06bb2018-04-20 16:50:12 -0700130 /*
131 * Some platforms use SCI not generated by a GPIO pin (event above 23).
132 * For these boards, gpe_configure_sci() is still needed, but all GPIO
133 * generated events (23-0) must be removed from gpe_table[].
134 * For boards that only have GPIO generated events, table gpe_table[]
135 * must be removed, and get_gpe_table() should return NULL.
136 */
Marc Jonesb6ac3a22017-10-05 21:57:33 -0600137 gpes = get_gpe_table(&num);
Richard Spiegel2db06bb2018-04-20 16:50:12 -0700138 if (gpes != NULL)
139 gpe_configure_sci(gpes, num);
Martin Roth6c14cd32018-01-11 16:25:28 -0800140
Daniel Kurtzf5e37752018-02-01 15:58:40 -0700141 /* Initialize i2c busses that were not initialized in bootblock */
142 i2c_soc_init();
143
Martin Roth6c14cd32018-01-11 16:25:28 -0800144 /* Set GenIntDisable so that GPIO 90 is configured as a GPIO. */
Martin Rothb250b232018-06-02 21:30:21 -0600145 pm_write8(PM_PCIB_CFG, pm_read8(PM_PCIB_CFG) | PM_GENINT_DISABLE);
Marc Jones9ad593b2017-06-22 22:19:55 -0600146}
Marc Jones2d79f162017-05-22 21:35:16 -0600147
148/*************************************************
Marshall Dawsonbeb12882017-05-23 18:57:47 -0600149 * Dedicated mainboard function
Marc Jones2d79f162017-05-22 21:35:16 -0600150 *************************************************/
Elyes HAOUASd129d432018-05-04 20:23:33 +0200151static void kahlee_enable(struct device *dev)
Marc Jones2d79f162017-05-22 21:35:16 -0600152{
153 printk(BIOS_INFO, "Mainboard "
154 CONFIG_MAINBOARD_PART_NUMBER " Enable.\n");
155
156 /* Initialize the PIRQ data structures for consumption */
157 pirq_setup();
Marc Jones0a15ed52017-06-22 22:22:20 -0600158
159 dev->ops->acpi_inject_dsdt_generator = chromeos_dsdt_generator;
Marc Jones2d79f162017-05-22 21:35:16 -0600160}
161
Marc Jones067031e2017-11-02 11:36:53 -0600162
163static void mainboard_final(void *chip_info)
164{
165 struct global_nvs_t *gnvs;
166
167 gnvs = cbmem_find(CBMEM_ID_ACPI_GNVS);
168
169 if (gnvs) {
170 gnvs->tmps = CTL_TDP_SENSOR_ID;
171 gnvs->tcrt = CRITICAL_TEMPERATURE;
172 gnvs->tpsv = PASSIVE_TEMPERATURE;
173 }
174}
175
Marc Jonesdf6b51b2017-11-29 20:07:46 -0700176int mainboard_get_xhci_oc_map(uint16_t *map)
177{
178 return variant_get_xhci_oc_map(map);
179}
180
181int mainboard_get_ehci_oc_map(uint16_t *map)
182{
183 return variant_get_ehci_oc_map(map);
184}
185
Marc Jones2d79f162017-05-22 21:35:16 -0600186struct chip_operations mainboard_ops = {
Marc Jones9ad593b2017-06-22 22:19:55 -0600187 .init = mainboard_init,
Marc Jones2d79f162017-05-22 21:35:16 -0600188 .enable_dev = kahlee_enable,
Marc Jones067031e2017-11-02 11:36:53 -0600189 .final = mainboard_final,
Marc Jones2d79f162017-05-22 21:35:16 -0600190};
Simon Glassb5c51772018-03-05 12:18:40 -0700191
192/* Variants may override this function so see definitions in variants/ */
Aaron Durbin64031672018-04-21 14:45:32 -0600193uint8_t __weak variant_board_sku(void)
Simon Glassb5c51772018-03-05 12:18:40 -0700194{
195 return 0;
196}
197
198const char *smbios_mainboard_sku(void)
199{
200 static char sku_str[7]; /* sku{0..255} */
201
202 snprintf(sku_str, sizeof(sku_str), "sku%d", variant_board_sku());
203
204 return sku_str;
205}