blob: d3e88f2f84e7b38d87d195122464395fc7dea8f5 [file] [log] [blame]
Kyösti Mälkkicb08e162013-10-15 17:19:41 +03001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2011 Google Inc.
5 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030014 */
15
16// Use simple device model for this file even in ramstage
17#define __SIMPLE_DEVICE__
18
19#include <arch/io.h>
20#include <cbmem.h>
21#include "haswell.h"
22
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020023static uintptr_t smm_region_start(void)
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030024{
25 /*
26 * Base of TSEG is top of usable DRAM below 4GiB. The register has
Martin Roth128c1042016-11-18 09:29:03 -070027 * 1 MiB alignment.
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030028 */
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020029 uintptr_t tom = pci_read_config32(PCI_DEV(0,0,0), TSEG);
30 return tom & ~((1 << 20) - 1);
31}
32
33void *cbmem_top(void)
34{
35 return (void *)smm_region_start();
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030036}