/* * This file is part of the coreboot project. * * Copyright (C) 2015-2016 Advanced Micro Devices, Inc. * Copyright (C) 2015 Intel Corp. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by * the Free Software Foundation; version 2 of the License. * * 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. */ #include #include #include #include #include #include #include #include #include #include #include #include #include asmlinkage void car_stage_entry(void) { struct postcar_frame pcf; uintptr_t top_of_ram; void *smm_base; size_t smm_size; uintptr_t tseg_base; msr_t base, mask; msr_t mtrr_cap = rdmsr(MTRR_CAP_MSR); int vmtrrs = mtrr_cap.lo & MTRR_CAP_VCNT; int i; console_init(); post_code(0x40); AGESAWRAPPER(amdinitpost); post_code(0x41); /* * TODO: This is a hack to work around current AGESA behavior. AGESA * needs to change to reflect that coreboot owns the MTRRs. * * After setting up DRAM, AGESA also completes the configuration of the * MTRRs, setting regions to WB. Anything written to memory between * now and and when CAR is dismantled will be in cache and lost. For * now, set the regions UC to ensure the writes get to DRAM. */ for (i = 0 ; i < vmtrrs ; i++) { base = rdmsr(MTRR_PHYS_BASE(i)); mask = rdmsr(MTRR_PHYS_MASK(i)); if (!(mask.lo & MTRR_PHYS_MASK_VALID)) continue; if ((base.lo & 0x7) == MTRR_TYPE_WRBACK) { base.lo &= ~0x7; base.lo |= MTRR_TYPE_UNCACHEABLE; wrmsr(MTRR_PHYS_BASE(i), base); } } /* Disable WB from to region 4GB-TOM2. */ msr_t sys_cfg = rdmsr(SYSCFG_MSR); sys_cfg.lo &= ~SYSCFG_MSR_TOM2WB; wrmsr(SYSCFG_MSR, sys_cfg); post_code(0x42); psp_notify_dram(); post_code(0x43); cbmem_initialize_empty(); post_code(0x44); if (postcar_frame_init(&pcf, 1 * KiB)) die("Unable to initialize postcar frame.\n"); /* * We need to make sure ramstage will be run cached. At this point exact * location of ramstage in cbmem is not known. Instruct postcar to cache * 16 megs under cbmem top which is a safe bet to cover ramstage. */ top_of_ram = (uintptr_t) cbmem_top(); postcar_frame_add_mtrr(&pcf, top_of_ram - 16*MiB, 16*MiB, MTRR_TYPE_WRBACK); /* Cache the memory-mapped boot media. */ postcar_frame_add_mtrr(&pcf, -CONFIG_ROM_SIZE, CONFIG_ROM_SIZE, MTRR_TYPE_WRPROT); /* * Cache the TSEG region at the top of ram. This region is * not restricted to SMM mode until SMM has been relocated. * By setting the region to cacheable it provides faster access * when relocating the SMM handler as well as using the TSEG * region for other purposes. */ smm_region_info(&smm_base, &smm_size); tseg_base = (uintptr_t)smm_base; postcar_frame_add_mtrr(&pcf, tseg_base, smm_size, MTRR_TYPE_WRBACK); post_code(0x45); run_postcar_phase(&pcf); post_code(0x50); /* Should never see this post code. */ }