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 | // SPDX-License-Identifier: GPL-2.0+ /* * (C) Copyright 2014 Google, Inc */ #include <command.h> #include <log.h> #include <vsprintf.h> #include <linux/string.h> #include <asm/msr.h> #include <asm/mp.h> #include <asm/mtrr.h> static int do_mtrr_set(int cpu_select, uint reg, int argc, char *const argv[]) { const char *typename = argv[0]; u64 start, size; u64 base, mask; int type = -1; bool valid; int ret; if (argc < 3) return CMD_RET_USAGE; type = mtrr_get_type_by_name(typename); if (type < 0) { printf("Invalid type name %s\n", typename); return CMD_RET_USAGE; } start = hextoull(argv[1], NULL); size = hextoull(argv[2], NULL); base = start | type; valid = native_read_msr(MTRR_PHYS_MASK_MSR(reg)) & MTRR_PHYS_MASK_VALID; mask = mtrr_to_mask(size); if (valid) mask |= MTRR_PHYS_MASK_VALID; ret = mtrr_set(cpu_select, reg, base, mask); if (ret) return CMD_RET_FAILURE; return 0; } static int do_mtrr(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) { int reg_count = mtrr_get_var_count(); int cmd; int cpu_select; uint reg; int ret; cpu_select = MP_SELECT_BSP; if (argc >= 3 && !strcmp("-c", argv[1])) { const char *cpustr; cpustr = argv[2]; if (*cpustr == 'a') cpu_select = MP_SELECT_ALL; else cpu_select = simple_strtol(cpustr, NULL, 16); argc -= 2; argv += 2; } argc--; argv++; cmd = argv[0] ? *argv[0] : 0; if (argc < 1 || !cmd) { cmd = 'l'; reg = 0; } if (cmd != 'l') { if (argc < 2) return CMD_RET_USAGE; reg = hextoul(argv[1], NULL); if (reg >= reg_count) { printf("Invalid register number\n"); return CMD_RET_USAGE; } } if (cmd == 'l') { bool first; int i; i = mp_first_cpu(cpu_select); if (i < 0) { printf("Invalid CPU (err=%d)\n", i); return CMD_RET_FAILURE; } first = true; for (; i >= 0; i = mp_next_cpu(cpu_select, i)) { if (!first) printf("\n"); printf("CPU %d:\n", i); ret = mtrr_list(reg_count, i); if (ret) { printf("Failed to read CPU %s (err=%d)\n", i < MP_SELECT_ALL ? simple_itoa(i) : "", ret); return CMD_RET_FAILURE; } first = false; } } else { switch (cmd) { case 'e': ret = mtrr_set_valid(cpu_select, reg, true); break; case 'd': ret = mtrr_set_valid(cpu_select, reg, false); break; case 's': ret = do_mtrr_set(cpu_select, reg, argc - 2, argv + 2); break; default: return CMD_RET_USAGE; } if (ret) { printf("Operation failed (err=%d)\n", ret); return CMD_RET_FAILURE; } } return 0; } U_BOOT_CMD( mtrr, 8, 1, do_mtrr, "Use x86 memory type range registers (32-bit only)", "[list] - list current registers\n" "set <reg> <type> <start> <size> - set a register\n" "\t<type> is Uncacheable, Combine, Through, Protect, Back\n" "disable <reg> - disable a register\n" "enable <reg> - enable a register\n" "\n" "Precede command with '-c <n>|all' to access a particular hex CPU, e.g.\n" " mtrr -c all list; mtrr -c 2e list" ); |