Loading...
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 | // SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2014 Google, Inc * Portions added from coreboot * * Memory Type Range Regsters - these are used to tell the CPU whether * memory is cacheable and if so the cache write mode to use. * * These can speed up booting. See the mtrr command. * * Reference: Intel Architecture Software Developer's Manual, Volume 3: * System Programming */ /* * Note that any console output (e.g. debug()) in this file will likely fail * since the MTRR registers are sometimes in flux. */ #include <cpu.h> #include <cpu_func.h> #include <log.h> #include <sort.h> #include <asm/cache.h> #include <asm/global_data.h> #include <asm/io.h> #include <asm/mp.h> #include <asm/msr.h> #include <asm/mtrr.h> #include <linux/log2.h> DECLARE_GLOBAL_DATA_PTR; static const char *const mtrr_type_name[MTRR_TYPE_COUNT] = { "Uncacheable", "Combine", "2", "3", "Through", "Protect", "Back", }; u64 mtrr_to_size(u64 mask) { u64 size; size = ~mask & ((1ULL << cpu_phys_address_size()) - 1); size |= (1 << 12) - 1; size += 1; return size; } u64 mtrr_to_mask(u64 size) { u64 mask; mask = ~(size - 1); mask &= (1ull << cpu_phys_address_size()) - 1; return mask; } /* Prepare to adjust MTRRs */ void mtrr_open(struct mtrr_state *state, bool do_caches) { if (!gd->arch.has_mtrr) return; if (do_caches) { state->enable_cache = dcache_status(); if (state->enable_cache) disable_caches(); } state->deftype = native_read_msr(MTRR_DEF_TYPE_MSR); wrmsrl(MTRR_DEF_TYPE_MSR, state->deftype & ~MTRR_DEF_TYPE_EN); } /* Clean up after adjusting MTRRs, and enable them */ void mtrr_close(struct mtrr_state *state, bool do_caches) { if (!gd->arch.has_mtrr) return; wrmsrl(MTRR_DEF_TYPE_MSR, state->deftype | MTRR_DEF_TYPE_EN); if (do_caches && state->enable_cache) enable_caches(); } static void set_var_mtrr(uint reg, uint type, uint64_t start, uint64_t size) { u64 mask = mtrr_to_mask(size); wrmsrl(MTRR_PHYS_BASE_MSR(reg), start | type); wrmsrl(MTRR_PHYS_MASK_MSR(reg), mask | MTRR_PHYS_MASK_VALID); } void mtrr_read_all(struct mtrr_info *info) { int reg_count = mtrr_get_var_count(); int i; for (i = 0; i < reg_count; i++) { info->mtrr[i].base = native_read_msr(MTRR_PHYS_BASE_MSR(i)); info->mtrr[i].mask = native_read_msr(MTRR_PHYS_MASK_MSR(i)); } } static void mtrr_write_all(struct mtrr_info *info) { int reg_count = mtrr_get_var_count(); struct mtrr_state state; int i; for (i = 0; i < reg_count; i++) { mtrr_open(&state, true); wrmsrl(MTRR_PHYS_BASE_MSR(i), info->mtrr[i].base); wrmsrl(MTRR_PHYS_MASK_MSR(i), info->mtrr[i].mask); mtrr_close(&state, true); } } static void write_mtrrs(void *arg) { struct mtrr_info *info = arg; mtrr_write_all(info); } static void read_mtrrs(void *arg) { struct mtrr_info *info = arg; mtrr_read_all(info); } /** * mtrr_copy_to_aps() - Copy the MTRRs from the boot CPU to other CPUs * * Return: 0 on success, -ve on failure */ static int mtrr_copy_to_aps(void) { struct mtrr_info info; int ret; ret = mp_run_on_cpus(MP_SELECT_BSP, read_mtrrs, &info); if (ret == -ENXIO) return 0; else if (ret) return log_msg_ret("bsp", ret); ret = mp_run_on_cpus(MP_SELECT_APS, write_mtrrs, &info); if (ret) return log_msg_ret("bsp", ret); return 0; } static int h_comp_mtrr(const void *p1, const void *p2) { const struct mtrr_request *req1 = p1; const struct mtrr_request *req2 = p2; s64 diff = req1->start - req2->start; return diff < 0 ? -1 : diff > 0 ? 1 : 0; } int mtrr_commit(bool do_caches) { struct mtrr_request *req = gd->arch.mtrr_req; struct mtrr_state state; int ret; int i; debug("%s: enabled=%d, count=%d\n", __func__, gd->arch.has_mtrr, gd->arch.mtrr_req_count); if (!gd->arch.has_mtrr) return -ENOSYS; debug("open\n"); mtrr_open(&state, do_caches); debug("open done\n"); qsort(req, gd->arch.mtrr_req_count, sizeof(*req), h_comp_mtrr); for (i = 0; i < gd->arch.mtrr_req_count; i++, req++) set_var_mtrr(i, req->type, req->start, req->size); /* Clear the ones that are unused */ debug("clear\n"); for (; i < mtrr_get_var_count(); i++) wrmsrl(MTRR_PHYS_MASK_MSR(i), 0); debug("close\n"); mtrr_close(&state, do_caches); debug("mtrr done\n"); if (gd->flags & GD_FLG_RELOC) { ret = mtrr_copy_to_aps(); if (ret) return log_msg_ret("copy", ret); } return 0; } /* fms: find most significant bit set (from Linux) */ static inline uint fms(uint val) { uint ret; __asm__("bsrl %1,%0\n\t" "jnz 1f\n\t" "movl $0,%0\n" "1:" : "=r" (ret) : "mr" (val)); return ret; } /* * fms64: find most significant bit set in a 64-bit word * As samples, fms64(0x0) = 0; fms64(0x4400) = 14; * fms64(0x40400000000) = 42. */ static uint fms64(uint64_t val) { u32 hi = (u32)(val >> 32); if (!hi) return fms((u32)val); return fms(hi) + 32; } int mtrr_add_request(int type, u64 base, uint64_t size) { struct mtrr_request *req; u64 mask; debug("%s: count=%d\n", __func__, gd->arch.mtrr_req_count); if (!gd->arch.has_mtrr) return -ENOSYS; while (size) { uint addr_lsb; uint size_msb; u64 mtrr_size; addr_lsb = fls64(base); size_msb = fms64(size); /* * All MTRR entries need to have their base aligned to the * mask size. The maximum size is calculated by a function of * the min base bit set and maximum size bit set. * Algorithm is from coreboot */ if (!addr_lsb || addr_lsb > size_msb) mtrr_size = 1ull << size_msb; else mtrr_size = 1ull << addr_lsb; log_debug("addr_lsb %x size_msb %x mtrr_size %llx\n", addr_lsb, size_msb, mtrr_size); if (gd->arch.mtrr_req_count == MAX_MTRR_REQUESTS) return -ENOSPC; req = &gd->arch.mtrr_req[gd->arch.mtrr_req_count++]; req->type = type; req->start = base; req->size = mtrr_size; log_debug("%d: type=%d, %08llx %08llx ", gd->arch.mtrr_req_count - 1, req->type, req->start, req->size); mask = mtrr_to_mask(req->size); mask |= MTRR_PHYS_MASK_VALID; log_debug(" %016llx %016llx\n", req->start | req->type, mask); size -= mtrr_size; base += mtrr_size; } return 0; } int mtrr_get_var_count(void) { return msr_read(MSR_MTRR_CAP_MSR).lo & MSR_MTRR_CAP_VCNT; } static int get_free_var_mtrr(void) { struct msr_t maskm; int vcnt; int i; vcnt = mtrr_get_var_count(); /* Identify the first var mtrr which is not valid */ for (i = 0; i < vcnt; i++) { maskm = msr_read(MTRR_PHYS_MASK_MSR(i)); if ((maskm.lo & MTRR_PHYS_MASK_VALID) == 0) return i; } /* No free var mtrr */ return -ENOSPC; } int mtrr_set_next_var(uint type, uint64_t start, uint64_t size) { int mtrr; if (!is_power_of_2(size)) return -EINVAL; mtrr = get_free_var_mtrr(); if (mtrr < 0) return mtrr; set_var_mtrr(mtrr, type, start, size); debug("MTRR %x: start=%x, size=%x\n", mtrr, (uint)start, (uint)size); return 0; } /** enum mtrr_opcode - supported operations for mtrr_do_oper() */ enum mtrr_opcode { MTRR_OP_SET, MTRR_OP_SET_VALID, }; /** * struct mtrr_oper - An MTRR operation to perform on a CPU * * @opcode: Indicates operation to perform * @reg: MTRR reg number to select (0-7, -1 = all) * @valid: Valid value to write for MTRR_OP_SET_VALID * @base: Base value to write for MTRR_OP_SET * @mask: Mask value to write for MTRR_OP_SET */ struct mtrr_oper { enum mtrr_opcode opcode; int reg; bool valid; u64 base; u64 mask; }; static void mtrr_do_oper(void *arg) { struct mtrr_oper *oper = arg; u64 mask; switch (oper->opcode) { case MTRR_OP_SET_VALID: mask = native_read_msr(MTRR_PHYS_MASK_MSR(oper->reg)); if (oper->valid) mask |= MTRR_PHYS_MASK_VALID; else mask &= ~MTRR_PHYS_MASK_VALID; wrmsrl(MTRR_PHYS_MASK_MSR(oper->reg), mask); break; case MTRR_OP_SET: wrmsrl(MTRR_PHYS_BASE_MSR(oper->reg), oper->base); wrmsrl(MTRR_PHYS_MASK_MSR(oper->reg), oper->mask); break; } } static int mtrr_start_op(int cpu_select, struct mtrr_oper *oper) { struct mtrr_state state; int ret; mtrr_open(&state, true); ret = mp_run_on_cpus(cpu_select, mtrr_do_oper, oper); mtrr_close(&state, true); if (ret) return log_msg_ret("run", ret); return 0; } int mtrr_set_valid(int cpu_select, int reg, bool valid) { struct mtrr_oper oper; oper.opcode = MTRR_OP_SET_VALID; oper.reg = reg; oper.valid = valid; return mtrr_start_op(cpu_select, &oper); } int mtrr_set(int cpu_select, int reg, u64 base, u64 mask) { struct mtrr_oper oper; oper.opcode = MTRR_OP_SET; oper.reg = reg; oper.base = base; oper.mask = mask; return mtrr_start_op(cpu_select, &oper); } static void read_mtrrs_(void *arg) { struct mtrr_info *info = arg; mtrr_read_all(info); } int mtrr_list(int reg_count, int cpu_select) { struct mtrr_info info; int ret; int i; printf("Reg Valid Write-type %-16s %-16s %-16s\n", "Base ||", "Mask ||", "Size ||"); memset(&info, '\0', sizeof(info)); ret = mp_run_on_cpus(cpu_select, read_mtrrs_, &info); if (ret) return log_msg_ret("run", ret); for (i = 0; i < reg_count; i++) { const char *type = "Invalid"; u64 base, mask, size; bool valid; base = info.mtrr[i].base; mask = info.mtrr[i].mask; size = mtrr_to_size(mask); valid = mask & MTRR_PHYS_MASK_VALID; type = mtrr_type_name[base & MTRR_BASE_TYPE_MASK]; printf("%d %-5s %-12s %016llx %016llx %016llx\n", i, valid ? "Y" : "N", type, base & ~MTRR_BASE_TYPE_MASK, mask & ~MTRR_PHYS_MASK_VALID, size); } return 0; } int mtrr_get_type_by_name(const char *typename) { int i; for (i = 0; i < MTRR_TYPE_COUNT; i++) { if (*typename == *mtrr_type_name[i]) return i; } return -EINVAL; }; |