blob: 0939736164d496ea8f2ad0ffa107837302db230d [file] [log] [blame]
Tom Rini10e47792018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glass7bf5b9e2015-01-01 16:18:07 -07002/*
3 * (C) Copyright 2014 Google, Inc
4 *
Simon Glass7bf5b9e2015-01-01 16:18:07 -07005 * Memory Type Range Regsters - these are used to tell the CPU whether
6 * memory is cacheable and if so the cache write mode to use.
7 *
8 * These can speed up booting. See the mtrr command.
9 *
10 * Reference: Intel Architecture Software Developer's Manual, Volume 3:
11 * System Programming
12 */
13
Simon Glass8fafd012018-10-01 12:22:37 -060014/*
15 * Note that any console output (e.g. debug()) in this file will likely fail
16 * since the MTRR registers are sometimes in flux.
17 */
18
Simon Glass7bf5b9e2015-01-01 16:18:07 -070019#include <common.h>
20#include <asm/io.h>
21#include <asm/msr.h>
22#include <asm/mtrr.h>
23
Bin Meng068fb352015-01-22 11:29:39 +080024DECLARE_GLOBAL_DATA_PTR;
25
Simon Glass7bf5b9e2015-01-01 16:18:07 -070026/* Prepare to adjust MTRRs */
Simon Glass8fafd012018-10-01 12:22:37 -060027void mtrr_open(struct mtrr_state *state, bool do_caches)
Simon Glass7bf5b9e2015-01-01 16:18:07 -070028{
Bin Meng80d29762015-01-22 11:29:41 +080029 if (!gd->arch.has_mtrr)
30 return;
31
Simon Glass8fafd012018-10-01 12:22:37 -060032 if (do_caches) {
33 state->enable_cache = dcache_status();
Simon Glass7bf5b9e2015-01-01 16:18:07 -070034
Simon Glass8fafd012018-10-01 12:22:37 -060035 if (state->enable_cache)
36 disable_caches();
37 }
Simon Glass7bf5b9e2015-01-01 16:18:07 -070038 state->deftype = native_read_msr(MTRR_DEF_TYPE_MSR);
39 wrmsrl(MTRR_DEF_TYPE_MSR, state->deftype & ~MTRR_DEF_TYPE_EN);
40}
41
42/* Clean up after adjusting MTRRs, and enable them */
Simon Glass8fafd012018-10-01 12:22:37 -060043void mtrr_close(struct mtrr_state *state, bool do_caches)
Simon Glass7bf5b9e2015-01-01 16:18:07 -070044{
Bin Meng80d29762015-01-22 11:29:41 +080045 if (!gd->arch.has_mtrr)
46 return;
47
Simon Glass7bf5b9e2015-01-01 16:18:07 -070048 wrmsrl(MTRR_DEF_TYPE_MSR, state->deftype | MTRR_DEF_TYPE_EN);
Simon Glass8fafd012018-10-01 12:22:37 -060049 if (do_caches && state->enable_cache)
Simon Glass7bf5b9e2015-01-01 16:18:07 -070050 enable_caches();
51}
52
53int mtrr_commit(bool do_caches)
54{
55 struct mtrr_request *req = gd->arch.mtrr_req;
56 struct mtrr_state state;
57 uint64_t mask;
58 int i;
59
Simon Glass8fafd012018-10-01 12:22:37 -060060 debug("%s: enabled=%d, count=%d\n", __func__, gd->arch.has_mtrr,
61 gd->arch.mtrr_req_count);
Bin Meng80d29762015-01-22 11:29:41 +080062 if (!gd->arch.has_mtrr)
63 return -ENOSYS;
64
Simon Glass8fafd012018-10-01 12:22:37 -060065 debug("open\n");
66 mtrr_open(&state, do_caches);
67 debug("open done\n");
Simon Glass7bf5b9e2015-01-01 16:18:07 -070068 for (i = 0; i < gd->arch.mtrr_req_count; i++, req++) {
69 mask = ~(req->size - 1);
70 mask &= (1ULL << CONFIG_CPU_ADDR_BITS) - 1;
71 wrmsrl(MTRR_PHYS_BASE_MSR(i), req->start | req->type);
72 wrmsrl(MTRR_PHYS_MASK_MSR(i), mask | MTRR_PHYS_MASK_VALID);
73 }
74
75 /* Clear the ones that are unused */
Simon Glass8fafd012018-10-01 12:22:37 -060076 debug("clear\n");
Simon Glass7bf5b9e2015-01-01 16:18:07 -070077 for (; i < MTRR_COUNT; i++)
78 wrmsrl(MTRR_PHYS_MASK_MSR(i), 0);
Simon Glass8fafd012018-10-01 12:22:37 -060079 debug("close\n");
80 mtrr_close(&state, do_caches);
81 debug("mtrr done\n");
Simon Glass7bf5b9e2015-01-01 16:18:07 -070082
83 return 0;
84}
85
86int mtrr_add_request(int type, uint64_t start, uint64_t size)
87{
88 struct mtrr_request *req;
89 uint64_t mask;
90
Simon Glass8fafd012018-10-01 12:22:37 -060091 debug("%s: count=%d\n", __func__, gd->arch.mtrr_req_count);
Bin Meng80d29762015-01-22 11:29:41 +080092 if (!gd->arch.has_mtrr)
93 return -ENOSYS;
94
Simon Glass7bf5b9e2015-01-01 16:18:07 -070095 if (gd->arch.mtrr_req_count == MAX_MTRR_REQUESTS)
96 return -ENOSPC;
97 req = &gd->arch.mtrr_req[gd->arch.mtrr_req_count++];
98 req->type = type;
99 req->start = start;
100 req->size = size;
101 debug("%d: type=%d, %08llx %08llx\n", gd->arch.mtrr_req_count - 1,
102 req->type, req->start, req->size);
103 mask = ~(req->size - 1);
104 mask &= (1ULL << CONFIG_CPU_ADDR_BITS) - 1;
105 mask |= MTRR_PHYS_MASK_VALID;
106 debug(" %016llx %016llx\n", req->start | req->type, mask);
107
108 return 0;
109}