blob: 4fe3998beebfe2f9fed3605ffa2e9abc11ff3649 [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Patrick Georgi2efc8802012-11-06 11:03:53 +01002
Kyösti Mälkkief844012013-06-25 23:17:43 +03003// Use simple device model for this file even in ramstage
4#define __SIMPLE_DEVICE__
5
Patrick Georgi2efc8802012-11-06 11:03:53 +01006#include <stdint.h>
Kyösti Mälkkia963acd2019-08-16 20:34:25 +03007#include <arch/romstage.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02008#include <device/pci_ops.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +01009#include <device/pci_def.h>
10#include <console/console.h>
Kyösti Mälkki823020d2016-07-22 22:53:19 +030011#include <cpu/x86/mtrr.h>
Kyösti Mälkkid53fd702019-08-14 06:25:55 +030012#include <cpu/x86/smm.h>
Kyösti Mälkkidcb688e2013-09-04 01:11:16 +030013#include <cbmem.h>
Kyösti Mälkki823020d2016-07-22 22:53:19 +030014#include <program_loading.h>
Kyösti Mälkkif091f4d2019-08-14 03:49:21 +030015#include <cpu/intel/smm_reloc.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +010016#include "gm45.h"
17
Arthur Heymanseeaf9e42016-11-12 20:13:07 +010018/*
19 * Decodes used Graphics Mode Select (GMS) to kilobytes.
20 * The options for 1M, 4M, 8M and 16M preallocated igd memory are
21 * undocumented but are verified to work.
22 */
Patrick Georgi2efc8802012-11-06 11:03:53 +010023u32 decode_igd_memory_size(const u32 gms)
24{
Arthur Heymanseeaf9e42016-11-12 20:13:07 +010025 static const u16 ggc2uma[] = { 0, 1, 4, 8, 16, 32, 48, 64, 128, 256,
26 96, 160, 224, 352 };
27
Jacob Garberf74f6cb2019-04-08 17:54:35 -060028 if (gms >= ARRAY_SIZE(ggc2uma))
Patrick Georgi2efc8802012-11-06 11:03:53 +010029 die("Bad Graphics Mode Select (GMS) setting.\n");
Arthur Heymanseeaf9e42016-11-12 20:13:07 +010030
31 return ggc2uma[gms] << 10;
Patrick Georgi2efc8802012-11-06 11:03:53 +010032}
33
34/** Decodes used Graphics Stolen Memory (GSM) to kilobytes. */
35u32 decode_igd_gtt_size(const u32 gsm)
36{
37 switch (gsm) {
38 case 0:
39 return 0 << 10;
40 case 1:
41 return 1 << 10;
42 case 3:
43 case 9:
44 return 2 << 10;
45 case 10:
46 return 3 << 10;
47 case 11:
48 return 4 << 10;
49 default:
50 die("Bad Graphics Stolen Memory (GSM) setting.\n");
51 return 0;
52 }
53}
54
Arthur Heymans8b766052018-01-24 23:25:13 +010055/* Decodes TSEG region size to kilobytes. */
56u32 decode_tseg_size(u8 esmramc)
57{
58 if (!(esmramc & 1))
59 return 0;
60 switch ((esmramc >> 1) & 3) {
61 case 0:
62 return 1 << 10;
63 case 1:
64 return 2 << 10;
65 case 2:
66 return 8 << 10;
67 case 3:
68 default:
69 die("Bad TSEG setting.\n");
70 }
71}
72
Kyösti Mälkkid53fd702019-08-14 06:25:55 +030073static uintptr_t northbridge_get_tseg_base(void)
Patrick Georgi2efc8802012-11-06 11:03:53 +010074{
Kyösti Mälkki3f9a62e2013-06-20 20:25:21 +030075 const pci_devfn_t dev = PCI_DEV(0, 0, 0);
Patrick Georgi2efc8802012-11-06 11:03:53 +010076
77 u32 tor;
78
79 /* Top of Lower Usable DRAM */
80 tor = (pci_read_config16(dev, D0F0_TOLUD) & 0xfff0) << 16;
81
82 /* Graphics memory comes next */
83 const u32 ggc = pci_read_config16(dev, D0F0_GGC);
Arthur Heymans8b766052018-01-24 23:25:13 +010084 const u8 esmramc = pci_read_config8(dev, D0F0_ESMRAMC);
Patrick Georgi2efc8802012-11-06 11:03:53 +010085 if (!(ggc & 2)) {
86 /* Graphics memory */
87 tor -= decode_igd_memory_size((ggc >> 4) & 0xf) << 10;
88 /* GTT Graphics Stolen Memory Size (GGMS) */
89 tor -= decode_igd_gtt_size((ggc >> 8) & 0xf) << 10;
90 }
Arthur Heymans8b766052018-01-24 23:25:13 +010091 /* TSEG size */
92 tor -= decode_tseg_size(esmramc) << 10;
Patrick Georgi2efc8802012-11-06 11:03:53 +010093 return tor;
94}
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020095
Kyösti Mälkkid53fd702019-08-14 06:25:55 +030096static size_t northbridge_get_tseg_size(void)
Arthur Heymans009518e2018-11-27 14:06:21 +010097{
98 const u8 esmramc = pci_read_config8(PCI_DEV(0, 0, 0), D0F0_ESMRAMC);
99 return decode_tseg_size(esmramc) << 10;
100}
101
Kyösti Mälkki811932a2016-07-22 22:53:19 +0300102/* Depending of UMA and TSEG configuration, TSEG might start at any
Elyes HAOUAS64f6b712018-08-07 12:16:56 +0200103 * 1 MiB alignment. As this may cause very greedy MTRR setup, push
Kyösti Mälkki811932a2016-07-22 22:53:19 +0300104 * CBMEM top downwards to 4 MiB boundary.
105 */
Arthur Heymans340e4b82019-10-23 17:25:58 +0200106void *cbmem_top_chipset(void)
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +0200107{
Arthur Heymans009518e2018-11-27 14:06:21 +0100108 uintptr_t top_of_ram = ALIGN_DOWN(northbridge_get_tseg_base(), 4*MiB);
Kyösti Mälkki811932a2016-07-22 22:53:19 +0300109 return (void *) top_of_ram;
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +0200110}
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +0300111
Kyösti Mälkkid53fd702019-08-14 06:25:55 +0300112void smm_region(uintptr_t *start, size_t *size)
Kyösti Mälkkiaba8fb12019-08-02 06:11:28 +0300113{
Kyösti Mälkkid53fd702019-08-14 06:25:55 +0300114 *start = northbridge_get_tseg_base();
115 *size = northbridge_get_tseg_size();
Kyösti Mälkkiaba8fb12019-08-02 06:11:28 +0300116}
117
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +0300118void fill_postcar_frame(struct postcar_frame *pcf)
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +0300119{
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300120 uintptr_t top_of_ram;
121
Elyes HAOUASef906092020-02-20 19:41:17 +0100122 /* Cache 8 MiB region below the top of RAM and 2 MiB above top of
123 * RAM to cover both cbmem as the TSEG region.
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300124 */
125 top_of_ram = (uintptr_t)cbmem_top();
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +0300126 postcar_frame_add_mtrr(pcf, top_of_ram - 8*MiB, 8*MiB,
Arthur Heymans009518e2018-11-27 14:06:21 +0100127 MTRR_TYPE_WRBACK);
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +0300128 postcar_frame_add_mtrr(pcf, northbridge_get_tseg_base(),
Arthur Heymans009518e2018-11-27 14:06:21 +0100129 northbridge_get_tseg_size(), MTRR_TYPE_WRBACK);
Kyösti Mälkki823020d2016-07-22 22:53:19 +0300130
Kyösti Mälkkia4ffe9d2016-06-27 13:24:11 +0300131}