blob: 4b7d89587e71e5b40dcd4f922cca7dbb0a6e6478 [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) 2007-2009 coresystems GmbH
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.
14 *
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, write to the Free Software
17 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
18 */
19
20// Use simple device model for this file even in ramstage
21#define __SIMPLE_DEVICE__
22
23#include <arch/io.h>
24#include <cbmem.h>
25#include "i945.h"
26
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020027static uintptr_t smm_region_start(void)
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030028{
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020029 uintptr_t tom;
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030030
Kyösti Mälkki3c3e34d2014-05-31 11:32:54 +030031 if (pci_read_config8(PCI_DEV(0, 0x0, 0), DEVEN) & (DEVEN_D2F0 | DEVEN_D2F1)) {
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030032 /* IGD enabled, get top of Memory from BSM register */
Paul Menzel355ce382014-05-30 13:58:59 +020033 tom = pci_read_config32(PCI_DEV(0,2,0), BSM);
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030034 } else {
35 tom = (pci_read_config8(PCI_DEV(0,0,0), TOLUD) & 0xf7) << 24;
36 }
37
38 /* if TSEG enabled subtract size */
Kyösti Mälkkifd2501b2014-05-31 16:36:29 +030039 switch(pci_read_config8(PCI_DEV(0, 0, 0), ESMRAM) & 0x07) {
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030040 case 0x01:
41 /* 1MB TSEG */
Kyösti Mälkkifd2501b2014-05-31 16:36:29 +030042 tom -= 0x100000;
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030043 break;
44 case 0x03:
45 /* 2MB TSEG */
Kyösti Mälkkifd2501b2014-05-31 16:36:29 +030046 tom -= 0x200000;
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030047 break;
48 case 0x05:
49 /* 8MB TSEG */
Kyösti Mälkkifd2501b2014-05-31 16:36:29 +030050 tom -= 0x800000;
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030051 break;
52 default:
53 /* TSEG either disabled or invalid */
54 break;
55 }
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020056 return tom;
57}
58
59void *cbmem_top(void)
60{
61 return (void *) smm_region_start();
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030062}