blob: a08ac1b02ecddce4622fae6d7f21c83eeb2adb9f [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>
17#include <string.h>
18#include <device/device.h>
19#include <device/pci.h>
20#include "nehalem.h"
21
22#include <cpu/intel/smm/gen1/smi.h>
23
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}