7ec0733337d80aafa127eba467aca7cfeaf5c6f1
[platform/kernel/u-boot.git] / arch / x86 / cpu / mtrr.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * (C) Copyright 2014 Google, Inc
4  *
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.
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
14 /*
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
19 #include <common.h>
20 #include <cpu_func.h>
21 #include <log.h>
22 #include <asm/cache.h>
23 #include <asm/io.h>
24 #include <asm/msr.h>
25 #include <asm/mtrr.h>
26
27 DECLARE_GLOBAL_DATA_PTR;
28
29 /* Prepare to adjust MTRRs */
30 void mtrr_open(struct mtrr_state *state, bool do_caches)
31 {
32         if (!gd->arch.has_mtrr)
33                 return;
34
35         if (do_caches) {
36                 state->enable_cache = dcache_status();
37
38                 if (state->enable_cache)
39                         disable_caches();
40         }
41         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 */
46 void mtrr_close(struct mtrr_state *state, bool do_caches)
47 {
48         if (!gd->arch.has_mtrr)
49                 return;
50
51         wrmsrl(MTRR_DEF_TYPE_MSR, state->deftype | MTRR_DEF_TYPE_EN);
52         if (do_caches && state->enable_cache)
53                 enable_caches();
54 }
55
56 static 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
66 int mtrr_commit(bool do_caches)
67 {
68         struct mtrr_request *req = gd->arch.mtrr_req;
69         struct mtrr_state state;
70         int i;
71
72         debug("%s: enabled=%d, count=%d\n", __func__, gd->arch.has_mtrr,
73               gd->arch.mtrr_req_count);
74         if (!gd->arch.has_mtrr)
75                 return -ENOSYS;
76
77         debug("open\n");
78         mtrr_open(&state, do_caches);
79         debug("open done\n");
80         for (i = 0; i < gd->arch.mtrr_req_count; i++, req++)
81                 set_var_mtrr(i, req->type, req->start, req->size);
82
83         /* Clear the ones that are unused */
84         debug("clear\n");
85         for (; i < MTRR_COUNT; i++)
86                 wrmsrl(MTRR_PHYS_MASK_MSR(i), 0);
87         debug("close\n");
88         mtrr_close(&state, do_caches);
89         debug("mtrr done\n");
90
91         return 0;
92 }
93
94 int mtrr_add_request(int type, uint64_t start, uint64_t size)
95 {
96         struct mtrr_request *req;
97         uint64_t mask;
98
99         debug("%s: count=%d\n", __func__, gd->arch.mtrr_req_count);
100         if (!gd->arch.has_mtrr)
101                 return -ENOSYS;
102
103         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 }
118
119 static int get_var_mtrr_count(void)
120 {
121         return msr_read(MSR_MTRR_CAP_MSR).lo & MSR_MTRR_CAP_VCNT;
122 }
123
124 static 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
143 int 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 }