blob: 73cd06281bcd5d65fda488fc68649af146527ec1 [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>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020018#include <device/pci_ops.h>
Angel Pons95de2312020-02-17 13:08:53 +010019#include "ironlake.h"
Vladimir Serbinenko0f9aa1c2015-05-29 16:52:50 +020020
Kyösti Mälkkif091f4d2019-08-14 03:49:21 +030021#include <cpu/intel/smm_reloc.h>
Vladimir Serbinenko0f9aa1c2015-05-29 16:52:50 +020022
23void northbridge_write_smram(u8 smram)
24{
Kyösti Mälkkid45114f2013-07-26 08:53:59 +030025 pci_write_config8(PCI_DEV(QUICKPATH_BUS, 0, 1), QPD0F1_SMRAM, smram);
Vladimir Serbinenko0f9aa1c2015-05-29 16:52:50 +020026}