Blame view

arch/x86/cpu/ivybridge/lpc.c 15.3 KB
2b6051541   Simon Glass   x86: ivybridge: A...
1
2
3
4
5
6
7
8
9
  /*
   * From coreboot southbridge/intel/bd82x6x/lpc.c
   *
   * Copyright (C) 2008-2009 coresystems GmbH
   *
   * SPDX-License-Identifier:	GPL-2.0
   */
  
  #include <common.h>
aad78d273   Simon Glass   dm: x86: pci: Con...
10
  #include <dm.h>
2b6051541   Simon Glass   x86: ivybridge: A...
11
12
  #include <errno.h>
  #include <fdtdec.h>
72cd085aa   Simon Glass   x86: ivybridge: A...
13
  #include <rtc.h>
2b6051541   Simon Glass   x86: ivybridge: A...
14
  #include <pci.h>
72cd085aa   Simon Glass   x86: ivybridge: A...
15
16
17
18
  #include <asm/acpi.h>
  #include <asm/interrupt.h>
  #include <asm/io.h>
  #include <asm/ioapic.h>
2b6051541   Simon Glass   x86: ivybridge: A...
19
20
  #include <asm/pci.h>
  #include <asm/arch/pch.h>
72cd085aa   Simon Glass   x86: ivybridge: A...
21
22
23
24
25
26
27
28
29
30
31
  #define NMI_OFF				0
  
  #define ENABLE_ACPI_MODE_IN_COREBOOT	0
  #define TEST_SMM_FLASH_LOCKDOWN		0
  
  static int pch_enable_apic(pci_dev_t dev)
  {
  	u32 reg32;
  	int i;
  
  	/* Enable ACPI I/O and power management. Set SCI IRQ to IRQ9 */
31f57c287   Simon Glass   x86: Add a x86_ p...
32
  	x86_pci_write_config8(dev, ACPI_CNTL, 0x80);
72cd085aa   Simon Glass   x86: ivybridge: A...
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
  
  	writel(0, IO_APIC_INDEX);
  	writel(1 << 25, IO_APIC_DATA);
  
  	/* affirm full set of redirection table entries ("write once") */
  	writel(1, IO_APIC_INDEX);
  	reg32 = readl(IO_APIC_DATA);
  	writel(1, IO_APIC_INDEX);
  	writel(reg32, IO_APIC_DATA);
  
  	writel(0, IO_APIC_INDEX);
  	reg32 = readl(IO_APIC_DATA);
  	debug("PCH APIC ID = %x
  ", (reg32 >> 24) & 0x0f);
  	if (reg32 != (1 << 25)) {
  		printf("APIC Error - cannot write to registers
  ");
  		return -EPERM;
  	}
  
  	debug("Dumping IOAPIC registers
  ");
  	for (i = 0;  i < 3; i++) {
  		writel(i, IO_APIC_INDEX);
  		debug("  reg 0x%04x:", i);
  		reg32 = readl(IO_APIC_DATA);
  		debug(" 0x%08x
  ", reg32);
  	}
  
  	/* Select Boot Configuration register. */
  	writel(3, IO_APIC_INDEX);
  
  	/* Use Processor System Bus to deliver interrupts. */
  	writel(1, IO_APIC_DATA);
  
  	return 0;
  }
  
  static void pch_enable_serial_irqs(pci_dev_t dev)
  {
  	u32 value;
  
  	/* Set packet length and toggle silent mode bit for one frame. */
  	value = (1 << 7) | (1 << 6) | ((21 - 17) << 2) | (0 << 0);
  #ifdef CONFIG_SERIRQ_CONTINUOUS_MODE
31f57c287   Simon Glass   x86: Add a x86_ p...
79
  	x86_pci_write_config8(dev, SERIRQ_CNTL, value);
72cd085aa   Simon Glass   x86: ivybridge: A...
80
  #else
31f57c287   Simon Glass   x86: Add a x86_ p...
81
  	x86_pci_write_config8(dev, SERIRQ_CNTL, value | (1 << 6));
72cd085aa   Simon Glass   x86: ivybridge: A...
82
83
84
85
86
87
88
89
90
91
92
  #endif
  }
  
  static int pch_pirq_init(const void *blob, int node, pci_dev_t dev)
  {
  	uint8_t route[8], *ptr;
  
  	if (fdtdec_get_byte_array(blob, node, "intel,pirq-routing", route,
  				  sizeof(route)))
  		return -EINVAL;
  	ptr = route;
31f57c287   Simon Glass   x86: Add a x86_ p...
93
94
95
96
  	x86_pci_write_config8(dev, PIRQA_ROUT, *ptr++);
  	x86_pci_write_config8(dev, PIRQB_ROUT, *ptr++);
  	x86_pci_write_config8(dev, PIRQC_ROUT, *ptr++);
  	x86_pci_write_config8(dev, PIRQD_ROUT, *ptr++);
72cd085aa   Simon Glass   x86: ivybridge: A...
97

31f57c287   Simon Glass   x86: Add a x86_ p...
98
99
100
101
  	x86_pci_write_config8(dev, PIRQE_ROUT, *ptr++);
  	x86_pci_write_config8(dev, PIRQF_ROUT, *ptr++);
  	x86_pci_write_config8(dev, PIRQG_ROUT, *ptr++);
  	x86_pci_write_config8(dev, PIRQH_ROUT, *ptr++);
72cd085aa   Simon Glass   x86: ivybridge: A...
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
  
  	/*
  	 * TODO(sjg@chromium.org): U-Boot does not set up the interrupts
  	 * here. It's unclear if it is needed
  	 */
  	return 0;
  }
  
  static int pch_gpi_routing(const void *blob, int node, pci_dev_t dev)
  {
  	u8 route[16];
  	u32 reg;
  	int gpi;
  
  	if (fdtdec_get_byte_array(blob, node, "intel,gpi-routing", route,
  				  sizeof(route)))
  		return -EINVAL;
  
  	for (reg = 0, gpi = 0; gpi < ARRAY_SIZE(route); gpi++)
  		reg |= route[gpi] << (gpi * 2);
31f57c287   Simon Glass   x86: Add a x86_ p...
122
  	x86_pci_write_config32(dev, 0xb8, reg);
72cd085aa   Simon Glass   x86: ivybridge: A...
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
  
  	return 0;
  }
  
  static int pch_power_options(const void *blob, int node, pci_dev_t dev)
  {
  	u8 reg8;
  	u16 reg16, pmbase;
  	u32 reg32;
  	const char *state;
  	int pwr_on;
  	int nmi_option;
  	int ret;
  
  	/*
  	 * Which state do we want to goto after g3 (power restored)?
  	 * 0 == S0 Full On
  	 * 1 == S5 Soft Off
  	 *
  	 * If the option is not existent (Laptops), use Kconfig setting.
  	 * TODO(sjg@chromium.org): Make this configurable
  	 */
  	pwr_on = MAINBOARD_POWER_ON;
31f57c287   Simon Glass   x86: Add a x86_ p...
146
  	reg16 = x86_pci_read_config16(dev, GEN_PMCON_3);
72cd085aa   Simon Glass   x86: ivybridge: A...
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
  	reg16 &= 0xfffe;
  	switch (pwr_on) {
  	case MAINBOARD_POWER_OFF:
  		reg16 |= 1;
  		state = "off";
  		break;
  	case MAINBOARD_POWER_ON:
  		reg16 &= ~1;
  		state = "on";
  		break;
  	case MAINBOARD_POWER_KEEP:
  		reg16 &= ~1;
  		state = "state keep";
  		break;
  	default:
  		state = "undefined";
  	}
  
  	reg16 &= ~(3 << 4);	/* SLP_S4# Assertion Stretch 4s */
  	reg16 |= (1 << 3);	/* SLP_S4# Assertion Stretch Enable */
  
  	reg16 &= ~(1 << 10);
  	reg16 |= (1 << 11);	/* SLP_S3# Min Assertion Width 50ms */
  
  	reg16 |= (1 << 12);	/* Disable SLP stretch after SUS well */
31f57c287   Simon Glass   x86: Add a x86_ p...
172
  	x86_pci_write_config16(dev, GEN_PMCON_3, reg16);
72cd085aa   Simon Glass   x86: ivybridge: A...
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
  	debug("Set power %s after power failure.
  ", state);
  
  	/* Set up NMI on errors. */
  	reg8 = inb(0x61);
  	reg8 &= 0x0f;		/* Higher Nibble must be 0 */
  	reg8 &= ~(1 << 3);	/* IOCHK# NMI Enable */
  	reg8 |= (1 << 2); /* PCI SERR# Disable for now */
  	outb(reg8, 0x61);
  
  	reg8 = inb(0x70);
  	/* TODO(sjg@chromium.org): Make this configurable */
  	nmi_option = NMI_OFF;
  	if (nmi_option) {
  		debug("NMI sources enabled.
  ");
  		reg8 &= ~(1 << 7);	/* Set NMI. */
  	} else {
  		debug("NMI sources disabled.
  ");
  		/* Can't mask NMI from PCI-E and NMI_NOW */
  		reg8 |= (1 << 7);
  	}
  	outb(reg8, 0x70);
  
  	/* Enable CPU_SLP# and Intel Speedstep, set SMI# rate down */
31f57c287   Simon Glass   x86: Add a x86_ p...
199
  	reg16 = x86_pci_read_config16(dev, GEN_PMCON_1);
72cd085aa   Simon Glass   x86: ivybridge: A...
200
201
202
203
204
205
  	reg16 &= ~(3 << 0);	/* SMI# rate 1 minute */
  	reg16 &= ~(1 << 10);	/* Disable BIOS_PCI_EXP_EN for native PME */
  #if DEBUG_PERIODIC_SMIS
  	/* Set DEBUG_PERIODIC_SMIS in pch.h to debug using periodic SMIs */
  	reg16 |= (3 << 0);	/* Periodic SMI every 8s */
  #endif
31f57c287   Simon Glass   x86: Add a x86_ p...
206
  	x86_pci_write_config16(dev, GEN_PMCON_1, reg16);
72cd085aa   Simon Glass   x86: ivybridge: A...
207
208
209
210
211
  
  	/* Set the board's GPI routing. */
  	ret = pch_gpi_routing(blob, node, dev);
  	if (ret)
  		return ret;
31f57c287   Simon Glass   x86: Add a x86_ p...
212
  	pmbase = x86_pci_read_config16(dev, 0x40) & 0xfffe;
72cd085aa   Simon Glass   x86: ivybridge: A...
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
  
  	writel(pmbase + GPE0_EN, fdtdec_get_int(blob, node,
  						"intel,gpe0-enable", 0));
  	writew(pmbase + ALT_GP_SMI_EN, fdtdec_get_int(blob, node,
  						"intel,alt-gp-smi-enable", 0));
  
  	/* Set up power management block and determine sleep mode */
  	reg32 = inl(pmbase + 0x04); /* PM1_CNT */
  	reg32 &= ~(7 << 10);	/* SLP_TYP */
  	reg32 |= (1 << 0);	/* SCI_EN */
  	outl(reg32, pmbase + 0x04);
  
  	/* Clear magic status bits to prevent unexpected wake */
  	setbits_le32(RCB_REG(0x3310), (1 << 4) | (1 << 5) | (1 << 0));
  	clrbits_le32(RCB_REG(0x3f02), 0xf);
  
  	return 0;
  }
  
  static void pch_rtc_init(pci_dev_t dev)
  {
  	int rtc_failed;
  	u8 reg8;
31f57c287   Simon Glass   x86: Add a x86_ p...
236
  	reg8 = x86_pci_read_config8(dev, GEN_PMCON_3);
72cd085aa   Simon Glass   x86: ivybridge: A...
237
238
239
  	rtc_failed = reg8 & RTC_BATTERY_DEAD;
  	if (rtc_failed) {
  		reg8 &= ~RTC_BATTERY_DEAD;
31f57c287   Simon Glass   x86: Add a x86_ p...
240
  		x86_pci_write_config8(dev, GEN_PMCON_3, reg8);
72cd085aa   Simon Glass   x86: ivybridge: A...
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
  	}
  	debug("rtc_failed = 0x%x
  ", rtc_failed);
  
  #if CONFIG_HAVE_ACPI_RESUME
  	/* Avoid clearing pending interrupts and resetting the RTC control
  	 * register in the resume path because the Linux kernel relies on
  	 * this to know if it should restart the RTC timerqueue if the wake
  	 * was due to the RTC alarm.
  	 */
  	if (acpi_get_slp_type() == 3)
  		return;
  #endif
  	/* TODO: Handle power failure */
  	if (rtc_failed)
  		printf("RTC power failed
  ");
  	rtc_init();
  }
  
  /* CougarPoint PCH Power Management init */
  static void cpt_pm_init(pci_dev_t dev)
  {
  	debug("CougarPoint PM init
  ");
31f57c287   Simon Glass   x86: Add a x86_ p...
266
  	x86_pci_write_config8(dev, 0xa9, 0x47);
72cd085aa   Simon Glass   x86: ivybridge: A...
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
  	setbits_le32(RCB_REG(0x2238), (1 << 6) | (1 << 0));
  
  	setbits_le32(RCB_REG(0x228c), 1 << 0);
  	setbits_le32(RCB_REG(0x1100), (1 << 13) | (1 << 14));
  	setbits_le32(RCB_REG(0x0900), 1 << 14);
  	writel(0xc0388400, RCB_REG(0x2304));
  	setbits_le32(RCB_REG(0x2314), (1 << 5) | (1 << 18));
  	setbits_le32(RCB_REG(0x2320), (1 << 15) | (1 << 1));
  	clrsetbits_le32(RCB_REG(0x3314), ~0x1f, 0xf);
  	writel(0x050f0000, RCB_REG(0x3318));
  	writel(0x04000000, RCB_REG(0x3324));
  	setbits_le32(RCB_REG(0x3340), 0xfffff);
  	setbits_le32(RCB_REG(0x3344), 1 << 1);
  
  	writel(0x0001c000, RCB_REG(0x3360));
  	writel(0x00061100, RCB_REG(0x3368));
  	writel(0x7f8fdfff, RCB_REG(0x3378));
  	writel(0x000003fc, RCB_REG(0x337c));
  	writel(0x00001000, RCB_REG(0x3388));
  	writel(0x0001c000, RCB_REG(0x3390));
  	writel(0x00000800, RCB_REG(0x33a0));
  	writel(0x00001000, RCB_REG(0x33b0));
  	writel(0x00093900, RCB_REG(0x33c0));
  	writel(0x24653002, RCB_REG(0x33cc));
  	writel(0x062108fe, RCB_REG(0x33d0));
  	clrsetbits_le32(RCB_REG(0x33d4), 0x0fff0fff, 0x00670060);
  	writel(0x01010000, RCB_REG(0x3a28));
  	writel(0x01010404, RCB_REG(0x3a2c));
  	writel(0x01041041, RCB_REG(0x3a80));
  	clrsetbits_le32(RCB_REG(0x3a84), 0x0000ffff, 0x00001001);
  	setbits_le32(RCB_REG(0x3a84), 1 << 24); /* SATA 2/3 disabled */
  	setbits_le32(RCB_REG(0x3a88), 1 << 0);  /* SATA 4/5 disabled */
  	writel(0x00000001, RCB_REG(0x3a6c));
  	clrsetbits_le32(RCB_REG(0x2344), ~0x00ffff00, 0xff00000c);
  	clrsetbits_le32(RCB_REG(0x80c), 0xff << 20, 0x11 << 20);
  	writel(0, RCB_REG(0x33c8));
  	setbits_le32(RCB_REG(0x21b0), 0xf);
  }
  
  /* PantherPoint PCH Power Management init */
  static void ppt_pm_init(pci_dev_t dev)
  {
  	debug("PantherPoint PM init
  ");
31f57c287   Simon Glass   x86: Add a x86_ p...
311
  	x86_pci_write_config8(dev, 0xa9, 0x47);
72cd085aa   Simon Glass   x86: ivybridge: A...
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
  	setbits_le32(RCB_REG(0x2238), 1 << 0);
  	setbits_le32(RCB_REG(0x228c), 1 << 0);
  	setbits_le16(RCB_REG(0x1100), (1 << 13) | (1 << 14));
  	setbits_le16(RCB_REG(0x0900), 1 << 14);
  	writel(0xc03b8400, RCB_REG(0x2304));
  	setbits_le32(RCB_REG(0x2314), (1 << 5) | (1 << 18));
  	setbits_le32(RCB_REG(0x2320), (1 << 15) | (1 << 1));
  	clrsetbits_le32(RCB_REG(0x3314), 0x1f, 0xf);
  	writel(0x054f0000, RCB_REG(0x3318));
  	writel(0x04000000, RCB_REG(0x3324));
  	setbits_le32(RCB_REG(0x3340), 0xfffff);
  	setbits_le32(RCB_REG(0x3344), (1 << 1) | (1 << 0));
  	writel(0x0001c000, RCB_REG(0x3360));
  	writel(0x00061100, RCB_REG(0x3368));
  	writel(0x7f8fdfff, RCB_REG(0x3378));
  	writel(0x000003fd, RCB_REG(0x337c));
  	writel(0x00001000, RCB_REG(0x3388));
  	writel(0x0001c000, RCB_REG(0x3390));
  	writel(0x00000800, RCB_REG(0x33a0));
  	writel(0x00001000, RCB_REG(0x33b0));
  	writel(0x00093900, RCB_REG(0x33c0));
  	writel(0x24653002, RCB_REG(0x33cc));
  	writel(0x067388fe, RCB_REG(0x33d0));
  	clrsetbits_le32(RCB_REG(0x33d4), 0x0fff0fff, 0x00670060);
  	writel(0x01010000, RCB_REG(0x3a28));
  	writel(0x01010404, RCB_REG(0x3a2c));
  	writel(0x01040000, RCB_REG(0x3a80));
  	clrsetbits_le32(RCB_REG(0x3a84), 0x0000ffff, 0x00001001);
  	/* SATA 2/3 disabled */
  	setbits_le32(RCB_REG(0x3a84), 1 << 24);
  	/* SATA 4/5 disabled */
  	setbits_le32(RCB_REG(0x3a88), 1 << 0);
  	writel(0x00000001, RCB_REG(0x3a6c));
  	clrsetbits_le32(RCB_REG(0x2344), 0xff0000ff, 0xff00000c);
  	clrsetbits_le32(RCB_REG(0x80c), 0xff << 20, 0x11 << 20);
  	setbits_le32(RCB_REG(0x33a4), (1 << 0));
  	writel(0, RCB_REG(0x33c8));
  	setbits_le32(RCB_REG(0x21b0), 0xf);
  }
  
  static void enable_hpet(void)
  {
  	/* Move HPET to default address 0xfed00000 and enable it */
  	clrsetbits_le32(RCB_REG(HPTC), 3 << 0, 1 << 7);
  }
  
  static void enable_clock_gating(pci_dev_t dev)
  {
  	u32 reg32;
  	u16 reg16;
  
  	setbits_le32(RCB_REG(0x2234), 0xf);
31f57c287   Simon Glass   x86: Add a x86_ p...
364
  	reg16 = x86_pci_read_config16(dev, GEN_PMCON_1);
72cd085aa   Simon Glass   x86: ivybridge: A...
365
  	reg16 |= (1 << 2) | (1 << 11);
31f57c287   Simon Glass   x86: Add a x86_ p...
366
  	x86_pci_write_config16(dev, GEN_PMCON_1, reg16);
72cd085aa   Simon Glass   x86: ivybridge: A...
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
  
  	pch_iobp_update(0xEB007F07, ~0UL, (1 << 31));
  	pch_iobp_update(0xEB004000, ~0UL, (1 << 7));
  	pch_iobp_update(0xEC007F07, ~0UL, (1 << 31));
  	pch_iobp_update(0xEC004000, ~0UL, (1 << 7));
  
  	reg32 = readl(RCB_REG(CG));
  	reg32 |= (1 << 31);
  	reg32 |= (1 << 29) | (1 << 28);
  	reg32 |= (1 << 27) | (1 << 26) | (1 << 25) | (1 << 24);
  	reg32 |= (1 << 16);
  	reg32 |= (1 << 17);
  	reg32 |= (1 << 18);
  	reg32 |= (1 << 22);
  	reg32 |= (1 << 23);
  	reg32 &= ~(1 << 20);
  	reg32 |= (1 << 19);
  	reg32 |= (1 << 0);
  	reg32 |= (0xf << 1);
  	writel(reg32, RCB_REG(CG));
  
  	setbits_le32(RCB_REG(0x38c0), 0x7);
  	setbits_le32(RCB_REG(0x36d4), 0x6680c004);
  	setbits_le32(RCB_REG(0x3564), 0x3);
  }
  
  #if CONFIG_HAVE_SMI_HANDLER
  static void pch_lock_smm(pci_dev_t dev)
  {
  #if TEST_SMM_FLASH_LOCKDOWN
  	u8 reg8;
  #endif
  
  	if (acpi_slp_type != 3) {
  #if ENABLE_ACPI_MODE_IN_COREBOOT
  		debug("Enabling ACPI via APMC:
  ");
  		outb(0xe1, 0xb2); /* Enable ACPI mode */
  		debug("done.
  ");
  #else
  		debug("Disabling ACPI via APMC:
  ");
  		outb(0x1e, 0xb2); /* Disable ACPI mode */
  		debug("done.
  ");
  #endif
  	}
  
  	/* Don't allow evil boot loaders, kernels, or
  	 * userspace applications to deceive us:
  	 */
  	smm_lock();
  
  #if TEST_SMM_FLASH_LOCKDOWN
  	/* Now try this: */
  	debug("Locking BIOS to RO... ");
31f57c287   Simon Glass   x86: Add a x86_ p...
424
  	reg8 = x86_pci_read_config8(dev, 0xdc);	/* BIOS_CNTL */
72cd085aa   Simon Glass   x86: ivybridge: A...
425
426
427
428
  	debug(" BLE: %s; BWE: %s
  ", (reg8 & 2) ? "on" : "off",
  	      (reg8 & 1) ? "rw" : "ro");
  	reg8 &= ~(1 << 0);			/* clear BIOSWE */
31f57c287   Simon Glass   x86: Add a x86_ p...
429
  	x86_pci_write_config8(dev, 0xdc, reg8);
72cd085aa   Simon Glass   x86: ivybridge: A...
430
  	reg8 |= (1 << 1);			/* set BLE */
31f57c287   Simon Glass   x86: Add a x86_ p...
431
  	x86_pci_write_config8(dev, 0xdc, reg8);
72cd085aa   Simon Glass   x86: ivybridge: A...
432
433
  	debug("ok.
  ");
31f57c287   Simon Glass   x86: Add a x86_ p...
434
  	reg8 = x86_pci_read_config8(dev, 0xdc);	/* BIOS_CNTL */
72cd085aa   Simon Glass   x86: ivybridge: A...
435
436
437
438
439
440
441
442
443
444
  	debug(" BLE: %s; BWE: %s
  ", (reg8 & 2) ? "on" : "off",
  	      (reg8 & 1) ? "rw" : "ro");
  
  	debug("Writing:
  ");
  	writeb(0, 0xfff00000);
  	debug("Testing:
  ");
  	reg8 |= (1 << 0);			/* set BIOSWE */
31f57c287   Simon Glass   x86: Add a x86_ p...
445
  	x86_pci_write_config8(dev, 0xdc, reg8);
72cd085aa   Simon Glass   x86: ivybridge: A...
446

31f57c287   Simon Glass   x86: Add a x86_ p...
447
  	reg8 = x86_pci_read_config8(dev, 0xdc);	/* BIOS_CNTL */
72cd085aa   Simon Glass   x86: ivybridge: A...
448
449
450
451
452
453
454
455
456
457
458
459
460
461
  	debug(" BLE: %s; BWE: %s
  ", (reg8 & 2) ? "on" : "off",
  	      (reg8 & 1) ? "rw" : "ro");
  	debug("Done.
  ");
  #endif
  }
  #endif
  
  static void pch_disable_smm_only_flashing(pci_dev_t dev)
  {
  	u8 reg8;
  
  	debug("Enabling BIOS updates outside of SMM... ");
31f57c287   Simon Glass   x86: Add a x86_ p...
462
  	reg8 = x86_pci_read_config8(dev, 0xdc);	/* BIOS_CNTL */
72cd085aa   Simon Glass   x86: ivybridge: A...
463
  	reg8 &= ~(1 << 5);
31f57c287   Simon Glass   x86: Add a x86_ p...
464
  	x86_pci_write_config8(dev, 0xdc, reg8);
72cd085aa   Simon Glass   x86: ivybridge: A...
465
466
467
468
469
470
471
  }
  
  static void pch_fixups(pci_dev_t dev)
  {
  	u8 gen_pmcon_2;
  
  	/* Indicate DRAM init done for MRC S3 to know it can resume */
31f57c287   Simon Glass   x86: Add a x86_ p...
472
  	gen_pmcon_2 = x86_pci_read_config8(dev, GEN_PMCON_2);
72cd085aa   Simon Glass   x86: ivybridge: A...
473
  	gen_pmcon_2 |= (1 << 7);
31f57c287   Simon Glass   x86: Add a x86_ p...
474
  	x86_pci_write_config8(dev, GEN_PMCON_2, gen_pmcon_2);
72cd085aa   Simon Glass   x86: ivybridge: A...
475
476
477
478
479
480
  
  	/* Enable DMI ASPM in the PCH */
  	clrbits_le32(RCB_REG(0x2304), 1 << 10);
  	setbits_le32(RCB_REG(0x21a4), (1 << 11) | (1 << 10));
  	setbits_le32(RCB_REG(0x21a8), 0x3);
  }
2b6051541   Simon Glass   x86: ivybridge: A...
481
482
483
484
485
486
487
488
  int lpc_early_init(const void *blob, int node, pci_dev_t dev)
  {
  	struct reg_info {
  		u32 base;
  		u32 size;
  	} values[4], *ptr;
  	int count;
  	int i;
72cd085aa   Simon Glass   x86: ivybridge: A...
489
  	count = fdtdec_get_int_array_count(blob, node, "intel,gen-dec",
2b6051541   Simon Glass   x86: ivybridge: A...
490
491
492
493
494
  			(u32 *)values, sizeof(values) / sizeof(u32));
  	if (count < 0)
  		return -EINVAL;
  
  	/* Set COM1/COM2 decode range */
31f57c287   Simon Glass   x86: Add a x86_ p...
495
  	x86_pci_write_config16(dev, LPC_IO_DEC, 0x0010);
2b6051541   Simon Glass   x86: ivybridge: A...
496
497
  
  	/* Enable PS/2 Keyboard/Mouse, EC areas and COM1 */
31f57c287   Simon Glass   x86: Add a x86_ p...
498
  	x86_pci_write_config16(dev, LPC_EN, KBC_LPC_EN | MC_LPC_EN |
2b6051541   Simon Glass   x86: ivybridge: A...
499
500
501
502
503
504
505
506
507
  			   GAMEL_LPC_EN | COMA_LPC_EN);
  
  	/* Write all registers but use 0 if we run out of data */
  	count = count * sizeof(u32) / sizeof(values[0]);
  	for (i = 0, ptr = values; i < ARRAY_SIZE(values); i++, ptr++) {
  		u32 reg = 0;
  
  		if (i < count)
  			reg = ptr->base | PCI_COMMAND_IO | (ptr->size << 16);
31f57c287   Simon Glass   x86: Add a x86_ p...
508
  		x86_pci_write_config32(dev, LPC_GENX_DEC(i), reg);
2b6051541   Simon Glass   x86: ivybridge: A...
509
510
511
512
  	}
  
  	return 0;
  }
72cd085aa   Simon Glass   x86: ivybridge: A...
513
514
515
516
517
518
519
520
521
522
523
524
525
  
  int lpc_init(struct pci_controller *hose, pci_dev_t dev)
  {
  	const void *blob = gd->fdt_blob;
  	int node;
  
  	debug("pch: lpc_init
  ");
  	pci_write_bar32(hose, dev, 0, 0);
  	pci_write_bar32(hose, dev, 1, 0xff800000);
  	pci_write_bar32(hose, dev, 2, 0xfec00000);
  	pci_write_bar32(hose, dev, 3, 0x800);
  	pci_write_bar32(hose, dev, 4, 0x900);
90b16d149   Simon Glass   x86: chromebook_l...
526
  	node = fdtdec_next_compatible(blob, 0, COMPAT_INTEL_PCH);
72cd085aa   Simon Glass   x86: ivybridge: A...
527
528
529
530
  	if (node < 0)
  		return -ENOENT;
  
  	/* Set the value for PCI command register. */
31f57c287   Simon Glass   x86: Add a x86_ p...
531
  	x86_pci_write_config16(dev, PCI_COMMAND, 0x000f);
72cd085aa   Simon Glass   x86: ivybridge: A...
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
  
  	/* IO APIC initialization. */
  	pch_enable_apic(dev);
  
  	pch_enable_serial_irqs(dev);
  
  	/* Setup the PIRQ. */
  	pch_pirq_init(blob, node, dev);
  
  	/* Setup power options. */
  	pch_power_options(blob, node, dev);
  
  	/* Initialize power management */
  	switch (pch_silicon_type()) {
  	case PCH_TYPE_CPT: /* CougarPoint */
  		cpt_pm_init(dev);
  		break;
  	case PCH_TYPE_PPT: /* PantherPoint */
  		ppt_pm_init(dev);
  		break;
  	default:
  		printf("Unknown Chipset: %#02x.%dx
  ", PCI_DEV(dev),
  		       PCI_FUNC(dev));
  		return -ENOSYS;
  	}
  
  	/* Initialize the real time clock. */
  	pch_rtc_init(dev);
  
  	/* Initialize the High Precision Event Timers, if present. */
  	enable_hpet();
  
  	/* Initialize Clock Gating */
  	enable_clock_gating(dev);
  
  	pch_disable_smm_only_flashing(dev);
  
  #if CONFIG_HAVE_SMI_HANDLER
  	pch_lock_smm(dev);
  #endif
  
  	pch_fixups(dev);
  
  	return 0;
  }
  
  void lpc_enable(pci_dev_t dev)
  {
  	/* Enable PCH Display Port */
  	writew(0x0010, RCB_REG(DISPBDF));
  	setbits_le32(RCB_REG(FD2), PCH_ENABLE_DBDF);
  }
90b16d149   Simon Glass   x86: chromebook_l...
585
586
587
588
589
590
591
592
593
594
595
  
  static const struct udevice_id bd82x6x_lpc_ids[] = {
  	{ .compatible = "intel,bd82x6x-lpc" },
  	{ }
  };
  
  U_BOOT_DRIVER(bd82x6x_lpc_drv) = {
  	.name		= "lpc",
  	.id		= UCLASS_LPC,
  	.of_match	= bd82x6x_lpc_ids,
  };