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
|
/*
* This file is part of msrtool.
*
* Copyright (c) 2008 Peter Stuge <peter@stuge.se>
*
* This program is free software; you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2 as
* published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
*/
#include <stdio.h>
#include <string.h>
#include <stdlib.h>
#include "msrtool.h"
static void print_bitdef(FILE *f, const struct msrbits *mb, const char *tail) {
uint8_t endbit;
if (!reserved && 0 == strcmp(mb->name, "RSVD"))
return;
if (1 == mb->size)
fprintf(f, "# %5d", mb->start);
else {
endbit = mb->start - mb->size + 1;
fprintf(f, "# %*d:%d", endbit < 10 ? 3 : 2, mb->start, endbit);
}
if (0 == strcmp(mb->name, "RSVD"))
fprintf(f, " [%s]", mb->desc);
else
fprintf(f, " %s %s", mb->name, mb->desc);
fprintf(f, "%s", tail);
}
static void print_bitval(FILE *f, const struct msrbits *mb, const struct msr val) {
uint8_t i;
struct msr tmp, mask = MSR1(1);
const struct msrbitvalues *mbv = mb->bitval;
while (mbv->text && !msr_eq(mbv->value, val))
mbv++;
switch (mb->present) {
case PRESENT_BIN:
mask = msr_shl(mask, mb->size - 1);
for (i = 0; i < mb->size; i++) {
memcpy(&tmp, &val, sizeof(val));
msr_and(&tmp, mask);
fprintf(f, "%d", (tmp.hi || tmp.lo) ? 1 : 0);
mask = msr_shr(mask, 1);
}
break;
case PRESENT_DEC:
fprintf(f, "%d", val.lo);
break;
case PRESENT_OCT:
fprintf(f, "0%o", val.lo);
break;
case PRESENT_HEX:
hexprint(f, val, mb->size);
break;
case PRESENT_HEXDEC:
hexprint(f, val, mb->size);
fprintf(f, " %d", val.lo);
break;
}
if (mbv->text)
fprintf(f, ": %s", mbv->text);
fprintf(f, "\n");
}
void hexprint(FILE *f, const struct msr val, const uint8_t bits) {
if (bits <= 4)
fprintf(f, "0x%x", (uint8_t)(val.lo & 0x0f));
else if (bits <= 8)
fprintf(f, "0x%02x", (uint8_t)(val.lo & 0xff));
else if (bits <= 16)
fprintf(f, "0x%04x", (uint16_t)(val.lo & 0xffff));
else if (bits <= 32)
fprintf(f, "0x%08x", val.lo);
else
fprintf(f, "0x%08x%08x", val.hi, val.lo);
}
int msr_eq(const struct msr a, const struct msr b) {
return a.hi == b.hi && a.lo == b.lo;
}
struct msr msr_shl(const struct msr a, const uint8_t bits) {
struct msr ret;
ret.hi = bits < 32 ? a.hi << bits : 0;
ret.lo = bits < 32 ? a.lo << bits : 0;
if (bits < 32)
ret.hi |= bits ? a.lo >> (32 - bits) : 0;
else
ret.hi |= a.lo << (bits - 32);
return ret;
}
struct msr msr_shr(const struct msr a, const uint8_t bits) {
struct msr ret;
ret.hi = bits < 32 ? a.hi >> bits : 0;
ret.lo = bits < 32 ? a.lo >> bits : 0;
if (bits < 32)
ret.lo |= bits ? a.hi << (32 - bits) : 0;
else
ret.lo |= a.hi >> (bits - 32);
return ret;
}
void msr_and(struct msr *a, const struct msr b) {
a->hi &= b.hi;
a->lo &= b.lo;
}
const struct msrdef *findmsrdef(const uint32_t addr) {
uint8_t t;
const struct msrdef *m;
if (!targets)
return NULL;
for (t = 0; t < targets_found; t++)
for (m = targets[t]->msrs; !MSR_ISEOT(*m); m++)
if (addr == m->addr)
return m;
return NULL;
}
uint32_t msraddrbyname(const char *name) {
uint8_t t;
const uint32_t addr = strtoul(name, NULL, 16);
const struct msrdef *m;
if (!targets)
return addr;
for (t = 0; t < targets_found; t++)
for (m = targets[t]->msrs; !MSR_ISEOT(*m); m++) {
if (addr == m->addr)
return m->addr;
if (!strcasecmp(name, m->symbol))
return m->addr;
}
return addr;
}
void dumpmsrdefs(const struct targetdef *t) {
const struct msrdef *m;
const struct msrbits *mb;
if (NULL == t)
return;
printf("# %s MSRs:\n", t->name);
for (m = t->msrs; !MSR_ISEOT(*m); m++) {
if (t->msrs != m)
printf("\n");
printf("# %s\n", m->symbol);
for (mb = m->bits; mb->size; mb++)
print_bitdef(stdout, mb, "\n");
printf("0x%08x\n", m->addr);
}
}
int dumpmsrdefsvals(FILE *f, const struct targetdef *t, const uint8_t cpu) {
struct msr val = MSR1(0);
const struct msrdef *m;
const struct msrbits *mb;
if (NULL == t)
return 1;
fprintf(f, "# %s MSRs:\n", t->name);
for (m = t->msrs; !MSR_ISEOT(*m); m++) {
if (t->msrs != m)
fprintf(f, "\n");
if (!sys->rdmsr(cpu, m->addr, &val))
return 1;
fprintf(f, "# %s\n", m->symbol);
for (mb = m->bits; mb->size; mb++)
print_bitdef(f, mb, "\n");
fprintf(f, "0x%08x 0x%08x%08x\n", m->addr, val.hi, val.lo);
}
return 0;
}
/**
* Parse a hexadecimal string into an MSR value.
*
* Leading 0x or 0X is optional, the string is always parsed as hexadecimal.
* Any non-hexadecimal character can be used to separate the high 32 bits and
* the low 32 bits. If there is such a separator, high and low values do not
* need to be zero padded. If there is no separator, the last <=8 digits are
* the low 32 bits and any characters before them are the high 32 bits.
* When there is no separator and less than eight digits, the high 32 bits
* are set to 0.
* Parsing fails when there is a separator and it is followed by another
* non-hexadecimal character.
*
* @param str The string to parse. The string must be writable but will be
* restored before return.
* @param msr Pointer to the struct msr where the value will be stored.
* @return 1 on success, 0 on parse failure. msr is unchanged on failure.
*/
uint8_t str2msr(char *str, struct msr *msr) {
char c;
size_t len, lo;
if (0 == strncmp(str, "0x", 2) || 0 == strncmp(str, "0X", 2))
str += 2;
len = strspn(str, HEXCHARS);
if (len <= 8 && 0 == str[len]) {
msr->hi = 0;
lo = 0;
} else if (len <= 8) {
lo = len + strcspn(str + len, HEXCHARS);
if (0 == len && 0 == strspn(str + lo, HEXCHARS))
return 0;
c = str[len];
str[len] = 0;
msr->hi = strtoul(str, NULL, 16);
str[len] = c;
} else {
lo = len - 8;
c = str[lo];
str[lo] = 0;
msr->hi = strtoul(str, NULL, 16);
str[lo] = c;
}
msr->lo = strtoul(str + lo, NULL, 16);
return 1;
}
void decodemsr(const uint8_t cpu, const uint32_t addr, const struct msr val) {
struct msr bitval, mask;
const struct msrdef *m = findmsrdef(addr);
const struct msrbits *mb;
if (NULL != m)
printf("# %s ", m->symbol);
printf("0x%08x = 0x%08x%08x\n", addr, val.hi, val.lo);
if (NULL == m) {
fprintf(stderr, "Sorry - no definition exists for this MSR! Please add it and send a signed-off\n");
fprintf(stderr, "patch to coreboot@coreboot.org. Thanks for your help!\n");
return;
}
for (mb = m->bits; mb->size; mb++) {
if (!reserved && 0 == strcmp(mb->name, "RSVD"))
continue;
print_bitdef(stdout, mb, " = ");
mask.hi = mask.lo = 0xffffffff;
mask = msr_shr(mask, 64 - mb->size);
bitval = msr_shr(val, mb->start - mb->size + 1);
msr_and(&bitval, mask);
print_bitval(stdout, mb, bitval);
}
}
/**
* Compare two MSR values and print any differences with field definitions and
* both old and new values decoded.
*
* @param f Output stream.
* @param addr MSR address.
* @param a Left value.
* @param b Right value.
* @return 1 when a and b differ, 0 when they are equal or only reserved bits
* differ and processing of reserved bits was not requested (with -r).
*/
uint8_t diff_msr(FILE *f, const uint32_t addr, const struct msr a, const struct msr b) {
uint8_t ret = 0, first = 1;
struct msr aval, bval, mask;
const struct msrdef *m = findmsrdef(addr);
const struct msrbits *mb;
if (a.hi == b.hi && a.lo == b.lo)
return 0;
if (NULL == m) {
fprintf(stderr, "MSR 0x%08x has no definition! Please add it and send a Signed-off-by patch\n", addr);
fprintf(stderr, "to coreboot@coreboot.org. Thank you for your help!\n");
return 1;
}
for (mb = m->bits; mb->size; mb++) {
if (!reserved && 0 == strcmp(mb->name, "RSVD"))
continue;
mask.hi = mask.lo = 0xffffffff;
mask = msr_shr(mask, 64 - mb->size);
aval = msr_shr(a, mb->start - mb->size + 1);
bval = msr_shr(b, mb->start - mb->size + 1);
msr_and(&aval, mask);
msr_and(&bval, mask);
if (msr_eq(aval, bval))
continue;
if (first) {
fprintf(f, "# %s\n", m->symbol);
fprintf(f, "-0x%08x 0x%08x%08x\n", addr, a.hi, a.lo);
fprintf(f, "+0x%08x 0x%08x%08x\n", addr, b.hi, b.lo);
first = 0;
ret = 1;
}
print_bitdef(f, mb, "\n-");
print_bitval(f, mb, aval);
fprintf(f, "+");
print_bitval(f, mb, bval);
}
return ret;
}
|