blob: 300301bbf98d1af0cc73c6f5bd41c9ca4be66506 [file] [log] [blame]
Angel Ponsf94ac9a2020-04-05 15:46:48 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Duncan Lauriec88c54c2014-04-30 16:36:13 -07002
Duncan Lauriec88c54c2014-04-30 16:36:13 -07003#include <bootstate.h>
4#include <console/console.h>
5#include <console/post_codes.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -07006#include <reg_script.h>
7#include <spi-generic.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -07008#include <soc/pci_devs.h>
9#include <soc/lpc.h>
10#include <soc/me.h>
11#include <soc/rcba.h>
12#include <soc/spi.h>
13#include <soc/systemagent.h>
Arthur Heymans3c1e9862019-10-13 22:54:53 +020014#include <southbridge/intel/common/spi.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070015
16const struct reg_script system_agent_finalize_script[] = {
17 REG_PCI_OR16(0x50, 1 << 0), /* GGC */
18 REG_PCI_OR32(0x5c, 1 << 0), /* DPR */
19 REG_PCI_OR32(0x78, 1 << 10), /* ME */
20 REG_PCI_OR32(0x90, 1 << 0), /* REMAPBASE */
21 REG_PCI_OR32(0x98, 1 << 0), /* REMAPLIMIT */
22 REG_PCI_OR32(0xa0, 1 << 0), /* TOM */
23 REG_PCI_OR32(0xa8, 1 << 0), /* TOUUD */
24 REG_PCI_OR32(0xb0, 1 << 0), /* BDSM */
25 REG_PCI_OR32(0xb4, 1 << 0), /* BGSM */
26 REG_PCI_OR32(0xb8, 1 << 0), /* TSEGMB */
27 REG_PCI_OR32(0xbc, 1 << 0), /* TOLUD */
28 REG_MMIO_OR32(MCH_BASE_ADDRESS + 0x5500, 1 << 0), /* PAVP */
29 REG_MMIO_OR32(MCH_BASE_ADDRESS + 0x5f00, 1 << 31), /* SA PM */
30 REG_MMIO_OR32(MCH_BASE_ADDRESS + 0x6020, 1 << 0), /* UMA GFX */
31 REG_MMIO_OR32(MCH_BASE_ADDRESS + 0x63fc, 1 << 0), /* VTDTRK */
32 REG_MMIO_OR32(MCH_BASE_ADDRESS + 0x6800, 1 << 31),
33 REG_MMIO_OR32(MCH_BASE_ADDRESS + 0x7000, 1 << 31),
34 REG_MMIO_OR32(MCH_BASE_ADDRESS + 0x77fc, 1 << 0),
Duncan Laurie88bbf162015-01-09 13:23:05 -080035 REG_MMIO_OR32(MCH_BASE_ADDRESS + 0x50fc, 0x8f),
36 REG_MMIO_OR32(MCH_BASE_ADDRESS + 0x7ffc, 1 << 0),
37 REG_MMIO_OR32(MCH_BASE_ADDRESS + 0x5880, 1 << 5),
Duncan Lauriec88c54c2014-04-30 16:36:13 -070038 REG_MMIO_WRITE8(MCH_BASE_ADDRESS + 0x50fc, 0x8f), /* MC */
39
40 REG_SCRIPT_END
41};
42
43const struct reg_script pch_finalize_script[] = {
Angel Pons12d48cd2020-10-03 12:22:04 +020044#if !CONFIG(EM100PRO_SPI_CONSOLE)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070045 /* Lock SPIBAR */
46 REG_MMIO_OR32(RCBA_BASE_ADDRESS + SPIBAR_OFFSET + SPIBAR_HSFS,
47 SPIBAR_HSFS_FLOCKDN),
Duncan Laurie9d08c4a2015-12-22 17:08:21 -080048#endif
Duncan Lauriec88c54c2014-04-30 16:36:13 -070049
50 /* TC Lockdown */
51 REG_MMIO_OR32(RCBA_BASE_ADDRESS + 0x0050, (1 << 31)),
52
53 /* BIOS Interface Lockdown */
54 REG_MMIO_OR32(RCBA_BASE_ADDRESS + GCS, (1 << 0)),
55
56 /* Function Disable SUS Well Lockdown */
57 REG_MMIO_OR8(RCBA_BASE_ADDRESS + FDSW, (1 << 7)),
58
59 /* Global SMI Lock */
60 REG_PCI_OR16(GEN_PMCON_1, SMI_LOCK),
61
62 /* GEN_PMCON Lock */
63 REG_PCI_OR8(GEN_PMCON_LOCK, SLP_STR_POL_LOCK | ACPI_BASE_LOCK),
64
65 /* PMSYNC */
66 REG_MMIO_OR32(RCBA_BASE_ADDRESS + PMSYNC_CONFIG, (1 << 31)),
67
Duncan Lauriec88c54c2014-04-30 16:36:13 -070068 REG_SCRIPT_END
69};
70
71static void broadwell_finalize(void *unused)
72{
Kyösti Mälkki71756c212019-07-12 13:10:19 +030073 struct device *sa_dev = pcidev_path_on_root(SA_DEVFN_ROOT);
74
Duncan Lauriec88c54c2014-04-30 16:36:13 -070075 printk(BIOS_DEBUG, "Finalizing chipset.\n");
76
Kyösti Mälkki71756c212019-07-12 13:10:19 +030077 reg_script_run_on_dev(sa_dev, system_agent_finalize_script);
Arthur Heymans3c1e9862019-10-13 22:54:53 +020078
79 spi_finalize_ops();
Duncan Lauriec88c54c2014-04-30 16:36:13 -070080 reg_script_run_on_dev(PCH_DEV_LPC, pch_finalize_script);
81
Kane Chen472d0cb2014-08-21 10:36:17 -070082 /* Lock */
83 RCBA32_OR(0x3a6c, 0x00000001);
84
Duncan Lauriec88c54c2014-04-30 16:36:13 -070085 /* Read+Write the following registers */
86 MCHBAR32(0x6030) = MCHBAR32(0x6030);
87 MCHBAR32(0x6034) = MCHBAR32(0x6034);
88 MCHBAR32(0x6008) = MCHBAR32(0x6008);
89 RCBA32(0x21a4) = RCBA32(0x21a4);
90
Duncan Lauriec88c54c2014-04-30 16:36:13 -070091 /* Indicate finalize step with post code */
92 post_code(POST_OS_BOOT);
93}
94
Aaron Durbin9ef9d852015-03-16 17:30:09 -050095BOOT_STATE_INIT_ENTRY(BS_OS_RESUME, BS_ON_ENTRY, broadwell_finalize, NULL);
96BOOT_STATE_INIT_ENTRY(BS_PAYLOAD_LOAD, BS_ON_EXIT, broadwell_finalize, NULL);