blob: 4199f8bb1d495dbe3e9a06e7f55534df9dea6381 [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
Elyes HAOUASeb9e63f2022-01-25 11:51:43 +010011void init_iommu(void)
Patrick Georgi2efc8802012-11-06 11:03:53 +010012{
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
Angel Pons3f1f8ef2021-03-27 13:52:43 +010017 mchbar_write32(0x28, IOMMU_BASE1 | 1); /* HDA @ 0:1b.0 */
Patrick Georgi2efc8802012-11-06 11:03:53 +010018 if (stepping != STEPPING_B2) {
19 /* The official workaround is to run SMM every 64ms.
20 The only winning move is not to play. */
Angel Pons3f1f8ef2021-03-27 13:52:43 +010021 mchbar_write32(0x18, IOMMU_BASE2 | 1); /* IGD @ 0:2.0-1 */
Patrick Georgi2efc8802012-11-06 11:03:53 +010022 } else {
23 /* write-once, so lock it down */
Angel Pons3f1f8ef2021-03-27 13:52:43 +010024 mchbar_write32(0x18, 0); /* disable IOMMU for IGD @ 0:2.0-1 */
Patrick Georgi2efc8802012-11-06 11:03:53 +010025 }
26 if (me_active) {
Angel Pons3f1f8ef2021-03-27 13:52:43 +010027 mchbar_write32(0x10, IOMMU_BASE3 | 1); /* ME @ 0:3.0-3 */
Damien Zammit88af3722016-08-27 00:35:48 +100028 } else {
Angel Pons3f1f8ef2021-03-27 13:52:43 +010029 mchbar_write32(0x10, 0); /* disable IOMMU for ME */
Patrick Georgi2efc8802012-11-06 11:03:53 +010030 }
Angel Pons3f1f8ef2021-03-27 13:52:43 +010031 mchbar_write32(0x20, IOMMU_BASE4 | 1); /* all other DMA sources */
Patrick Georgi2efc8802012-11-06 11:03:53 +010032
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) {
Angel Pons3f1f8ef2021-03-27 13:52:43 +010051 mchbar_setbits8(0xffc, 1 << 4);
Elyes HAOUASd13bd052020-04-22 16:39:20 +020052 const pci_devfn_t peg = PCI_DEV(0, 1, 0);
Angel Ponsb0535832020-06-08 11:46:58 +020053
Patrick Georgi2efc8802012-11-06 11:03:53 +010054 /* FIXME: proper test? */
Angel Ponsb0535832020-06-08 11:46:58 +020055 if (pci_read_config8(peg, PCI_CLASS_REVISION) != 0xff)
56 pci_or_config32(peg, 0xfc, 1 << 15);
Patrick Georgi2efc8802012-11-06 11:03:53 +010057 }
58
59 /* final */
Angel Pons3f1f8ef2021-03-27 13:52:43 +010060 mchbar_setbits8(0x94, 1 << 3);
Patrick Georgi2efc8802012-11-06 11:03:53 +010061}