blob: 8be18733d1d93a13fc1554a8066de1c303e48599 [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Patrick Georgi2efc8802012-11-06 11:03:53 +01002
3#ifndef __NORTHBRIDGE_INTEL_GM45_GM45_H__
Edward O'Callaghan089a5102015-01-06 02:48:57 +11004#define __NORTHBRIDGE_INTEL_GM45_GM45_H__
Patrick Georgi2efc8802012-11-06 11:03:53 +01005
Elyes HAOUAS21b71ce62018-06-16 18:43:52 +02006#include <southbridge/intel/i82801ix/i82801ix.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +01007
8#ifndef __ACPI__
9
10#include <stdint.h>
11
12typedef enum {
Angel Ponsac4e4b42020-09-16 01:13:00 +020013 FSB_CLOCK_1067MHz = 0,
14 FSB_CLOCK_800MHz = 1,
15 FSB_CLOCK_667MHz = 2,
Patrick Georgi2efc8802012-11-06 11:03:53 +010016} fsb_clock_t;
17
18typedef enum { /* Steppings below B1 were pre-production,
Angel Ponsc88a4792020-09-16 13:11:52 +020019 conversion stepping A1 is a newer GL40 with support for 800 MT/s on FSB/DDR.
Patrick Georgi2efc8802012-11-06 11:03:53 +010020 We'll support B1, B2, B3, and conversion stepping A1. */
21 STEPPING_A0 = 0,
22 STEPPING_A1 = 1,
23 STEPPING_A2 = 2,
24 STEPPING_A3 = 3,
25 STEPPING_B0 = 4,
26 STEPPING_B1 = 5,
27 STEPPING_B2 = 6,
28 STEPPING_B3 = 7,
29 STEPPING_CONVERSION_A1 = 9,
30} stepping_t;
31
32typedef enum {
33 GMCH_GM45 = 0,
34 GMCH_GM47,
35 GMCH_GM49,
36 GMCH_GE45,
37 GMCH_GL40,
38 GMCH_GL43,
39 GMCH_GS40,
40 GMCH_GS45,
41 GMCH_PM45,
42 GMCH_UNKNOWN
43} gmch_gfx_t;
44
45typedef enum {
Angel Ponsac4e4b42020-09-16 01:13:00 +020046 MEM_CLOCK_533MHz = 0,
47 MEM_CLOCK_400MHz = 1,
48 MEM_CLOCK_333MHz = 2,
49 MEM_CLOCK_1067MT = 0,
50 MEM_CLOCK_800MT = 1,
51 MEM_CLOCK_667MT = 2,
Patrick Georgi2efc8802012-11-06 11:03:53 +010052} mem_clock_t;
53
54typedef enum {
55 DDR1 = 1,
56 DDR2 = 2,
57 DDR3 = 3,
58} ddr_t;
59
60typedef enum {
61 CHANNEL_MODE_SINGLE,
62 CHANNEL_MODE_DUAL_ASYNC,
63 CHANNEL_MODE_DUAL_INTERLEAVED,
64} channel_mode_t;
65
66typedef enum { /* as in DDR3 spd */
67 CHIP_WIDTH_x4 = 0,
68 CHIP_WIDTH_x8 = 1,
69 CHIP_WIDTH_x16 = 2,
70 CHIP_WIDTH_x32 = 3,
71} chip_width_t;
72
73typedef enum { /* as in DDR3 spd */
74 CHIP_CAP_256M = 0,
75 CHIP_CAP_512M = 1,
76 CHIP_CAP_1G = 2,
77 CHIP_CAP_2G = 3,
78 CHIP_CAP_4G = 4,
79 CHIP_CAP_8G = 5,
80 CHIP_CAP_16G = 6,
81} chip_capacity_t;
82
83typedef struct {
84 unsigned int CAS;
85 fsb_clock_t fsb_clock;
86 mem_clock_t mem_clock;
87 channel_mode_t channel_mode;
88 unsigned int tRAS;
89 unsigned int tRP;
90 unsigned int tRCD;
91 unsigned int tRFC;
92 unsigned int tWR;
93 unsigned int tRD;
94 unsigned int tRRD;
95 unsigned int tFAW;
96 unsigned int tWL;
97} timings_t;
98
99typedef struct {
100 unsigned int card_type; /* 0x0: unpopulated,
101 0xa - 0xf: raw card type A - F */
102 chip_width_t chip_width;
103 chip_capacity_t chip_capacity;
104 unsigned int page_size; /* of whole DIMM in Bytes (4096 or 8192) */
105 unsigned int banks;
106 unsigned int ranks;
Martin Roth128c1042016-11-18 09:29:03 -0700107 unsigned int rank_capacity_mb; /* per rank in Megabytes */
Patrick Georgi2efc8802012-11-06 11:03:53 +0100108} dimminfo_t;
109
110/* The setup is one DIMM per channel, so there's no need to find a
111 common timing setup between multiple chips (but chip and controller
112 still need to be coordinated */
113typedef struct {
114 stepping_t stepping;
115 int txt_enabled;
116 int cores;
117 gmch_gfx_t gfx_type;
Patrick Georgi2efc8802012-11-06 11:03:53 +0100118 int max_ddr2_mhz;
119 int max_ddr3_mt;
120 fsb_clock_t max_fsb;
121 int max_fsb_mhz;
122 int max_render_mhz;
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +0200123 int enable_igd;
124 int enable_peg;
125 u16 ggc;
Patrick Georgi2efc8802012-11-06 11:03:53 +0100126
Nico Huber5aaeb272015-12-30 00:17:27 +0100127 /* to be filled in romstage main: */
Patrick Georgi2efc8802012-11-06 11:03:53 +0100128 int spd_type;
129 timings_t selected_timings;
130 dimminfo_t dimms[2];
Vladimir Serbinenkoc4d89482014-06-05 09:14:48 +0200131 u8 spd_map[4];
Nico Huber5aaeb272015-12-30 00:17:27 +0100132 int gs45_low_power_mode; /* low power mode of GMCH_GS45 */
133 int sff; /* small form factor option (soldered down DIMM) */
Patrick Georgi2efc8802012-11-06 11:03:53 +0100134} sysinfo_t;
Angel Ponsac4e4b42020-09-16 01:13:00 +0200135
Patrick Georgi2efc8802012-11-06 11:03:53 +0100136#define TOTAL_CHANNELS 2
137#define CHANNEL_IS_POPULATED(dimms, idx) (dimms[idx].card_type != 0)
138#define CHANNEL_IS_CARDF(dimms, idx) (dimms[idx].card_type == 0xf)
139#define IF_CHANNEL_POPULATED(dimms, idx) if (dimms[idx].card_type != 0)
140#define FOR_EACH_CHANNEL(idx) \
141 for (idx = 0; idx < TOTAL_CHANNELS; ++idx)
142#define FOR_EACH_POPULATED_CHANNEL(dimms, idx) \
143 FOR_EACH_CHANNEL(idx) IF_CHANNEL_POPULATED(dimms, idx)
144
145#define RANKS_PER_CHANNEL 4 /* Only two may be populated */
146#define IF_RANK_POPULATED(dimms, ch, r) \
147 if (dimms[ch].card_type && ((r) < dimms[ch].ranks))
148#define FOR_EACH_RANK_IN_CHANNEL(r) \
149 for (r = 0; r < RANKS_PER_CHANNEL; ++r)
150#define FOR_EACH_POPULATED_RANK_IN_CHANNEL(dimms, ch, r) \
151 FOR_EACH_RANK_IN_CHANNEL(r) IF_RANK_POPULATED(dimms, ch, r)
152#define FOR_EACH_RANK(ch, r) \
153 FOR_EACH_CHANNEL(ch) FOR_EACH_RANK_IN_CHANNEL(r)
154#define FOR_EACH_POPULATED_RANK(dimms, ch, r) \
155 FOR_EACH_RANK(ch, r) IF_RANK_POPULATED(dimms, ch, r)
156
157#define DDR3_MAX_CAS 18
158
159enum {
160 VCO_2666 = 4,
161 VCO_3200 = 0,
162 VCO_4000 = 1,
163 VCO_5333 = 2,
164};
165
166#endif
167
168/* Offsets of read/write training results in CMOS.
169 They will be restored upon S3 resumes. */
170#define CMOS_READ_TRAINING 0x80 /* 16 bytes */
Angel Ponsac4e4b42020-09-16 01:13:00 +0200171#define CMOS_WRITE_TRAINING 0x90 /* 16 bytes (could be reduced to 10 bytes) */
Patrick Georgi2efc8802012-11-06 11:03:53 +0100172
Angel Ponsae2a5222020-09-16 13:25:02 +0200173#include "memmap.h"
Patrick Georgi2efc8802012-11-06 11:03:53 +0100174
175/*
176 * D0:F0
177 */
Angel Ponsac4e4b42020-09-16 01:13:00 +0200178#define D0F0_EPBAR_LO 0x40
179#define D0F0_EPBAR_HI 0x44
180#define D0F0_MCHBAR_LO 0x48
181#define D0F0_MCHBAR_HI 0x4c
182#define D0F0_GGC 0x52
183#define D0F0_DEVEN 0x54
184#define D0F0_PCIEXBAR_LO 0x60
185#define D0F0_PCIEXBAR_HI 0x64
186#define D0F0_DMIBAR_LO 0x68
187#define D0F0_DMIBAR_HI 0x6c
188#define D0F0_PMBASE 0x78
189#define D0F0_PAM(x) (0x90 + (x)) /* 0-6 */
190#define D0F0_REMAPBASE 0x98
191#define D0F0_REMAPLIMIT 0x9a
192#define D0F0_SMRAM 0x9d
193#define D0F0_ESMRAMC 0x9e
194#define D0F0_TOM 0xa0
195#define D0F0_TOUUD 0xa2
196#define D0F0_TOLUD 0xb0
197#define D0F0_SKPD 0xdc /* Scratchpad Data */
198#define D0F0_CAPID0 0xe0
Patrick Georgi2efc8802012-11-06 11:03:53 +0100199
200/*
201 * D1:F0 PEG
202 */
Angel Ponsac4e4b42020-09-16 01:13:00 +0200203#define PEG_CAP 0xa2
204#define SLOTCAP 0xb4
205#define PEGLC 0xec
206#define D1F0_VCCAP 0x104
207#define D1F0_VC0RCTL 0x114
Patrick Georgi2efc8802012-11-06 11:03:53 +0100208
209/*
210 * Graphics frequencies
211 */
212#define GCFGC_PCIDEV PCI_DEV(0, 2, 0)
213#define GCFGC_OFFSET 0xf0
214#define GCFGC_CR_SHIFT 0
215#define GCFGC_CR_MASK (0xf << GCFGC_CR_SHIFT)
216#define GCFGC_CS_SHIFT 8
217#define GCFGC_CS_MASK (0xf << GCFGC_CS_SHIFT)
218#define GCFGC_CD_SHIFT 12
219#define GCFGC_CD_MASK (0x1 << GCFGC_CD_SHIFT)
220#define GCFGC_UPDATE_SHIFT 5
221#define GCFGC_UPDATE (0x1 << GCFGC_UPDATE_SHIFT)
222
223/*
224 * MCHBAR
225 */
226
Angel Ponsac4e4b42020-09-16 01:13:00 +0200227#define MCHBAR8(x) *((volatile u8 *)(DEFAULT_MCHBAR + x))
Patrick Georgi2efc8802012-11-06 11:03:53 +0100228#define MCHBAR16(x) *((volatile u16 *)(DEFAULT_MCHBAR + x))
229#define MCHBAR32(x) *((volatile u32 *)(DEFAULT_MCHBAR + x))
230
Nico Huberd85a71a2016-11-27 14:43:12 +0100231#define HPLLVCO_MCHBAR 0x0c0f
232
Patrick Georgi2efc8802012-11-06 11:03:53 +0100233#define PMSTS_MCHBAR 0x0f14 /* Self refresh channel status */
234#define PMSTS_WARM_RESET (1 << 1)
235#define PMSTS_BOTH_SELFREFRESH (1 << 0)
236
237#define CLKCFG_MCHBAR 0x0c00
238#define CLKCFG_FSBCLK_SHIFT 0
239#define CLKCFG_FSBCLK_MASK (7 << CLKCFG_FSBCLK_SHIFT)
240#define CLKCFG_MEMCLK_SHIFT 4
241#define CLKCFG_MEMCLK_MASK (7 << CLKCFG_MEMCLK_SHIFT)
242#define CLKCFG_UPDATE (1 << 12)
243
244#define SSKPD_MCHBAR 0x0c1c
245#define SSKPD_CLK_SHIFT 0
246#define SSKPD_CLK_MASK (7 << SSKPD_CLK_SHIFT)
247
248#define DCC_MCHBAR 0x200
249#define DCC_NO_CHANXOR (1 << 10)
250#define DCC_INTERLEAVED (1 << 1)
251#define DCC_CMD_SHIFT 16
252#define DCC_CMD_MASK (7 << DCC_CMD_SHIFT)
253#define DCC_CMD_NOP (1 << DCC_CMD_SHIFT)
254 /* For mode register mr0: */
255#define DCC_SET_MREG (3 << DCC_CMD_SHIFT)
256 /* For extended mode registers mr1 to mr3: */
257#define DCC_SET_EREG (4 << DCC_CMD_SHIFT)
258#define DCC_SET_EREG_SHIFT 21
259#define DCC_SET_EREG_MASK (DCC_CMD_MASK | (3 << DCC_SET_EREG_SHIFT))
260#define DCC_SET_EREGx(x) ((DCC_SET_EREG | \
261 ((x - 1) << DCC_SET_EREG_SHIFT)) & \
262 DCC_SET_EREG_MASK)
263
264/* Per channel DRAM Row Attribute registers (32-bit) */
265#define CxDRA_MCHBAR(x) (0x1208 + (x * 0x0100))
266#define CxDRA_PAGESIZE_SHIFT(r) (r * 4) /* Per rank r */
267#define CxDRA_PAGESIZE_MASKr(r) (0x7 << CxDRA_PAGESIZE_SHIFT(r))
268#define CxDRA_PAGESIZE_MASK 0x0000ffff
269#define CxDRA_PAGESIZE(r, p) /* for log2(dimm page size in bytes) p */ \
270 (((p - 10) << CxDRA_PAGESIZE_SHIFT(r)) & CxDRA_PAGESIZE_MASKr(r))
271#define CxDRA_BANKS_SHIFT(r) ((r * 3) + 16)
272#define CxDRA_BANKS_MASKr(r) (0x3 << CxDRA_BANKS_SHIFT(r))
273#define CxDRA_BANKS_MASK 0x07ff0000
274#define CxDRA_BANKS(r, b) /* for number of banks b */ \
275 ((b << (CxDRA_BANKS_SHIFT(r) - 3)) & CxDRA_BANKS_MASKr(r))
276
277/*
278 * Per channel DRAM Row Boundary registers (32-bit)
279 * Every two ranks share one register and must be programmed at the same time.
280 * All registers (4 ranks per channel) have to be set.
281 */
Angel Ponsac4e4b42020-09-16 01:13:00 +0200282#define CxDRBy_MCHBAR(x, r) (0x1200 + (x * 0x0100) + ((r / 2) * 4))
Patrick Georgi2efc8802012-11-06 11:03:53 +0100283#define CxDRBy_BOUND_SHIFT(r) ((r % 2) * 16)
284#define CxDRBy_BOUND_MASK(r) (0x1fc << CxDRBy_BOUND_SHIFT(r))
285#define CxDRBy_BOUND_MB(r, b) /* for boundary in MB b */ \
286 (((b >> 5) << CxDRBy_BOUND_SHIFT(r)) & CxDRBy_BOUND_MASK(r))
287
288#define CxDRC0_MCHBAR(x) (0x1230 + (x * 0x0100))
289#define CxDRC0_RANKEN0 (1 << 24) /* Rank Enable */
290#define CxDRC0_RANKEN1 (1 << 25)
291#define CxDRC0_RANKEN2 (1 << 26)
292#define CxDRC0_RANKEN3 (1 << 27)
293#define CxDRC0_RANKEN(r) (1 << (24 + r))
294#define CxDRC0_RANKEN_MASK (0xf << 24)
295#define CxDRC0_RMS_SHIFT 8 /* Refresh Mode Select */
296#define CxDRC0_RMS_MASK (7 << CxDRC0_RMS_SHIFT)
297#define CxDRC0_RMS_78US (2 << CxDRC0_RMS_SHIFT)
298#define CxDRC0_RMS_39US (3 << CxDRC0_RMS_SHIFT)
299
300#define CxDRC1_MCHBAR(x) (0x1234 + (x * 0x0100))
301#define CxDRC1_SSDS_SHIFT 24
302#define CxDRC1_SSDS_MASK (0xff << CxDRC1_SSDS_SHIFT)
303#define CxDRC1_DS (0x91 << CxDRC1_SSDS_SHIFT)
304#define CxDRC1_SS (0xb1 << CxDRC1_SSDS_SHIFT)
305#define CxDRC1_NOTPOP(r) (1 << (16 + r)) /* Write 1 for Not Populated */
306#define CxDRC1_NOTPOP_MASK (0xf << 16)
307#define CxDRC1_MUSTWR (3 << 11)
308
309#define CxDRC2_MCHBAR(x) (0x1238 + (x * 0x0100))
310#define CxDRC2_NOTPOP(r) (1 << (24 + r)) /* Write 1 for Not Populated */
311#define CxDRC2_NOTPOP_MASK (0xf << 24)
312#define CxDRC2_MUSTWR (1 << 12)
313#define CxDRC2_CLK1067MT (1 << 0)
314
315/* DRAM Timing registers (32-bit each) */
316#define CxDRT0_MCHBAR(x) (0x1210 + (x * 0x0100))
317#define CxDRT0_BtB_WtP_SHIFT 26
318#define CxDRT0_BtB_WtP_MASK (0x1f << CxDRT0_BtB_WtP_SHIFT)
319#define CxDRT0_BtB_WtR_SHIFT 20
320#define CxDRT0_BtB_WtR_MASK (0x1f << CxDRT0_BtB_WtR_SHIFT)
321#define CxDRT1_MCHBAR(x) (0x1214 + (x * 0x0100))
322#define CxDRT2_MCHBAR(x) (0x1218 + (x * 0x0100))
323#define CxDRT3_MCHBAR(x) (0x121c + (x * 0x0100))
324#define CxDRT4_MCHBAR(x) (0x1220 + (x * 0x0100))
325#define CxDRT5_MCHBAR(x) (0x1224 + (x * 0x0100))
326#define CxDRT6_MCHBAR(x) (0x1228 + (x * 0x0100))
327
328/* Clock disable registers (32-bit each) */
329#define CxDCLKDIS_MCHBAR(x) (0x120c + (x * 0x0100))
330#define CxDCLKDIS_MASK 3
331#define CxDCLKDIS_ENABLE 3 /* Always enable both clock pairs. */
332
333/* On-Die-Termination registers (2x 32-bit per channel) */
334#define CxODT_HIGH(x) (0x124c + (x * 0x0100))
335#define CxODT_LOW(x) (0x1248 + (x * 0x0100))
336
337/* Write Training registers. */
338#define CxWRTy_MCHBAR(ch, s) (0x1470 + (ch * 0x0100) + ((3 - s) * 4))
339
Angel Ponsac4e4b42020-09-16 01:13:00 +0200340#define CxGTEW(x) (0x1270 + (x * 0x100))
341#define CxGTC(x) (0x1274 + (x * 0x100))
342#define CxDTPEW(x) (0x1278 + (x * 0x100))
343#define CxDTAEW(x) (0x1280 + (x * 0x100))
344#define CxDTC(x) (0x1288 + (x * 0x100))
Patrick Georgi2efc8802012-11-06 11:03:53 +0100345
Angel Pons3378de12020-09-15 14:30:13 +0200346
Patrick Georgi2efc8802012-11-06 11:03:53 +0100347/*
348 * DMIBAR
349 */
350
Angel Ponsac4e4b42020-09-16 01:13:00 +0200351#define DMIBAR8(x) *((volatile u8 *)(DEFAULT_DMIBAR + x))
Patrick Georgi2efc8802012-11-06 11:03:53 +0100352#define DMIBAR16(x) *((volatile u16 *)(DEFAULT_DMIBAR + x))
353#define DMIBAR32(x) *((volatile u32 *)(DEFAULT_DMIBAR + x))
354
Angel Pons3e33be22020-09-16 12:50:59 +0200355#define DMIVCECH 0x000 /* 32bit */
356#define DMIPVCCAP1 0x004 /* 32bit */
357
358#define DMIVC0RCAP 0x010 /* 32bit */
359#define DMIVC0RCTL 0x014 /* 32bit */
360#define DMIVC0RSTS 0x01a /* 16bit */
361#define VC0NP (1 << 1)
362
363#define DMIVC1RCAP 0x01c /* 32bit */
364#define DMIVC1RCTL 0x020 /* 32bit */
365#define DMIVC1RSTS 0x026 /* 16bit */
366#define VC1NP (1 << 1)
367
368#define DMIESD 0x044 /* 32bit */
369
370#define DMILE1D 0x050 /* 32bit */
371#define DMILE1A 0x058 /* 64bit */
372#define DMILE2D 0x060 /* 32bit */
373#define DMILE2A 0x068 /* 64bit */
374
375#define DMILCAP 0x084 /* 32bit */
376#define DMILCTL 0x088 /* 16bit */
377#define DMILSTS 0x08a /* 16bit */
Patrick Georgi2efc8802012-11-06 11:03:53 +0100378
Patrick Georgi2efc8802012-11-06 11:03:53 +0100379/*
380 * EPBAR
381 */
382
Angel Ponsac4e4b42020-09-16 01:13:00 +0200383#define EPBAR8(x) *((volatile u8 *)(DEFAULT_EPBAR + x))
Patrick Georgi2efc8802012-11-06 11:03:53 +0100384#define EPBAR16(x) *((volatile u16 *)(DEFAULT_EPBAR + x))
385#define EPBAR32(x) *((volatile u32 *)(DEFAULT_EPBAR + x))
386
Angel Pons3e33be22020-09-16 12:50:59 +0200387#define EPPVCCAP1 0x004 /* 32bit */
388#define EPPVCCTL 0x00c /* 32bit */
389
390#define EPVC0RCAP 0x010 /* 32bit */
391#define EPVC0RCTL 0x014 /* 32bit */
392#define EPVC0RSTS 0x01a /* 16bit */
393
394#define EPVC1RCAP 0x01c /* 32bit */
395#define EPVC1RCTL 0x020 /* 32bit */
396#define EPVC1RSTS 0x026 /* 16bit */
397
398#define EPVC1MTS 0x028 /* 32bit */
399#define EPVC1ITC 0x02c /* 32bit */
400
401#define EPVC1IST 0x038 /* 64bit */
402
403#define EPESD 0x044 /* 32bit */
404
405#define EPLE1D 0x050 /* 32bit */
406#define EPLE1A 0x058 /* 64bit */
407#define EPLE2D 0x060 /* 32bit */
408#define EPLE2A 0x068 /* 64bit */
409
410#define EP_PORTARB(x) (0x100 + 4 * (x)) /* 256bit */
Patrick Georgi2efc8802012-11-06 11:03:53 +0100411
Patrick Georgi2efc8802012-11-06 11:03:53 +0100412#ifndef __ACPI__
Angel Ponsac4e4b42020-09-16 01:13:00 +0200413
Patrick Georgi2efc8802012-11-06 11:03:53 +0100414void gm45_early_init(void);
415void gm45_early_reset(void);
416
417void enter_raminit_or_reset(void);
418void get_gmch_info(sysinfo_t *);
419void raminit(sysinfo_t *, int s3resume);
420void raminit_thermal(const sysinfo_t *);
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +0200421void init_igd(const sysinfo_t *const);
Vladimir Serbinenko020dc0e2014-08-12 22:50:40 +0200422void init_pm(const sysinfo_t *, int do_freq_scaling_cfg);
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +0200423void igd_compute_ggc(sysinfo_t *const sysinfo);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100424
425int raminit_read_vco_index(void);
426u32 raminit_get_rank_addr(unsigned int channel, unsigned int rank);
427
428void raminit_rcomp_calibration(stepping_t stepping);
429void raminit_reset_readwrite_pointers(void);
430void raminit_receive_enable_calibration(const timings_t *, const dimminfo_t *);
431void raminit_write_training(const mem_clock_t, const dimminfo_t *, int s3resume);
432void raminit_read_training(const dimminfo_t *, int s3resume);
433
434void gm45_late_init(stepping_t);
435
436u32 decode_igd_memory_size(u32 gms);
437u32 decode_igd_gtt_size(u32 gsm);
Arthur Heymans8b766052018-01-24 23:25:13 +0100438u32 decode_tseg_size(u8 esmramc);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100439
440void init_iommu(void);
Vladimir Serbinenko33769a52014-08-30 22:39:20 +0200441
Arthur Heymans3b0eb602019-01-31 22:47:09 +0100442/* romstage mainboard hookups */
Arthur Heymans3b0eb602019-01-31 22:47:09 +0100443void mb_setup_superio(void); /* optional */
444void get_mb_spd_addrmap(u8 spd_addrmap[4]);
445void mb_pre_raminit_setup(sysinfo_t *); /* optional */
446void mb_post_raminit_setup(void); /* optional */
447
Arthur Heymans20cb85f2017-04-29 14:31:32 +0200448struct blc_pwm_t {
449 char ascii_string[13];
450 int pwm_freq; /* In Hz */
451};
452int get_blc_values(const struct blc_pwm_t **entries);
Arthur Heymans4d2d1712018-11-29 12:25:31 +0100453u16 get_blc_pwm_freq_value(const char *edid_ascii_string);
Arthur Heymans20cb85f2017-04-29 14:31:32 +0200454
Angel Ponsc0c95162020-08-03 13:55:18 +0200455int decode_pcie_bar(u32 *const base, u32 *const len);
Arthur Heymans20cb85f2017-04-29 14:31:32 +0200456
Alexander Couzens83fc32f2015-04-12 22:28:37 +0200457#include <device/device.h>
458
Vladimir Serbinenko33769a52014-08-30 22:39:20 +0200459struct acpi_rsdp;
Furquan Shaikh0f007d82020-04-24 06:41:18 -0700460unsigned long northbridge_write_acpi_tables(const struct device *device, unsigned long start,
461 struct acpi_rsdp *rsdp);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100462
Alexander Couzens83fc32f2015-04-12 22:28:37 +0200463#endif /* !__ACPI__ */
Edward O'Callaghan089a5102015-01-06 02:48:57 +1100464#endif /* __NORTHBRIDGE_INTEL_GM45_GM45_H__ */