Merge https://gitlab.denx.de/u-boot/custodians/u-boot-mpc85xx
[platform/kernel/u-boot.git] / arch / x86 / cpu / coreboot / coreboot.c
1 // SPDX-License-Identifier: GPL-2.0+
2 /*
3  * Copyright (c) 2011 The Chromium OS Authors.
4  * (C) Copyright 2008
5  * Graeme Russ, graeme.russ@gmail.com.
6  */
7
8 #include <common.h>
9 #include <cpu_func.h>
10 #include <fdtdec.h>
11 #include <usb.h>
12 #include <asm/io.h>
13 #include <asm/msr.h>
14 #include <asm/mtrr.h>
15 #include <asm/arch/sysinfo.h>
16 #include <asm/arch/timestamp.h>
17
18 DECLARE_GLOBAL_DATA_PTR;
19
20 int arch_cpu_init(void)
21 {
22         int ret = get_coreboot_info(&lib_sysinfo);
23         if (ret != 0) {
24                 printf("Failed to parse coreboot tables.\n");
25                 return ret;
26         }
27
28         timestamp_init();
29
30         return IS_ENABLED(CONFIG_X86_RUN_64BIT) ? x86_cpu_reinit_f() :
31                  x86_cpu_init_f();
32 }
33
34 int checkcpu(void)
35 {
36         return 0;
37 }
38
39 int print_cpuinfo(void)
40 {
41         return default_print_cpuinfo();
42 }
43
44 static void board_final_cleanup(void)
45 {
46         /*
47          * Un-cache the ROM so the kernel has one
48          * more MTRR available.
49          *
50          * Coreboot should have assigned this to the
51          * top available variable MTRR.
52          */
53         u8 top_mtrr = (native_read_msr(MTRR_CAP_MSR) & 0xff) - 1;
54         u8 top_type = native_read_msr(MTRR_PHYS_BASE_MSR(top_mtrr)) & 0xff;
55
56         /* Make sure this MTRR is the correct Write-Protected type */
57         if (top_type == MTRR_TYPE_WRPROT) {
58                 struct mtrr_state state;
59
60                 mtrr_open(&state, true);
61                 wrmsrl(MTRR_PHYS_BASE_MSR(top_mtrr), 0);
62                 wrmsrl(MTRR_PHYS_MASK_MSR(top_mtrr), 0);
63                 mtrr_close(&state, true);
64         }
65
66         if (!fdtdec_get_config_bool(gd->fdt_blob, "u-boot,no-apm-finalize")) {
67                 /*
68                  * Issue SMI to coreboot to lock down ME and registers
69                  * when allowed via device tree
70                  */
71                 printf("Finalizing coreboot\n");
72                 outb(0xcb, 0xb2);
73         }
74 }
75
76 int last_stage_init(void)
77 {
78         /* start usb so that usb keyboard can be used as input device */
79         if (CONFIG_IS_ENABLED(USB_KEYBOARD))
80                 usb_init();
81
82         board_final_cleanup();
83
84         return 0;
85 }