static void board_final_cleanup(void) { /* * Un-cache the ROM so the kernel has one * more MTRR available. * * Coreboot should have assigned this to the * top available variable MTRR. */ u8 top_mtrr = (native_read_msr(MTRR_CAP_MSR) & 0xff) - 1; u8 top_type = native_read_msr(MTRR_PHYS_BASE_MSR(top_mtrr)) & 0xff; /* Make sure this MTRR is the correct Write-Protected type */ if (top_type == MTRR_TYPE_WRPROT) { struct mtrr_state state; mtrr_open(&state); wrmsrl(MTRR_PHYS_BASE_MSR(top_mtrr), 0); wrmsrl(MTRR_PHYS_MASK_MSR(top_mtrr), 0); mtrr_close(&state); } if (!fdtdec_get_config_bool(gd->fdt_blob, "u-boot,no-apm-finalize")) { /* * Issue SMI to coreboot to lock down ME and registers * when allowed via device tree */ printf("Finalizing coreboot\n"); outb(0xcb, 0xb2); } }
void board_final_cleanup(void) { /* Un-cache the ROM so the kernel has one * more MTRR available. * * Coreboot should have assigned this to the * top available variable MTRR. */ u8 top_mtrr = (native_read_msr(MTRR_CAP_MSR) & 0xff) - 1; u8 top_type = native_read_msr(MTRR_PHYS_BASE_MSR(top_mtrr)) & 0xff; /* Make sure this MTRR is the correct Write-Protected type */ if (top_type == MTRR_TYPE_WRPROT) { struct mtrr_state state; mtrr_open(&state); wrmsrl(MTRR_PHYS_BASE_MSR(top_mtrr), 0); wrmsrl(MTRR_PHYS_MASK_MSR(top_mtrr), 0); mtrr_close(&state); } /* Issue SMI to Coreboot to lock down ME and registers */ printf("Finalizing Coreboot\n"); outb(0xcb, 0xb2); }
int mtrr_commit(bool do_caches) { struct mtrr_request *req = gd->arch.mtrr_req; struct mtrr_state state; uint64_t mask; int i; mtrr_open(&state); for (i = 0; i < gd->arch.mtrr_req_count; i++, req++) { mask = ~(req->size - 1); mask &= (1ULL << CONFIG_CPU_ADDR_BITS) - 1; wrmsrl(MTRR_PHYS_BASE_MSR(i), req->start | req->type); wrmsrl(MTRR_PHYS_MASK_MSR(i), mask | MTRR_PHYS_MASK_VALID); } /* Clear the ones that are unused */ for (; i < MTRR_COUNT; i++) wrmsrl(MTRR_PHYS_MASK_MSR(i), 0); mtrr_close(&state); return 0; }