blob: d962cc3daaf3a92c56fd18b6adf94f6f5eb78e9e [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.
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 "i945.h"
Arthur Heymans874a8f92016-05-19 16:06:09 +020022#include <console/console.h>
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +030023#include <cpu/intel/romstage.h>
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030024
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020025static uintptr_t smm_region_start(void)
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030026{
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020027 uintptr_t tom;
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030028
Kyösti Mälkki3c3e34d2014-05-31 11:32:54 +030029 if (pci_read_config8(PCI_DEV(0, 0x0, 0), DEVEN) & (DEVEN_D2F0 | DEVEN_D2F1)) {
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030030 /* IGD enabled, get top of Memory from BSM register */
Paul Menzel355ce382014-05-30 13:58:59 +020031 tom = pci_read_config32(PCI_DEV(0,2,0), BSM);
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030032 } else {
33 tom = (pci_read_config8(PCI_DEV(0,0,0), TOLUD) & 0xf7) << 24;
34 }
35
36 /* if TSEG enabled subtract size */
Kyösti Mälkkifd2501b2014-05-31 16:36:29 +030037 switch(pci_read_config8(PCI_DEV(0, 0, 0), ESMRAM) & 0x07) {
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030038 case 0x01:
39 /* 1MB TSEG */
Kyösti Mälkkifd2501b2014-05-31 16:36:29 +030040 tom -= 0x100000;
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030041 break;
42 case 0x03:
43 /* 2MB TSEG */
Kyösti Mälkkifd2501b2014-05-31 16:36:29 +030044 tom -= 0x200000;
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030045 break;
46 case 0x05:
47 /* 8MB TSEG */
Kyösti Mälkkifd2501b2014-05-31 16:36:29 +030048 tom -= 0x800000;
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030049 break;
50 default:
51 /* TSEG either disabled or invalid */
52 break;
53 }
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020054 return tom;
55}
56
Kyösti Mälkki811932a2016-07-22 22:53:19 +030057/* Depending of UMA and TSEG configuration, TSEG might start at any
58 * 1 MiB aligment. As this may cause very greedy MTRR setup, push
59 * CBMEM top downwards to 4 MiB boundary.
60 */
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020061void *cbmem_top(void)
62{
Kyösti Mälkki811932a2016-07-22 22:53:19 +030063 uintptr_t top_of_ram = ALIGN_DOWN(smm_region_start(), 4*MiB);
64 return (void *) top_of_ram;
Kyösti Mälkkicb08e162013-10-15 17:19:41 +030065}
Arthur Heymans874a8f92016-05-19 16:06:09 +020066
67/** Decodes used Graphics Mode Select (GMS) to kilobytes. */
68u32 decode_igd_memory_size(const u32 gms)
69{
70 static const u16 ggc2uma[] = { 0, 1, 4, 8, 16, 32,
71 48, 64 };
72
73 if (gms > ARRAY_SIZE(ggc2uma))
74 die("Bad Graphics Mode Select (GMS) setting.\n");
75
76 return ggc2uma[gms] << 10;
77}
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +030078
79void *setup_stack_and_mtrrs(void)
80{
81 return (void*)CONFIG_RAMTOP;
82}