blob: 873de7be9ddf7f7c565f5ed8f6f0c9e5aee6304c [file] [log] [blame]
Bin Mengb2e02d22014-12-17 15:50:36 +08001/*
2 * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
3 *
4 * SPDX-License-Identifier: GPL-2.0+
5 */
6
7#include <common.h>
8#include <asm/io.h>
Bin Meng9c7dea62015-05-25 22:35:04 +08009#include <asm/irq.h>
Bin Mengadfe3b22014-12-17 15:50:44 +080010#include <asm/pci.h>
Bin Mengb2e02d22014-12-17 15:50:36 +080011#include <asm/post.h>
Bin Mengafbf1402015-04-24 18:10:06 +080012#include <asm/arch/device.h>
Bin Meng9c7dea62015-05-25 22:35:04 +080013#include <asm/arch/tnc.h>
Simon Glass1021af42015-01-27 22:13:36 -070014#include <asm/fsp/fsp_support.h>
Bin Mengb2e02d22014-12-17 15:50:36 +080015#include <asm/processor.h>
16
Bin Mengadfe3b22014-12-17 15:50:44 +080017static void unprotect_spi_flash(void)
18{
19 u32 bc;
20
Bin Meng9704f232015-04-13 19:03:42 +080021 bc = x86_pci_read_config32(TNC_LPC, 0xd8);
Bin Mengadfe3b22014-12-17 15:50:44 +080022 bc |= 0x1; /* unprotect the flash */
Bin Meng9704f232015-04-13 19:03:42 +080023 x86_pci_write_config32(TNC_LPC, 0xd8, bc);
Bin Mengadfe3b22014-12-17 15:50:44 +080024}
25
Bin Mengb2e02d22014-12-17 15:50:36 +080026int arch_cpu_init(void)
27{
Bin Mengadfe3b22014-12-17 15:50:44 +080028 struct pci_controller *hose;
29 int ret;
30
Bin Mengb2e02d22014-12-17 15:50:36 +080031 post_code(POST_CPU_INIT);
32#ifdef CONFIG_SYS_X86_TSC_TIMER
33 timer_set_base(rdtsc());
34#endif
35
Bin Mengadfe3b22014-12-17 15:50:44 +080036 ret = x86_cpu_init_f();
37 if (ret)
38 return ret;
39
40 ret = pci_early_init_hose(&hose);
41 if (ret)
42 return ret;
43
44 unprotect_spi_flash();
45
46 return 0;
Bin Mengb2e02d22014-12-17 15:50:36 +080047}
Bin Mengafbf1402015-04-24 18:10:06 +080048
Bin Meng9c7dea62015-05-25 22:35:04 +080049void cpu_irq_init(void)
50{
51 struct tnc_rcba *rcba;
52 u32 base;
53
54 base = x86_pci_read_config32(TNC_LPC, LPC_RCBA);
55 base &= ~MEM_BAR_EN;
56 rcba = (struct tnc_rcba *)base;
57
58 /* Make sure all internal PCI devices are using INTA */
59 writel(INTA, &rcba->d02ip);
60 writel(INTA, &rcba->d03ip);
61 writel(INTA, &rcba->d27ip);
62 writel(INTA, &rcba->d31ip);
63 writel(INTA, &rcba->d23ip);
64 writel(INTA, &rcba->d24ip);
65 writel(INTA, &rcba->d25ip);
66 writel(INTA, &rcba->d26ip);
67
68 /*
69 * Route TunnelCreek PCI device interrupt pin to PIRQ
70 *
71 * Since PCIe downstream ports received INTx are routed to PIRQ
72 * A/B/C/D directly and not configurable, we route internal PCI
73 * device's INTx to PIRQ E/F/G/H.
74 */
75 writew(PIRQE, &rcba->d02ir);
76 writew(PIRQF, &rcba->d03ir);
77 writew(PIRQG, &rcba->d27ir);
78 writew(PIRQH, &rcba->d31ir);
79 writew(PIRQE, &rcba->d23ir);
80 writew(PIRQF, &rcba->d24ir);
81 writew(PIRQG, &rcba->d25ir);
82 writew(PIRQH, &rcba->d26ir);
83}
84
Bin Mengafbf1402015-04-24 18:10:06 +080085int arch_misc_init(void)
86{
87 pirq_init();
88
89 return 0;
90}