blob: 73f765148a3a97dc2c4b26bad04645a980e1e563 [file] [log] [blame]
Patrick Georgi2efc8802012-11-06 11:03:53 +01001/*
2 * This file is part of the coreboot project.
3 *
4 * Copyright (C) 2012 secunet Security Networks AG
5 *
6 * This program is free software; you can redistribute it and/or
7 * modify it under the terms of the GNU General Public License as
8 * published by the Free Software Foundation; version 2 of
9 * 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.
Patrick Georgi2efc8802012-11-06 11:03:53 +010015 */
16
17#include <stdint.h>
18#include <stddef.h>
19#include <arch/io.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +010020#include <device/pci_def.h>
21#include <console/console.h>
Vladimir Serbinenko084ed452014-08-16 10:51:06 +020022#include <pc80/mc146818rtc.h>
Patrick Georgi2efc8802012-11-06 11:03:53 +010023
24#include "gm45.h"
25
26/* TODO: Chipset supports Protected Audio Video Path (PAVP) */
27
28/* TODO: We could pass DVMT structure in GetBIOSData() SCI interface */
29
30/* The PEG settings have to be set before ASPM is setup on DMI. */
31static void enable_igd(const sysinfo_t *const sysinfo, const int no_peg)
32{
Furquan Shaikh25f75b22016-08-29 22:51:41 -070033 const pci_devfn_t mch_dev = PCI_DEV(0, 0, 0);
34 const pci_devfn_t peg_dev = PCI_DEV(0, 1, 0);
35 const pci_devfn_t igd_dev = PCI_DEV(0, 2, 0);
Patrick Georgi2efc8802012-11-06 11:03:53 +010036
37 u16 reg16;
38 u32 reg32;
39
40 printk(BIOS_DEBUG, "Enabling IGD.\n");
41
42 /* HSync/VSync */
43 MCHBAR8(0xbd0 + 3) = 0x5a;
44 MCHBAR8(0xbd0 + 4) = 0x5a;
45
46 static const u16 display_clock_from_f0_and_vco[][4] = {
47 /* VCO 2666 VCO 3200 VCO 4000 VCO 5333 */
48 { 222, 228, 222, 222, },
49 { 333, 320, 333, 333, },
50 };
51 const int f0_12 = (pci_read_config16(igd_dev, 0xf0) >> 12) & 1;
52 const int vco = raminit_read_vco_index();
53 reg16 = pci_read_config16(igd_dev, 0xcc);
54 reg16 &= 0xfc00;
55 reg16 |= display_clock_from_f0_and_vco[f0_12][vco];
56 pci_write_config16(igd_dev, 0xcc, reg16);
57
Patrick Georgi2efc8802012-11-06 11:03:53 +010058 reg16 = pci_read_config16(mch_dev, D0F0_GGC);
59 reg16 &= 0xf00f;
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +020060 reg16 |= sysinfo->ggc;
Patrick Georgi2efc8802012-11-06 11:03:53 +010061 pci_write_config16(mch_dev, D0F0_GGC, reg16);
62
63 if ((sysinfo->gfx_type != GMCH_GL40) &&
64 (sysinfo->gfx_type != GMCH_GS40) &&
65 (sysinfo->gfx_type != GMCH_GL43)) {
66 const u32 deven = pci_read_config32(mch_dev, D0F0_DEVEN);
67 if (!(deven & 2))
68 /* Enable PEG temporarily to access D1:F0. */
69 pci_write_config32(mch_dev, D0F0_DEVEN, deven | 2);
70
71 /* Some IGD related settings on D1:F0. */
72 reg16 = pci_read_config16(peg_dev, 0xa08);
73 reg16 &= ~(1 << 15);
74 pci_write_config16(peg_dev, 0xa08, reg16);
75
76 reg16 = pci_read_config16(peg_dev, 0xa84);
77 reg16 |= (1 << 8);
78 pci_write_config16(peg_dev, 0xa84, reg16);
79
80 reg16 = pci_read_config16(peg_dev, 0xb00);
81 reg16 |= (3 << 8) | (7 << 3);
82 pci_write_config16(peg_dev, 0xb00, reg16);
83
84 reg32 = pci_read_config32(peg_dev, 0xb14);
85 reg32 &= ~(1 << 17);
86 pci_write_config32(peg_dev, 0xb14, reg32);
87
88 if (!(deven & 2) || no_peg) {
89 /* Disable PEG finally. */
90 printk(BIOS_DEBUG, "Finally disabling "
91 "PEG in favor of IGD.\n");
92 MCHBAR8(0xc14) |= (1 << 5) | (1 << 0);
93
94 reg32 = pci_read_config32(peg_dev, 0x200);
95 reg32 |= (1 << 18);
96 pci_write_config32(peg_dev, 0x200, reg32);
97 reg16 = pci_read_config16(peg_dev, 0x224);
98 reg16 |= (1 << 8);
99 pci_write_config16(peg_dev, 0x224, reg16);
100 reg32 = pci_read_config32(peg_dev, 0x200);
101 reg32 &= ~(1 << 18);
102 pci_write_config32(peg_dev, 0x200, reg32);
103 while (pci_read_config32(peg_dev, 0x214) & 0x000f0000);
104
105 pci_write_config32(mch_dev, D0F0_DEVEN, deven & ~2);
106 MCHBAR8(0xc14) &= ~((1 << 5) | (1 << 0));
107 }
108 }
109}
110
111static void disable_igd(const sysinfo_t *const sysinfo)
112{
Furquan Shaikh25f75b22016-08-29 22:51:41 -0700113 const pci_devfn_t mch_dev = PCI_DEV(0, 0, 0);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100114
115 printk(BIOS_DEBUG, "Disabling IGD.\n");
116
117 u16 reg16;
118
119 reg16 = pci_read_config16(mch_dev, D0F0_GGC);
120 reg16 &= 0xff0f; /* Disable Graphics Stolen Memory. */
121 reg16 |= 0x0002; /* Disable IGD. */
122 pci_write_config16(mch_dev, D0F0_GGC, reg16);
123 MCHBAR8(0xf10) |= (1 << 0);
124
125 if (!(pci_read_config8(mch_dev, D0F0_CAPID0 + 4) & (1 << (33 - 32)))) {
126 MCHBAR16(0x1190) |= (1 << 14);
127 MCHBAR16(0x119e) = (MCHBAR16(0x119e) & ~(7 << 13)) | (4 << 13);
128 MCHBAR16(0x119e) |= (1 << 12);
129 }
130}
131
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +0200132void init_igd(const sysinfo_t *const sysinfo)
Patrick Georgi2efc8802012-11-06 11:03:53 +0100133{
Furquan Shaikh25f75b22016-08-29 22:51:41 -0700134 const pci_devfn_t mch_dev = PCI_DEV(0, 0, 0);
Patrick Georgi2efc8802012-11-06 11:03:53 +0100135
136 const u8 capid = pci_read_config8(mch_dev, D0F0_CAPID0 + 4);
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +0200137 if (!sysinfo->enable_igd || (capid & (1 << (33 - 32))))
Patrick Georgi2efc8802012-11-06 11:03:53 +0100138 disable_igd(sysinfo);
139 else
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +0200140 enable_igd(sysinfo, !sysinfo->enable_peg);
141}
142
143void igd_compute_ggc(sysinfo_t *const sysinfo)
144{
Furquan Shaikh25f75b22016-08-29 22:51:41 -0700145 const pci_devfn_t mch_dev = PCI_DEV(0, 0, 0);
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +0200146
147 const u32 capid = pci_read_config32(mch_dev, D0F0_CAPID0 + 4);
148 if (!sysinfo->enable_igd || (capid & (1 << (33 - 32))))
149 sysinfo->ggc = 0x0002;
150 else {
151 u8 gfxsize;
152
153 /* Graphics Stolen Memory: 2MB GTT (0x0300) when VT-d disabled,
154 2MB GTT + 2MB shadow GTT (0x0b00) else. */
155 if (get_option(&gfxsize, "gfx_uma_size") != CB_SUCCESS) {
Arthur Heymans7afcfe02016-05-19 15:34:49 +0200156 /* 4 for 32MB, default if not set in cmos */
157 gfxsize = 4;
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +0200158 }
Arthur Heymans7afcfe02016-05-19 15:34:49 +0200159 /* Handle invalid cmos settings */
160 if (gfxsize > 11)
161 gfxsize = 4;
162 sysinfo->ggc = 0x0300 | ((gfxsize + 1) << 4);
Vladimir Serbinenko56ae8a02014-08-16 10:59:02 +0200163 if (!(capid & (1 << (48 - 32))))
164 sysinfo->ggc |= 0x0800;
165 }
Patrick Georgi2efc8802012-11-06 11:03:53 +0100166}