cpu/intel: Add socket types
[coreboot2.git] / src / northbridge / intel / i440bx / memmap.c
blob8bdd5d9c6abe3784652ae1dfb1300d7d6da394f5
1 /* SPDX-License-Identifier: GPL-2.0-only */
3 #include <arch/romstage.h>
4 #include <device/pci_ops.h>
5 #include <cbmem.h>
6 #include <commonlib/helpers.h>
7 #include <cpu/x86/mtrr.h>
8 #include <program_loading.h>
9 #include "i440bx.h"
11 uintptr_t cbmem_top_chipset(void)
13 /* Base of TSEG is top of usable DRAM */
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.
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.
40 * Source: 440BX datasheet, pages 3-28 thru 3-29.
42 uintptr_t tom = pci_read_config8(NB, DRB7) * 8 * MiB;
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;
51 return tom;
54 void fill_postcar_frame(struct postcar_frame *pcf)
56 /* Cache CBMEM region as WB. */
57 const uintptr_t top_of_ram = cbmem_top();
58 postcar_frame_add_mtrr(pcf, top_of_ram - 8*MiB, 8*MiB,
59 MTRR_TYPE_WRBACK);