blob: 03daf7b9dcaa05a97757b64b55ef8b7e52db31c4 [file] [log] [blame]
Patrick Georgi2efc8802012-11-06 11:03:53 +01001/*
2 * This file is part of the coreboot project.
3 *
Patrick Georgi2efc8802012-11-06 11:03:53 +01004 *
5 * This program is free software; you can redistribute it and/or
6 * modify it under the terms of the GNU General Public License as
7 * published by the Free Software Foundation; version 2 of
8 * 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.
Patrick Georgi2efc8802012-11-06 11:03:53 +010014 */
15
16#include <types.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +010017#include <console/console.h>
18#include <arch/acpi.h>
19#include <arch/acpigen.h>
20#include <device/device.h>
Elyes HAOUAS748caed2019-12-19 17:02:08 +010021#include <device/pci_def.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020022#include <device/pci_ops.h>
Elyes HAOUASa1e22b82019-03-18 22:49:36 +010023
Patrick Georgi2efc8802012-11-06 11:03:53 +010024#include "gm45.h"
25
26unsigned long acpi_fill_mcfg(unsigned long current)
27{
Elyes HAOUAS6dcdaaf2018-02-09 07:44:31 +010028 struct device *dev;
Patrick Georgi2efc8802012-11-06 11:03:53 +010029 u32 pciexbar = 0;
30 u32 pciexbar_reg;
31 int max_buses;
32
33 dev = dev_find_device(0x8086, 0x2a40, 0);
34 if (!dev)
35 return current;
36
37 pciexbar_reg = pci_read_config32(dev, D0F0_PCIEXBAR_LO);
38
39 // MMCFG not supported or not enabled.
40 if (!(pciexbar_reg & (1 << 0)))
41 return current;
42
43 switch ((pciexbar_reg >> 1) & 3) {
44 case 0: // 256MB
45 pciexbar = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28));
46 max_buses = 256;
47 break;
48 case 1: // 128M
49 pciexbar = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27));
50 max_buses = 128;
51 break;
52 case 2: // 64M
53 pciexbar = pciexbar_reg & ((1 << 31)|(1 << 30)|(1 << 29)|(1 << 28)|(1 << 27)|(1 << 26));
54 max_buses = 64;
55 break;
56 default: // RSVD
57 return current;
58 }
59
60 if (!pciexbar)
61 return current;
62
63 current += acpi_create_mcfg_mmconfig((acpi_mcfg_mmconfig_t *) current,
64 pciexbar, 0x0, 0x0, max_buses - 1);
65
66 return current;
67}
68
Vladimir Serbinenko8d70e942014-11-09 13:22:27 +010069static unsigned long acpi_fill_dmar(unsigned long current)
Patrick Georgi2efc8802012-11-06 11:03:53 +010070{
Arthur Heymans15063e82019-08-12 09:41:42 +020071 const struct device *dev;
72
73 dev = pcidev_on_root(3, 0);
74 int me_active = dev && dev->enabled;
75
Arthur Heymans08456362019-08-12 09:21:30 +020076 dev = pcidev_on_root(2, 0);
77 int igd_active = dev && dev->enabled;
78
Kyösti Mälkkic70eed12018-05-22 02:18:00 +030079 int stepping = pci_read_config8(pcidev_on_root(0, 0),
80 PCI_CLASS_REVISION);
Patrick Georgi2efc8802012-11-06 11:03:53 +010081
82 unsigned long tmp = current;
83 current += acpi_create_dmar_drhd(current, 0, 0, IOMMU_BASE1);
Matt DeVillier7866d492018-03-29 14:59:57 +020084 current += acpi_create_dmar_ds_pci(current, 0, 0x1b, 0);
Patrick Georgi2efc8802012-11-06 11:03:53 +010085 acpi_dmar_drhd_fixup(tmp, current);
86
Arthur Heymans08456362019-08-12 09:21:30 +020087 if (stepping != STEPPING_B2 && igd_active) {
Patrick Georgi2efc8802012-11-06 11:03:53 +010088 tmp = current;
89 current += acpi_create_dmar_drhd(current, 0, 0, IOMMU_BASE2);
Matt DeVillier7866d492018-03-29 14:59:57 +020090 current += acpi_create_dmar_ds_pci(current, 0, 0x2, 0);
91 current += acpi_create_dmar_ds_pci(current, 0, 0x2, 1);
Patrick Georgi2efc8802012-11-06 11:03:53 +010092 acpi_dmar_drhd_fixup(tmp, current);
93 }
94
95 if (me_active) {
96 tmp = current;
97 current += acpi_create_dmar_drhd(current, 0, 0, IOMMU_BASE3);
Matt DeVillier7866d492018-03-29 14:59:57 +020098 current += acpi_create_dmar_ds_pci(current, 0, 0x3, 0);
99 current += acpi_create_dmar_ds_pci(current, 0, 0x3, 1);
100 current += acpi_create_dmar_ds_pci(current, 0, 0x3, 2);
101 current += acpi_create_dmar_ds_pci(current, 0, 0x3, 3);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100102 acpi_dmar_drhd_fixup(tmp, current);
103 }
104
105 current += acpi_create_dmar_drhd(current, DRHD_INCLUDE_PCI_ALL, 0, IOMMU_BASE4);
106
107 /* TODO: reserve GTT for 0.2.0 and 0.2.1? */
108 return current;
109}
Vladimir Serbinenko33769a52014-08-30 22:39:20 +0200110
Elyes HAOUAS6dcdaaf2018-02-09 07:44:31 +0100111unsigned long northbridge_write_acpi_tables(struct device *device,
Alexander Couzens83fc32f2015-04-12 22:28:37 +0200112 unsigned long start,
113 struct acpi_rsdp *rsdp)
Vladimir Serbinenko33769a52014-08-30 22:39:20 +0200114{
115 unsigned long current;
Vladimir Serbinenko33769a52014-08-30 22:39:20 +0200116 acpi_dmar_t *dmar;
Vladimir Serbinenko33769a52014-08-30 22:39:20 +0200117
118 current = start;
119
Vladimir Serbinenko33769a52014-08-30 22:39:20 +0200120 printk(BIOS_DEBUG, "ACPI: * DMAR\n");
121 dmar = (acpi_dmar_t *) current;
Nico Hubere561f352015-10-26 11:51:25 +0100122 acpi_create_dmar(dmar, 0, acpi_fill_dmar);
Vladimir Serbinenko33769a52014-08-30 22:39:20 +0200123 current += dmar->header.length;
Aaron Durbin07a1b282015-12-10 17:07:38 -0600124 current = acpi_align_current(current);
Vladimir Serbinenko33769a52014-08-30 22:39:20 +0200125 acpi_add_table(rsdp, dmar);
Vladimir Serbinenko33769a52014-08-30 22:39:20 +0200126
Aaron Durbin07a1b282015-12-10 17:07:38 -0600127 current = acpi_align_current(current);
Vladimir Serbinenko33769a52014-08-30 22:39:20 +0200128
129 printk(BIOS_DEBUG, "current = %lx\n", current);
130
131 return current;
132}