blob: a08535e97945fcd63c664ee582a91e7dead1bf86 [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>
Patrick Rudolphe56189c2018-04-18 10:11:59 +020018#include <device/pci_ops.h>
Duncan Laurie04c5bae2012-08-13 09:37:42 -070019#include <console/post_codes.h>
Dennis Wassenberg0c047202015-09-10 12:03:45 +020020#include <cpu/x86/smm.h>
Patrick Rudolph2dc63892018-06-28 14:13:06 +020021#include <southbridge/intel/common/pmbase.h>
Zheng Bao600784e2013-02-07 17:30:23 +080022#include <spi-generic.h>
Nico Huber8e50b6d2018-02-04 15:52:18 +010023#include "chip.h"
24#include "pch.h"
Stefan Reinauer8e073822012-04-04 00:07:22 +020025
26void intel_pch_finalize_smm(void)
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 /* Lock SPIBAR */
41 RCBA32_OR(0x3804, (1 << 15));
Stefan Reinauer8e073822012-04-04 00:07:22 +020042
Martin Roth7a1a3ad2017-06-24 21:29:38 -060043#if IS_ENABLED(CONFIG_SPI_FLASH_SMM)
Duncan Laurie312ee0c2012-09-09 20:12:32 -070044 /* Re-init SPI driver to handle locked BAR */
45 spi_init();
46#endif
47
Stefan Reinauer8e073822012-04-04 00:07:22 +020048 /* TCLOCKDN: TC Lockdown */
49 RCBA32_OR(0x0050, (1 << 31));
50
51 /* BIOS Interface Lockdown */
52 RCBA32_OR(0x3410, (1 << 0));
53
54 /* Function Disable SUS Well Lockdown */
55 RCBA_AND_OR(8, 0x3420, ~0U, (1 << 7));
56
57 /* Global SMI Lock */
Patrick Rudolphc3686202017-05-03 17:50:00 +020058 pci_or_config16(PCH_LPC_DEV, GEN_PMCON_1, 1 << 4);
Stefan Reinauer8e073822012-04-04 00:07:22 +020059
60 /* GEN_PMCON Lock */
Patrick Rudolphc3686202017-05-03 17:50:00 +020061 pci_or_config8(PCH_LPC_DEV, GEN_PMCON_LOCK, (1 << 1) | (1 << 2));
Stefan Reinauer8e073822012-04-04 00:07:22 +020062
Patrick Rudolph7565cf12017-05-03 18:38:21 +020063 /* ETR3: CF9GR Lockdown */
64 pci_update_config32(PCH_LPC_DEV, ETR3, ~ETR3_CF9GR, ETR3_CF9LOCK);
65
Stefan Reinauer8e073822012-04-04 00:07:22 +020066 /* R/WO registers */
67 RCBA32(0x21a4) = RCBA32(0x21a4);
Kyösti Mälkkifd98c652013-07-26 08:50:53 +030068 pci_write_config32(PCI_DEV(0, 27, 0), 0x74,
69 pci_read_config32(PCI_DEV(0, 27, 0), 0x74));
Duncan Laurie04c5bae2012-08-13 09:37:42 -070070
Dennis Wassenberg0c047202015-09-10 12:03:45 +020071 /* TCO_Lock */
Patrick Rudolph2dc63892018-06-28 14:13:06 +020072 write_pmbase16(TCO1_CNT, read_pmbase16(TCO1_CNT) | TCO_LOCK);
Dennis Wassenberg0c047202015-09-10 12:03:45 +020073
Duncan Laurie04c5bae2012-08-13 09:37:42 -070074 /* Indicate finalize step with post code */
75 outb(POST_OS_BOOT, 0x80);
Stefan Reinauer8e073822012-04-04 00:07:22 +020076}