blob: 7d451a91dae5c5b9a0dab0917210a018b94be320 [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.
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
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
19 */
20
21#ifndef __NORTHBRIDGE_INTEL_HASWELL_HASWELL_H__
22#define __NORTHBRIDGE_INTEL_HASWELL_HASWELL_H__ 1
23
24/* Chipset types */
25#define HASWELL_MOBILE 0
26#define HASWELL_DESKTOP 1
27#define HASWELL_SERVER 2
28
29/* Device ID for SandyBridge and IvyBridge */
30#define BASE_REV_SNB 0x00
31#define BASE_REV_IVB 0x50
32#define BASE_REV_MASK 0x50
33
34/* SandyBridge CPU stepping */
35#define SNB_STEP_D0 (BASE_REV_SNB + 5) /* Also J0 */
36#define SNB_STEP_D1 (BASE_REV_SNB + 6)
37#define SNB_STEP_D2 (BASE_REV_SNB + 7) /* Also J1/Q0 */
38
39/* IvyBridge CPU stepping */
40#define IVB_STEP_A0 (BASE_REV_IVB + 0)
41#define IVB_STEP_B0 (BASE_REV_IVB + 2)
42#define IVB_STEP_C0 (BASE_REV_IVB + 4)
43#define IVB_STEP_K0 (BASE_REV_IVB + 5)
44#define IVB_STEP_D0 (BASE_REV_IVB + 6)
45
Aaron Durbin8ce667e2013-02-15 21:45:06 -060046/* Intel Enhanced Debug region */
47#define IED_SIZE CONFIG_IED_REGION_SIZE
Aaron Durbin76c37002012-10-30 09:03:43 -050048
49/* Northbridge BARs */
50#define DEFAULT_PCIEXBAR CONFIG_MMCONF_BASE_ADDRESS /* 4 KB per PCIe device */
51#define DEFAULT_MCHBAR 0xfed10000 /* 16 KB */
52#define DEFAULT_DMIBAR 0xfed18000 /* 4 KB */
53#define DEFAULT_EPBAR 0xfed19000 /* 4 KB */
54
55#include <southbridge/intel/lynxpoint/pch.h>
56
57/* Everything below this line is ignored in the DSDT */
58#ifndef __ACPI__
59
60/* Device 0:0.0 PCI configuration space (Host Bridge) */
61
62#define EPBAR 0x40
63#define MCHBAR 0x48
64#define PCIEXBAR 0x60
65#define DMIBAR 0x68
Aaron Durbin76c37002012-10-30 09:03:43 -050066
67#define GGC 0x50 /* GMCH Graphics Control */
68
69#define DEVEN 0x54 /* Device Enable */
70#define DEVEN_PEG60 (1 << 13)
71#define DEVEN_IGD (1 << 4)
72#define DEVEN_PEG10 (1 << 3)
73#define DEVEN_PEG11 (1 << 2)
74#define DEVEN_PEG12 (1 << 1)
75#define DEVEN_HOST (1 << 0)
76
77#define PAM0 0x80
78#define PAM1 0x81
79#define PAM2 0x82
80#define PAM3 0x83
81#define PAM4 0x84
82#define PAM5 0x85
83#define PAM6 0x86
84
85#define LAC 0x87 /* Legacy Access Control */
86#define SMRAM 0x88 /* System Management RAM Control */
87#define D_OPEN (1 << 6)
88#define D_CLS (1 << 5)
89#define D_LCK (1 << 4)
90#define G_SMRAME (1 << 3)
91#define C_BASE_SEG ((0 << 2) | (1 << 1) | (0 << 0))
92
Aaron Durbinc12ef972012-12-18 14:22:49 -060093#define MESEG_BASE 0x70 /* Management Engine Base. */
94#define MESEG_LIMIT 0x78 /* Management Engine Limit. */
95#define REMAPBASE 0x90 /* Remap base. */
96#define REMAPLIMIT 0x98 /* Remap limit. */
97#define TOM 0xa0 /* Top of DRAM in memory controller space. */
Aaron Durbin76c37002012-10-30 09:03:43 -050098#define TOUUD 0xa8 /* Top of Upper Usable DRAM */
Aaron Durbinc12ef972012-12-18 14:22:49 -060099#define BDSM 0xb0 /* Base Data Stolen Memory */
100#define BGSM 0xb4 /* Base GTT Stolen Memory */
Aaron Durbin76c37002012-10-30 09:03:43 -0500101#define TSEG 0xb8 /* TSEG base */
102#define TOLUD 0xbc /* Top of Low Used Memory */
103
104#define SKPAD 0xdc /* Scratchpad Data */
105
106/* Device 0:1.0 PCI configuration space (PCI Express) */
107
108#define BCTRL1 0x3e /* 16bit */
109
110
111/* Device 0:2.0 PCI configuration space (Graphics Device) */
112
113#define MSAC 0x62 /* Multi Size Aperture Control */
114#define SWSCI 0xe8 /* SWSCI enable */
115#define ASLS 0xfc /* OpRegion Base */
116
117/*
118 * MCHBAR
119 */
120
121#define MCHBAR8(x) *((volatile u8 *)(DEFAULT_MCHBAR + x))
122#define MCHBAR16(x) *((volatile u16 *)(DEFAULT_MCHBAR + x))
123#define MCHBAR32(x) *((volatile u32 *)(DEFAULT_MCHBAR + x))
124#define MCHBAR32_OR(x, or) MCHBAR32(x) = (MCHBAR32(x) | (or))
125
Aaron Durbin76c37002012-10-30 09:03:43 -0500126#define BIOS_RESET_CPL 0x5da8 /* 8bit */
127
Duncan Lauriec70353f2013-06-28 14:40:38 -0700128/* Some power MSRs are also represented in MCHBAR */
129#define MCH_PKG_POWER_LIMIT_LO 0x59a0
130#define MCH_PKG_POWER_LIMIT_HI 0x59a4
131#define MCH_DDR_POWER_LIMIT_LO 0x58e0
132#define MCH_DDR_POWER_LIMIT_HI 0x58e4
133
Aaron Durbin76c37002012-10-30 09:03:43 -0500134/*
135 * EPBAR - Egress Port Root Complex Register Block
136 */
137
138#define EPBAR8(x) *((volatile u8 *)(DEFAULT_EPBAR + x))
139#define EPBAR16(x) *((volatile u16 *)(DEFAULT_EPBAR + x))
140#define EPBAR32(x) *((volatile u32 *)(DEFAULT_EPBAR + x))
141
142#define EPPVCCAP1 0x004 /* 32bit */
143#define EPPVCCAP2 0x008 /* 32bit */
144
145#define EPVC0RCAP 0x010 /* 32bit */
146#define EPVC0RCTL 0x014 /* 32bit */
147#define EPVC0RSTS 0x01a /* 16bit */
148
149#define EPVC1RCAP 0x01c /* 32bit */
150#define EPVC1RCTL 0x020 /* 32bit */
151#define EPVC1RSTS 0x026 /* 16bit */
152
153#define EPVC1MTS 0x028 /* 32bit */
154#define EPVC1IST 0x038 /* 64bit */
155
156#define EPESD 0x044 /* 32bit */
157
158#define EPLE1D 0x050 /* 32bit */
159#define EPLE1A 0x058 /* 64bit */
160#define EPLE2D 0x060 /* 32bit */
161#define EPLE2A 0x068 /* 64bit */
162
163#define PORTARB 0x100 /* 256bit */
164
165/*
166 * DMIBAR
167 */
168
169#define DMIBAR8(x) *((volatile u8 *)(DEFAULT_DMIBAR + x))
170#define DMIBAR16(x) *((volatile u16 *)(DEFAULT_DMIBAR + x))
171#define DMIBAR32(x) *((volatile u32 *)(DEFAULT_DMIBAR + x))
172
173#define DMIVCECH 0x000 /* 32bit */
174#define DMIPVCCAP1 0x004 /* 32bit */
175#define DMIPVCCAP2 0x008 /* 32bit */
176
177#define DMIPVCCCTL 0x00c /* 16bit */
178
179#define DMIVC0RCAP 0x010 /* 32bit */
180#define DMIVC0RCTL0 0x014 /* 32bit */
181#define DMIVC0RSTS 0x01a /* 16bit */
182
183#define DMIVC1RCAP 0x01c /* 32bit */
184#define DMIVC1RCTL 0x020 /* 32bit */
185#define DMIVC1RSTS 0x026 /* 16bit */
186
187#define DMILE1D 0x050 /* 32bit */
188#define DMILE1A 0x058 /* 64bit */
189#define DMILE2D 0x060 /* 32bit */
190#define DMILE2A 0x068 /* 64bit */
191
192#define DMILCAP 0x084 /* 32bit */
193#define DMILCTL 0x088 /* 16bit */
194#define DMILSTS 0x08a /* 16bit */
195
196#define DMICTL1 0x0f0 /* 32bit */
197#define DMICTL2 0x0fc /* 32bit */
198
199#define DMICC 0x208 /* 32bit */
200
201#define DMIDRCCFG 0xeb4 /* 32bit */
202
203#ifndef __ASSEMBLER__
204static inline void barrier(void) { asm("" ::: "memory"); }
205
206struct ied_header {
207 char signature[10];
208 u32 size;
209 u8 reserved[34];
210} __attribute__ ((packed));
211
Aaron Durbin21efd8c2013-01-17 09:39:39 -0600212#define PCI_DEVICE_ID_HSW_MOBILE 0x0c04
213#define PCI_DEVICE_ID_HSW_ULT 0x0a04
Aaron Durbin76c37002012-10-30 09:03:43 -0500214
215#ifdef __SMM__
216void intel_northbridge_haswell_finalize_smm(void);
217#else /* !__SMM__ */
218int bridge_silicon_revision(void);
219void haswell_early_initialization(int chipset_type);
220void haswell_late_initialization(void);
221
222/* debugging functions */
223void print_pci_devices(void);
224void dump_pci_device(unsigned dev);
225void dump_pci_devices(void);
226void dump_spd_registers(void);
227void dump_mem(unsigned start, unsigned end);
228void report_platform_info(void);
229#endif /* !__SMM__ */
230
231
232#define MRC_DATA_ALIGN 0x1000
233#define MRC_DATA_SIGNATURE (('M'<<0)|('R'<<8)|('C'<<16)|('D'<<24))
234
235struct mrc_data_container {
236 u32 mrc_signature; // "MRCD"
237 u32 mrc_data_size; // Actual total size of this structure
238 u32 mrc_checksum; // IP style checksum
239 u32 reserved; // For header alignment
240 u8 mrc_data[0]; // Variable size, platform/run time dependent.
241} __attribute__ ((packed));
242
243struct mrc_data_container *find_current_mrc_cache(void);
244#if !defined(__PRE_RAM__)
Aaron Durbin76c37002012-10-30 09:03:43 -0500245#include "gma.h"
246int init_igd_opregion(igd_opregion_t *igd_opregion);
247#endif
248
249#endif
250#endif
251#endif