blob: 175c20ccf05f60a8767244993149293e692d3d4a [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
16#include <arch/io.h>
17#include <cbmem.h>
18#include <device/pci.h>
Julius Werner4ee4bd52014-10-20 13:46:39 -070019#include <soc/pci_devs.h>
20#include <soc/systemagent.h>
Duncan Lauriec88c54c2014-04-30 16:36:13 -070021
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020022static uintptr_t dpr_region_start(void)
Duncan Lauriec88c54c2014-04-30 16:36:13 -070023{
24 /*
Duncan Laurie61680272014-05-05 12:42:35 -050025 * Base of DPR is top of usable DRAM below 4GiB. The register has
26 * 1 MiB alignment and reports the TOP of the range, the base
27 * must be calculated from the size in MiB in bits 11:4.
Duncan Lauriec88c54c2014-04-30 16:36:13 -070028 */
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020029 uintptr_t dpr = pci_read_config32(SA_DEV_ROOT, DPR);
30 uintptr_t tom = dpr & ~((1 << 20) - 1);
Duncan Laurie61680272014-05-05 12:42:35 -050031
32 /* Subtract DMA Protected Range size if enabled */
33 if (dpr & DPR_EPM)
34 tom -= (dpr & DPR_SIZE_MASK) << 16;
35
Kyösti Mälkkif1e3c762014-12-22 12:28:07 +020036 return tom;
37}
38
39void *cbmem_top(void)
40{
41 return (void *) dpr_region_start();
Duncan Lauriec88c54c2014-04-30 16:36:13 -070042}