blob: fe28af03852176e620d12bb10bb6504d9b8217ce [file] [log] [blame]
Stefan Reinauer8e073822012-04-04 00:07:22 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 The Chromium OS Authors. All rights reserved.
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
Stefan Reinauer8e073822012-04-04 00:07:22 +020015 */
16
17#include <arch/io.h>
Duncan Laurie04c5bae2012-08-13 09:37:42 -070018#include <console/post_codes.h>
Dennis Wassenberg0c047202015-09-10 12:03:45 +020019#include <cpu/x86/smm.h>
Stefan Reinauer8e073822012-04-04 00:07:22 +020020#include "pch.h"
Zheng Bao600784e2013-02-07 17:30:23 +080021#include <spi-generic.h>
Stefan Reinauer8e073822012-04-04 00:07:22 +020022
23void intel_pch_finalize_smm(void)
24{
Dennis Wassenberg0c047202015-09-10 12:03:45 +020025 u16 tco1_cnt;
26 u16 pmbase;
27
Nico Huber2ac149d2017-09-01 23:28:14 +020028 if (IS_ENABLED(CONFIG_LOCK_SPI_FLASH_RO) ||
29 IS_ENABLED(CONFIG_LOCK_SPI_FLASH_NO_ACCESS)) {
Vladimir Serbinenkod3b194e2015-05-12 12:39:53 +020030 /* Copy flash regions from FREG0-4 to PR0-4
31 and enable write protection bit31 */
32 int i;
33 u32 lockmask = (1 << 31);
Nico Huber2ac149d2017-09-01 23:28:14 +020034 if (IS_ENABLED(CONFIG_LOCK_SPI_FLASH_NO_ACCESS))
Vladimir Serbinenkod3b194e2015-05-12 12:39:53 +020035 lockmask |= (1 << 15);
36 for (i = 0; i < 20; i += 4)
37 RCBA32(0x3874 + i) = RCBA32(0x3854 + i) | lockmask;
38 }
Nico Huberd1fb5642013-07-01 16:02:36 +020039
Stefan Reinauer8e073822012-04-04 00:07:22 +020040 /* Set SPI opcode menu */
41 RCBA16(0x3894) = SPI_OPPREFIX;
42 RCBA16(0x3896) = SPI_OPTYPE;
43 RCBA32(0x3898) = SPI_OPMENU_LOWER;
44 RCBA32(0x389c) = SPI_OPMENU_UPPER;
45
46 /* Lock SPIBAR */
47 RCBA32_OR(0x3804, (1 << 15));
Stefan Reinauer8e073822012-04-04 00:07:22 +020048
Martin Roth7a1a3ad2017-06-24 21:29:38 -060049#if IS_ENABLED(CONFIG_SPI_FLASH_SMM)
Duncan Laurie312ee0c2012-09-09 20:12:32 -070050 /* Re-init SPI driver to handle locked BAR */
51 spi_init();
52#endif
53
Stefan Reinauer8e073822012-04-04 00:07:22 +020054 /* TCLOCKDN: TC Lockdown */
55 RCBA32_OR(0x0050, (1 << 31));
56
57 /* BIOS Interface Lockdown */
58 RCBA32_OR(0x3410, (1 << 0));
59
60 /* Function Disable SUS Well Lockdown */
61 RCBA_AND_OR(8, 0x3420, ~0U, (1 << 7));
62
63 /* Global SMI Lock */
Patrick Rudolphc3686202017-05-03 17:50:00 +020064 pci_or_config16(PCH_LPC_DEV, GEN_PMCON_1, 1 << 4);
Stefan Reinauer8e073822012-04-04 00:07:22 +020065
66 /* GEN_PMCON Lock */
Patrick Rudolphc3686202017-05-03 17:50:00 +020067 pci_or_config8(PCH_LPC_DEV, GEN_PMCON_LOCK, (1 << 1) | (1 << 2));
Stefan Reinauer8e073822012-04-04 00:07:22 +020068
Patrick Rudolph7565cf12017-05-03 18:38:21 +020069 /* ETR3: CF9GR Lockdown */
70 pci_update_config32(PCH_LPC_DEV, ETR3, ~ETR3_CF9GR, ETR3_CF9LOCK);
71
Stefan Reinauer8e073822012-04-04 00:07:22 +020072 /* R/WO registers */
73 RCBA32(0x21a4) = RCBA32(0x21a4);
Kyösti Mälkkifd98c652013-07-26 08:50:53 +030074 pci_write_config32(PCI_DEV(0, 27, 0), 0x74,
75 pci_read_config32(PCI_DEV(0, 27, 0), 0x74));
Duncan Laurie04c5bae2012-08-13 09:37:42 -070076
Dennis Wassenberg0c047202015-09-10 12:03:45 +020077 /* TCO_Lock */
78 pmbase = smm_get_pmbase();
79 tco1_cnt = inw(pmbase + TCO1_CNT);
80 tco1_cnt |= TCO_LOCK;
81 outw(tco1_cnt, pmbase + TCO1_CNT);
82
Duncan Laurie04c5bae2012-08-13 09:37:42 -070083 /* Indicate finalize step with post code */
84 outb(POST_OS_BOOT, 0x80);
Stefan Reinauer8e073822012-04-04 00:07:22 +020085}