2 * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
4 * SPDX-License-Identifier: GPL-2.0+
11 #include <asm/arch/tnc.h>
12 #include <asm/fsp/fsp_support.h>
13 #include <asm/processor.h>
15 static void unprotect_spi_flash(void)
19 bc = x86_pci_read_config32(PCH_LPC_DEV, 0xd8);
20 bc |= 0x1; /* unprotect the flash */
21 x86_pci_write_config32(PCH_LPC_DEV, 0xd8, bc);
24 int arch_cpu_init(void)
26 struct pci_controller *hose;
29 post_code(POST_CPU_INIT);
30 #ifdef CONFIG_SYS_X86_TSC_TIMER
31 timer_set_base(rdtsc());
34 ret = x86_cpu_init_f();
38 ret = pci_early_init_hose(&hose);
42 unprotect_spi_flash();