blob: 7ec0733337d80aafa127eba467aca7cfeaf5c6f1 [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>
Simon Glass1d91ba72019-11-14 12:57:37 -070020#include <cpu_func.h>
Simon Glass0f2af882020-05-10 11:40:05 -060021#include <log.h>
Simon Glass274e0b02020-05-10 11:39:56 -060022#include <asm/cache.h>
Simon Glass7bf5b9e2015-01-01 16:18:07 -070023#include <asm/io.h>
24#include <asm/msr.h>
25#include <asm/mtrr.h>
26
Bin Meng068fb352015-01-22 11:29:39 +080027DECLARE_GLOBAL_DATA_PTR;
28
Simon Glass7bf5b9e2015-01-01 16:18:07 -070029/* Prepare to adjust MTRRs */
Simon Glass8fafd012018-10-01 12:22:37 -060030void mtrr_open(struct mtrr_state *state, bool do_caches)
Simon Glass7bf5b9e2015-01-01 16:18:07 -070031{
Bin Meng80d29762015-01-22 11:29:41 +080032 if (!gd->arch.has_mtrr)
33 return;
34
Simon Glass8fafd012018-10-01 12:22:37 -060035 if (do_caches) {
36 state->enable_cache = dcache_status();
Simon Glass7bf5b9e2015-01-01 16:18:07 -070037
Simon Glass8fafd012018-10-01 12:22:37 -060038 if (state->enable_cache)
39 disable_caches();
40 }
Simon Glass7bf5b9e2015-01-01 16:18:07 -070041 state->deftype = native_read_msr(MTRR_DEF_TYPE_MSR);
42 wrmsrl(MTRR_DEF_TYPE_MSR, state->deftype & ~MTRR_DEF_TYPE_EN);
43}
44
45/* Clean up after adjusting MTRRs, and enable them */
Simon Glass8fafd012018-10-01 12:22:37 -060046void mtrr_close(struct mtrr_state *state, bool do_caches)
Simon Glass7bf5b9e2015-01-01 16:18:07 -070047{
Bin Meng80d29762015-01-22 11:29:41 +080048 if (!gd->arch.has_mtrr)
49 return;
50
Simon Glass7bf5b9e2015-01-01 16:18:07 -070051 wrmsrl(MTRR_DEF_TYPE_MSR, state->deftype | MTRR_DEF_TYPE_EN);
Simon Glass8fafd012018-10-01 12:22:37 -060052 if (do_caches && state->enable_cache)
Simon Glass7bf5b9e2015-01-01 16:18:07 -070053 enable_caches();
54}
55
Simon Glass35520592019-09-25 08:56:45 -060056static void set_var_mtrr(uint reg, uint type, uint64_t start, uint64_t size)
57{
58 u64 mask;
59
60 wrmsrl(MTRR_PHYS_BASE_MSR(reg), start | type);
61 mask = ~(size - 1);
62 mask &= (1ULL << CONFIG_CPU_ADDR_BITS) - 1;
63 wrmsrl(MTRR_PHYS_MASK_MSR(reg), mask | MTRR_PHYS_MASK_VALID);
64}
65
Simon Glass7bf5b9e2015-01-01 16:18:07 -070066int mtrr_commit(bool do_caches)
67{
68 struct mtrr_request *req = gd->arch.mtrr_req;
69 struct mtrr_state state;
Simon Glass7bf5b9e2015-01-01 16:18:07 -070070 int i;
71
Simon Glass8fafd012018-10-01 12:22:37 -060072 debug("%s: enabled=%d, count=%d\n", __func__, gd->arch.has_mtrr,
73 gd->arch.mtrr_req_count);
Bin Meng80d29762015-01-22 11:29:41 +080074 if (!gd->arch.has_mtrr)
75 return -ENOSYS;
76
Simon Glass8fafd012018-10-01 12:22:37 -060077 debug("open\n");
78 mtrr_open(&state, do_caches);
79 debug("open done\n");
Simon Glass35520592019-09-25 08:56:45 -060080 for (i = 0; i < gd->arch.mtrr_req_count; i++, req++)
81 set_var_mtrr(i, req->type, req->start, req->size);
Simon Glass7bf5b9e2015-01-01 16:18:07 -070082
83 /* Clear the ones that are unused */
Simon Glass8fafd012018-10-01 12:22:37 -060084 debug("clear\n");
Simon Glass7bf5b9e2015-01-01 16:18:07 -070085 for (; i < MTRR_COUNT; i++)
86 wrmsrl(MTRR_PHYS_MASK_MSR(i), 0);
Simon Glass8fafd012018-10-01 12:22:37 -060087 debug("close\n");
88 mtrr_close(&state, do_caches);
89 debug("mtrr done\n");
Simon Glass7bf5b9e2015-01-01 16:18:07 -070090
91 return 0;
92}
93
94int mtrr_add_request(int type, uint64_t start, uint64_t size)
95{
96 struct mtrr_request *req;
97 uint64_t mask;
98
Simon Glass8fafd012018-10-01 12:22:37 -060099 debug("%s: count=%d\n", __func__, gd->arch.mtrr_req_count);
Bin Meng80d29762015-01-22 11:29:41 +0800100 if (!gd->arch.has_mtrr)
101 return -ENOSYS;
102
Simon Glass7bf5b9e2015-01-01 16:18:07 -0700103 if (gd->arch.mtrr_req_count == MAX_MTRR_REQUESTS)
104 return -ENOSPC;
105 req = &gd->arch.mtrr_req[gd->arch.mtrr_req_count++];
106 req->type = type;
107 req->start = start;
108 req->size = size;
109 debug("%d: type=%d, %08llx %08llx\n", gd->arch.mtrr_req_count - 1,
110 req->type, req->start, req->size);
111 mask = ~(req->size - 1);
112 mask &= (1ULL << CONFIG_CPU_ADDR_BITS) - 1;
113 mask |= MTRR_PHYS_MASK_VALID;
114 debug(" %016llx %016llx\n", req->start | req->type, mask);
115
116 return 0;
117}
Simon Glass753297d2019-09-25 08:56:46 -0600118
119static int get_var_mtrr_count(void)
120{
121 return msr_read(MSR_MTRR_CAP_MSR).lo & MSR_MTRR_CAP_VCNT;
122}
123
124static int get_free_var_mtrr(void)
125{
126 struct msr_t maskm;
127 int vcnt;
128 int i;
129
130 vcnt = get_var_mtrr_count();
131
132 /* Identify the first var mtrr which is not valid */
133 for (i = 0; i < vcnt; i++) {
134 maskm = msr_read(MTRR_PHYS_MASK_MSR(i));
135 if ((maskm.lo & MTRR_PHYS_MASK_VALID) == 0)
136 return i;
137 }
138
139 /* No free var mtrr */
140 return -ENOSPC;
141}
142
143int mtrr_set_next_var(uint type, uint64_t start, uint64_t size)
144{
145 int mtrr;
146
147 mtrr = get_free_var_mtrr();
148 if (mtrr < 0)
149 return mtrr;
150
151 set_var_mtrr(mtrr, type, start, size);
152 debug("MTRR %x: start=%x, size=%x\n", mtrr, (uint)start, (uint)size);
153
154 return 0;
155}