1 // SPDX-License-Identifier: GPL-2.0+
3 * (C) Copyright 2014 Google, Inc
5 * 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.
8 * These can speed up booting. See the mtrr command.
10 * Reference: Intel Architecture Software Developer's Manual, Volume 3:
15 * Note that any console output (e.g. debug()) in this file will likely fail
16 * since the MTRR registers are sometimes in flux.
21 #include <asm/cache.h>
26 DECLARE_GLOBAL_DATA_PTR;
28 /* Prepare to adjust MTRRs */
29 void mtrr_open(struct mtrr_state *state, bool do_caches)
31 if (!gd->arch.has_mtrr)
35 state->enable_cache = dcache_status();
37 if (state->enable_cache)
40 state->deftype = native_read_msr(MTRR_DEF_TYPE_MSR);
41 wrmsrl(MTRR_DEF_TYPE_MSR, state->deftype & ~MTRR_DEF_TYPE_EN);
44 /* Clean up after adjusting MTRRs, and enable them */
45 void mtrr_close(struct mtrr_state *state, bool do_caches)
47 if (!gd->arch.has_mtrr)
50 wrmsrl(MTRR_DEF_TYPE_MSR, state->deftype | MTRR_DEF_TYPE_EN);
51 if (do_caches && state->enable_cache)
55 static void set_var_mtrr(uint reg, uint type, uint64_t start, uint64_t size)
59 wrmsrl(MTRR_PHYS_BASE_MSR(reg), start | type);
61 mask &= (1ULL << CONFIG_CPU_ADDR_BITS) - 1;
62 wrmsrl(MTRR_PHYS_MASK_MSR(reg), mask | MTRR_PHYS_MASK_VALID);
65 int mtrr_commit(bool do_caches)
67 struct mtrr_request *req = gd->arch.mtrr_req;
68 struct mtrr_state state;
71 debug("%s: enabled=%d, count=%d\n", __func__, gd->arch.has_mtrr,
72 gd->arch.mtrr_req_count);
73 if (!gd->arch.has_mtrr)
77 mtrr_open(&state, do_caches);
79 for (i = 0; i < gd->arch.mtrr_req_count; i++, req++)
80 set_var_mtrr(i, req->type, req->start, req->size);
82 /* Clear the ones that are unused */
84 for (; i < MTRR_COUNT; i++)
85 wrmsrl(MTRR_PHYS_MASK_MSR(i), 0);
87 mtrr_close(&state, do_caches);
93 int mtrr_add_request(int type, uint64_t start, uint64_t size)
95 struct mtrr_request *req;
98 debug("%s: count=%d\n", __func__, gd->arch.mtrr_req_count);
99 if (!gd->arch.has_mtrr)
102 if (gd->arch.mtrr_req_count == MAX_MTRR_REQUESTS)
104 req = &gd->arch.mtrr_req[gd->arch.mtrr_req_count++];
108 debug("%d: type=%d, %08llx %08llx\n", gd->arch.mtrr_req_count - 1,
109 req->type, req->start, req->size);
110 mask = ~(req->size - 1);
111 mask &= (1ULL << CONFIG_CPU_ADDR_BITS) - 1;
112 mask |= MTRR_PHYS_MASK_VALID;
113 debug(" %016llx %016llx\n", req->start | req->type, mask);
118 static int get_var_mtrr_count(void)
120 return msr_read(MSR_MTRR_CAP_MSR).lo & MSR_MTRR_CAP_VCNT;
123 static int get_free_var_mtrr(void)
129 vcnt = get_var_mtrr_count();
131 /* Identify the first var mtrr which is not valid */
132 for (i = 0; i < vcnt; i++) {
133 maskm = msr_read(MTRR_PHYS_MASK_MSR(i));
134 if ((maskm.lo & MTRR_PHYS_MASK_VALID) == 0)
138 /* No free var mtrr */
142 int mtrr_set_next_var(uint type, uint64_t start, uint64_t size)
146 mtrr = get_free_var_mtrr();
150 set_var_mtrr(mtrr, type, start, size);
151 debug("MTRR %x: start=%x, size=%x\n", mtrr, (uint)start, (uint)size);