blob: dc294f14c649719d1b76c10cccbb6e3e3b6bf2b0 [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>
19#include <cbmem.h>
Kyösti Mälkki54d6a282018-05-25 06:03:14 +030020#include <console/console.h>
Keith Huid0301c12017-09-02 18:13:11 -040021#include <commonlib/helpers.h>
Kyösti Mälkki54d6a282018-05-25 06:03:14 +030022#include <cpu/intel/romstage.h>
23#include <cpu/x86/mtrr.h>
24#include <program_loading.h>
Keith Huid0301c12017-09-02 18:13:11 -040025#include "i440bx.h"
26
27void *cbmem_top(void)
28{
29 /* Base of TSEG is top of usable DRAM */
30 /*
31 * SMRAM - System Management RAM Control Register
32 * 0x72
33 * [7:4] Not relevant to this function.
34 * [3:3] Global SMRAM Enable (G_SMRAME)
35 * [2:0] Hardwired to 010.
36 *
37 * ESMRAMC - Extended System Management RAM Control
38 * 0x73
39 * [7:7] H_SMRAM_EN
40 * 1 = When G_SMRAME=1, High SMRAM space is enabled at
41 * 0x100A0000-0x100FFFFF and forwarded to DRAM address
42 * 0x000A0000-0x000FFFFF.
43 * 0 = When G_SMRAME=1, Compatible SMRAM space is enabled at
44 * 0x000A0000-0x000BFFFF.
45 * [6:3] Not relevant to this function.
46 * [2:1] TSEG Size (T_SZ)
47 * Selects the size of the TSEG memory block, if enabled.
48 * 00 = 128KiB
49 * 01 = 256KiB
50 * 10 = 512KiB
51 * 11 = 1MiB
52 * [0:0] TSEG_EN
53 * When SMRAM[G_SMRAME] and this bit are 1, TSEG is enabled to
54 * appear between DRAM address (TOM-<TSEG Size>) to TOM.
55 *
56 * Source: 440BX datasheet, pages 3-28 thru 3-29.
57 */
58 unsigned long tom = pci_read_config8(NB, DRB7) * 8 * MiB;
59
60 int gsmrame = pci_read_config8(NB, SMRAM) & 0x8;
61 /* T_SZ and TSEG_EN */
62 int tseg = pci_read_config8(NB, ESMRAMC) & 0x7;
63 if ((tseg & 0x1) && gsmrame) {
64 int tseg_size = 128 * KiB * (1 << (tseg >> 1));
65 tom -= tseg_size;
66 }
67 return (void *)tom;
68}
Kyösti Mälkki54d6a282018-05-25 06:03:14 +030069
70#define ROMSTAGE_RAM_STACK_SIZE 0x5000
71
72/* setup_stack_and_mtrrs() determines the stack to use after
73 * cache-as-ram is torn down as well as the MTRR settings to use. */
74void *setup_stack_and_mtrrs(void)
75{
76 struct postcar_frame pcf;
77 uintptr_t top_of_ram;
78
79 if (postcar_frame_init(&pcf, ROMSTAGE_RAM_STACK_SIZE))
80 die("Unable to initialize postcar frame.\n");
81
82 /* Cache the ROM as WP just below 4GiB. */
83 postcar_frame_add_mtrr(&pcf, CACHE_ROM_BASE, CACHE_ROM_SIZE,
84 MTRR_TYPE_WRPROT);
85
86 /* Cache RAM as WB from 0 -> CACHE_TMP_RAMTOP. */
87 postcar_frame_add_mtrr(&pcf, 0, CACHE_TMP_RAMTOP, MTRR_TYPE_WRBACK);
88
89 /* Cache CBMEM region as WB. */
90 top_of_ram = (uintptr_t)cbmem_top();
91 postcar_frame_add_mtrr(&pcf, top_of_ram - 8*MiB, 8*MiB,
92 MTRR_TYPE_WRBACK);
93
94 /* Save the number of MTRRs to setup. Return the stack location
95 * pointing to the number of MTRRs.
96 */
97 return postcar_commit_mtrrs(&pcf);
98}