blob: 7b60ec7153f65456627410c41595589f5080db0a [file] [log] [blame]
Stefan Reinauer00636b02012-04-04 00:08:51 +02001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2010 coresystems GmbH
5 * Copyright (C) 2011 Google Inc
6 *
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; version 2 of the License.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
Patrick Georgib890a122015-03-26 15:17:45 +010018 * Foundation, Inc.
Stefan Reinauer00636b02012-04-04 00:08:51 +020019 */
20
21#include <stdint.h>
22#include <stdlib.h>
23#include <console/console.h>
24#include <arch/io.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020025#include <device/pci_def.h>
Duncan Laurief4d36232012-06-23 16:37:45 -070026#include <elog.h>
Vladimir Serbinenkoc845b432014-09-05 03:37:44 +020027#include <cbmem.h>
Vladimir Serbinenko5fc04d12014-08-03 01:59:38 +020028#include <pc80/mc146818rtc.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020029#include "sandybridge.h"
Stefan Reinauer00636b02012-04-04 00:08:51 +020030
31static void sandybridge_setup_bars(void)
32{
33 /* Setting up Southbridge. In the northbridge code. */
34 printk(BIOS_DEBUG, "Setting up static southbridge registers...");
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080035 pci_write_config32(PCI_DEV(0, 0x1f, 0), RCBA, (uintptr_t)DEFAULT_RCBA | 1);
Stefan Reinauer00636b02012-04-04 00:08:51 +020036
37 pci_write_config32(PCI_DEV(0, 0x1f, 0), PMBASE, DEFAULT_PMBASE | 1);
38 pci_write_config8(PCI_DEV(0, 0x1f, 0), 0x44 /* ACPI_CNTL */ , 0x80); /* Enable ACPI BAR */
39
40 printk(BIOS_DEBUG, " done.\n");
41
42 printk(BIOS_DEBUG, "Disabling Watchdog reboot...");
43 RCBA32(GCS) = RCBA32(GCS) | (1 << 5); /* No reset */
44 outw((1 << 11), DEFAULT_PMBASE | 0x60 | 0x08); /* halt timer */
45 printk(BIOS_DEBUG, " done.\n");
46
47 printk(BIOS_DEBUG, "Setting up static northbridge registers...");
48 /* Set up all hardcoded northbridge BARs */
49 pci_write_config32(PCI_DEV(0, 0x00, 0), EPBAR, DEFAULT_EPBAR | 1);
50 pci_write_config32(PCI_DEV(0, 0x00, 0), EPBAR + 4, (0LL+DEFAULT_EPBAR) >> 32);
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080051 pci_write_config32(PCI_DEV(0, 0x00, 0), MCHBAR, (uintptr_t)DEFAULT_MCHBAR | 1);
52 pci_write_config32(PCI_DEV(0, 0x00, 0), MCHBAR + 4, (0LL+(uintptr_t)DEFAULT_MCHBAR) >> 32);
53 pci_write_config32(PCI_DEV(0, 0x00, 0), DMIBAR, (uintptr_t)DEFAULT_DMIBAR | 1);
54 pci_write_config32(PCI_DEV(0, 0x00, 0), DMIBAR + 4, (0LL+(uintptr_t)DEFAULT_DMIBAR) >> 32);
Stefan Reinauer00636b02012-04-04 00:08:51 +020055
56 /* Set C0000-FFFFF to access RAM on both reads and writes */
57 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM0, 0x30);
58 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM1, 0x33);
59 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM2, 0x33);
60 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM3, 0x33);
61 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM4, 0x33);
62 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM5, 0x33);
63 pci_write_config8(PCI_DEV(0, 0x00, 0), PAM6, 0x33);
64
Duncan Laurief4d36232012-06-23 16:37:45 -070065#if CONFIG_ELOG_BOOT_COUNT
66 /* Increment Boot Counter for non-S3 resume */
67 if ((inw(DEFAULT_PMBASE + PM1_STS) & WAK_STS) &&
68 ((inl(DEFAULT_PMBASE + PM1_CNT) >> 10) & 7) != SLP_TYP_S3)
69 boot_count_increment();
70#endif
71
Stefan Reinauer00636b02012-04-04 00:08:51 +020072 printk(BIOS_DEBUG, " done.\n");
Duncan Laurie9c4c6ab2012-06-29 15:38:02 -070073
74#if CONFIG_ELOG_BOOT_COUNT
75 /* Increment Boot Counter except when resuming from S3 */
76 if ((inw(DEFAULT_PMBASE + PM1_STS) & WAK_STS) &&
77 ((inl(DEFAULT_PMBASE + PM1_CNT) >> 10) & 7) == SLP_TYP_S3)
78 return;
79 boot_count_increment();
80#endif
Stefan Reinauer00636b02012-04-04 00:08:51 +020081}
82
83static void sandybridge_setup_graphics(void)
84{
85 u32 reg32;
86 u16 reg16;
87 u8 reg8;
Vladimir Serbinenko5fc04d12014-08-03 01:59:38 +020088 u8 gfxsize;
Stefan Reinauer00636b02012-04-04 00:08:51 +020089
90 reg16 = pci_read_config16(PCI_DEV(0,2,0), PCI_DEVICE_ID);
91 switch (reg16) {
92 case 0x0102: /* GT1 Desktop */
93 case 0x0106: /* GT1 Mobile */
94 case 0x010a: /* GT1 Server */
95 case 0x0112: /* GT2 Desktop */
96 case 0x0116: /* GT2 Mobile */
97 case 0x0122: /* GT2 Desktop >=1.3GHz */
98 case 0x0126: /* GT2 Mobile >=1.3GHz */
Patrick Rudolph03a88d32015-07-05 13:29:41 +020099 case 0x0152: /* IvyBridge */
Stefan Reinauer816e9d12013-01-14 10:25:43 -0800100 case 0x0156: /* IvyBridge */
Damien Zammita10bde92014-10-23 13:29:32 +1100101 case 0x0162: /* IvyBridge */
Stefan Reinauer816e9d12013-01-14 10:25:43 -0800102 case 0x0166: /* IvyBridge */
Stefan Reinauer00636b02012-04-04 00:08:51 +0200103 break;
104 default:
105 printk(BIOS_DEBUG, "Graphics not supported by this CPU/chipset.\n");
106 return;
107 }
108
109 printk(BIOS_DEBUG, "Initializing Graphics...\n");
110
Vladimir Serbinenko5fc04d12014-08-03 01:59:38 +0200111 if (get_option(&gfxsize, "gfx_uma_size") != CB_SUCCESS) {
112 /* Setup IGD memory by setting GGC[7:3] = 1 for 32MB */
113 gfxsize = 0;
114 }
Stefan Reinauer00636b02012-04-04 00:08:51 +0200115 reg16 = pci_read_config16(PCI_DEV(0,0,0), GGC);
116 reg16 &= ~0x00f8;
Vladimir Serbinenko5fc04d12014-08-03 01:59:38 +0200117 reg16 |= (gfxsize + 1) << 3;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200118 /* Program GTT memory by setting GGC[9:8] = 2MB */
119 reg16 &= ~0x0300;
120 reg16 |= 2 << 8;
121 /* Enable VGA decode */
122 reg16 &= ~0x0002;
123 pci_write_config16(PCI_DEV(0,0,0), GGC, reg16);
124
125 /* Enable 256MB aperture */
126 reg8 = pci_read_config8(PCI_DEV(0, 2, 0), MSAC);
127 reg8 &= ~0x06;
128 reg8 |= 0x02;
129 pci_write_config8(PCI_DEV(0, 2, 0), MSAC, reg8);
130
131 /* Erratum workarounds */
Stefan Reinauer00636b02012-04-04 00:08:51 +0200132 reg32 = MCHBAR32(0x5f00);
133 reg32 |= (1 << 9)|(1 << 10);
134 MCHBAR32(0x5f00) = reg32;
135
136 /* Enable SA Clock Gating */
137 reg32 = MCHBAR32(0x5f00);
138 MCHBAR32(0x5f00) = reg32 | 1;
139
140 /* GPU RC6 workaround for sighting 366252 */
141 reg32 = MCHBAR32(0x5d14);
142 reg32 |= (1 << 31);
143 MCHBAR32(0x5d14) = reg32;
144
145 /* VLW */
146 reg32 = MCHBAR32(0x6120);
147 reg32 &= ~(1 << 0);
148 MCHBAR32(0x6120) = reg32;
149
150 reg32 = MCHBAR32(0x5418);
151 reg32 |= (1 << 4) | (1 << 5);
152 MCHBAR32(0x5418) = reg32;
153}
154
155void sandybridge_early_initialization(int chipset_type)
156{
157 u32 capid0_a;
Patrick Rudolph2a510a72015-07-28 07:51:10 +0200158 u32 deven;
Stefan Reinauer00636b02012-04-04 00:08:51 +0200159 u8 reg8;
160
161 /* Device ID Override Enable should be done very early */
162 capid0_a = pci_read_config32(PCI_DEV(0, 0, 0), 0xe4);
163 if (capid0_a & (1 << 10)) {
164 reg8 = pci_read_config8(PCI_DEV(0, 0, 0), 0xf3);
165 reg8 &= ~7; /* Clear 2:0 */
166
167 if (chipset_type == SANDYBRIDGE_MOBILE)
168 reg8 |= 1; /* Set bit 0 */
169
170 pci_write_config8(PCI_DEV(0, 0, 0), 0xf3, reg8);
171 }
172
173 /* Setup all BARs required for early PCIe and raminit */
174 sandybridge_setup_bars();
175
Patrick Rudolph2a510a72015-07-28 07:51:10 +0200176 /* Device Enable, don't touch PEG bits */
177 deven = pci_read_config32(PCI_DEV(0, 0, 0), DEVEN) | DEVEN_IGD;
178 pci_write_config32(PCI_DEV(0, 0, 0), DEVEN, deven);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200179
180 sandybridge_setup_graphics();
181}
Vladimir Serbinenkoc845b432014-09-05 03:37:44 +0200182
183void northbridge_romstage_finalize(int s3resume)
184{
185 MCHBAR16(SSKPD) = 0xCAFE;
186
187#if CONFIG_HAVE_ACPI_RESUME
188 /* If there is no high memory area, we didn't boot before, so
189 * this is not a resume. In that case we just create the cbmem toc.
190 */
191
192 *(u32 *)CBMEM_BOOT_MODE = 0;
193 *(u32 *)CBMEM_RESUME_BACKUP = 0;
194
195 if (s3resume) {
196 void *resume_backup_memory = cbmem_find(CBMEM_ID_RESUME);
197 if (resume_backup_memory) {
198 *(u32 *)CBMEM_BOOT_MODE = 2;
199 *(u32 *)CBMEM_RESUME_BACKUP = (u32)resume_backup_memory;
200 }
201 /* Magic for S3 resume */
202 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafed00d);
203 } else {
204 pci_write_config32(PCI_DEV(0, 0x00, 0), SKPAD, 0xcafebabe);
205 }
206#endif
207}