blob: 204e83badf349490d4b8f2329dc11a9abdd029be [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Keith Huid0301c12017-09-02 18:13:11 -04002
Kyösti Mälkkia963acd2019-08-16 20:34:25 +03003#include <arch/romstage.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02004#include <device/pci_ops.h>
Keith Huid0301c12017-09-02 18:13:11 -04005#include <cbmem.h>
6#include <commonlib/helpers.h>
Kyösti Mälkki54d6a282018-05-25 06:03:14 +03007#include <cpu/x86/mtrr.h>
8#include <program_loading.h>
Keith Huid0301c12017-09-02 18:13:11 -04009#include "i440bx.h"
10
Elyes Haouas799c3212022-11-09 14:00:44 +010011uintptr_t cbmem_top_chipset(void)
Keith Huid0301c12017-09-02 18:13:11 -040012{
13 /* Base of TSEG is top of usable DRAM */
14 /*
15 * SMRAM - System Management RAM Control Register
16 * 0x72
17 * [7:4] Not relevant to this function.
18 * [3:3] Global SMRAM Enable (G_SMRAME)
19 * [2:0] Hardwired to 010.
20 *
21 * ESMRAMC - Extended System Management RAM Control
22 * 0x73
23 * [7:7] H_SMRAM_EN
24 * 1 = When G_SMRAME=1, High SMRAM space is enabled at
25 * 0x100A0000-0x100FFFFF and forwarded to DRAM address
26 * 0x000A0000-0x000FFFFF.
27 * 0 = When G_SMRAME=1, Compatible SMRAM space is enabled at
28 * 0x000A0000-0x000BFFFF.
29 * [6:3] Not relevant to this function.
30 * [2:1] TSEG Size (T_SZ)
31 * Selects the size of the TSEG memory block, if enabled.
32 * 00 = 128KiB
33 * 01 = 256KiB
34 * 10 = 512KiB
35 * 11 = 1MiB
36 * [0:0] TSEG_EN
37 * When SMRAM[G_SMRAME] and this bit are 1, TSEG is enabled to
38 * appear between DRAM address (TOM-<TSEG Size>) to TOM.
39 *
40 * Source: 440BX datasheet, pages 3-28 thru 3-29.
41 */
Elyes Haouas799c3212022-11-09 14:00:44 +010042 uintptr_t tom = pci_read_config8(NB, DRB7) * 8 * MiB;
Keith Huid0301c12017-09-02 18:13:11 -040043
44 int gsmrame = pci_read_config8(NB, SMRAM) & 0x8;
45 /* T_SZ and TSEG_EN */
46 int tseg = pci_read_config8(NB, ESMRAMC) & 0x7;
47 if ((tseg & 0x1) && gsmrame) {
48 int tseg_size = 128 * KiB * (1 << (tseg >> 1));
49 tom -= tseg_size;
50 }
Elyes Haouas799c3212022-11-09 14:00:44 +010051 return tom;
Keith Huid0301c12017-09-02 18:13:11 -040052}
Kyösti Mälkki54d6a282018-05-25 06:03:14 +030053
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +030054void fill_postcar_frame(struct postcar_frame *pcf)
Kyösti Mälkki54d6a282018-05-25 06:03:14 +030055{
Kyösti Mälkki54d6a282018-05-25 06:03:14 +030056 uintptr_t top_of_ram;
57
Kyösti Mälkki54d6a282018-05-25 06:03:14 +030058 /* Cache CBMEM region as WB. */
59 top_of_ram = (uintptr_t)cbmem_top();
Kyösti Mälkki5bc641a2019-08-09 09:37:49 +030060 postcar_frame_add_mtrr(pcf, top_of_ram - 8*MiB, 8*MiB,
Kyösti Mälkki54d6a282018-05-25 06:03:14 +030061 MTRR_TYPE_WRBACK);
Kyösti Mälkki54d6a282018-05-25 06:03:14 +030062}