blob: bc2fc60e40718d5a5574fbb4a5c82a8195abbaad [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2007-2008 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.
Aaron Durbin76c37002012-10-30 09:03:43 -050015 */
16
17#ifndef __NORTHBRIDGE_INTEL_HASWELL_HASWELL_H__
Edward O'Callaghan089a5102015-01-06 02:48:57 +110018#define __NORTHBRIDGE_INTEL_HASWELL_HASWELL_H__
Aaron Durbin76c37002012-10-30 09:03:43 -050019
20/* Chipset types */
21#define HASWELL_MOBILE 0
22#define HASWELL_DESKTOP 1
23#define HASWELL_SERVER 2
24
Aaron Durbin8ce667e2013-02-15 21:45:06 -060025/* Intel Enhanced Debug region */
26#define IED_SIZE CONFIG_IED_REGION_SIZE
Aaron Durbin76c37002012-10-30 09:03:43 -050027
28/* Northbridge BARs */
29#define DEFAULT_PCIEXBAR CONFIG_MMCONF_BASE_ADDRESS /* 4 KB per PCIe device */
30#define DEFAULT_MCHBAR 0xfed10000 /* 16 KB */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080031#ifndef __ACPI__
32#define DEFAULT_DMIBAR ((u8 *)0xfed18000) /* 4 KB */
33#else
Aaron Durbin76c37002012-10-30 09:03:43 -050034#define DEFAULT_DMIBAR 0xfed18000 /* 4 KB */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080035#endif
Aaron Durbin76c37002012-10-30 09:03:43 -050036#define DEFAULT_EPBAR 0xfed19000 /* 4 KB */
37
Matt DeVilliera51e3792018-03-04 01:44:15 -060038#define GFXVT_BASE_ADDRESS 0xfed90000ULL
39#define GFXVT_BASE_SIZE 0x1000
40
41#define VTVC0_BASE_ADDRESS 0xfed91000ULL
42#define VTVC0_BASE_SIZE 0x1000
43
Aaron Durbin76c37002012-10-30 09:03:43 -050044#include <southbridge/intel/lynxpoint/pch.h>
45
46/* Everything below this line is ignored in the DSDT */
47#ifndef __ACPI__
48
49/* Device 0:0.0 PCI configuration space (Host Bridge) */
50
51#define EPBAR 0x40
52#define MCHBAR 0x48
53#define PCIEXBAR 0x60
54#define DMIBAR 0x68
Aaron Durbin76c37002012-10-30 09:03:43 -050055
56#define GGC 0x50 /* GMCH Graphics Control */
Tristan Corrickc5d367b2018-12-17 22:10:07 +130057#define GGC_DISABLE_VGA_IO_DECODE (1 << 1)
58#define GGC_IGD_MEM_IN_32MB_UNITS(x) (((x) & 0x1f) << 3)
59#define GGC_GTT_0MB (0 << 8)
60#define GGC_GTT_1MB (1 << 8)
61#define GGC_GTT_2MB (2 << 8)
Aaron Durbin76c37002012-10-30 09:03:43 -050062
63#define DEVEN 0x54 /* Device Enable */
Duncan Laurie0a7c49e2013-06-20 12:40:55 -070064#define DEVEN_D7EN (1 << 14)
65#define DEVEN_D4EN (1 << 7)
66#define DEVEN_D3EN (1 << 5)
67#define DEVEN_D2EN (1 << 4)
68#define DEVEN_D1F0EN (1 << 3)
69#define DEVEN_D1F1EN (1 << 2)
70#define DEVEN_D1F2EN (1 << 1)
71#define DEVEN_D0EN (1 << 0)
Aaron Durbin76c37002012-10-30 09:03:43 -050072
73#define PAM0 0x80
74#define PAM1 0x81
75#define PAM2 0x82
76#define PAM3 0x83
77#define PAM4 0x84
78#define PAM5 0x85
79#define PAM6 0x86
80
81#define LAC 0x87 /* Legacy Access Control */
82#define SMRAM 0x88 /* System Management RAM Control */
83#define D_OPEN (1 << 6)
84#define D_CLS (1 << 5)
85#define D_LCK (1 << 4)
86#define G_SMRAME (1 << 3)
87#define C_BASE_SEG ((0 << 2) | (1 << 1) | (0 << 0))
88
Aaron Durbinc12ef972012-12-18 14:22:49 -060089#define MESEG_BASE 0x70 /* Management Engine Base. */
90#define MESEG_LIMIT 0x78 /* Management Engine Limit. */
91#define REMAPBASE 0x90 /* Remap base. */
92#define REMAPLIMIT 0x98 /* Remap limit. */
93#define TOM 0xa0 /* Top of DRAM in memory controller space. */
Aaron Durbin76c37002012-10-30 09:03:43 -050094#define TOUUD 0xa8 /* Top of Upper Usable DRAM */
Aaron Durbinc12ef972012-12-18 14:22:49 -060095#define BDSM 0xb0 /* Base Data Stolen Memory */
96#define BGSM 0xb4 /* Base GTT Stolen Memory */
Aaron Durbin76c37002012-10-30 09:03:43 -050097#define TSEG 0xb8 /* TSEG base */
98#define TOLUD 0xbc /* Top of Low Used Memory */
99
100#define SKPAD 0xdc /* Scratchpad Data */
101
Matt DeVilliera51e3792018-03-04 01:44:15 -0600102#define CAPID0_A 0xe4
103#define VTD_DISABLE (1 << 23)
104#define ARCHDIS 0xff0 /* DMA Remap Engine Policy Control */
105#define DMAR_LCKDN (1 << 31)
106#define SPCAPCTRL (1 << 25)
107#define L3HIT2PEND_DIS (1 << 20)
108#define PRSCAPDIS (1 << 2)
109#define GLBIOTLBINV (1 << 1)
110#define GLBCTXTINV (1 << 0)
111
Aaron Durbin76c37002012-10-30 09:03:43 -0500112/* Device 0:1.0 PCI configuration space (PCI Express) */
113
114#define BCTRL1 0x3e /* 16bit */
115
116
117/* Device 0:2.0 PCI configuration space (Graphics Device) */
118
119#define MSAC 0x62 /* Multi Size Aperture Control */
Aaron Durbin76c37002012-10-30 09:03:43 -0500120
121/*
122 * MCHBAR
123 */
124
125#define MCHBAR8(x) *((volatile u8 *)(DEFAULT_MCHBAR + x))
126#define MCHBAR16(x) *((volatile u16 *)(DEFAULT_MCHBAR + x))
127#define MCHBAR32(x) *((volatile u32 *)(DEFAULT_MCHBAR + x))
128#define MCHBAR32_OR(x, or) MCHBAR32(x) = (MCHBAR32(x) | (or))
129
Aaron Durbin76c37002012-10-30 09:03:43 -0500130#define BIOS_RESET_CPL 0x5da8 /* 8bit */
Matt DeVilliera51e3792018-03-04 01:44:15 -0600131#define GFXVTBAR 0x5400
132#define VTVC0BAR 0x5410
Aaron Durbin76c37002012-10-30 09:03:43 -0500133
Duncan Lauriec70353f2013-06-28 14:40:38 -0700134/* Some power MSRs are also represented in MCHBAR */
135#define MCH_PKG_POWER_LIMIT_LO 0x59a0
136#define MCH_PKG_POWER_LIMIT_HI 0x59a4
137#define MCH_DDR_POWER_LIMIT_LO 0x58e0
138#define MCH_DDR_POWER_LIMIT_HI 0x58e4
139
Aaron Durbin76c37002012-10-30 09:03:43 -0500140/*
141 * EPBAR - Egress Port Root Complex Register Block
142 */
143
144#define EPBAR8(x) *((volatile u8 *)(DEFAULT_EPBAR + x))
145#define EPBAR16(x) *((volatile u16 *)(DEFAULT_EPBAR + x))
146#define EPBAR32(x) *((volatile u32 *)(DEFAULT_EPBAR + x))
147
148#define EPPVCCAP1 0x004 /* 32bit */
149#define EPPVCCAP2 0x008 /* 32bit */
150
151#define EPVC0RCAP 0x010 /* 32bit */
152#define EPVC0RCTL 0x014 /* 32bit */
153#define EPVC0RSTS 0x01a /* 16bit */
154
155#define EPVC1RCAP 0x01c /* 32bit */
156#define EPVC1RCTL 0x020 /* 32bit */
157#define EPVC1RSTS 0x026 /* 16bit */
158
159#define EPVC1MTS 0x028 /* 32bit */
160#define EPVC1IST 0x038 /* 64bit */
161
162#define EPESD 0x044 /* 32bit */
163
164#define EPLE1D 0x050 /* 32bit */
165#define EPLE1A 0x058 /* 64bit */
166#define EPLE2D 0x060 /* 32bit */
167#define EPLE2A 0x068 /* 64bit */
168
169#define PORTARB 0x100 /* 256bit */
170
171/*
172 * DMIBAR
173 */
174
175#define DMIBAR8(x) *((volatile u8 *)(DEFAULT_DMIBAR + x))
176#define DMIBAR16(x) *((volatile u16 *)(DEFAULT_DMIBAR + x))
177#define DMIBAR32(x) *((volatile u32 *)(DEFAULT_DMIBAR + x))
178
179#define DMIVCECH 0x000 /* 32bit */
180#define DMIPVCCAP1 0x004 /* 32bit */
181#define DMIPVCCAP2 0x008 /* 32bit */
182
183#define DMIPVCCCTL 0x00c /* 16bit */
184
185#define DMIVC0RCAP 0x010 /* 32bit */
186#define DMIVC0RCTL0 0x014 /* 32bit */
187#define DMIVC0RSTS 0x01a /* 16bit */
188
189#define DMIVC1RCAP 0x01c /* 32bit */
190#define DMIVC1RCTL 0x020 /* 32bit */
191#define DMIVC1RSTS 0x026 /* 16bit */
192
193#define DMILE1D 0x050 /* 32bit */
194#define DMILE1A 0x058 /* 64bit */
195#define DMILE2D 0x060 /* 32bit */
196#define DMILE2A 0x068 /* 64bit */
197
198#define DMILCAP 0x084 /* 32bit */
199#define DMILCTL 0x088 /* 16bit */
200#define DMILSTS 0x08a /* 16bit */
201
202#define DMICTL1 0x0f0 /* 32bit */
203#define DMICTL2 0x0fc /* 32bit */
204
205#define DMICC 0x208 /* 32bit */
206
207#define DMIDRCCFG 0xeb4 /* 32bit */
208
209#ifndef __ASSEMBLER__
210static inline void barrier(void) { asm("" ::: "memory"); }
211
212struct ied_header {
213 char signature[10];
214 u32 size;
215 u8 reserved[34];
Stefan Reinauer6a001132017-07-13 02:20:27 +0200216} __packed;
Aaron Durbin76c37002012-10-30 09:03:43 -0500217
Aaron Durbin76c37002012-10-30 09:03:43 -0500218#ifdef __SMM__
219void intel_northbridge_haswell_finalize_smm(void);
220#else /* !__SMM__ */
Aaron Durbin76c37002012-10-30 09:03:43 -0500221void haswell_early_initialization(int chipset_type);
222void haswell_late_initialization(void);
Ronald G. Minnich4c8465c2013-09-30 15:57:21 -0700223void set_translation_table(int start, int end, u64 base, int inc);
Aaron Durbin76c37002012-10-30 09:03:43 -0500224
225/* debugging functions */
226void print_pci_devices(void);
227void dump_pci_device(unsigned dev);
228void dump_pci_devices(void);
229void dump_spd_registers(void);
230void dump_mem(unsigned start, unsigned end);
231void report_platform_info(void);
232#endif /* !__SMM__ */
233
Matt DeVillier85d98d92018-03-04 01:41:23 -0600234#if ENV_RAMSTAGE && !defined(__SIMPLE_DEVICE__)
235#include <device/device.h>
236
237struct acpi_rsdp;
Elyes HAOUAS77f7a6e2018-05-09 17:47:59 +0200238unsigned long northbridge_write_acpi_tables(struct device *device,
Matt DeVillier85d98d92018-03-04 01:41:23 -0600239 unsigned long start, struct acpi_rsdp *rsdp);
240#endif
241
Aaron Durbin76c37002012-10-30 09:03:43 -0500242#endif
243#endif
Edward O'Callaghan089a5102015-01-06 02:48:57 +1100244#endif /* __NORTHBRIDGE_INTEL_HASWELL_HASWELL_H__ */