Change-Id: I46a362270f69d0a4a28e5bb9c954f34d632815ff Signed-off-by: Elyes Haouas <ehaouas@noos.fr> Reviewed-on: https://review.coreboot.org/c/coreboot/+/81455 Tested-by: build bot (Jenkins) <no-reply@coreboot.org> Reviewed-by: Angel Pons <th3fanbus@gmail.com>
63 lines
1.8 KiB
C
63 lines
1.8 KiB
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
|
|
#include <arch/romstage.h>
|
|
#include <device/pci_ops.h>
|
|
#include <cbmem.h>
|
|
#include <commonlib/helpers.h>
|
|
#include <cpu/x86/mtrr.h>
|
|
#include <program_loading.h>
|
|
#include "i440bx.h"
|
|
|
|
uintptr_t cbmem_top_chipset(void)
|
|
{
|
|
/* Base of TSEG is top of usable DRAM */
|
|
/*
|
|
* SMRAM - System Management RAM Control Register
|
|
* 0x72
|
|
* [7:4] Not relevant to this function.
|
|
* [3:3] Global SMRAM Enable (G_SMRAME)
|
|
* [2:0] Hardwired to 010.
|
|
*
|
|
* ESMRAMC - Extended System Management RAM Control
|
|
* 0x73
|
|
* [7:7] H_SMRAM_EN
|
|
* 1 = When G_SMRAME=1, High SMRAM space is enabled at
|
|
* 0x100A0000-0x100FFFFF and forwarded to DRAM address
|
|
* 0x000A0000-0x000FFFFF.
|
|
* 0 = When G_SMRAME=1, Compatible SMRAM space is enabled at
|
|
* 0x000A0000-0x000BFFFF.
|
|
* [6:3] Not relevant to this function.
|
|
* [2:1] TSEG Size (T_SZ)
|
|
* Selects the size of the TSEG memory block, if enabled.
|
|
* 00 = 128KiB
|
|
* 01 = 256KiB
|
|
* 10 = 512KiB
|
|
* 11 = 1MiB
|
|
* [0:0] TSEG_EN
|
|
* When SMRAM[G_SMRAME] and this bit are 1, TSEG is enabled to
|
|
* appear between DRAM address (TOM-<TSEG Size>) to TOM.
|
|
*
|
|
* Source: 440BX datasheet, pages 3-28 thru 3-29.
|
|
*/
|
|
uintptr_t tom = pci_read_config8(NB, DRB7) * 8 * MiB;
|
|
|
|
int gsmrame = pci_read_config8(NB, SMRAM) & 0x8;
|
|
/* T_SZ and TSEG_EN */
|
|
int tseg = pci_read_config8(NB, ESMRAMC) & 0x7;
|
|
if ((tseg & 0x1) && gsmrame) {
|
|
int tseg_size = 128 * KiB * (1 << (tseg >> 1));
|
|
tom -= tseg_size;
|
|
}
|
|
return tom;
|
|
}
|
|
|
|
void fill_postcar_frame(struct postcar_frame *pcf)
|
|
{
|
|
uintptr_t top_of_ram;
|
|
|
|
/* Cache CBMEM region as WB. */
|
|
top_of_ram = (uintptr_t)cbmem_top();
|
|
postcar_frame_add_mtrr(pcf, top_of_ram - 8*MiB, 8*MiB,
|
|
MTRR_TYPE_WRBACK);
|
|
}
|