1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #define __SIMPLE_DEVICE__
6 #include <console/console.h>
7 #include <cpu/x86/smm.h>
8 #include <device/pci_ops.h>
9 #include <mainboard/emulation/qemu-i440fx/memory.h>
10 #include <mainboard/emulation/qemu-i440fx/fw_cfg.h>
11 #include <cpu/intel/smm_reloc.h>
15 static uint32_t encode_pciexbar_length(void)
17 switch (CONFIG_ECAM_MMCONF_BUS_NUMBER
) {
18 case 256: return 0 << 1;
19 case 128: return 1 << 1;
20 case 64: return 2 << 1;
21 default: return dead_code_t(uint32_t);
25 uint32_t make_pciexbar(void)
27 return CONFIG_ECAM_MMCONF_BASE_ADDRESS
| encode_pciexbar_length() | 1;
30 /* Check that MCFG is active. If it's not, QEMU was started for machine PC */
31 void mainboard_machine_check(void)
33 if (pci_read_config32(HOST_BRIDGE
, D0F0_PCIEXBAR_LO
) != make_pciexbar())
34 die("You must run qemu for machine Q35 (-M q35)");
37 /* Decodes TSEG region size to bytes. */
38 static size_t decode_tseg_size(u8 esmramc
)
40 /* If we intent to enable TSEG, fake it always enabled. */
44 if (!(esmramc
& T_EN
))
47 switch ((esmramc
& TSEG_SZ_MASK
) >> 1) {
55 return pci_read_config16(HOST_BRIDGE
, EXT_TSEG_MBYTES
) * MiB
;
59 void smm_region(uintptr_t *start
, size_t *size
)
61 uint8_t esmramc
= pci_read_config8(HOST_BRIDGE
, ESMRAMC
);
63 *size
= decode_tseg_size(esmramc
);
64 *start
= qemu_get_memory_size() * KiB
- *size
;
65 printk(BIOS_SPEW
, "SMM_BASE: 0x%08lx, SMM_SIZE: %zu MiB\n", *start
, *size
/ MiB
);
72 pci_write_config8(HOST_BRIDGE
, SMRAMC
, D_OPEN
| G_SMRAME
| C_BASE_SEG
);
75 pci_and_config8(HOST_BRIDGE
, ESMRAMC
, ~T_EN
);
82 pci_write_config8(HOST_BRIDGE
, SMRAMC
, G_SMRAME
| C_BASE_SEG
);
85 pci_or_config8(HOST_BRIDGE
, ESMRAMC
, T_EN
);
91 * LOCK the SMM memory window and enable normal SMM.
92 * After running this function, only a full reset can
93 * make the SMM registers writable again.
95 printk(BIOS_DEBUG
, "Locking SMM.\n");
97 pci_write_config8(HOST_BRIDGE
, SMRAMC
, D_LCK
| G_SMRAME
| C_BASE_SEG
);