blob: 3207688b4d39ad8e70602592294541b69947b81f [file] [log] [blame]
Keith Huid0301c12017-09-02 18:13:11 -04001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2017 Keith Hui <buurin@gmail.com>
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
16#define __SIMPLE_DEVICE__
17
18#include <arch/io.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020019#include <device/pci_ops.h>
Keith Huid0301c12017-09-02 18:13:11 -040020#include <cbmem.h>
Kyösti Mälkki54d6a282018-05-25 06:03:14 +030021#include <console/console.h>
Keith Huid0301c12017-09-02 18:13:11 -040022#include <commonlib/helpers.h>
Kyösti Mälkki54d6a282018-05-25 06:03:14 +030023#include <cpu/intel/romstage.h>
24#include <cpu/x86/mtrr.h>
25#include <program_loading.h>
Keith Huid0301c12017-09-02 18:13:11 -040026#include "i440bx.h"
27
28void *cbmem_top(void)
29{
30 /* Base of TSEG is top of usable DRAM */
31 /*
32 * SMRAM - System Management RAM Control Register
33 * 0x72
34 * [7:4] Not relevant to this function.
35 * [3:3] Global SMRAM Enable (G_SMRAME)
36 * [2:0] Hardwired to 010.
37 *
38 * ESMRAMC - Extended System Management RAM Control
39 * 0x73
40 * [7:7] H_SMRAM_EN
41 * 1 = When G_SMRAME=1, High SMRAM space is enabled at
42 * 0x100A0000-0x100FFFFF and forwarded to DRAM address
43 * 0x000A0000-0x000FFFFF.
44 * 0 = When G_SMRAME=1, Compatible SMRAM space is enabled at
45 * 0x000A0000-0x000BFFFF.
46 * [6:3] Not relevant to this function.
47 * [2:1] TSEG Size (T_SZ)
48 * Selects the size of the TSEG memory block, if enabled.
49 * 00 = 128KiB
50 * 01 = 256KiB
51 * 10 = 512KiB
52 * 11 = 1MiB
53 * [0:0] TSEG_EN
54 * When SMRAM[G_SMRAME] and this bit are 1, TSEG is enabled to
55 * appear between DRAM address (TOM-<TSEG Size>) to TOM.
56 *
57 * Source: 440BX datasheet, pages 3-28 thru 3-29.
58 */
59 unsigned long tom = pci_read_config8(NB, DRB7) * 8 * MiB;
60
61 int gsmrame = pci_read_config8(NB, SMRAM) & 0x8;
62 /* T_SZ and TSEG_EN */
63 int tseg = pci_read_config8(NB, ESMRAMC) & 0x7;
64 if ((tseg & 0x1) && gsmrame) {
65 int tseg_size = 128 * KiB * (1 << (tseg >> 1));
66 tom -= tseg_size;
67 }
68 return (void *)tom;
69}
Kyösti Mälkki54d6a282018-05-25 06:03:14 +030070
71#define ROMSTAGE_RAM_STACK_SIZE 0x5000
72
Kyösti Mälkkiaea8eec2018-06-04 08:49:17 +030073/* platform_enter_postcar() determines the stack to use after
74 * cache-as-ram is torn down as well as the MTRR settings to use,
75 * and continues execution in postcar stage. */
76void platform_enter_postcar(void)
Kyösti Mälkki54d6a282018-05-25 06:03:14 +030077{
78 struct postcar_frame pcf;
79 uintptr_t top_of_ram;
80
81 if (postcar_frame_init(&pcf, ROMSTAGE_RAM_STACK_SIZE))
82 die("Unable to initialize postcar frame.\n");
83
84 /* Cache the ROM as WP just below 4GiB. */
Nico Huber4c7eee22019-02-10 19:35:41 +010085 postcar_frame_add_romcache(&pcf, MTRR_TYPE_WRPROT);
Kyösti Mälkki54d6a282018-05-25 06:03:14 +030086
87 /* Cache RAM as WB from 0 -> CACHE_TMP_RAMTOP. */
88 postcar_frame_add_mtrr(&pcf, 0, CACHE_TMP_RAMTOP, MTRR_TYPE_WRBACK);
89
90 /* Cache CBMEM region as WB. */
91 top_of_ram = (uintptr_t)cbmem_top();
92 postcar_frame_add_mtrr(&pcf, top_of_ram - 8*MiB, 8*MiB,
93 MTRR_TYPE_WRBACK);
94
Kyösti Mälkkiaea8eec2018-06-04 08:49:17 +030095 run_postcar_phase(&pcf);
Kyösti Mälkki54d6a282018-05-25 06:03:14 +030096}