blob: 9480fc05b0e73fcf09b8cee4939837d19c829a3c [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>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020024#include <device/pci_ops.h>
Damien Zammit43a1f782015-08-19 15:16:59 +100025#include <device/pci_def.h>
26#include <console/console.h>
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +030027#include <cpu/intel/romstage.h>
Kyösti Mälkki823020d2016-07-22 22:53:19 +030028#include <cpu/x86/mtrr.h>
Damien Zammit43a1f782015-08-19 15:16:59 +100029#include <northbridge/intel/x4x/x4x.h>
Kyösti Mälkki823020d2016-07-22 22:53:19 +030030#include <program_loading.h>
Kyösti Mälkkif091f4d2019-08-14 03:49:21 +030031#include <cpu/intel/smm_reloc.h>
Kyösti Mälkkiaba8fb12019-08-02 06:11:28 +030032#include <stage_cache.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
Jacob Garberf74f6cb2019-04-08 17:54:35 -060040 if (gms >= ARRAY_SIZE(ggc2uma))
Damien Zammit43a1f782015-08-19 15:16:59 +100041 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
Jacob Garberf74f6cb2019-04-08 17:54:35 -060051 if (gsm >= ARRAY_SIZE(ggc2gtt))
Damien Zammit43a1f782015-08-19 15:16:59 +100052 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älkkiaba8fb12019-08-02 06:11:28 +0300138void stage_cache_external_region(void **base, size_t *size)
139{
Kyösti Mälkkibccd2b62019-08-02 06:12:03 +0300140 /* The stage cache lives at the end of the TSEG region.
Kyösti Mälkkiaba8fb12019-08-02 06:11:28 +0300141 * The top of RAM is defined to be the TSEG base address.
142 */
143 *size = CONFIG_SMM_RESERVED_SIZE;
Kyösti Mälkkibccd2b62019-08-02 06:12:03 +0300144 *base = (void *)((uintptr_t)northbridge_get_tseg_base()
145 + northbridge_get_tseg_size() - CONFIG_SMM_RESERVED_SIZE);
Kyösti Mälkkiaba8fb12019-08-02 06:11:28 +0300146}
147
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +0300148void fill_postcar_frame(struct postcar_frame *pcf)
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +0300149{
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300150 uintptr_t top_of_ram;
151
Arthur Heymans4c65bfc2018-04-10 13:34:24 +0200152 /* Cache 8 MiB region below the top of ram and 2 MiB above top of
153 * ram to cover both cbmem as the TSEG region.
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300154 */
155 top_of_ram = (uintptr_t)cbmem_top();
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +0300156 postcar_frame_add_mtrr(pcf, top_of_ram - 8*MiB, 8*MiB,
Arthur Heymans4c65bfc2018-04-10 13:34:24 +0200157 MTRR_TYPE_WRBACK);
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +0300158 postcar_frame_add_mtrr(pcf, northbridge_get_tseg_base(),
Arthur Heymans4c65bfc2018-04-10 13:34:24 +0200159 northbridge_get_tseg_size(), MTRR_TYPE_WRBACK);
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +0300160}