blob: 8c19852043beeebfd1494c5a056a2516176adf8a [file] [log] [blame]
Martin Roth5474eb12018-05-26 19:22:33 -06001/*
2 * This file is part of the coreboot project.
3 *
4 * This program is free software; you can redistribute it and/or modify
5 * it under the terms of the GNU General Public License as published by
6 * the Free Software Foundation; version 2 of the License.
7 *
8 * This program is distributed in the hope that it will be useful,
9 * but WITHOUT ANY WARRANTY; without even the implied warranty of
10 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
11 * GNU General Public License for more details.
12 */
13
Vladimir Serbinenko0f9aa1c2015-05-29 16:52:50 +020014#define __SIMPLE_DEVICE__
15
16#include <types.h>
Vladimir Serbinenko0f9aa1c2015-05-29 16:52:50 +020017#include <device/device.h>
18#include <device/pci.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020019#include <device/pci_ops.h>
Vladimir Serbinenko0f9aa1c2015-05-29 16:52:50 +020020#include "nehalem.h"
21
Kyösti Mälkkif091f4d2019-08-14 03:49:21 +030022#include <cpu/intel/smm_reloc.h>
Vladimir Serbinenko0f9aa1c2015-05-29 16:52:50 +020023
24void northbridge_write_smram(u8 smram)
25{
Kyösti Mälkkid45114f2013-07-26 08:53:59 +030026 pci_write_config8(PCI_DEV(QUICKPATH_BUS, 0, 1), QPD0F1_SMRAM, smram);
Vladimir Serbinenko0f9aa1c2015-05-29 16:52:50 +020027}