blob: 6bb434f00eb2faa741dbe5dbdd0ae7cb6aabf8c5 [file] [log] [blame]
Duncan Lauriec88c54c2014-04-30 16:36:13 -07001/*
2 * This file is part of the coreboot project.
3 *
Duncan Lauriec88c54c2014-04-30 16:36:13 -07004 *
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; version 2 of the License.
8 *
9 * This program is distributed in the hope that it will be useful,
10 * but WITHOUT ANY WARRANTY; without even the implied warranty of
11 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12 * GNU General Public License for more details.
Duncan Lauriec88c54c2014-04-30 16:36:13 -070013 */
14
Kyösti Mälkki326edeb2019-07-24 13:27:46 +030015#define __SIMPLE_DEVICE__
16
Duncan Lauriec88c54c2014-04-30 16:36:13 -070017#include <cbmem.h>
Kyösti Mälkki8f09688d2019-08-15 11:29:15 +030018#include <cpu/x86/smm.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070019#include <device/pci.h>
Kyösti Mälkki26a682c2019-08-02 06:13:22 +030020#include <device/pci_ops.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070021#include <soc/pci_devs.h>
22#include <soc/systemagent.h>
Kyösti Mälkki26a682c2019-08-02 06:13:22 +030023#include <stdint.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070024
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020025static uintptr_t dpr_region_start(void)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070026{
27 /*
Duncan Laurie61680272014-05-05 12:42:35 -050028 * Base of DPR is top of usable DRAM below 4GiB. The register has
29 * 1 MiB alignment and reports the TOP of the range, the base
30 * must be calculated from the size in MiB in bits 11:4.
Duncan Lauriec88c54c2014-04-30 16:36:13 -070031 */
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020032 uintptr_t dpr = pci_read_config32(SA_DEV_ROOT, DPR);
33 uintptr_t tom = dpr & ~((1 << 20) - 1);
Duncan Laurie61680272014-05-05 12:42:35 -050034
35 /* Subtract DMA Protected Range size if enabled */
36 if (dpr & DPR_EPM)
37 tom -= (dpr & DPR_SIZE_MASK) << 16;
38
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020039 return tom;
40}
41
Arthur Heymans340e4b82019-10-23 17:25:58 +020042void *cbmem_top_chipset(void)
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020043{
44 return (void *) dpr_region_start();
Duncan Lauriec88c54c2014-04-30 16:36:13 -070045}
Kyösti Mälkki26a682c2019-08-02 06:13:22 +030046
Kyösti Mälkki8f09688d2019-08-15 11:29:15 +030047void smm_region(uintptr_t *start, size_t *size)
Kyösti Mälkki26a682c2019-08-02 06:13:22 +030048{
Kyösti Mälkki8f09688d2019-08-15 11:29:15 +030049 uintptr_t tseg = pci_read_config32(PCI_DEV(0, 0, 0), TSEG);
50 uintptr_t bgsm = pci_read_config32(PCI_DEV(0, 0, 0), BGSM);
Kyösti Mälkki26a682c2019-08-02 06:13:22 +030051
Kyösti Mälkki8f09688d2019-08-15 11:29:15 +030052 tseg = ALIGN_DOWN(tseg, 1 * MiB);
53 bgsm = ALIGN_DOWN(bgsm, 1 * MiB);
54 *start = tseg;
55 *size = bgsm - tseg;
Kyösti Mälkki26a682c2019-08-02 06:13:22 +030056}