blob: 3c082f13650e00e94f15317a334b5fc5aa1551a4 [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-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.
Stefan Reinauer00636b02012-04-04 00:08:51 +020015 */
16
17#ifndef __NORTHBRIDGE_INTEL_SANDYBRIDGE_SANDYBRIDGE_H__
Edward O'Callaghan089a5102015-01-06 02:48:57 +110018#define __NORTHBRIDGE_INTEL_SANDYBRIDGE_SANDYBRIDGE_H__
Stefan Reinauer00636b02012-04-04 00:08:51 +020019
Stefan Reinauer00636b02012-04-04 00:08:51 +020020/* Device ID for SandyBridge and IvyBridge */
21#define BASE_REV_SNB 0x00
22#define BASE_REV_IVB 0x50
23#define BASE_REV_MASK 0x50
24
25/* SandyBridge CPU stepping */
26#define SNB_STEP_D0 (BASE_REV_SNB + 5) /* Also J0 */
27#define SNB_STEP_D1 (BASE_REV_SNB + 6)
28#define SNB_STEP_D2 (BASE_REV_SNB + 7) /* Also J1/Q0 */
29
30/* IvyBridge CPU stepping */
31#define IVB_STEP_A0 (BASE_REV_IVB + 0)
32#define IVB_STEP_B0 (BASE_REV_IVB + 2)
33#define IVB_STEP_C0 (BASE_REV_IVB + 4)
34#define IVB_STEP_K0 (BASE_REV_IVB + 5)
35#define IVB_STEP_D0 (BASE_REV_IVB + 6)
36
37/* Intel Enhanced Debug region must be 4MB */
Arthur Heymans67031a52018-02-05 19:08:03 +010038
39#define IED_SIZE CONFIG_IED_REGION_SIZE
Stefan Reinauer00636b02012-04-04 00:08:51 +020040
41/* Northbridge BARs */
42#define DEFAULT_PCIEXBAR CONFIG_MMCONF_BASE_ADDRESS /* 4 KB per PCIe device */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080043#ifndef __ACPI__
44#define DEFAULT_MCHBAR ((u8 *)0xfed10000) /* 16 KB */
45#define DEFAULT_DMIBAR ((u8 *)0xfed18000) /* 4 KB */
46#else
Stefan Reinauer00636b02012-04-04 00:08:51 +020047#define DEFAULT_MCHBAR 0xfed10000 /* 16 KB */
48#define DEFAULT_DMIBAR 0xfed18000 /* 4 KB */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080049#endif
Stefan Reinauer00636b02012-04-04 00:08:51 +020050#define DEFAULT_EPBAR 0xfed19000 /* 4 KB */
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -080051#define DEFAULT_RCBABASE ((u8 *)0xfed1c000)
Stefan Reinauer00636b02012-04-04 00:08:51 +020052
Nico Huberbb9469c2015-10-21 11:49:23 +020053#define IOMMU_BASE1 0xfed90000ULL
54#define IOMMU_BASE2 0xfed91000ULL
55
Stefan Reinauere5a0a5d2012-09-19 10:51:48 -070056#include <southbridge/intel/bd82x6x/pch.h>
Stefan Reinauer00636b02012-04-04 00:08:51 +020057
58/* Everything below this line is ignored in the DSDT */
59#ifndef __ACPI__
Patrick Rudolph74203de2017-11-20 11:57:01 +010060#include <cpu/intel/model_206ax/model_206ax.h>
61
62/* Chipset types */
63enum platform_type {
64 PLATFORM_MOBILE = 0,
65 PLATFORM_DESKTOP_SERVER,
66};
Stefan Reinauer00636b02012-04-04 00:08:51 +020067
Nico Huber9d9ce0d2015-10-26 12:59:49 +010068#include <rules.h>
69
Stefan Reinauer00636b02012-04-04 00:08:51 +020070/* Device 0:0.0 PCI configuration space (Host Bridge) */
71
72#define EPBAR 0x40
73#define MCHBAR 0x48
74#define PCIEXBAR 0x60
75#define DMIBAR 0x68
76#define X60BAR 0x60
77
78#define GGC 0x50 /* GMCH Graphics Control */
79
80#define DEVEN 0x54 /* Device Enable */
Patrick Rudolphecd4be82017-05-14 12:40:50 +020081#define DEVEN_D7EN (1 << 14)
Stefan Reinauer00636b02012-04-04 00:08:51 +020082#define DEVEN_PEG60 (1 << 13)
Patrick Rudolphecd4be82017-05-14 12:40:50 +020083#define DEVEN_D4EN (1 << 7)
Stefan Reinauer00636b02012-04-04 00:08:51 +020084#define DEVEN_IGD (1 << 4)
85#define DEVEN_PEG10 (1 << 3)
86#define DEVEN_PEG11 (1 << 2)
87#define DEVEN_PEG12 (1 << 1)
88#define DEVEN_HOST (1 << 0)
89
90#define PAM0 0x80
91#define PAM1 0x81
92#define PAM2 0x82
93#define PAM3 0x83
94#define PAM4 0x84
95#define PAM5 0x85
96#define PAM6 0x86
97
98#define LAC 0x87 /* Legacy Access Control */
99#define SMRAM 0x88 /* System Management RAM Control */
Stefan Reinauer00636b02012-04-04 00:08:51 +0200100
101#define TOM 0xa0
102#define TOUUD 0xa8 /* Top of Upper Usable DRAM */
Vladimir Serbinenkoa3e41c02015-05-28 16:04:17 +0200103#define BGSM 0xb4 /* Base GTT Stolen Memory */
Stefan Reinauer00636b02012-04-04 00:08:51 +0200104#define TSEG 0xb8 /* TSEG base */
105#define TOLUD 0xbc /* Top of Low Used Memory */
106
Patrick Rudolph9f3f9152016-01-26 20:02:14 +0100107#define CAPID0_A 0xe4 /* Capabilities Register A */
108#define CAPID0_B 0xe8 /* Capabilities Register B */
109
Stefan Reinauer00636b02012-04-04 00:08:51 +0200110#define SKPAD 0xdc /* Scratchpad Data */
111
112/* 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 */
Stefan Reinauer00636b02012-04-04 00:08:51 +0200120
121/*
122 * MCHBAR
123 */
124
Felix Heldb9267f02018-07-28 14:49:31 +0200125#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))))
Stefan Reinauer00636b02012-04-04 00:08:51 +0200128#define MCHBAR32_OR(x, or) MCHBAR32(x) = (MCHBAR32(x) | (or))
129
130#define SSKPD 0x5d14 /* 16bit (scratchpad) */
131#define BIOS_RESET_CPL 0x5da8 /* 8bit */
132
133/*
134 * EPBAR - Egress Port Root Complex Register Block
135 */
136
Felix Heldb9267f02018-07-28 14:49:31 +0200137#define EPBAR8(x) (*((volatile u8 *)(DEFAULT_EPBAR + (x))))
138#define EPBAR16(x) (*((volatile u16 *)(DEFAULT_EPBAR + (x))))
139#define EPBAR32(x) (*((volatile u32 *)(DEFAULT_EPBAR + (x))))
Stefan Reinauer00636b02012-04-04 00:08:51 +0200140
141#define EPPVCCAP1 0x004 /* 32bit */
142#define EPPVCCAP2 0x008 /* 32bit */
143
144#define EPVC0RCAP 0x010 /* 32bit */
145#define EPVC0RCTL 0x014 /* 32bit */
146#define EPVC0RSTS 0x01a /* 16bit */
147
148#define EPVC1RCAP 0x01c /* 32bit */
149#define EPVC1RCTL 0x020 /* 32bit */
150#define EPVC1RSTS 0x026 /* 16bit */
151
152#define EPVC1MTS 0x028 /* 32bit */
153#define EPVC1IST 0x038 /* 64bit */
154
155#define EPESD 0x044 /* 32bit */
156
157#define EPLE1D 0x050 /* 32bit */
158#define EPLE1A 0x058 /* 64bit */
159#define EPLE2D 0x060 /* 32bit */
160#define EPLE2A 0x068 /* 64bit */
161
162#define PORTARB 0x100 /* 256bit */
163
164/*
165 * DMIBAR
166 */
167
Felix Heldb9267f02018-07-28 14:49:31 +0200168#define DMIBAR8(x) (*((volatile u8 *)(DEFAULT_DMIBAR + (x))))
169#define DMIBAR16(x) (*((volatile u16 *)(DEFAULT_DMIBAR + (x))))
170#define DMIBAR32(x) (*((volatile u32 *)(DEFAULT_DMIBAR + (x))))
Stefan Reinauer00636b02012-04-04 00:08:51 +0200171
172#define DMIVCECH 0x000 /* 32bit */
173#define DMIPVCCAP1 0x004 /* 32bit */
174#define DMIPVCCAP2 0x008 /* 32bit */
175
176#define DMIPVCCCTL 0x00c /* 16bit */
177
178#define DMIVC0RCAP 0x010 /* 32bit */
179#define DMIVC0RCTL0 0x014 /* 32bit */
180#define DMIVC0RSTS 0x01a /* 16bit */
181
182#define DMIVC1RCAP 0x01c /* 32bit */
183#define DMIVC1RCTL 0x020 /* 32bit */
184#define DMIVC1RSTS 0x026 /* 16bit */
185
186#define DMILE1D 0x050 /* 32bit */
187#define DMILE1A 0x058 /* 64bit */
188#define DMILE2D 0x060 /* 32bit */
189#define DMILE2A 0x068 /* 64bit */
190
191#define DMILCAP 0x084 /* 32bit */
192#define DMILCTL 0x088 /* 16bit */
193#define DMILSTS 0x08a /* 16bit */
194
195#define DMICTL1 0x0f0 /* 32bit */
196#define DMICTL2 0x0fc /* 32bit */
197
198#define DMICC 0x208 /* 32bit */
199
200#define DMIDRCCFG 0xeb4 /* 32bit */
201
202#ifndef __ASSEMBLER__
203static inline void barrier(void) { asm("" ::: "memory"); }
204
Stefan Reinauer00636b02012-04-04 00:08:51 +0200205#ifdef __SMM__
206void intel_sandybridge_finalize_smm(void);
207#else /* !__SMM__ */
208int bridge_silicon_revision(void);
Patrick Rudolph74203de2017-11-20 11:57:01 +0100209void sandybridge_early_initialization(void);
Nico Huberbb9469c2015-10-21 11:49:23 +0200210void sandybridge_init_iommu(void);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200211void sandybridge_late_initialization(void);
Vladimir Serbinenkoc845b432014-09-05 03:37:44 +0200212void northbridge_romstage_finalize(int s3resume);
Stefan Reinauer00636b02012-04-04 00:08:51 +0200213
214/* debugging functions */
215void print_pci_devices(void);
216void dump_pci_device(unsigned dev);
217void dump_pci_devices(void);
218void dump_spd_registers(void);
219void dump_mem(unsigned start, unsigned end);
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100220
Stefan Reinauer00636b02012-04-04 00:08:51 +0200221#endif /* !__SMM__ */
Stefan Reinauer1244f4b2012-05-10 11:31:40 -0700222
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100223void pch_enable_lpc(void);
224void mainboard_early_init(int s3resume);
225void mainboard_config_superio(void);
226int mainboard_should_reset_usb(int s3resume);
227void perform_raminit(int s3resume);
Patrick Rudolph74203de2017-11-20 11:57:01 +0100228enum platform_type get_platform_type(void);
Vladimir Serbinenkoffbb3c02016-02-10 01:36:25 +0100229
Antonello Dettori6fc430b2016-09-02 09:17:26 +0200230#if ENV_RAMSTAGE && !defined(__SIMPLE_DEVICE__)
Nico Huber9d9ce0d2015-10-26 12:59:49 +0100231#include <device/device.h>
232
233struct acpi_rsdp;
Elyes HAOUASab8743c2018-02-09 08:21:40 +0100234unsigned long northbridge_write_acpi_tables(struct device *device, unsigned long start, struct acpi_rsdp *rsdp);
Nico Huber9d9ce0d2015-10-26 12:59:49 +0100235#endif
236
Stefan Reinauer00636b02012-04-04 00:08:51 +0200237#endif
238#endif
Edward O'Callaghan089a5102015-01-06 02:48:57 +1100239#endif /* __NORTHBRIDGE_INTEL_SANDYBRIDGE_SANDYBRIDGE_H__ */