blob: b2cdf9d766bd1d630ff61e2cdfe640cb9617327f [file] [log] [blame]
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2013 Google, Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
Aaron Durbin2c4aab32015-03-06 23:26:06 -060011 * but WITHOUT ANY WARRANTY; without even the implied warranty of
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050012 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050014 */
15
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020016#include <device/pci_ops.h>
Aaron Durbinba170b472013-09-23 14:15:42 -050017#include <cpu/x86/cache.h>
18#include <cpu/x86/msr.h>
19#include <cpu/x86/mtrr.h>
Julius Werner18ea2d32014-10-07 16:42:17 -070020#include <soc/iosf.h>
Aaron Durbinc0270aa2013-10-04 11:15:48 -050021#include <cpu/intel/microcode/microcode.c>
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050022
Aaron Durbinba170b472013-09-23 14:15:42 -050023static void set_var_mtrr(int reg, uint32_t base, uint32_t size, int type)
24{
25 msr_t basem, maskm;
26 basem.lo = base | type;
27 basem.hi = 0;
Alexandru Gagniuc86091f92015-09-30 20:23:09 -070028 wrmsr(MTRR_PHYS_BASE(reg), basem);
29 maskm.lo = ~(size - 1) | MTRR_PHYS_MASK_VALID;
Aaron Durbinba170b472013-09-23 14:15:42 -050030 maskm.hi = (1 << (CONFIG_CPU_ADDR_BITS - 32)) - 1;
Alexandru Gagniuc86091f92015-09-30 20:23:09 -070031 wrmsr(MTRR_PHYS_MASK(reg), maskm);
Aaron Durbinba170b472013-09-23 14:15:42 -050032}
33
34static void enable_rom_caching(void)
35{
36 msr_t msr;
37
38 disable_cache();
39 /* Why only top 4MiB ? */
40 set_var_mtrr(1, 0xffc00000, 4*1024*1024, MTRR_TYPE_WRPROT);
41 enable_cache();
42
43 /* Enable Variable MTRRs */
44 msr.hi = 0x00000000;
45 msr.lo = 0x00000800;
Alexandru Gagniuc86091f92015-09-30 20:23:09 -070046 wrmsr(MTRR_DEF_TYPE_MSR, msr);
Aaron Durbinba170b472013-09-23 14:15:42 -050047}
48
Aaron Durbinc0270aa2013-10-04 11:15:48 -050049static void setup_mmconfig(void)
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050050{
51 uint32_t reg;
52
Aaron Durbin9a7d7bc2013-09-07 00:41:48 -050053 /* Set up the MMCONF range. The register lives in the BUNIT. The
54 * IO variant of the config access needs to be used initially to
55 * properly configure as the IOSF access registers live in PCI
56 * config space. */
57 reg = 0;
58 /* Clear the extended register. */
59 pci_io_write_config32(IOSF_PCI_DEV, MCRX_REG, reg);
60 reg = CONFIG_MMCONF_BASE_ADDRESS | 1;
61 pci_io_write_config32(IOSF_PCI_DEV, MDR_REG, reg);
62 reg = IOSF_OPCODE(IOSF_OP_WRITE_BUNIT) | IOSF_PORT(IOSF_PORT_BUNIT) |
63 IOSF_REG(BUNIT_MMCONF_REG) | IOSF_BYTE_EN;
64 pci_io_write_config32(IOSF_PCI_DEV, MCR_REG, reg);
65}
Aaron Durbinc0270aa2013-10-04 11:15:48 -050066
67static void bootblock_cpu_init(void)
68{
69 /* Allow memory-mapped PCI config access. */
70 setup_mmconfig();
71
72 /* Load microcode before any caching. */
73 intel_update_microcode_from_cbfs();
74 enable_rom_caching();
75}