blob: f5cd9cc2749cb15f8a7b40403e0a6656e3478a80 [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>
Arthur Heymansd2d2aef2018-01-16 14:19:37 +010020#include <southbridge/intel/common/rcba.h>
Zheng Bao600784e2013-02-07 17:30:23 +080021#include <spi-generic.h>
Nico Huber8e50b6d2018-02-04 15:52:18 +010022#include "chip.h"
23#include "pch.h"
Stefan Reinauer8e073822012-04-04 00:07:22 +020024
25void intel_pch_finalize_smm(void)
26{
Dennis Wassenberg0c047202015-09-10 12:03:45 +020027 u16 tco1_cnt;
28 u16 pmbase;
29
Nico Huber2ac149d2017-09-01 23:28:14 +020030 if (IS_ENABLED(CONFIG_LOCK_SPI_FLASH_RO) ||
31 IS_ENABLED(CONFIG_LOCK_SPI_FLASH_NO_ACCESS)) {
Vladimir Serbinenkod3b194e2015-05-12 12:39:53 +020032 /* Copy flash regions from FREG0-4 to PR0-4
33 and enable write protection bit31 */
34 int i;
35 u32 lockmask = (1 << 31);
Nico Huber2ac149d2017-09-01 23:28:14 +020036 if (IS_ENABLED(CONFIG_LOCK_SPI_FLASH_NO_ACCESS))
Vladimir Serbinenkod3b194e2015-05-12 12:39:53 +020037 lockmask |= (1 << 15);
38 for (i = 0; i < 20; i += 4)
39 RCBA32(0x3874 + i) = RCBA32(0x3854 + i) | lockmask;
40 }
Nico Huberd1fb5642013-07-01 16:02:36 +020041
Stefan Reinauer8e073822012-04-04 00:07:22 +020042 /* Lock SPIBAR */
43 RCBA32_OR(0x3804, (1 << 15));
Stefan Reinauer8e073822012-04-04 00:07:22 +020044
Martin Roth7a1a3ad2017-06-24 21:29:38 -060045#if IS_ENABLED(CONFIG_SPI_FLASH_SMM)
Duncan Laurie312ee0c2012-09-09 20:12:32 -070046 /* Re-init SPI driver to handle locked BAR */
47 spi_init();
48#endif
49
Stefan Reinauer8e073822012-04-04 00:07:22 +020050 /* TCLOCKDN: TC Lockdown */
51 RCBA32_OR(0x0050, (1 << 31));
52
53 /* BIOS Interface Lockdown */
54 RCBA32_OR(0x3410, (1 << 0));
55
56 /* Function Disable SUS Well Lockdown */
57 RCBA_AND_OR(8, 0x3420, ~0U, (1 << 7));
58
59 /* Global SMI Lock */
Patrick Rudolphc3686202017-05-03 17:50:00 +020060 pci_or_config16(PCH_LPC_DEV, GEN_PMCON_1, 1 << 4);
Stefan Reinauer8e073822012-04-04 00:07:22 +020061
62 /* GEN_PMCON Lock */
Patrick Rudolphc3686202017-05-03 17:50:00 +020063 pci_or_config8(PCH_LPC_DEV, GEN_PMCON_LOCK, (1 << 1) | (1 << 2));
Stefan Reinauer8e073822012-04-04 00:07:22 +020064
Patrick Rudolph7565cf12017-05-03 18:38:21 +020065 /* ETR3: CF9GR Lockdown */
66 pci_update_config32(PCH_LPC_DEV, ETR3, ~ETR3_CF9GR, ETR3_CF9LOCK);
67
Stefan Reinauer8e073822012-04-04 00:07:22 +020068 /* R/WO registers */
69 RCBA32(0x21a4) = RCBA32(0x21a4);
Kyösti Mälkkifd98c652013-07-26 08:50:53 +030070 pci_write_config32(PCI_DEV(0, 27, 0), 0x74,
71 pci_read_config32(PCI_DEV(0, 27, 0), 0x74));
Duncan Laurie04c5bae2012-08-13 09:37:42 -070072
Dennis Wassenberg0c047202015-09-10 12:03:45 +020073 /* TCO_Lock */
74 pmbase = smm_get_pmbase();
75 tco1_cnt = inw(pmbase + TCO1_CNT);
76 tco1_cnt |= TCO_LOCK;
77 outw(tco1_cnt, pmbase + TCO1_CNT);
78
Duncan Laurie04c5bae2012-08-13 09:37:42 -070079 /* Indicate finalize step with post code */
80 outb(POST_OS_BOOT, 0x80);
Stefan Reinauer8e073822012-04-04 00:07:22 +020081}