blob: 9cb3df356561367604f3c85257a935c5df6b53be [file] [log] [blame]
Damien Zammit43a1f782015-08-19 15:16:59 +10001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 secunet Security Networks AG
5 * Copyright (C) 2015 Damien Zammit <damien@zamaudio.com>
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
17#include <stdint.h>
18#include <arch/io.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +020019#include <device/pci_ops.h>
Martin Rothcbe38922016-01-05 19:40:41 -070020#include "iomap.h"
Arthur Heymans349e0852017-04-09 20:48:37 +020021#if IS_ENABLED(CONFIG_SOUTHBRIDGE_INTEL_I82801GX)
Martin Rothcbe38922016-01-05 19:40:41 -070022#include <southbridge/intel/i82801gx/i82801gx.h> /* DEFAULT_PMBASE */
Arthur Heymans349e0852017-04-09 20:48:37 +020023#else
24#include <southbridge/intel/i82801jx/i82801jx.h> /* DEFAULT_PMBASE */
25#endif
Arthur Heymanseff0c6a2016-06-18 21:52:30 +020026#include <pc80/mc146818rtc.h>
Damien Zammit43a1f782015-08-19 15:16:59 +100027#include "x4x.h"
Arthur Heymansef7e98a2016-12-30 21:07:18 +010028#include <console/console.h>
29#include <halt.h>
30#include <romstage_handoff.h>
Damien Zammit43a1f782015-08-19 15:16:59 +100031
32void x4x_early_init(void)
33{
Antonello Dettori60a6e152016-09-03 10:45:33 +020034 const pci_devfn_t d0f0 = PCI_DEV(0, 0, 0);
Damien Zammit43a1f782015-08-19 15:16:59 +100035
36 /* Setup MCHBAR. */
37 pci_write_config32(d0f0, D0F0_MCHBAR_LO, (uintptr_t)DEFAULT_MCHBAR | 1);
38
39 /* Setup DMIBAR. */
40 pci_write_config32(d0f0, D0F0_DMIBAR_LO, (uintptr_t)DEFAULT_DMIBAR | 1);
41
42 /* Setup EPBAR. */
43 pci_write_config32(d0f0, D0F0_EPBAR_LO, DEFAULT_EPBAR | 1);
44
45 /* Setup PMBASE */
Damien Zammitfe9876a2016-01-22 19:11:05 +110046 pci_write_config32(PCI_DEV(0, 0x1f, 0), PMBASE, DEFAULT_PMBASE | 1);
Arthur Heymans70a1dda2017-03-09 01:58:24 +010047 pci_write_config8(PCI_DEV(0, 0x1f, 0), ACPI_CNTL, 0x80);
Damien Zammit43a1f782015-08-19 15:16:59 +100048
49 /* Setup HECIBAR */
Arthur Heymans70a1dda2017-03-09 01:58:24 +010050 pci_write_config32(PCI_DEV(0, 3, 0), 0x10, DEFAULT_HECIBAR);
Damien Zammit43a1f782015-08-19 15:16:59 +100051
52 /* Set C0000-FFFFF to access RAM on both reads and writes */
53 pci_write_config8(d0f0, D0F0_PAM(0), 0x30);
54 pci_write_config8(d0f0, D0F0_PAM(1), 0x33);
55 pci_write_config8(d0f0, D0F0_PAM(2), 0x33);
56 pci_write_config8(d0f0, D0F0_PAM(3), 0x33);
57 pci_write_config8(d0f0, D0F0_PAM(4), 0x33);
58 pci_write_config8(d0f0, D0F0_PAM(5), 0x33);
59 pci_write_config8(d0f0, D0F0_PAM(6), 0x33);
60
Arthur Heymansd6f3dd82017-12-27 00:12:35 +010061 printk(BIOS_DEBUG, "Disabling Watchdog reboot...");
62 RCBA32(GCS) = RCBA32(GCS) | (1 << 5); /* No reset */
63 outw(1 << 11, DEFAULT_PMBASE + 0x60 + 0x08); /* halt timer */
64 outw(1 << 3, DEFAULT_PMBASE + 0x60 + 0x04); /* clear timeout */
65 outw(1 << 1, DEFAULT_PMBASE + 0x60 + 0x06); /* clear 2nd timeout */
66 printk(BIOS_DEBUG, " done.\n");
67
Arthur Heymans5e3cb722017-03-05 10:57:02 +010068 if (!(pci_read_config32(d0f0, D0F0_CAPID0 + 4) & (1 << (46 - 32)))) {
69 /* Enable internal GFX */
70 pci_write_config32(d0f0, D0F0_DEVEN, BOARD_DEVEN);
Arthur Heymanseff0c6a2016-06-18 21:52:30 +020071
Nico Hubercfd433b2017-05-12 17:10:58 +020072 /* Set preallocated IGD size from cmos */
73 u8 gfxsize = 6; /* 6 for 64MiB, default if not set in cmos */
74 get_option(&gfxsize, "gfx_uma_size");
75 if (gfxsize > 12)
Arthur Heymans5e3cb722017-03-05 10:57:02 +010076 gfxsize = 6;
Arthur Heymans16a70a42017-09-22 12:22:24 +020077 /* Need at least 4M for cbmem_top alignment */
78 else if (gfxsize < 1)
79 gfxsize = 1;
80 /* Set GTT size to 2+2M */
81 pci_write_config16(d0f0, D0F0_GGC, 0x0b00 | (gfxsize + 1) << 4);
Arthur Heymans5e3cb722017-03-05 10:57:02 +010082 } else { /* Does not feature internal graphics */
83 pci_write_config32(d0f0, D0F0_DEVEN, D0EN | D1EN | PEG1EN);
84 pci_write_config16(d0f0, D0F0_GGC, (1 << 1));
Arthur Heymanseff0c6a2016-06-18 21:52:30 +020085 }
Damien Zammit43a1f782015-08-19 15:16:59 +100086}
Arthur Heymansef7e98a2016-12-30 21:07:18 +010087
88static void init_egress(void)
89{
90 u32 reg32;
91
92 /* VC0: TC0 only */
93 EPBAR8(0x14) = 1;
94 EPBAR8(0x4) = 1;
95
96 switch (MCHBAR32(0xc00) & 0x7) {
97 case 0x0:
98 /* FSB 1066 */
99 EPBAR32(0x2c) = 0x0001a6db;
100 break;
101 case 0x2:
102 /* FSB 800 */
103 EPBAR32(0x2c) = 0x00014514;
104 break;
105 default:
106 case 0x4:
107 /* FSB 1333 */
108 EPBAR32(0x2c) = 0x00022861;
109 break;
110 }
111 EPBAR32(0x28) = 0x0a0a0a0a;
112 EPBAR8(0xc) = (EPBAR8(0xc) & ~0xe) | 2;
113 EPBAR32(0x1c) = (EPBAR32(0x1c) & ~0x7f0000) | 0x0a0000;
114 MCHBAR8(0x3c) = MCHBAR8(0x3c) | 0x7;
115
116 /* VC1: ID1, TC7 */
117 reg32 = (EPBAR32(0x20) & ~(7 << 24)) | (1 << 24);
118 reg32 = (reg32 & ~0xfe) | (1 << 7);
119 EPBAR32(0x20) = reg32;
120
121 /* Init VC1 port arbitration table */
122 EPBAR32(0x100) = 0x001000001;
123 EPBAR32(0x104) = 0x000040000;
124 EPBAR32(0x108) = 0x000001000;
125 EPBAR32(0x10c) = 0x000000040;
126 EPBAR32(0x110) = 0x001000001;
127 EPBAR32(0x114) = 0x000040000;
128 EPBAR32(0x118) = 0x000001000;
129 EPBAR32(0x11c) = 0x000000040;
130
131 /* Load table */
132 reg32 = EPBAR32(0x20) | (1 << 16);
133 EPBAR32(0x20) = reg32;
134 asm("nop");
135 EPBAR32(0x20) = reg32;
136
137 /* Wait for table load */
Arthur Heymans70a1dda2017-03-09 01:58:24 +0100138 while ((EPBAR8(0x26) & (1 << 0)) != 0)
139 ;
Arthur Heymansef7e98a2016-12-30 21:07:18 +0100140
141 /* VC1: enable */
142 EPBAR32(0x20) |= 1 << 31;
143
144 /* Wait for VC1 */
Arthur Heymans70a1dda2017-03-09 01:58:24 +0100145 while ((EPBAR8(0x26) & (1 << 1)) != 0)
146 ;
Arthur Heymansef7e98a2016-12-30 21:07:18 +0100147
148 printk(BIOS_DEBUG, "Done Egress Port\n");
149}
150
151static void init_dmi(void)
152{
153 u32 reg32;
154 u16 reg16;
155
156 /* Assume IGD present */
157
158 /* Clear error status */
159 DMIBAR32(0x1c4) = 0xffffffff;
160 DMIBAR32(0x1d0) = 0xffffffff;
161
162 /* VC0: TC0 only */
163 DMIBAR8(DMIVC0RCTL) = 1;
164 DMIBAR8(0x4) = 1;
165
166 /* VC1: ID1, TC7 */
167 reg32 = (DMIBAR32(DMIVC1RCTL) & ~(7 << 24)) | (1 << 24);
168 reg32 = (reg32 & ~0xff) | 1 << 7;
169
170 /* VC1: enable */
171 reg32 |= 1 << 31;
172 reg32 = (reg32 & ~(0x7 << 17)) | (0x4 << 17);
173
174 DMIBAR32(DMIVC1RCTL) = reg32;
175
176 /* Set up VCs in southbridge RCBA */
177 RCBA8(0x3022) &= ~1;
178
179 reg32 = (0x5 << 28) | (1 << 6); /* PCIe x4 */
180 RCBA32(0x2020) = (RCBA32(0x2020) & ~((0xf << 28) | (0x7 << 6))) | reg32;
181
182 /* Assign VC1 id 1 */
183 RCBA32(0x20) = (RCBA32(0x20) & ~(0x7 << 24)) | (1 << 24);
184
185 /* Map TC7 to VC1 */
186 RCBA8(0x20) &= 1;
187 RCBA8(0x20) |= 1 << 7;
188
189 /* Map TC0 to VC0 */
190 RCBA8(0x14) &= 1;
191
192 /* Init DMI VC1 port arbitration table */
193 RCBA32(0x20) &= 0xfff1ffff;
194 RCBA32(0x20) |= 1 << 19;
195
196 RCBA32(0x30) = 0x0000000f;
197 RCBA32(0x34) = 0x000f0000;
198 RCBA32(0x38) = 0;
199 RCBA32(0x3c) = 0x000000f0;
200 RCBA32(0x40) = 0x0f000000;
201 RCBA32(0x44) = 0;
202 RCBA32(0x48) = 0x0000f000;
203 RCBA32(0x4c) = 0;
204 RCBA32(0x50) = 0x0000000f;
205 RCBA32(0x54) = 0x000f0000;
206 RCBA32(0x58) = 0;
207 RCBA32(0x5c) = 0x000000f0;
208 RCBA32(0x60) = 0x0f000000;
209 RCBA32(0x64) = 0;
210 RCBA32(0x68) = 0x0000f000;
211 RCBA32(0x6c) = 0;
212
213 RCBA32(0x20) |= 1 << 16;
214
215 /* Enable VC1 */
216 RCBA32(0x20) |= 1 << 31;
217
218 /* Wait for VC1 */
Arthur Heymans70a1dda2017-03-09 01:58:24 +0100219 while ((RCBA8(0x26) & (1 << 1)) != 0)
220 ;
Arthur Heymansef7e98a2016-12-30 21:07:18 +0100221
222 /* Wait for table load */
Arthur Heymans70a1dda2017-03-09 01:58:24 +0100223 while ((RCBA8(0x26) & (1 << 0)) != 0)
224 ;
Arthur Heymansef7e98a2016-12-30 21:07:18 +0100225
226 /* ASPM on DMI link */
227 RCBA16(0x1a8) &= ~0x3;
228 reg16 = RCBA16(0x1a8);
229 RCBA32(0x2010) = (RCBA32(0x2010) & ~(0x3 << 10)) | (1 << 10);
230 reg32 = RCBA32(0x2010);
231
232 /* Set up VC1 max time */
233 RCBA32(0x1c) = (RCBA32(0x1c) & ~0x7f0000) | 0x120000;
234
Arthur Heymans70a1dda2017-03-09 01:58:24 +0100235 while ((DMIBAR32(0x26) & (1 << 1)) != 0)
236 ;
Arthur Heymansef7e98a2016-12-30 21:07:18 +0100237 printk(BIOS_DEBUG, "Done DMI setup\n");
238
239 /* ASPM on DMI */
240 DMIBAR32(0x200) &= ~(0x3 << 26);
241 DMIBAR16(0x210) = (DMIBAR16(0x210) & ~(0xff7)) | 0x101;
242 DMIBAR32(0x88) &= ~0x3;
243 DMIBAR32(0x88) |= 0x3;
244 reg16 = DMIBAR16(0x88);
245}
246
247static void x4x_prepare_resume(int s3resume)
248{
Arthur Heymansef7e98a2016-12-30 21:07:18 +0100249 romstage_handoff_init(s3resume);
250}
251
252void x4x_late_init(int s3resume)
253{
254 init_egress();
255 init_dmi();
256 x4x_prepare_resume(s3resume);
257}