blob: 4f6e000bdc7af72f0104dd3040fc81daa457dce9 [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
Patrick Georgi2efc8802012-11-06 11:03:53 +010033 if (stepping == STEPPING_B3) {
Angel Pons3f1f8ef2021-03-27 13:52:43 +010034 mchbar_setbits8(0xffc, 1 << 4);
Elyes HAOUASd13bd052020-04-22 16:39:20 +020035 const pci_devfn_t peg = PCI_DEV(0, 1, 0);
Angel Ponsb0535832020-06-08 11:46:58 +020036
Patrick Georgi2efc8802012-11-06 11:03:53 +010037 /* FIXME: proper test? */
Angel Ponsb0535832020-06-08 11:46:58 +020038 if (pci_read_config8(peg, PCI_CLASS_REVISION) != 0xff)
39 pci_or_config32(peg, 0xfc, 1 << 15);
Patrick Georgi2efc8802012-11-06 11:03:53 +010040 }
41
42 /* final */
Angel Pons3f1f8ef2021-03-27 13:52:43 +010043 mchbar_setbits8(0x94, 1 << 3);
Patrick Georgi2efc8802012-11-06 11:03:53 +010044}