blob: 4afb54646d3e040be0fcebb375d34b93b226790f [file] [log] [blame]
Stefan Reinauer00636b02012-04-04 00:08:51 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2009 coresystems GmbH
Stefan Reinauere5a0a5d2012-09-19 10:51:48 -07005 * Copyright (C) 2012 The Chromium OS Authors
Stefan Reinauer00636b02012-04-04 00:08:51 +02006 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; version 2 of
10 * the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
Stefan Reinauer00636b02012-04-04 00:08:51 +020016 */
17
18#include <types.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020019#include <console/console.h>
Nico Huberb3234742018-11-17 14:09:25 +010020#include <commonlib/helpers.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020021#include <arch/acpi.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020022#include <device/device.h>
23#include <device/pci.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020024#include <device/pci_ops.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020025#include "sandybridge.h"
Nico Huber9d9ce0d2015-10-26 12:59:49 +010026#include <southbridge/intel/bd82x6x/pch.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020027
28unsigned long acpi_fill_mcfg(unsigned long current)
29{
Stefan Reinauer00636b02012-04-04 00:08:51 +020030 u32 pciexbar = 0;
31 u32 pciexbar_reg;
32 int max_buses;
33
Kyösti Mälkkic70eed12018-05-22 02:18:00 +030034 struct device *const dev = pcidev_on_root(0, 0);
Vagiz Trakhanove200c1c2017-09-28 15:01:06 +000035
Stefan Reinauer00636b02012-04-04 00:08:51 +020036 if (!dev)
37 return current;
38
39 pciexbar_reg=pci_read_config32(dev, PCIEXBAR);
40
41 // MMCFG not supported or not enabled.
42 if (!(pciexbar_reg & (1 << 0)))
43 return current;
44
45 switch ((pciexbar_reg >> 1) & 3) {
46 case 0: // 256MB
47 pciexbar = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28));
48 max_buses = 256;
49 break;
50 case 1: // 128M
51 pciexbar = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27));
52 max_buses = 128;
53 break;
54 case 2: // 64M
55 pciexbar = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27)|(1 << 26));
56 max_buses = 64;
57 break;
58 default: // RSVD
59 return current;
60 }
61
62 if (!pciexbar)
63 return current;
64
65 current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *) current,
66 pciexbar, 0x0, 0x0, max_buses - 1);
67
68 return current;
69}
70
Nico Huberb3234742018-11-17 14:09:25 +010071static unsigned long acpi_create_igfx_rmrr(const unsigned long current)
72{
73 const u32 base_mask = ~(u32)(MiB - 1);
74
Kyösti Mälkki19bad302019-02-08 18:42:19 +020075 struct device *const host = pcidev_on_root(0, 0);
Nico Huberb3234742018-11-17 14:09:25 +010076 if (!host)
77 return 0;
78
79 const u32 bgsm = pci_read_config32(host, BGSM) & base_mask;
80 const u32 tolud = pci_read_config32(host, TOLUD) & base_mask;
81 if (!bgsm || !tolud)
82 return 0;
83
84 return acpi_create_dmar_rmrr(current, 0, bgsm, tolud - 1);
85}
86
Nico Huber9d9ce0d2015-10-26 12:59:49 +010087static unsigned long acpi_fill_dmar(unsigned long current)
88{
Kyösti Mälkkic70eed12018-05-22 02:18:00 +030089 const struct device *const igfx = pcidev_on_root(2, 0);
Nico Huber9d9ce0d2015-10-26 12:59:49 +010090
91 if (igfx && igfx->enabled) {
Nico Huberb3234742018-11-17 14:09:25 +010092 unsigned long tmp;
93
94 tmp = current;
Nico Huber9d9ce0d2015-10-26 12:59:49 +010095 current += acpi_create_dmar_drhd(current, 0, 0, IOMMU_BASE1);
Matt DeVillier7866d492018-03-29 14:59:57 +020096 current += acpi_create_dmar_ds_pci(current, 0, 2, 0);
97 current += acpi_create_dmar_ds_pci(current, 0, 2, 1);
Nico Huber9d9ce0d2015-10-26 12:59:49 +010098 acpi_dmar_drhd_fixup(tmp, current);
Nico Huberb3234742018-11-17 14:09:25 +010099
100 tmp = current;
101 current += acpi_create_igfx_rmrr(current);
102 if (current != tmp) {
103 current += acpi_create_dmar_ds_pci(current, 0, 2, 0);
104 current += acpi_create_dmar_ds_pci(current, 0, 2, 1);
105 acpi_dmar_rmrr_fixup(tmp, current);
106 }
Nico Huber9d9ce0d2015-10-26 12:59:49 +0100107 }
108
109 const unsigned long tmp = current;
110 current += acpi_create_dmar_drhd(current,
111 DRHD_INCLUDE_PCI_ALL, 0, IOMMU_BASE2);
Matt DeVillier7866d492018-03-29 14:59:57 +0200112 current += acpi_create_dmar_ds_ioapic(current,
Nico Huber9d9ce0d2015-10-26 12:59:49 +0100113 2, PCH_IOAPIC_PCI_BUS, PCH_IOAPIC_PCI_SLOT, 0);
114 size_t i;
115 for (i = 0; i < 8; ++i)
Matt DeVillier7866d492018-03-29 14:59:57 +0200116 current += acpi_create_dmar_ds_msi_hpet(current,
Nico Huber9d9ce0d2015-10-26 12:59:49 +0100117 0, PCH_HPET_PCI_BUS, PCH_HPET_PCI_SLOT, i);
118 acpi_dmar_drhd_fixup(tmp, current);
119
120 return current;
121}
122
Nico Huber9d9ce0d2015-10-26 12:59:49 +0100123unsigned long northbridge_write_acpi_tables(struct device *const dev,
124 unsigned long current,
125 struct acpi_rsdp *const rsdp)
126{
127 const u32 capid0_a = pci_read_config32(dev, 0xe4);
128 if (capid0_a & (1 << 23))
129 return current;
130
131 printk(BIOS_DEBUG, "ACPI: * DMAR\n");
132 acpi_dmar_t *const dmar = (acpi_dmar_t *)current;
133 acpi_create_dmar(dmar, DMAR_INTR_REMAP, acpi_fill_dmar);
134 current += dmar->header.length;
Aaron Durbin07a1b282015-12-10 17:07:38 -0600135 current = acpi_align_current(current);
Nico Huber9d9ce0d2015-10-26 12:59:49 +0100136 acpi_add_table(rsdp, dmar);
137
Aaron Durbin07a1b282015-12-10 17:07:38 -0600138 current = acpi_align_current(current);
Nico Huber9d9ce0d2015-10-26 12:59:49 +0100139
140 printk(BIOS_DEBUG, "current = %lx\n", current);
141
142 return current;
143}