blob: ff3c31b4f51e7d8c9dbb0c29f6a510be2fd588c7 [file] [log] [blame]
Damien Zammit43a1f782015-08-19 15:16:59 +10001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 secunet Security Networks AG
5 * Copyright (C) 2015 Damien Zammit <damien@zamaudio.com>
6 *
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; version 2 of
10 * the License.
11 *
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
16 */
17
18#define __SIMPLE_DEVICE__
19
Damien Zammit5680faf2016-01-22 22:12:30 +110020#include <cbmem.h>
Damien Zammit43a1f782015-08-19 15:16:59 +100021#include <commonlib/helpers.h>
22#include <stdint.h>
Kyösti Mälkki823020d2016-07-22 22:53:19 +030023#include <arch/cpu.h>
Damien Zammit43a1f782015-08-19 15:16:59 +100024#include <arch/io.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020025#include <device/pci_ops.h>
Damien Zammit43a1f782015-08-19 15:16:59 +100026#include <device/pci_def.h>
27#include <console/console.h>
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +030028#include <cpu/intel/romstage.h>
Kyösti Mälkki823020d2016-07-22 22:53:19 +030029#include <cpu/x86/mtrr.h>
Damien Zammit43a1f782015-08-19 15:16:59 +100030#include <northbridge/intel/x4x/x4x.h>
Kyösti Mälkki823020d2016-07-22 22:53:19 +030031#include <program_loading.h>
Arthur Heymans4c65bfc2018-04-10 13:34:24 +020032#include <cpu/intel/smm/gen1/smi.h>
Damien Zammit43a1f782015-08-19 15:16:59 +100033
34/** Decodes used Graphics Mode Select (GMS) to kilobytes. */
35u32 decode_igd_memory_size(const u32 gms)
36{
Arthur Heymans27f94ee2016-06-18 21:08:58 +020037 static const u16 ggc2uma[] = { 0, 1, 4, 8, 16,
Damien Zammit43a1f782015-08-19 15:16:59 +100038 32, 48, 64, 128, 256, 96, 160, 224, 352 };
39
40 if (gms > ARRAY_SIZE(ggc2uma))
41 die("Bad Graphics Mode Select (GMS) setting.\n");
42
43 return ggc2uma[gms] << 10;
44}
45
46/** Decodes used GTT Graphics Memory Size (GGMS) to kilobytes. */
47u32 decode_igd_gtt_size(const u32 gsm)
48{
49 static const u8 ggc2gtt[] = { 0, 1, 0, 2, 0, 0, 0, 0, 0, 2, 3, 4};
50
51 if (gsm > ARRAY_SIZE(ggc2gtt))
52 die("Bad GTT Graphics Memory Size (GGMS) setting.\n");
53
54 return ggc2gtt[gsm] << 10;
55}
56
Arthur Heymans4c65bfc2018-04-10 13:34:24 +020057/** Decodes used TSEG size to bytes. */
58u32 decode_tseg_size(const u32 esmramc)
59{
60 if (!(esmramc & 1))
61 return 0;
62
63 switch ((esmramc >> 1) & 3) {
64 case 0:
65 return 1 << 20;
66 case 1:
67 return 2 << 20;
68 case 2:
69 return 8 << 20;
70 case 3:
71 default:
72 die("Bad TSEG setting.\n");
73 }
74}
75
Damien Zammit43a1f782015-08-19 15:16:59 +100076u8 decode_pciebar(u32 *const base, u32 *const len)
77{
78 *base = 0;
79 *len = 0;
Arthur Heymans70a1dda2017-03-09 01:58:24 +010080 const pci_devfn_t dev = PCI_DEV(0, 0, 0);
Damien Zammit43a1f782015-08-19 15:16:59 +100081 u32 pciexbar = 0;
82 u32 pciexbar_reg;
83 u32 reg32;
84 int max_buses;
85 const struct {
86 u16 num_buses;
87 u32 addr_mask;
88 } busmask[] = {
89 {256, 0xf0000000},
90 {128, 0xf8000000},
91 {64, 0xfc000000},
92 {0, 0},
93 };
94
95 pciexbar_reg = pci_read_config32(dev, D0F0_PCIEXBAR_LO);
96
97 if (!(pciexbar_reg & 1)) {
98 printk(BIOS_WARNING, "WARNING: MMCONF not set\n");
99 return 0;
100 }
101
102 reg32 = (pciexbar_reg >> 1) & 3;
103 pciexbar = pciexbar_reg & busmask[reg32].addr_mask;
104 max_buses = busmask[reg32].num_buses;
105
106 if (!pciexbar) {
107 printk(BIOS_WARNING, "WARNING: pciexbar invalid\n");
108 return 0;
109 }
110
111 *base = pciexbar;
112 *len = max_buses << 20;
113 return 1;
114}
Damien Zammit5680faf2016-01-22 22:12:30 +1100115
Arthur Heymans4c65bfc2018-04-10 13:34:24 +0200116u32 northbridge_get_tseg_size(void)
117{
118 const u8 esmramc = pci_read_config8(PCI_DEV(0, 0, 0), D0F0_ESMRAMC);
119 return decode_tseg_size(esmramc);
120}
121
122u32 northbridge_get_tseg_base(void)
123{
124 return pci_read_config32(PCI_DEV(0, 0, 0), D0F0_TSEG);
125}
126
127
Kyösti Mälkki811932a2016-07-22 22:53:19 +0300128/* Depending of UMA and TSEG configuration, TSEG might start at any
Elyes HAOUAS64f6b712018-08-07 12:16:56 +0200129 * 1 MiB alignment. As this may cause very greedy MTRR setup, push
Kyösti Mälkki811932a2016-07-22 22:53:19 +0300130 * CBMEM top downwards to 4 MiB boundary.
131 */
Damien Zammit5680faf2016-01-22 22:12:30 +1100132void *cbmem_top(void)
133{
Arthur Heymans4c65bfc2018-04-10 13:34:24 +0200134 uintptr_t top_of_ram = ALIGN_DOWN(northbridge_get_tseg_base(), 4*MiB);
Kyösti Mälkki811932a2016-07-22 22:53:19 +0300135 return (void *) top_of_ram;
Damien Zammit5680faf2016-01-22 22:12:30 +1100136}
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +0300137
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300138#define ROMSTAGE_RAM_STACK_SIZE 0x5000
139
Arthur Heymans4ff675e2018-06-03 10:49:11 +0200140/* platform_enter_postcar() determines the stack to use after
141 * cache-as-ram is torn down as well as the MTRR settings to use,
142 * and continues execution in postcar stage. */
143void platform_enter_postcar(void)
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +0300144{
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300145 struct postcar_frame pcf;
146 uintptr_t top_of_ram;
147
148 if (postcar_frame_init(&pcf, ROMSTAGE_RAM_STACK_SIZE))
149 die("Unable to initialize postcar frame.\n");
150
151 /* Cache the ROM as WP just below 4GiB. */
Nico Huber089b9082018-05-27 14:37:32 +0200152 postcar_frame_add_romcache(&pcf, MTRR_TYPE_WRPROT);
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300153
154 /* Cache RAM as WB from 0 -> CACHE_TMP_RAMTOP. */
155 postcar_frame_add_mtrr(&pcf, 0, CACHE_TMP_RAMTOP, MTRR_TYPE_WRBACK);
156
Arthur Heymans4c65bfc2018-04-10 13:34:24 +0200157 /* Cache 8 MiB region below the top of ram and 2 MiB above top of
158 * ram to cover both cbmem as the TSEG region.
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300159 */
160 top_of_ram = (uintptr_t)cbmem_top();
Arthur Heymans4c65bfc2018-04-10 13:34:24 +0200161 postcar_frame_add_mtrr(&pcf, top_of_ram - 8*MiB, 8*MiB,
162 MTRR_TYPE_WRBACK);
163 postcar_frame_add_mtrr(&pcf, northbridge_get_tseg_base(),
164 northbridge_get_tseg_size(), MTRR_TYPE_WRBACK);
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300165
Arthur Heymans4ff675e2018-06-03 10:49:11 +0200166 run_postcar_phase(&pcf);
167
168 /* We do not return here. */
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +0300169}