blob: 80c65bb0285a32cc755e1767d8ccfe899a99afac [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>
Tristan Corrick63626b12018-11-30 22:53:50 +130019#include <device/pci_ops.h>
Patrick Rudolph2dc63892018-06-28 14:13:06 +020020#include <southbridge/intel/common/pmbase.h>
Tristan Corrick63626b12018-11-30 22:53:50 +130021#include <southbridge/intel/common/pmutil.h>
22#include <southbridge/intel/common/rcba.h>
Zheng Bao600784e2013-02-07 17:30:23 +080023#include <spi-generic.h>
Tristan Corrick63626b12018-11-30 22:53:50 +130024
25#include "finalize.h"
Stefan Reinauer8e073822012-04-04 00:07:22 +020026
27void intel_pch_finalize_smm(void)
28{
Tristan Corrick63626b12018-11-30 22:53:50 +130029 const pci_devfn_t lpc_dev = PCI_DEV(0, 0x1f, 0);
30
Julius Wernercd49cce2019-03-05 16:53:33 -080031 if (CONFIG(LOCK_SPI_FLASH_RO) ||
32 CONFIG(LOCK_SPI_FLASH_NO_ACCESS)) {
Vladimir Serbinenkod3b194e2015-05-12 12:39:53 +020033 int i;
Tristan Corrick63626b12018-11-30 22:53:50 +130034 u32 lockmask = 1UL << 31;
Julius Wernercd49cce2019-03-05 16:53:33 -080035 if (CONFIG(LOCK_SPI_FLASH_NO_ACCESS))
Tristan Corrick63626b12018-11-30 22:53:50 +130036 lockmask |= 1 << 15;
Vladimir Serbinenkod3b194e2015-05-12 12:39:53 +020037 for (i = 0; i < 20; i += 4)
38 RCBA32(0x3874 + i) = RCBA32(0x3854 + i) | lockmask;
39 }
Nico Huberd1fb5642013-07-01 16:02:36 +020040
Stefan Reinauer8e073822012-04-04 00:07:22 +020041 /* Lock SPIBAR */
42 RCBA32_OR(0x3804, (1 << 15));
Stefan Reinauer8e073822012-04-04 00:07:22 +020043
Julius Wernercd49cce2019-03-05 16:53:33 -080044 if (CONFIG(SPI_FLASH_SMM))
Tristan Corrick63626b12018-11-30 22:53:50 +130045 /* Re-init SPI driver to handle locked BAR */
46 spi_init();
Duncan Laurie312ee0c2012-09-09 20:12:32 -070047
Stefan Reinauer8e073822012-04-04 00:07:22 +020048 /* TCLOCKDN: TC Lockdown */
Tristan Corrick63626b12018-11-30 22:53:50 +130049 RCBA32_OR(0x0050, (1UL << 31));
Stefan Reinauer8e073822012-04-04 00:07:22 +020050
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
Tristan Corrick63626b12018-11-30 22:53:50 +130057 pci_or_config16(lpc_dev, D31F0_GEN_PMCON_1, SMI_LOCK);
Stefan Reinauer8e073822012-04-04 00:07:22 +020058
Tristan Corrick63626b12018-11-30 22:53:50 +130059 pci_or_config8(lpc_dev, D31F0_GEN_PMCON_LOCK,
60 ACPI_BASE_LOCK | SLP_STR_POL_LOCK);
Stefan Reinauer8e073822012-04-04 00:07:22 +020061
Tristan Corrick63626b12018-11-30 22:53:50 +130062 pci_update_config32(lpc_dev, D31F0_ETR3, ~ETR3_CF9GR, ETR3_CF9LOCK);
63
Julius Wernercd49cce2019-03-05 16:53:33 -080064 if (CONFIG(SOUTHBRIDGE_INTEL_LYNXPOINT))
Tristan Corrick63626b12018-11-30 22:53:50 +130065 /* PMSYNC */
66 RCBA32_OR(0x33c4, (1UL << 31));
Patrick Rudolph7565cf12017-05-03 18:38:21 +020067
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
Patrick Rudolph2dc63892018-06-28 14:13:06 +020073 write_pmbase16(TCO1_CNT, read_pmbase16(TCO1_CNT) | TCO_LOCK);
Dennis Wassenberg0c047202015-09-10 12:03:45 +020074
Tristan Corrick63626b12018-11-30 22:53:50 +130075 outb(POST_OS_BOOT, CONFIG_POST_IO_PORT);
Stefan Reinauer8e073822012-04-04 00:07:22 +020076}