blob: 5c567551e5d006a17205f8181415b9c2978ac5b1 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassaff25232015-01-01 16:18:07 -07002/*
3 * (C) Copyright 2014 Google, Inc
4 *
Simon Glassaff25232015-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 Glass590cee82018-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 Glassaff25232015-01-01 16:18:07 -070019#include <common.h>
Simon Glass9edefc22019-11-14 12:57:37 -070020#include <cpu_func.h>
Simon Glassf7ae49f2020-05-10 11:40:05 -060021#include <log.h>
Simon Glass90526e92020-05-10 11:39:56 -060022#include <asm/cache.h>
Simon Glassaff25232015-01-01 16:18:07 -070023#include <asm/io.h>
Simon Glass240752c2020-07-17 08:48:22 -060024#include <asm/mp.h>
Simon Glassaff25232015-01-01 16:18:07 -070025#include <asm/msr.h>
26#include <asm/mtrr.h>
27
Bin Meng566d1752015-01-22 11:29:39 +080028DECLARE_GLOBAL_DATA_PTR;
29
Simon Glassaff25232015-01-01 16:18:07 -070030/* Prepare to adjust MTRRs */
Simon Glass590cee82018-10-01 12:22:37 -060031void mtrr_open(struct mtrr_state *state, bool do_caches)
Simon Glassaff25232015-01-01 16:18:07 -070032{
Bin Meng3b621cc2015-01-22 11:29:41 +080033 if (!gd->arch.has_mtrr)
34 return;
35
Simon Glass590cee82018-10-01 12:22:37 -060036 if (do_caches) {
37 state->enable_cache = dcache_status();
Simon Glassaff25232015-01-01 16:18:07 -070038
Simon Glass590cee82018-10-01 12:22:37 -060039 if (state->enable_cache)
40 disable_caches();
41 }
Simon Glassaff25232015-01-01 16:18:07 -070042 state->deftype = native_read_msr(MTRR_DEF_TYPE_MSR);
43 wrmsrl(MTRR_DEF_TYPE_MSR, state->deftype & ~MTRR_DEF_TYPE_EN);
44}
45
46/* Clean up after adjusting MTRRs, and enable them */
Simon Glass590cee82018-10-01 12:22:37 -060047void mtrr_close(struct mtrr_state *state, bool do_caches)
Simon Glassaff25232015-01-01 16:18:07 -070048{
Bin Meng3b621cc2015-01-22 11:29:41 +080049 if (!gd->arch.has_mtrr)
50 return;
51
Simon Glassaff25232015-01-01 16:18:07 -070052 wrmsrl(MTRR_DEF_TYPE_MSR, state->deftype | MTRR_DEF_TYPE_EN);
Simon Glass590cee82018-10-01 12:22:37 -060053 if (do_caches && state->enable_cache)
Simon Glassaff25232015-01-01 16:18:07 -070054 enable_caches();
55}
56
Simon Glass6ccb2f82019-09-25 08:56:45 -060057static void set_var_mtrr(uint reg, uint type, uint64_t start, uint64_t size)
58{
59 u64 mask;
60
61 wrmsrl(MTRR_PHYS_BASE_MSR(reg), start | type);
62 mask = ~(size - 1);
63 mask &= (1ULL << CONFIG_CPU_ADDR_BITS) - 1;
64 wrmsrl(MTRR_PHYS_MASK_MSR(reg), mask | MTRR_PHYS_MASK_VALID);
65}
66
Simon Glass240752c2020-07-17 08:48:22 -060067void mtrr_read_all(struct mtrr_info *info)
68{
69 int i;
70
71 for (i = 0; i < MTRR_COUNT; i++) {
72 info->mtrr[i].base = native_read_msr(MTRR_PHYS_BASE_MSR(i));
73 info->mtrr[i].mask = native_read_msr(MTRR_PHYS_MASK_MSR(i));
74 }
75}
76
Simon Glassaa3a4d82020-07-17 08:48:25 -060077void mtrr_write_all(struct mtrr_info *info)
78{
79 struct mtrr_state state;
80 int i;
81
82 for (i = 0; i < MTRR_COUNT; i++) {
83 mtrr_open(&state, true);
84 wrmsrl(MTRR_PHYS_BASE_MSR(i), info->mtrr[i].base);
85 wrmsrl(MTRR_PHYS_MASK_MSR(i), info->mtrr[i].mask);
86 mtrr_close(&state, true);
87 }
88}
89
90static void write_mtrrs(void *arg)
91{
92 struct mtrr_info *info = arg;
93
94 mtrr_write_all(info);
95}
96
97static void read_mtrrs(void *arg)
98{
99 struct mtrr_info *info = arg;
100
101 mtrr_read_all(info);
102}
103
104/**
105 * mtrr_copy_to_aps() - Copy the MTRRs from the boot CPU to other CPUs
106 *
107 * @return 0 on success, -ve on failure
108 */
109static int mtrr_copy_to_aps(void)
110{
111 struct mtrr_info info;
112 int ret;
113
114 ret = mp_run_on_cpus(MP_SELECT_BSP, read_mtrrs, &info);
115 if (ret == -ENXIO)
116 return 0;
117 else if (ret)
118 return log_msg_ret("bsp", ret);
119
120 ret = mp_run_on_cpus(MP_SELECT_APS, write_mtrrs, &info);
121 if (ret)
122 return log_msg_ret("bsp", ret);
123
124 return 0;
125}
126
Simon Glassaff25232015-01-01 16:18:07 -0700127int mtrr_commit(bool do_caches)
128{
129 struct mtrr_request *req = gd->arch.mtrr_req;
130 struct mtrr_state state;
Simon Glassaa3a4d82020-07-17 08:48:25 -0600131 int ret;
Simon Glassaff25232015-01-01 16:18:07 -0700132 int i;
133
Simon Glass590cee82018-10-01 12:22:37 -0600134 debug("%s: enabled=%d, count=%d\n", __func__, gd->arch.has_mtrr,
135 gd->arch.mtrr_req_count);
Bin Meng3b621cc2015-01-22 11:29:41 +0800136 if (!gd->arch.has_mtrr)
137 return -ENOSYS;
138
Simon Glass590cee82018-10-01 12:22:37 -0600139 debug("open\n");
140 mtrr_open(&state, do_caches);
141 debug("open done\n");
Simon Glass6ccb2f82019-09-25 08:56:45 -0600142 for (i = 0; i < gd->arch.mtrr_req_count; i++, req++)
143 set_var_mtrr(i, req->type, req->start, req->size);
Simon Glassaff25232015-01-01 16:18:07 -0700144
145 /* Clear the ones that are unused */
Simon Glass590cee82018-10-01 12:22:37 -0600146 debug("clear\n");
Simon Glassaff25232015-01-01 16:18:07 -0700147 for (; i < MTRR_COUNT; i++)
148 wrmsrl(MTRR_PHYS_MASK_MSR(i), 0);
Simon Glass590cee82018-10-01 12:22:37 -0600149 debug("close\n");
150 mtrr_close(&state, do_caches);
151 debug("mtrr done\n");
Simon Glassaff25232015-01-01 16:18:07 -0700152
Simon Glassaa3a4d82020-07-17 08:48:25 -0600153 if (gd->flags & GD_FLG_RELOC) {
154 ret = mtrr_copy_to_aps();
155 if (ret)
156 return log_msg_ret("copy", ret);
157 }
158
Simon Glassaff25232015-01-01 16:18:07 -0700159 return 0;
160}
161
162int mtrr_add_request(int type, uint64_t start, uint64_t size)
163{
164 struct mtrr_request *req;
165 uint64_t mask;
166
Simon Glass590cee82018-10-01 12:22:37 -0600167 debug("%s: count=%d\n", __func__, gd->arch.mtrr_req_count);
Bin Meng3b621cc2015-01-22 11:29:41 +0800168 if (!gd->arch.has_mtrr)
169 return -ENOSYS;
170
Simon Glassaff25232015-01-01 16:18:07 -0700171 if (gd->arch.mtrr_req_count == MAX_MTRR_REQUESTS)
172 return -ENOSPC;
173 req = &gd->arch.mtrr_req[gd->arch.mtrr_req_count++];
174 req->type = type;
175 req->start = start;
176 req->size = size;
177 debug("%d: type=%d, %08llx %08llx\n", gd->arch.mtrr_req_count - 1,
178 req->type, req->start, req->size);
179 mask = ~(req->size - 1);
180 mask &= (1ULL << CONFIG_CPU_ADDR_BITS) - 1;
181 mask |= MTRR_PHYS_MASK_VALID;
182 debug(" %016llx %016llx\n", req->start | req->type, mask);
183
184 return 0;
185}
Simon Glassadd3f4c2019-09-25 08:56:46 -0600186
187static int get_var_mtrr_count(void)
188{
189 return msr_read(MSR_MTRR_CAP_MSR).lo & MSR_MTRR_CAP_VCNT;
190}
191
192static int get_free_var_mtrr(void)
193{
194 struct msr_t maskm;
195 int vcnt;
196 int i;
197
198 vcnt = get_var_mtrr_count();
199
200 /* Identify the first var mtrr which is not valid */
201 for (i = 0; i < vcnt; i++) {
202 maskm = msr_read(MTRR_PHYS_MASK_MSR(i));
203 if ((maskm.lo & MTRR_PHYS_MASK_VALID) == 0)
204 return i;
205 }
206
207 /* No free var mtrr */
208 return -ENOSPC;
209}
210
211int mtrr_set_next_var(uint type, uint64_t start, uint64_t size)
212{
213 int mtrr;
214
215 mtrr = get_free_var_mtrr();
216 if (mtrr < 0)
217 return mtrr;
218
219 set_var_mtrr(mtrr, type, start, size);
220 debug("MTRR %x: start=%x, size=%x\n", mtrr, (uint)start, (uint)size);
221
222 return 0;
223}