blob: a58f2ba6e9d535c979d092925b128e1823c50519 [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"
Julius Wernercd49cce2019-03-05 16:53:33 -080021#if 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>
Arthur Heymansef7e98a2016-12-30 21:07:18 +010029#include <romstage_handoff.h>
Damien Zammit43a1f782015-08-19 15:16:59 +100030
31void x4x_early_init(void)
32{
Antonello Dettori60a6e152016-09-03 10:45:33 +020033 const pci_devfn_t d0f0 = PCI_DEV(0, 0, 0);
Damien Zammit43a1f782015-08-19 15:16:59 +100034
35 /* Setup MCHBAR. */
36 pci_write_config32(d0f0, D0F0_MCHBAR_LO, (uintptr_t)DEFAULT_MCHBAR | 1);
37
38 /* Setup DMIBAR. */
39 pci_write_config32(d0f0, D0F0_DMIBAR_LO, (uintptr_t)DEFAULT_DMIBAR | 1);
40
41 /* Setup EPBAR. */
42 pci_write_config32(d0f0, D0F0_EPBAR_LO, DEFAULT_EPBAR | 1);
43
44 /* Setup PMBASE */
Damien Zammitfe9876a2016-01-22 19:11:05 +110045 pci_write_config32(PCI_DEV(0, 0x1f, 0), PMBASE, DEFAULT_PMBASE | 1);
Arthur Heymans70a1dda2017-03-09 01:58:24 +010046 pci_write_config8(PCI_DEV(0, 0x1f, 0), ACPI_CNTL, 0x80);
Damien Zammit43a1f782015-08-19 15:16:59 +100047
48 /* Setup HECIBAR */
Arthur Heymans70a1dda2017-03-09 01:58:24 +010049 pci_write_config32(PCI_DEV(0, 3, 0), 0x10, DEFAULT_HECIBAR);
Damien Zammit43a1f782015-08-19 15:16:59 +100050
51 /* Set C0000-FFFFF to access RAM on both reads and writes */
52 pci_write_config8(d0f0, D0F0_PAM(0), 0x30);
53 pci_write_config8(d0f0, D0F0_PAM(1), 0x33);
54 pci_write_config8(d0f0, D0F0_PAM(2), 0x33);
55 pci_write_config8(d0f0, D0F0_PAM(3), 0x33);
56 pci_write_config8(d0f0, D0F0_PAM(4), 0x33);
57 pci_write_config8(d0f0, D0F0_PAM(5), 0x33);
58 pci_write_config8(d0f0, D0F0_PAM(6), 0x33);
59
Arthur Heymansd6f3dd82017-12-27 00:12:35 +010060 printk(BIOS_DEBUG, "Disabling Watchdog reboot...");
61 RCBA32(GCS) = RCBA32(GCS) | (1 << 5); /* No reset */
62 outw(1 << 11, DEFAULT_PMBASE + 0x60 + 0x08); /* halt timer */
63 outw(1 << 3, DEFAULT_PMBASE + 0x60 + 0x04); /* clear timeout */
64 outw(1 << 1, DEFAULT_PMBASE + 0x60 + 0x06); /* clear 2nd timeout */
65 printk(BIOS_DEBUG, " done.\n");
66
Arthur Heymans5e3cb722017-03-05 10:57:02 +010067 if (!(pci_read_config32(d0f0, D0F0_CAPID0 + 4) & (1 << (46 - 32)))) {
68 /* Enable internal GFX */
69 pci_write_config32(d0f0, D0F0_DEVEN, BOARD_DEVEN);
Arthur Heymanseff0c6a2016-06-18 21:52:30 +020070
Nico Hubercfd433b2017-05-12 17:10:58 +020071 /* Set preallocated IGD size from cmos */
72 u8 gfxsize = 6; /* 6 for 64MiB, default if not set in cmos */
73 get_option(&gfxsize, "gfx_uma_size");
74 if (gfxsize > 12)
Arthur Heymans5e3cb722017-03-05 10:57:02 +010075 gfxsize = 6;
Arthur Heymans16a70a42017-09-22 12:22:24 +020076 /* Need at least 4M for cbmem_top alignment */
77 else if (gfxsize < 1)
78 gfxsize = 1;
79 /* Set GTT size to 2+2M */
80 pci_write_config16(d0f0, D0F0_GGC, 0x0b00 | (gfxsize + 1) << 4);
Arthur Heymans5e3cb722017-03-05 10:57:02 +010081 } else { /* Does not feature internal graphics */
82 pci_write_config32(d0f0, D0F0_DEVEN, D0EN | D1EN | PEG1EN);
83 pci_write_config16(d0f0, D0F0_GGC, (1 << 1));
Arthur Heymanseff0c6a2016-06-18 21:52:30 +020084 }
Damien Zammit43a1f782015-08-19 15:16:59 +100085}
Arthur Heymansef7e98a2016-12-30 21:07:18 +010086
87static void init_egress(void)
88{
89 u32 reg32;
90
91 /* VC0: TC0 only */
92 EPBAR8(0x14) = 1;
93 EPBAR8(0x4) = 1;
94
95 switch (MCHBAR32(0xc00) & 0x7) {
96 case 0x0:
97 /* FSB 1066 */
98 EPBAR32(0x2c) = 0x0001a6db;
99 break;
100 case 0x2:
101 /* FSB 800 */
102 EPBAR32(0x2c) = 0x00014514;
103 break;
104 default:
105 case 0x4:
106 /* FSB 1333 */
107 EPBAR32(0x2c) = 0x00022861;
108 break;
109 }
110 EPBAR32(0x28) = 0x0a0a0a0a;
111 EPBAR8(0xc) = (EPBAR8(0xc) & ~0xe) | 2;
112 EPBAR32(0x1c) = (EPBAR32(0x1c) & ~0x7f0000) | 0x0a0000;
113 MCHBAR8(0x3c) = MCHBAR8(0x3c) | 0x7;
114
115 /* VC1: ID1, TC7 */
116 reg32 = (EPBAR32(0x20) & ~(7 << 24)) | (1 << 24);
117 reg32 = (reg32 & ~0xfe) | (1 << 7);
118 EPBAR32(0x20) = reg32;
119
120 /* Init VC1 port arbitration table */
121 EPBAR32(0x100) = 0x001000001;
122 EPBAR32(0x104) = 0x000040000;
123 EPBAR32(0x108) = 0x000001000;
124 EPBAR32(0x10c) = 0x000000040;
125 EPBAR32(0x110) = 0x001000001;
126 EPBAR32(0x114) = 0x000040000;
127 EPBAR32(0x118) = 0x000001000;
128 EPBAR32(0x11c) = 0x000000040;
129
130 /* Load table */
131 reg32 = EPBAR32(0x20) | (1 << 16);
132 EPBAR32(0x20) = reg32;
133 asm("nop");
134 EPBAR32(0x20) = reg32;
135
136 /* Wait for table load */
Arthur Heymans70a1dda2017-03-09 01:58:24 +0100137 while ((EPBAR8(0x26) & (1 << 0)) != 0)
138 ;
Arthur Heymansef7e98a2016-12-30 21:07:18 +0100139
140 /* VC1: enable */
141 EPBAR32(0x20) |= 1 << 31;
142
143 /* Wait for VC1 */
Arthur Heymans70a1dda2017-03-09 01:58:24 +0100144 while ((EPBAR8(0x26) & (1 << 1)) != 0)
145 ;
Arthur Heymansef7e98a2016-12-30 21:07:18 +0100146
147 printk(BIOS_DEBUG, "Done Egress Port\n");
148}
149
150static void init_dmi(void)
151{
152 u32 reg32;
Arthur Heymansef7e98a2016-12-30 21:07:18 +0100153
154 /* Assume IGD present */
155
156 /* Clear error status */
157 DMIBAR32(0x1c4) = 0xffffffff;
158 DMIBAR32(0x1d0) = 0xffffffff;
159
160 /* VC0: TC0 only */
161 DMIBAR8(DMIVC0RCTL) = 1;
162 DMIBAR8(0x4) = 1;
163
164 /* VC1: ID1, TC7 */
165 reg32 = (DMIBAR32(DMIVC1RCTL) & ~(7 << 24)) | (1 << 24);
166 reg32 = (reg32 & ~0xff) | 1 << 7;
167
168 /* VC1: enable */
169 reg32 |= 1 << 31;
170 reg32 = (reg32 & ~(0x7 << 17)) | (0x4 << 17);
171
172 DMIBAR32(DMIVC1RCTL) = reg32;
173
174 /* Set up VCs in southbridge RCBA */
175 RCBA8(0x3022) &= ~1;
176
177 reg32 = (0x5 << 28) | (1 << 6); /* PCIe x4 */
178 RCBA32(0x2020) = (RCBA32(0x2020) & ~((0xf << 28) | (0x7 << 6))) | reg32;
179
180 /* Assign VC1 id 1 */
181 RCBA32(0x20) = (RCBA32(0x20) & ~(0x7 << 24)) | (1 << 24);
182
183 /* Map TC7 to VC1 */
184 RCBA8(0x20) &= 1;
185 RCBA8(0x20) |= 1 << 7;
186
187 /* Map TC0 to VC0 */
188 RCBA8(0x14) &= 1;
189
190 /* Init DMI VC1 port arbitration table */
191 RCBA32(0x20) &= 0xfff1ffff;
192 RCBA32(0x20) |= 1 << 19;
193
194 RCBA32(0x30) = 0x0000000f;
195 RCBA32(0x34) = 0x000f0000;
196 RCBA32(0x38) = 0;
197 RCBA32(0x3c) = 0x000000f0;
198 RCBA32(0x40) = 0x0f000000;
199 RCBA32(0x44) = 0;
200 RCBA32(0x48) = 0x0000f000;
201 RCBA32(0x4c) = 0;
202 RCBA32(0x50) = 0x0000000f;
203 RCBA32(0x54) = 0x000f0000;
204 RCBA32(0x58) = 0;
205 RCBA32(0x5c) = 0x000000f0;
206 RCBA32(0x60) = 0x0f000000;
207 RCBA32(0x64) = 0;
208 RCBA32(0x68) = 0x0000f000;
209 RCBA32(0x6c) = 0;
210
211 RCBA32(0x20) |= 1 << 16;
212
213 /* Enable VC1 */
214 RCBA32(0x20) |= 1 << 31;
215
216 /* Wait for VC1 */
Arthur Heymans70a1dda2017-03-09 01:58:24 +0100217 while ((RCBA8(0x26) & (1 << 1)) != 0)
218 ;
Arthur Heymansef7e98a2016-12-30 21:07:18 +0100219
220 /* Wait for table load */
Arthur Heymans70a1dda2017-03-09 01:58:24 +0100221 while ((RCBA8(0x26) & (1 << 0)) != 0)
222 ;
Arthur Heymansef7e98a2016-12-30 21:07:18 +0100223
224 /* ASPM on DMI link */
225 RCBA16(0x1a8) &= ~0x3;
Elyes HAOUAS0c89c1c2019-05-20 18:39:27 +0200226 /* FIXME: Do we need to read RCBA16(0x1a8)? */
227 RCBA16(0x1a8);
Arthur Heymansef7e98a2016-12-30 21:07:18 +0100228 RCBA32(0x2010) = (RCBA32(0x2010) & ~(0x3 << 10)) | (1 << 10);
Elyes HAOUAS0c89c1c2019-05-20 18:39:27 +0200229 /* FIXME: Do we need to read RCBA32(0x2010)? */
230 RCBA32(0x2010);
Arthur Heymansef7e98a2016-12-30 21:07:18 +0100231
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;
Elyes HAOUAS0c89c1c2019-05-20 18:39:27 +0200244 /* FIXME: Do we need to read RCBA16(0x88)? */
245 DMIBAR16(0x88);
Arthur Heymansef7e98a2016-12-30 21:07:18 +0100246}
247
248static void x4x_prepare_resume(int s3resume)
249{
Arthur Heymansef7e98a2016-12-30 21:07:18 +0100250 romstage_handoff_init(s3resume);
251}
252
253void x4x_late_init(int s3resume)
254{
255 init_egress();
256 init_dmi();
257 x4x_prepare_resume(s3resume);
258}