blob: 439127d17d366aeb42b8b56ebd5341cd87b9c35d [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Patrick Georgi2efc8802012-11-06 11:03:53 +01002
3#include <stdint.h>
4#include <string.h>
5
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02006#include <device/pci_ops.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +01007#include <device/pci_def.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +01008
9#include "gm45.h"
10
11void init_iommu()
12{
13 /* FIXME: proper test? */
14 int me_active = pci_read_config8(PCI_DEV(0, 3, 0), PCI_CLASS_REVISION) != 0xff;
15 int stepping = pci_read_config8(PCI_DEV(0, 0, 0), PCI_CLASS_REVISION);
16
17 MCHBAR32(0x28) = IOMMU_BASE1 | 1; /* HDA @ 0:1b.0 */
18 if (stepping != STEPPING_B2) {
19 /* The official workaround is to run SMM every 64ms.
20 The only winning move is not to play. */
21 MCHBAR32(0x18) = IOMMU_BASE2 | 1; /* IGD @ 0:2.0-1 */
22 } else {
23 /* write-once, so lock it down */
24 MCHBAR32(0x18) = 0; /* disable IOMMU for IGD @ 0:2.0-1 */
25 }
26 if (me_active) {
27 MCHBAR32(0x10) = IOMMU_BASE3 | 1; /* ME @ 0:3.0-3 */
Damien Zammit88af3722016-08-27 00:35:48 +100028 } else {
29 MCHBAR32(0x10) = 0; /* disable IOMMU for ME */
Patrick Georgi2efc8802012-11-06 11:03:53 +010030 }
31 MCHBAR32(0x20) = IOMMU_BASE4 | 1; /* all other DMA sources */
32
33 /* clear GTT */
Elyes HAOUASef20ecc2018-10-04 13:50:14 +020034 u16 gtt = pci_read_config16(PCI_DEV(0, 0, 0), D0F0_GGC);
Patrick Georgi2efc8802012-11-06 11:03:53 +010035 if (gtt & 0x400) { /* VT mode */
Elyes HAOUASd13bd052020-04-22 16:39:20 +020036 const pci_devfn_t igd = PCI_DEV(0, 2, 0);
Patrick Georgi2efc8802012-11-06 11:03:53 +010037
38 /* setup somewhere */
Elyes HAOUAS5ac723e2020-04-29 09:09:12 +020039 pci_or_config16(igd, PCI_COMMAND, PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY);
Elyes HAOUASfd051dc2018-07-08 12:39:34 +020040 void *bar = (void *)pci_read_config32(igd, PCI_BASE_ADDRESS_0);
Patrick Georgi2efc8802012-11-06 11:03:53 +010041
42 /* clear GTT, 2MB is enough (and should be safe) */
43 memset(bar, 0, 2<<20);
44
45 /* and now disable again */
Angel Pons8ad0a4c2020-06-07 18:41:33 +020046 pci_and_config16(igd, PCI_COMMAND, ~(PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY));
Patrick Georgi2efc8802012-11-06 11:03:53 +010047 pci_write_config32(igd, PCI_BASE_ADDRESS_0, 0);
48 }
49
50 if (stepping == STEPPING_B3) {
51 MCHBAR8(0xffc) |= 1 << 4;
Elyes HAOUASd13bd052020-04-22 16:39:20 +020052 const pci_devfn_t peg = PCI_DEV(0, 1, 0);
Patrick Georgi2efc8802012-11-06 11:03:53 +010053 /* FIXME: proper test? */
54 if (pci_read_config8(peg, PCI_CLASS_REVISION) != 0xff) {
55 int val = pci_read_config32(peg, 0xfc) | (1 << 15);
56 pci_write_config32(peg, 0xfc, val);
57 }
58 }
59
60 /* final */
61 MCHBAR8(0x94) |= 1 << 3;
62}