blob: 782ed863fe7c7038fc70bf9377f2ee6fe27abd68 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Bin Mengb2e02d22014-12-17 15:50:36 +08002/*
3 * Copyright (C) 2014, Bin Meng <bmeng.cn@gmail.com>
Bin Mengb2e02d22014-12-17 15:50:36 +08004 */
5
6#include <common.h>
Bin Meng2b94d9f2016-02-01 01:40:54 -08007#include <dm.h>
Simon Glass691d7192020-05-10 11:40:02 -06008#include <init.h>
Bin Meng66484f02016-02-01 01:40:55 -08009#include <dm/device-internal.h>
Bin Meng2b94d9f2016-02-01 01:40:54 -080010#include <pci.h>
Bin Mengb2e02d22014-12-17 15:50:36 +080011#include <asm/io.h>
Bin Meng9c7dea62015-05-25 22:35:04 +080012#include <asm/irq.h>
Bin Mengb2e02d22014-12-17 15:50:36 +080013#include <asm/post.h>
Bin Mengafbf1402015-04-24 18:10:06 +080014#include <asm/arch/device.h>
Bin Meng9c7dea62015-05-25 22:35:04 +080015#include <asm/arch/tnc.h>
Simon Glass83311882019-09-25 08:00:11 -060016#include <asm/fsp1/fsp_support.h>
Bin Mengb2e02d22014-12-17 15:50:36 +080017#include <asm/processor.h>
18
Bin Meng9e36c532016-02-01 01:40:53 -080019static int __maybe_unused disable_igd(void)
Bin Meng1f124eb2015-10-01 00:36:04 -070020{
Bin Meng2b94d9f2016-02-01 01:40:54 -080021 struct udevice *igd, *sdvo;
22 int ret;
23
24 ret = dm_pci_bus_find_bdf(TNC_IGD, &igd);
25 if (ret)
26 return ret;
27 if (!igd)
28 return 0;
29
30 ret = dm_pci_bus_find_bdf(TNC_SDVO, &sdvo);
31 if (ret)
32 return ret;
33 if (!sdvo)
34 return 0;
35
Bin Menge5ffa4b2015-10-22 19:13:32 -070036 /*
37 * According to Atom E6xx datasheet, setting VGA Disable (bit17)
38 * of Graphics Controller register (offset 0x50) prevents IGD
39 * (D2:F0) from reporting itself as a VGA display controller
40 * class in the PCI configuration space, and should also prevent
41 * it from responding to VGA legacy memory range and I/O addresses.
42 *
43 * However test result shows that with just VGA Disable bit set and
44 * a PCIe graphics card connected to one of the PCIe controllers on
45 * the E6xx, accessing the VGA legacy space still causes system hang.
46 * After a number of attempts, it turns out besides VGA Disable bit,
47 * the SDVO (D3:F0) device should be disabled to make it work.
48 *
49 * To simplify, use the Function Disable register (offset 0xc4)
50 * to disable both IGD (D2:F0) and SDVO (D3:F0) devices. Now these
51 * two devices will be completely disabled (invisible in the PCI
52 * configuration space) unless a system reset is performed.
53 */
Bin Meng2b94d9f2016-02-01 01:40:54 -080054 dm_pci_write_config32(igd, IGD_FD, FUNC_DISABLE);
55 dm_pci_write_config32(sdvo, IGD_FD, FUNC_DISABLE);
Bin Meng9e36c532016-02-01 01:40:53 -080056
Bin Meng66484f02016-02-01 01:40:55 -080057 /*
58 * After setting the function disable bit, IGD and SDVO devices will
59 * disappear in the PCI configuration space. This however creates an
60 * inconsistent state from a driver model PCI controller point of view,
61 * as these two PCI devices are still attached to its parent's child
62 * device list as maintained by the driver model. Some driver model PCI
63 * APIs like dm_pci_find_class(), are referring to the list to speed up
64 * the finding process instead of re-enumerating the whole PCI bus, so
65 * it gets the stale cached data which is wrong.
66 *
67 * Note x86 PCI enueration normally happens twice, in pre-relocation
68 * phase and post-relocation. One option might be to call disable_igd()
69 * in one of the pre-relocation initialization hooks so that it gets
70 * disabled in the first round, and when it comes to the second round
71 * driver model PCI will construct a correct list. Unfortunately this
72 * does not work as Intel FSP is used on this platform to perform low
73 * level initialization, and fsp_init_phase_pci() is called only once
74 * in the post-relocation phase. If we disable IGD and SDVO devices,
75 * fsp_init_phase_pci() simply hangs and never returns.
76 *
77 * So the only option we have is to manually remove these two devices.
78 */
Stefan Roese706865a2017-03-20 12:51:48 +010079 ret = device_remove(igd, DM_REMOVE_NORMAL);
Bin Meng66484f02016-02-01 01:40:55 -080080 if (ret)
81 return ret;
82 ret = device_unbind(igd);
83 if (ret)
84 return ret;
Stefan Roese706865a2017-03-20 12:51:48 +010085 ret = device_remove(sdvo, DM_REMOVE_NORMAL);
Bin Meng66484f02016-02-01 01:40:55 -080086 if (ret)
87 return ret;
88 ret = device_unbind(sdvo);
89 if (ret)
90 return ret;
91
Bin Meng9e36c532016-02-01 01:40:53 -080092 return 0;
Bin Meng1f124eb2015-10-01 00:36:04 -070093}
94
Bin Mengb2e02d22014-12-17 15:50:36 +080095int arch_cpu_init(void)
96{
97 post_code(POST_CPU_INIT);
Bin Mengb2e02d22014-12-17 15:50:36 +080098
Masahiro Yamada0a8547a2016-09-06 22:17:36 +090099 return x86_cpu_init_f();
Bin Mengb2e02d22014-12-17 15:50:36 +0800100}
Bin Mengafbf1402015-04-24 18:10:06 +0800101
Bin Mengbc728b12018-06-03 19:04:22 -0700102static void tnc_irq_init(void)
103{
104 struct tnc_rcba *rcba;
105 u32 base;
106
107 pci_read_config32(TNC_LPC, LPC_RCBA, &base);
108 base &= ~MEM_BAR_EN;
109 rcba = (struct tnc_rcba *)base;
110
111 /* Make sure all internal PCI devices are using INTA */
112 writel(INTA, &rcba->d02ip);
113 writel(INTA, &rcba->d03ip);
114 writel(INTA, &rcba->d27ip);
115 writel(INTA, &rcba->d31ip);
116 writel(INTA, &rcba->d23ip);
117 writel(INTA, &rcba->d24ip);
118 writel(INTA, &rcba->d25ip);
119 writel(INTA, &rcba->d26ip);
120
121 /*
122 * Route TunnelCreek PCI device interrupt pin to PIRQ
123 *
124 * Since PCIe downstream ports received INTx are routed to PIRQ
125 * A/B/C/D directly and not configurable, we have to route PCIe
126 * root ports' INTx to PIRQ A/B/C/D as well. For other devices
127 * on TunneCreek, route them to PIRQ E/F/G/H.
128 */
129 writew(PIRQE, &rcba->d02ir);
130 writew(PIRQF, &rcba->d03ir);
131 writew(PIRQG, &rcba->d27ir);
132 writew(PIRQH, &rcba->d31ir);
133 writew(PIRQA, &rcba->d23ir);
134 writew(PIRQB, &rcba->d24ir);
135 writew(PIRQC, &rcba->d25ir);
136 writew(PIRQD, &rcba->d26ir);
137}
138
Bin Meng1f124eb2015-10-01 00:36:04 -0700139int arch_early_init_r(void)
140{
Bin Meng9e36c532016-02-01 01:40:53 -0800141 int ret = 0;
142
Bin Meng1f124eb2015-10-01 00:36:04 -0700143#ifdef CONFIG_DISABLE_IGD
Bin Meng9e36c532016-02-01 01:40:53 -0800144 ret = disable_igd();
Bin Meng1f124eb2015-10-01 00:36:04 -0700145#endif
146
Bin Mengbc728b12018-06-03 19:04:22 -0700147 tnc_irq_init();
148
Bin Meng9e36c532016-02-01 01:40:53 -0800149 return ret;
Bin Meng1f124eb2015-10-01 00:36:04 -0700150}