blob: 3daff1372baa98bbcebb434c79b579a954a3e894 [file] [log] [blame]
Andrey Petrov2e410752020-03-20 12:08:32 -07001/* SPDX-License-Identifier: GPL-2.0-only */
Andrey Petrov2e410752020-03-20 12:08:32 -07002
3#include <arch/ioapic.h>
Andrey Petrov2e410752020-03-20 12:08:32 -07004#include <console/console.h>
Marc Jones8b522db2020-10-12 11:58:46 -06005#include <console/debug.h>
Andrey Petrov2e410752020-03-20 12:08:32 -07006#include <cpu/x86/lapic.h>
7#include <device/pci.h>
Subrata Banik1366e442020-09-29 13:55:50 +05308#include <intelblocks/lpc_lib.h>
Andrey Petrov4e48ac02020-04-30 14:08:19 -07009#include <intelblocks/p2sb.h>
Jonathan Zhang3172f982020-05-28 17:53:48 -070010#include <soc/acpi.h>
Marc Jones1f500842020-10-15 14:32:51 -060011#include <soc/chip_common.h>
Andrey Petrov8670e822020-03-30 12:25:06 -070012#include <soc/cpu.h>
Andrey Petrov2e410752020-03-20 12:08:32 -070013#include <soc/ramstage.h>
Jonathan Zhang7919d612020-04-02 17:27:54 -070014#include <soc/soc_util.h>
Marc Jones5851f9d2020-11-02 15:30:10 -070015#include <soc/util.h>
Jonathan Zhang7919d612020-04-02 17:27:54 -070016
Marc Jonesb9365ef2020-10-11 15:00:36 -060017/* UPD parameters to be initialized before SiliconInit */
Andrey Petrov2e410752020-03-20 12:08:32 -070018void platform_fsp_silicon_init_params_cb(FSPS_UPD *silupd)
19{
Marc Jonesb9365ef2020-10-11 15:00:36 -060020 mainboard_silicon_init_params(silupd);
Andrey Petrov2e410752020-03-20 12:08:32 -070021}
22
Jonathan Zhang1ba42a92020-09-21 17:14:44 -070023#if CONFIG(HAVE_ACPI_TABLES)
24static const char *soc_acpi_name(const struct device *dev)
25{
26 if (dev->path.type == DEVICE_PATH_DOMAIN)
27 return "PC00";
28 return NULL;
29}
30#endif
31
Andrey Petrov2e410752020-03-20 12:08:32 -070032static struct device_operations pci_domain_ops = {
33 .read_resources = &pci_domain_read_resources,
Marc Jones1f500842020-10-15 14:32:51 -060034 .set_resources = &xeonsp_pci_domain_set_resources,
35 .scan_bus = &xeonsp_pci_domain_scan_bus,
Jonathan Zhang1ba42a92020-09-21 17:14:44 -070036#if CONFIG(HAVE_ACPI_TABLES)
Jonathan Zhang3172f982020-05-28 17:53:48 -070037 .write_acpi_tables = &northbridge_write_acpi_tables,
Jonathan Zhang1ba42a92020-09-21 17:14:44 -070038 .acpi_name = soc_acpi_name
39#endif
Andrey Petrov2e410752020-03-20 12:08:32 -070040};
41
Andrey Petrov2e410752020-03-20 12:08:32 -070042static struct device_operations cpu_bus_ops = {
Nico Huber2f8ba692020-04-05 14:05:24 +020043 .read_resources = noop_read_resources,
44 .set_resources = noop_set_resources,
Andrey Petrov8670e822020-03-30 12:25:06 -070045 .init = cpx_init_cpus,
Jonathan Zhangc1105952020-06-03 15:55:28 -070046 .acpi_fill_ssdt = generate_cpu_entries,
Andrey Petrov2e410752020-03-20 12:08:32 -070047};
48
Andrey Petrov2e410752020-03-20 12:08:32 -070049struct pci_operations soc_pci_ops = {
50 .set_subsystem = pci_dev_set_subsystem,
51};
52
Jonathan Zhang7919d612020-04-02 17:27:54 -070053static void chip_enable_dev(struct device *dev)
54{
55 /* Set the operations if it is a special bus type */
56 if (dev->path.type == DEVICE_PATH_DOMAIN) {
57 dev->ops = &pci_domain_ops;
58 attach_iio_stacks(dev);
59 } else if (dev->path.type == DEVICE_PATH_CPU_CLUSTER) {
60 dev->ops = &cpu_bus_ops;
61 }
62}
63
Andrey Petrov2e410752020-03-20 12:08:32 -070064static void chip_final(void *data)
65{
Andrey Petrov4e48ac02020-04-30 14:08:19 -070066 p2sb_hide();
Jonathan Zhangbea19802020-04-13 19:34:53 -070067
68 set_bios_init_completion();
Andrey Petrov2e410752020-03-20 12:08:32 -070069}
70
71static void chip_init(void *data)
72{
73 printk(BIOS_DEBUG, "coreboot: calling fsp_silicon_init\n");
74 fsp_silicon_init(false);
Subrata Banik1366e442020-09-29 13:55:50 +053075 pch_enable_ioapic();
Andrey Petrov2e410752020-03-20 12:08:32 -070076 setup_lapic();
Andrey Petrov4e48ac02020-04-30 14:08:19 -070077 p2sb_unhide();
Andrey Petrov2e410752020-03-20 12:08:32 -070078}
79
80struct chip_operations soc_intel_xeon_sp_cpx_ops = {
81 CHIP_NAME("Intel Cooperlake-SP")
82 .enable_dev = chip_enable_dev,
83 .init = chip_init,
Jonathan Zhang7919d612020-04-02 17:27:54 -070084 .final = chip_final,
Andrey Petrov2e410752020-03-20 12:08:32 -070085};