blob: ad50dd35db431818f498411f649ad076772eab24 [file] [log] [blame]
Duncan Lauriec88c54c2014-04-30 16:36:13 -07001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2014 Google Inc.
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.
Duncan Lauriec88c54c2014-04-30 16:36:13 -070014 */
15
Kyösti Mälkki326edeb2019-07-24 13:27:46 +030016#define __SIMPLE_DEVICE__
17
Duncan Lauriec88c54c2014-04-30 16:36:13 -070018#include <cbmem.h>
Kyösti Mälkki8f09688d2019-08-15 11:29:15 +030019#include <cpu/x86/smm.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070020#include <device/pci.h>
Kyösti Mälkki26a682c2019-08-02 06:13:22 +030021#include <device/pci_ops.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070022#include <soc/pci_devs.h>
23#include <soc/systemagent.h>
Kyösti Mälkki26a682c2019-08-02 06:13:22 +030024#include <soc/smm.h>
Kyösti Mälkki26a682c2019-08-02 06:13:22 +030025#include <stdint.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070026
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020027static uintptr_t dpr_region_start(void)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070028{
29 /*
Duncan Laurie61680272014-05-05 12:42:35 -050030 * Base of DPR is top of usable DRAM below 4GiB. The register has
31 * 1 MiB alignment and reports the TOP of the range, the base
32 * must be calculated from the size in MiB in bits 11:4.
Duncan Lauriec88c54c2014-04-30 16:36:13 -070033 */
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020034 uintptr_t dpr = pci_read_config32(SA_DEV_ROOT, DPR);
35 uintptr_t tom = dpr & ~((1 << 20) - 1);
Duncan Laurie61680272014-05-05 12:42:35 -050036
37 /* Subtract DMA Protected Range size if enabled */
38 if (dpr & DPR_EPM)
39 tom -= (dpr & DPR_SIZE_MASK) << 16;
40
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020041 return tom;
42}
43
Arthur Heymans340e4b82019-10-23 17:25:58 +020044void *cbmem_top_chipset(void)
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020045{
46 return (void *) dpr_region_start();
Duncan Lauriec88c54c2014-04-30 16:36:13 -070047}
Kyösti Mälkki26a682c2019-08-02 06:13:22 +030048
Kyösti Mälkki8f09688d2019-08-15 11:29:15 +030049void smm_region(uintptr_t *start, size_t *size)
Kyösti Mälkki26a682c2019-08-02 06:13:22 +030050{
Kyösti Mälkki8f09688d2019-08-15 11:29:15 +030051 uintptr_t tseg = pci_read_config32(PCI_DEV(0, 0, 0), TSEG);
52 uintptr_t bgsm = pci_read_config32(PCI_DEV(0, 0, 0), BGSM);
Kyösti Mälkki26a682c2019-08-02 06:13:22 +030053
Kyösti Mälkki8f09688d2019-08-15 11:29:15 +030054 tseg = ALIGN_DOWN(tseg, 1 * MiB);
55 bgsm = ALIGN_DOWN(bgsm, 1 * MiB);
56 *start = tseg;
57 *size = bgsm - tseg;
Kyösti Mälkki26a682c2019-08-02 06:13:22 +030058}