1 /*
2  * From Coreboot northbridge/intel/sandybridge/northbridge.c
3  *
4  * Copyright (C) 2007-2009 coresystems GmbH
5  * Copyright (C) 2011 The Chromium Authors
6  *
7  * SPDX-License-Identifier:	GPL-2.0
8  */
9 
10 #include <common.h>
11 #include <dm.h>
12 #include <asm/msr.h>
13 #include <asm/acpi.h>
14 #include <asm/cpu.h>
15 #include <asm/io.h>
16 #include <asm/pci.h>
17 #include <asm/processor.h>
18 #include <asm/arch/pch.h>
19 #include <asm/arch/model_206ax.h>
20 #include <asm/arch/sandybridge.h>
21 
22 static int bridge_revision_id = -1;
23 
24 int bridge_silicon_revision(void)
25 {
26 	if (bridge_revision_id < 0) {
27 		struct cpuid_result result;
28 		uint8_t stepping, bridge_id;
29 		pci_dev_t dev;
30 
31 		result = cpuid(1);
32 		stepping = result.eax & 0xf;
33 		dev = PCI_BDF(0, 0, 0);
34 		bridge_id = x86_pci_read_config16(dev, PCI_DEVICE_ID) & 0xf0;
35 		bridge_revision_id = bridge_id | stepping;
36 	}
37 
38 	return bridge_revision_id;
39 }
40 
41 /*
42  * Reserve everything between A segment and 1MB:
43  *
44  * 0xa0000 - 0xbffff: legacy VGA
45  * 0xc0000 - 0xcffff: VGA OPROM (needed by kernel)
46  * 0xe0000 - 0xfffff: SeaBIOS, if used, otherwise DMI
47  */
48 static const int legacy_hole_base_k = 0xa0000 / 1024;
49 static const int legacy_hole_size_k = 384;
50 
51 static int get_pcie_bar(struct udevice *dev, u32 *base, u32 *len)
52 {
53 	u32 pciexbar_reg;
54 
55 	*base = 0;
56 	*len = 0;
57 
58 	dm_pci_read_config32(dev, PCIEXBAR, &pciexbar_reg);
59 
60 	if (!(pciexbar_reg & (1 << 0)))
61 		return 0;
62 
63 	switch ((pciexbar_reg >> 1) & 3) {
64 	case 0: /* 256MB */
65 		*base = pciexbar_reg & ((1 << 31) | (1 << 30) | (1 << 29) |
66 				(1 << 28));
67 		*len = 256 * 1024 * 1024;
68 		return 1;
69 	case 1: /* 128M */
70 		*base = pciexbar_reg & ((1 << 31) | (1 << 30) | (1 << 29) |
71 				(1 << 28) | (1 << 27));
72 		*len = 128 * 1024 * 1024;
73 		return 1;
74 	case 2: /* 64M */
75 		*base = pciexbar_reg & ((1 << 31) | (1 << 30) | (1 << 29) |
76 				(1 << 28) | (1 << 27) | (1 << 26));
77 		*len = 64 * 1024 * 1024;
78 		return 1;
79 	}
80 
81 	return 0;
82 }
83 
84 static void add_fixed_resources(struct udevice *dev, int index)
85 {
86 	u32 pcie_config_base, pcie_config_size;
87 
88 	if (get_pcie_bar(dev, &pcie_config_base, &pcie_config_size)) {
89 		debug("Adding PCIe config bar base=0x%08x size=0x%x\n",
90 		      pcie_config_base, pcie_config_size);
91 	}
92 }
93 
94 static void northbridge_dmi_init(struct udevice *dev)
95 {
96 	/* Clear error status bits */
97 	writel(0xffffffff, DMIBAR_REG(0x1c4));
98 	writel(0xffffffff, DMIBAR_REG(0x1d0));
99 
100 	/* Steps prior to DMI ASPM */
101 	if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB) {
102 		clrsetbits_le32(DMIBAR_REG(0x250), (1 << 22) | (1 << 20),
103 				1 << 21);
104 	}
105 
106 	setbits_le32(DMIBAR_REG(0x238), 1 << 29);
107 
108 	if (bridge_silicon_revision() >= SNB_STEP_D0) {
109 		setbits_le32(DMIBAR_REG(0x1f8), 1 << 16);
110 	} else if (bridge_silicon_revision() >= SNB_STEP_D1) {
111 		clrsetbits_le32(DMIBAR_REG(0x1f8), 1 << 26, 1 << 16);
112 		setbits_le32(DMIBAR_REG(0x1fc), (1 << 12) | (1 << 23));
113 	}
114 
115 	/* Enable ASPM on SNB link, should happen before PCH link */
116 	if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_SNB)
117 		setbits_le32(DMIBAR_REG(0xd04), 1 << 4);
118 
119 	setbits_le32(DMIBAR_REG(0x88), (1 << 1) | (1 << 0));
120 }
121 
122 static void northbridge_init(struct udevice *dev)
123 {
124 	u32 bridge_type;
125 
126 	add_fixed_resources(dev, 6);
127 	northbridge_dmi_init(dev);
128 
129 	bridge_type = readl(MCHBAR_REG(0x5f10));
130 	bridge_type &= ~0xff;
131 
132 	if ((bridge_silicon_revision() & BASE_REV_MASK) == BASE_REV_IVB) {
133 		/* Enable Power Aware Interrupt Routing - fixed priority */
134 		clrsetbits_8(MCHBAR_REG(0x5418), 0xf, 0x4);
135 
136 		/* 30h for IvyBridge */
137 		bridge_type |= 0x30;
138 	} else {
139 		/* 20h for Sandybridge */
140 		bridge_type |= 0x20;
141 	}
142 	writel(bridge_type, MCHBAR_REG(0x5f10));
143 
144 	/*
145 	 * Set bit 0 of BIOS_RESET_CPL to indicate to the CPU
146 	 * that BIOS has initialized memory and power management
147 	 */
148 	setbits_8(MCHBAR_REG(BIOS_RESET_CPL), 1);
149 	debug("Set BIOS_RESET_CPL\n");
150 
151 	/* Configure turbo power limits 1ms after reset complete bit */
152 	mdelay(1);
153 	set_power_limits(28);
154 
155 	/*
156 	 * CPUs with configurable TDP also need power limits set
157 	 * in MCHBAR.  Use same values from MSR_PKG_POWER_LIMIT.
158 	 */
159 	if (cpu_config_tdp_levels()) {
160 		msr_t msr = msr_read(MSR_PKG_POWER_LIMIT);
161 
162 		writel(msr.lo, MCHBAR_REG(0x59A0));
163 		writel(msr.hi, MCHBAR_REG(0x59A4));
164 	}
165 
166 	/* Set here before graphics PM init */
167 	writel(0x00100001, MCHBAR_REG(0x5500));
168 }
169 
170 static void sandybridge_setup_northbridge_bars(struct udevice *dev)
171 {
172 	/* Set up all hardcoded northbridge BARs */
173 	debug("Setting up static registers\n");
174 	dm_pci_write_config32(dev, EPBAR, DEFAULT_EPBAR | 1);
175 	dm_pci_write_config32(dev, EPBAR + 4, (0LL + DEFAULT_EPBAR) >> 32);
176 	dm_pci_write_config32(dev, MCHBAR, DEFAULT_MCHBAR | 1);
177 	dm_pci_write_config32(dev, MCHBAR + 4, (0LL + DEFAULT_MCHBAR) >> 32);
178 	/* 64MB - busses 0-63 */
179 	dm_pci_write_config32(dev, PCIEXBAR, DEFAULT_PCIEXBAR | 5);
180 	dm_pci_write_config32(dev, PCIEXBAR + 4,
181 			      (0LL + DEFAULT_PCIEXBAR) >> 32);
182 	dm_pci_write_config32(dev, DMIBAR, DEFAULT_DMIBAR | 1);
183 	dm_pci_write_config32(dev, DMIBAR + 4, (0LL + DEFAULT_DMIBAR) >> 32);
184 
185 	/* Set C0000-FFFFF to access RAM on both reads and writes */
186 	dm_pci_write_config8(dev, PAM0, 0x30);
187 	dm_pci_write_config8(dev, PAM1, 0x33);
188 	dm_pci_write_config8(dev, PAM2, 0x33);
189 	dm_pci_write_config8(dev, PAM3, 0x33);
190 	dm_pci_write_config8(dev, PAM4, 0x33);
191 	dm_pci_write_config8(dev, PAM5, 0x33);
192 	dm_pci_write_config8(dev, PAM6, 0x33);
193 }
194 
195 static int bd82x6x_northbridge_early_init(struct udevice *dev)
196 {
197 	const int chipset_type = SANDYBRIDGE_MOBILE;
198 	u32 capid0_a;
199 	u8 reg8;
200 
201 	/* Device ID Override Enable should be done very early */
202 	dm_pci_read_config32(dev, 0xe4, &capid0_a);
203 	if (capid0_a & (1 << 10)) {
204 		dm_pci_read_config8(dev, 0xf3, &reg8);
205 		reg8 &= ~7; /* Clear 2:0 */
206 
207 		if (chipset_type == SANDYBRIDGE_MOBILE)
208 			reg8 |= 1; /* Set bit 0 */
209 
210 		dm_pci_write_config8(dev, 0xf3, reg8);
211 	}
212 
213 	sandybridge_setup_northbridge_bars(dev);
214 
215 	/* Device Enable */
216 	dm_pci_write_config32(dev, DEVEN, DEVEN_HOST | DEVEN_IGD);
217 
218 	return 0;
219 }
220 
221 static int bd82x6x_northbridge_probe(struct udevice *dev)
222 {
223 	if (!(gd->flags & GD_FLG_RELOC))
224 		return bd82x6x_northbridge_early_init(dev);
225 
226 	northbridge_init(dev);
227 
228 	return 0;
229 }
230 
231 static const struct udevice_id bd82x6x_northbridge_ids[] = {
232 	{ .compatible = "intel,bd82x6x-northbridge" },
233 	{ }
234 };
235 
236 U_BOOT_DRIVER(bd82x6x_northbridge_drv) = {
237 	.name		= "bd82x6x_northbridge",
238 	.id		= UCLASS_NORTHBRIDGE,
239 	.of_match	= bd82x6x_northbridge_ids,
240 	.probe		= bd82x6x_northbridge_probe,
241 };
242