blob: d39edb2271b2d3d3baa0239cff0c786aed94a865 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Bin Meng828d9af2015-02-02 22:35:27 +08002/*
3 * Copyright (C) 2015, Bin Meng <bmeng.cn@gmail.com>
Bin Meng828d9af2015-02-02 22:35:27 +08004 */
5
6#include <common.h>
Bin Meng6df7ffe2015-02-04 16:26:13 +08007#include <mmc.h>
Bin Meng828d9af2015-02-02 22:35:27 +08008#include <asm/io.h>
Bin Meng911d6f62016-05-22 01:45:34 -07009#include <asm/ioapic.h>
Bin Mengbc728b12018-06-03 19:04:22 -070010#include <asm/irq.h>
Bin Meng2fc2b832015-10-12 01:30:42 -070011#include <asm/mrccache.h>
Bin Mengc6d47052015-09-14 00:07:41 -070012#include <asm/mtrr.h>
Bin Meng828d9af2015-02-02 22:35:27 +080013#include <asm/pci.h>
14#include <asm/post.h>
Bin Mengb1622572015-02-04 16:26:09 +080015#include <asm/arch/device.h>
16#include <asm/arch/msg_port.h>
17#include <asm/arch/quark.h>
18
Bin Mengc6d47052015-09-14 00:07:41 -070019static void quark_setup_mtrr(void)
20{
21 u32 base, mask;
22 int i;
23
24 disable_caches();
25
26 /* mark the VGA RAM area as uncacheable */
27 msg_port_write(MSG_PORT_HOST_BRIDGE, MTRR_FIX_16K_A0000,
28 MTRR_FIX_TYPE(MTRR_TYPE_UNCACHEABLE));
29 msg_port_write(MSG_PORT_HOST_BRIDGE, MTRR_FIX_16K_B0000,
30 MTRR_FIX_TYPE(MTRR_TYPE_UNCACHEABLE));
31
32 /* mark other fixed range areas as cacheable */
33 msg_port_write(MSG_PORT_HOST_BRIDGE, MTRR_FIX_64K_00000,
34 MTRR_FIX_TYPE(MTRR_TYPE_WRBACK));
35 msg_port_write(MSG_PORT_HOST_BRIDGE, MTRR_FIX_64K_40000,
36 MTRR_FIX_TYPE(MTRR_TYPE_WRBACK));
37 msg_port_write(MSG_PORT_HOST_BRIDGE, MTRR_FIX_16K_80000,
38 MTRR_FIX_TYPE(MTRR_TYPE_WRBACK));
39 msg_port_write(MSG_PORT_HOST_BRIDGE, MTRR_FIX_16K_90000,
40 MTRR_FIX_TYPE(MTRR_TYPE_WRBACK));
41 for (i = MTRR_FIX_4K_C0000; i <= MTRR_FIX_4K_FC000; i++)
42 msg_port_write(MSG_PORT_HOST_BRIDGE, i,
43 MTRR_FIX_TYPE(MTRR_TYPE_WRBACK));
44
45 /* variable range MTRR#0: ROM area */
46 mask = ~(CONFIG_SYS_MONITOR_LEN - 1);
47 base = CONFIG_SYS_TEXT_BASE & mask;
48 msg_port_write(MSG_PORT_HOST_BRIDGE, MTRR_VAR_PHYBASE(MTRR_VAR_ROM),
49 base | MTRR_TYPE_WRBACK);
50 msg_port_write(MSG_PORT_HOST_BRIDGE, MTRR_VAR_PHYMASK(MTRR_VAR_ROM),
51 mask | MTRR_PHYS_MASK_VALID);
52
53 /* variable range MTRR#1: eSRAM area */
54 mask = ~(ESRAM_SIZE - 1);
55 base = CONFIG_ESRAM_BASE & mask;
56 msg_port_write(MSG_PORT_HOST_BRIDGE, MTRR_VAR_PHYBASE(MTRR_VAR_ESRAM),
57 base | MTRR_TYPE_WRBACK);
58 msg_port_write(MSG_PORT_HOST_BRIDGE, MTRR_VAR_PHYMASK(MTRR_VAR_ESRAM),
59 mask | MTRR_PHYS_MASK_VALID);
60
61 /* enable both variable and fixed range MTRRs */
62 msg_port_write(MSG_PORT_HOST_BRIDGE, MTRR_DEF_TYPE,
63 MTRR_DEF_TYPE_EN | MTRR_DEF_TYPE_FIX_EN);
64
65 enable_caches();
66}
67
Bin Mengb1622572015-02-04 16:26:09 +080068static void quark_setup_bars(void)
69{
70 /* GPIO - D31:F0:R44h */
Bin Mengaa095052015-09-03 05:37:24 -070071 qrk_pci_write_config_dword(QUARK_LEGACY_BRIDGE, LB_GBA,
72 CONFIG_GPIO_BASE | IO_BAR_EN);
Bin Mengb1622572015-02-04 16:26:09 +080073
74 /* ACPI PM1 Block - D31:F0:R48h */
Bin Mengaa095052015-09-03 05:37:24 -070075 qrk_pci_write_config_dword(QUARK_LEGACY_BRIDGE, LB_PM1BLK,
76 CONFIG_ACPI_PM1_BASE | IO_BAR_EN);
Bin Mengb1622572015-02-04 16:26:09 +080077
78 /* GPE0 - D31:F0:R4Ch */
Bin Mengaa095052015-09-03 05:37:24 -070079 qrk_pci_write_config_dword(QUARK_LEGACY_BRIDGE, LB_GPE0BLK,
80 CONFIG_ACPI_GPE0_BASE | IO_BAR_EN);
Bin Mengb1622572015-02-04 16:26:09 +080081
82 /* WDT - D31:F0:R84h */
Bin Mengaa095052015-09-03 05:37:24 -070083 qrk_pci_write_config_dword(QUARK_LEGACY_BRIDGE, LB_WDTBA,
84 CONFIG_WDT_BASE | IO_BAR_EN);
Bin Mengb1622572015-02-04 16:26:09 +080085
86 /* RCBA - D31:F0:RF0h */
Bin Mengaa095052015-09-03 05:37:24 -070087 qrk_pci_write_config_dword(QUARK_LEGACY_BRIDGE, LB_RCBA,
88 CONFIG_RCBA_BASE | MEM_BAR_EN);
Bin Mengb1622572015-02-04 16:26:09 +080089
90 /* ACPI P Block - Msg Port 04:R70h */
91 msg_port_write(MSG_PORT_RMU, PBLK_BA,
92 CONFIG_ACPI_PBLK_BASE | IO_BAR_EN);
93
94 /* SPI DMA - Msg Port 04:R7Ah */
95 msg_port_write(MSG_PORT_RMU, SPI_DMA_BA,
96 CONFIG_SPI_DMA_BASE | IO_BAR_EN);
97
98 /* PCIe ECAM */
99 msg_port_write(MSG_PORT_MEM_ARBITER, AEC_CTRL,
100 CONFIG_PCIE_ECAM_BASE | MEM_BAR_EN);
101 msg_port_write(MSG_PORT_HOST_BRIDGE, HEC_REG,
102 CONFIG_PCIE_ECAM_BASE | MEM_BAR_EN);
103}
Bin Meng828d9af2015-02-02 22:35:27 +0800104
Bin Meng316fd392015-09-03 05:37:25 -0700105static void quark_pcie_early_init(void)
106{
Bin Meng316fd392015-09-03 05:37:25 -0700107 /*
108 * Step1: Assert PCIe signal PERST#
109 *
110 * The CPU interface to the PERST# signal is platform dependent.
111 * Call the board-specific codes to perform this task.
112 */
113 board_assert_perst();
114
115 /* Step2: PHY common lane reset */
Bin Meng8e368302015-09-09 23:20:25 -0700116 msg_port_alt_setbits(MSG_PORT_SOC_UNIT, PCIE_CFG, PCIE_PHY_LANE_RST);
Bin Meng316fd392015-09-03 05:37:25 -0700117 /* wait 1 ms for PHY common lane reset */
118 mdelay(1);
119
120 /* Step3: PHY sideband interface reset and controller main reset */
Bin Meng8e368302015-09-09 23:20:25 -0700121 msg_port_alt_setbits(MSG_PORT_SOC_UNIT, PCIE_CFG,
122 PCIE_PHY_SB_RST | PCIE_CTLR_MAIN_RST);
Bin Meng316fd392015-09-03 05:37:25 -0700123 /* wait 80ms for PLL to lock */
124 mdelay(80);
125
126 /* Step4: Controller sideband interface reset */
Bin Meng8e368302015-09-09 23:20:25 -0700127 msg_port_alt_setbits(MSG_PORT_SOC_UNIT, PCIE_CFG, PCIE_CTLR_SB_RST);
Bin Meng316fd392015-09-03 05:37:25 -0700128 /* wait 20ms for controller sideband interface reset */
129 mdelay(20);
130
131 /* Step5: De-assert PERST# */
132 board_deassert_perst();
133
134 /* Step6: Controller primary interface reset */
Bin Meng8e368302015-09-09 23:20:25 -0700135 msg_port_alt_setbits(MSG_PORT_SOC_UNIT, PCIE_CFG, PCIE_CTLR_PRI_RST);
Bin Meng316fd392015-09-03 05:37:25 -0700136
137 /* Mixer Load Lane 0 */
Bin Meng8e368302015-09-09 23:20:25 -0700138 msg_port_io_clrbits(MSG_PORT_PCIE_AFE, PCIE_RXPICTRL0_L0,
139 (1 << 6) | (1 << 7));
Bin Meng316fd392015-09-03 05:37:25 -0700140
141 /* Mixer Load Lane 1 */
Bin Meng8e368302015-09-09 23:20:25 -0700142 msg_port_io_clrbits(MSG_PORT_PCIE_AFE, PCIE_RXPICTRL0_L1,
143 (1 << 6) | (1 << 7));
Bin Meng316fd392015-09-03 05:37:25 -0700144}
145
Bin Mengb06862b2015-09-03 05:37:27 -0700146static void quark_usb_early_init(void)
147{
Bin Mengb06862b2015-09-03 05:37:27 -0700148 /* The sequence below comes from Quark firmware writer guide */
149
Bin Meng8e368302015-09-09 23:20:25 -0700150 msg_port_alt_clrsetbits(MSG_PORT_USB_AFE, USB2_GLOBAL_PORT,
151 1 << 1, (1 << 6) | (1 << 7));
Bin Mengb06862b2015-09-03 05:37:27 -0700152
Bin Meng8e368302015-09-09 23:20:25 -0700153 msg_port_alt_clrsetbits(MSG_PORT_USB_AFE, USB2_COMPBG,
154 (1 << 8) | (1 << 9), (1 << 7) | (1 << 10));
Bin Mengb06862b2015-09-03 05:37:27 -0700155
Bin Meng8e368302015-09-09 23:20:25 -0700156 msg_port_alt_setbits(MSG_PORT_USB_AFE, USB2_PLL2, 1 << 29);
Bin Mengb06862b2015-09-03 05:37:27 -0700157
Bin Meng8e368302015-09-09 23:20:25 -0700158 msg_port_alt_setbits(MSG_PORT_USB_AFE, USB2_PLL1, 1 << 1);
Bin Mengb06862b2015-09-03 05:37:27 -0700159
Bin Meng8e368302015-09-09 23:20:25 -0700160 msg_port_alt_clrsetbits(MSG_PORT_USB_AFE, USB2_PLL1,
161 (1 << 3) | (1 << 4) | (1 << 5), 1 << 6);
Bin Mengb06862b2015-09-03 05:37:27 -0700162
Bin Meng8e368302015-09-09 23:20:25 -0700163 msg_port_alt_clrbits(MSG_PORT_USB_AFE, USB2_PLL2, 1 << 29);
Bin Mengb06862b2015-09-03 05:37:27 -0700164
Bin Meng8e368302015-09-09 23:20:25 -0700165 msg_port_alt_setbits(MSG_PORT_USB_AFE, USB2_PLL2, 1 << 24);
Bin Mengb06862b2015-09-03 05:37:27 -0700166}
167
Bin Meng554778c2015-09-09 23:20:27 -0700168static void quark_thermal_early_init(void)
169{
170 /* The sequence below comes from Quark firmware writer guide */
171
172 /* thermal sensor mode config */
173 msg_port_alt_clrsetbits(MSG_PORT_SOC_UNIT, TS_CFG1,
174 (1 << 3) | (1 << 4) | (1 << 5), 1 << 5);
175 msg_port_alt_clrsetbits(MSG_PORT_SOC_UNIT, TS_CFG1,
176 (1 << 8) | (1 << 9) | (1 << 10) | (1 << 11) |
177 (1 << 12), 1 << 9);
178 msg_port_alt_setbits(MSG_PORT_SOC_UNIT, TS_CFG1, 1 << 14);
179 msg_port_alt_clrbits(MSG_PORT_SOC_UNIT, TS_CFG1, 1 << 17);
180 msg_port_alt_clrbits(MSG_PORT_SOC_UNIT, TS_CFG1, 1 << 18);
181 msg_port_alt_clrsetbits(MSG_PORT_SOC_UNIT, TS_CFG2, 0xffff, 0x011f);
182 msg_port_alt_clrsetbits(MSG_PORT_SOC_UNIT, TS_CFG3, 0xff, 0x17);
183 msg_port_alt_clrsetbits(MSG_PORT_SOC_UNIT, TS_CFG3,
184 (1 << 8) | (1 << 9), 1 << 8);
185 msg_port_alt_clrbits(MSG_PORT_SOC_UNIT, TS_CFG3, 0xff000000);
186 msg_port_alt_clrsetbits(MSG_PORT_SOC_UNIT, TS_CFG4,
187 0x7ff800, 0xc8 << 11);
188
189 /* thermal monitor catastrophic trip set point (105 celsius) */
190 msg_port_clrsetbits(MSG_PORT_RMU, TS_TRIP, 0xff, 155);
191
192 /* thermal monitor catastrophic trip clear point (0 celsius) */
193 msg_port_clrsetbits(MSG_PORT_RMU, TS_TRIP, 0xff0000, 50 << 16);
194
195 /* take thermal sensor out of reset */
196 msg_port_alt_clrbits(MSG_PORT_SOC_UNIT, TS_CFG4, 1 << 0);
197
198 /* enable thermal monitor */
199 msg_port_setbits(MSG_PORT_RMU, TS_MODE, 1 << 15);
200
201 /* lock all thermal configuration */
202 msg_port_setbits(MSG_PORT_RMU, RMU_CTRL, (1 << 5) | (1 << 6));
203}
204
Bin Mengf82a7842015-04-27 14:16:02 +0800205static void quark_enable_legacy_seg(void)
206{
Bin Meng8e368302015-09-09 23:20:25 -0700207 msg_port_setbits(MSG_PORT_HOST_BRIDGE, HMISC2,
208 HMISC2_SEGE | HMISC2_SEGF | HMISC2_SEGAB);
Bin Mengf82a7842015-04-27 14:16:02 +0800209}
210
Bin Meng828d9af2015-02-02 22:35:27 +0800211int arch_cpu_init(void)
212{
Bin Meng828d9af2015-02-02 22:35:27 +0800213 int ret;
214
215 post_code(POST_CPU_INIT);
Bin Meng828d9af2015-02-02 22:35:27 +0800216
217 ret = x86_cpu_init_f();
218 if (ret)
219 return ret;
220
Bin Mengb1622572015-02-04 16:26:09 +0800221 /*
Bin Mengc6d47052015-09-14 00:07:41 -0700222 * Quark SoC does not support MSR MTRRs. Fixed and variable range MTRRs
223 * are accessed indirectly via the message port and not the traditional
224 * MSR mechanism. Only UC, WT and WB cache types are supported.
225 */
226 quark_setup_mtrr();
227
228 /*
Bin Mengb1622572015-02-04 16:26:09 +0800229 * Quark SoC has some non-standard BARs (excluding PCI standard BARs)
230 * which need be initialized with suggested values
231 */
232 quark_setup_bars();
233
Bin Mengb06862b2015-09-03 05:37:27 -0700234 /* Initialize USB2 PHY */
235 quark_usb_early_init();
236
Bin Meng554778c2015-09-09 23:20:27 -0700237 /* Initialize thermal sensor */
238 quark_thermal_early_init();
239
Bin Mengf82a7842015-04-27 14:16:02 +0800240 /* Turn on legacy segments (A/B/E/F) decode to system RAM */
241 quark_enable_legacy_seg();
242
Bin Meng828d9af2015-02-02 22:35:27 +0800243 return 0;
244}
245
Bin Meng6071cd62016-01-18 07:29:32 -0800246int arch_cpu_init_dm(void)
247{
248 /*
249 * Initialize PCIe controller
250 *
251 * Quark SoC holds the PCIe controller in reset following a power on.
252 * U-Boot needs to release the PCIe controller from reset. The PCIe
253 * controller (D23:F0/F1) will not be visible in PCI configuration
254 * space and any access to its PCI configuration registers will cause
255 * system hang while it is held in reset.
256 */
257 quark_pcie_early_init();
258
259 return 0;
260}
261
Simon Glass76d1d022017-03-28 10:27:30 -0600262int checkcpu(void)
263{
264 return 0;
265}
266
Bin Meng828d9af2015-02-02 22:35:27 +0800267int print_cpuinfo(void)
268{
269 post_code(POST_CPU_INFO);
270 return default_print_cpuinfo();
271}
272
Bin Meng2afb6232015-09-11 03:24:37 -0700273static void quark_pcie_init(void)
274{
275 u32 val;
276
277 /* PCIe upstream non-posted & posted request size */
278 qrk_pci_write_config_dword(QUARK_PCIE0, PCIE_RP_CCFG,
279 CCFG_UPRS | CCFG_UNRS);
280 qrk_pci_write_config_dword(QUARK_PCIE1, PCIE_RP_CCFG,
281 CCFG_UPRS | CCFG_UNRS);
282
283 /* PCIe packet fast transmit mode (IPF) */
284 qrk_pci_write_config_dword(QUARK_PCIE0, PCIE_RP_MPC2, MPC2_IPF);
285 qrk_pci_write_config_dword(QUARK_PCIE1, PCIE_RP_MPC2, MPC2_IPF);
286
287 /* PCIe message bus idle counter (SBIC) */
288 qrk_pci_read_config_dword(QUARK_PCIE0, PCIE_RP_MBC, &val);
289 val |= MBC_SBIC;
290 qrk_pci_write_config_dword(QUARK_PCIE0, PCIE_RP_MBC, val);
291 qrk_pci_read_config_dword(QUARK_PCIE1, PCIE_RP_MBC, &val);
292 val |= MBC_SBIC;
293 qrk_pci_write_config_dword(QUARK_PCIE1, PCIE_RP_MBC, val);
294}
295
296static void quark_usb_init(void)
297{
298 u32 bar;
299
300 /* Change USB EHCI packet buffer OUT/IN threshold */
301 qrk_pci_read_config_dword(QUARK_USB_EHCI, PCI_BASE_ADDRESS_0, &bar);
302 writel((0x7f << 16) | 0x7f, bar + EHCI_INSNREG01);
303
304 /* Disable USB device interrupts */
305 qrk_pci_read_config_dword(QUARK_USB_DEVICE, PCI_BASE_ADDRESS_0, &bar);
306 writel(0x7f, bar + USBD_INT_MASK);
307 writel((0xf << 16) | 0xf, bar + USBD_EP_INT_MASK);
308 writel((0xf << 16) | 0xf, bar + USBD_EP_INT_STS);
309}
310
Bin Mengbc728b12018-06-03 19:04:22 -0700311static void quark_irq_init(void)
312{
313 struct quark_rcba *rcba;
314 u32 base;
315
316 qrk_pci_read_config_dword(QUARK_LEGACY_BRIDGE, LB_RCBA, &base);
317 base &= ~MEM_BAR_EN;
318 rcba = (struct quark_rcba *)base;
319
320 /*
321 * Route Quark PCI device interrupt pin to PIRQ
322 *
323 * Route device#23's INTA/B/C/D to PIRQA/B/C/D
324 * Route device#20,21's INTA/B/C/D to PIRQE/F/G/H
325 */
326 writew(PIRQC, &rcba->rmu_ir);
327 writew(PIRQA | (PIRQB << 4) | (PIRQC << 8) | (PIRQD << 12),
328 &rcba->d23_ir);
329 writew(PIRQD, &rcba->core_ir);
330 writew(PIRQE | (PIRQF << 4) | (PIRQG << 8) | (PIRQH << 12),
331 &rcba->d20d21_ir);
332}
333
Bin Meng2afb6232015-09-11 03:24:37 -0700334int arch_early_init_r(void)
335{
336 quark_pcie_init();
337
338 quark_usb_init();
339
Bin Mengbc728b12018-06-03 19:04:22 -0700340 quark_irq_init();
341
Bin Meng2afb6232015-09-11 03:24:37 -0700342 return 0;
343}
344
Bin Meng05b98ec2015-05-25 22:35:06 +0800345int arch_misc_init(void)
346{
Bin Meng2fc2b832015-10-12 01:30:42 -0700347#ifdef CONFIG_ENABLE_MRC_CACHE
348 /*
349 * We intend not to check any return value here, as even MRC cache
350 * is not saved successfully, it is not a severe error that will
351 * prevent system from continuing to boot.
352 */
353 mrccache_save();
354#endif
355
Bin Meng911d6f62016-05-22 01:45:34 -0700356 /* Assign a unique I/O APIC ID */
357 io_apic_set_id(1);
358
Simon Glass12d69292016-01-19 21:32:26 -0700359 return 0;
Bin Meng05b98ec2015-05-25 22:35:06 +0800360}
Bin Meng2afb6232015-09-11 03:24:37 -0700361
362void board_final_cleanup(void)
363{
364 struct quark_rcba *rcba;
365 u32 base, val;
366
367 qrk_pci_read_config_dword(QUARK_LEGACY_BRIDGE, LB_RCBA, &base);
368 base &= ~MEM_BAR_EN;
369 rcba = (struct quark_rcba *)base;
370
371 /* Initialize 'Component ID' to zero */
372 val = readl(&rcba->esd);
373 val &= ~0xff0000;
374 writel(val, &rcba->esd);
375
Bin Meng693b5f62015-09-09 23:20:26 -0700376 /* Lock HMBOUND for security */
377 msg_port_setbits(MSG_PORT_HOST_BRIDGE, HM_BOUND, HM_BOUND_LOCK);
378
Bin Meng2afb6232015-09-11 03:24:37 -0700379 return;
380}