blob: c07fdfc26b71f6f8b55a4001846861b7e19af946 [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.
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,
19 * MA 02110-1301 USA
20 */
21
22#include <stdint.h>
23#include <stddef.h>
24#include <arch/io.h>
25#include <arch/romcc_io.h>
26#include <device/pci_def.h>
27#include <console/console.h>
28
29#include "gm45.h"
30
31/* TODO: Chipset supports Protected Audio Video Path (PAVP) */
32
33/* TODO: We could pass DVMT structure in GetBIOSData() SCI interface */
34
35/* The PEG settings have to be set before ASPM is setup on DMI. */
36static void enable_igd(const sysinfo_t *const sysinfo, const int no_peg)
37{
38 const device_t mch_dev = PCI_DEV(0, 0, 0);
39 const device_t peg_dev = PCI_DEV(0, 1, 0);
40 const device_t igd_dev = PCI_DEV(0, 2, 0);
41
42 u16 reg16;
43 u32 reg32;
44
45 printk(BIOS_DEBUG, "Enabling IGD.\n");
46
47 /* HSync/VSync */
48 MCHBAR8(0xbd0 + 3) = 0x5a;
49 MCHBAR8(0xbd0 + 4) = 0x5a;
50
51 static const u16 display_clock_from_f0_and_vco[][4] = {
52 /* VCO 2666 VCO 3200 VCO 4000 VCO 5333 */
53 { 222, 228, 222, 222, },
54 { 333, 320, 333, 333, },
55 };
56 const int f0_12 = (pci_read_config16(igd_dev, 0xf0) >> 12) & 1;
57 const int vco = raminit_read_vco_index();
58 reg16 = pci_read_config16(igd_dev, 0xcc);
59 reg16 &= 0xfc00;
60 reg16 |= display_clock_from_f0_and_vco[f0_12][vco];
61 pci_write_config16(igd_dev, 0xcc, reg16);
62
63 /* Graphics Stolen Memory: 2MB GTT (0x0300) when VT-d disabled,
64 2MB GTT + 2MB shadow GTT (0x0b00) else. */
65 /* Graphics Mode Select: 32MB framebuffer (0x0050) */
66 /* TODO: We could switch to 64MB (0x0070), config flag? */
67 const u32 capid = pci_read_config32(mch_dev, D0F0_CAPID0 + 4);
68 reg16 = pci_read_config16(mch_dev, D0F0_GGC);
69 reg16 &= 0xf00f;
70 reg16 |= 0x0350;
71 if (capid & (1 << (48 - 32)))
72 reg16 |= 0x0800;
73 pci_write_config16(mch_dev, D0F0_GGC, reg16);
74
75 if ((sysinfo->gfx_type != GMCH_GL40) &&
76 (sysinfo->gfx_type != GMCH_GS40) &&
77 (sysinfo->gfx_type != GMCH_GL43)) {
78 const u32 deven = pci_read_config32(mch_dev, D0F0_DEVEN);
79 if (!(deven & 2))
80 /* Enable PEG temporarily to access D1:F0. */
81 pci_write_config32(mch_dev, D0F0_DEVEN, deven | 2);
82
83 /* Some IGD related settings on D1:F0. */
84 reg16 = pci_read_config16(peg_dev, 0xa08);
85 reg16 &= ~(1 << 15);
86 pci_write_config16(peg_dev, 0xa08, reg16);
87
88 reg16 = pci_read_config16(peg_dev, 0xa84);
89 reg16 |= (1 << 8);
90 pci_write_config16(peg_dev, 0xa84, reg16);
91
92 reg16 = pci_read_config16(peg_dev, 0xb00);
93 reg16 |= (3 << 8) | (7 << 3);
94 pci_write_config16(peg_dev, 0xb00, reg16);
95
96 reg32 = pci_read_config32(peg_dev, 0xb14);
97 reg32 &= ~(1 << 17);
98 pci_write_config32(peg_dev, 0xb14, reg32);
99
100 if (!(deven & 2) || no_peg) {
101 /* Disable PEG finally. */
102 printk(BIOS_DEBUG, "Finally disabling "
103 "PEG in favor of IGD.\n");
104 MCHBAR8(0xc14) |= (1 << 5) | (1 << 0);
105
106 reg32 = pci_read_config32(peg_dev, 0x200);
107 reg32 |= (1 << 18);
108 pci_write_config32(peg_dev, 0x200, reg32);
109 reg16 = pci_read_config16(peg_dev, 0x224);
110 reg16 |= (1 << 8);
111 pci_write_config16(peg_dev, 0x224, reg16);
112 reg32 = pci_read_config32(peg_dev, 0x200);
113 reg32 &= ~(1 << 18);
114 pci_write_config32(peg_dev, 0x200, reg32);
115 while (pci_read_config32(peg_dev, 0x214) & 0x000f0000);
116
117 pci_write_config32(mch_dev, D0F0_DEVEN, deven & ~2);
118 MCHBAR8(0xc14) &= ~((1 << 5) | (1 << 0));
119 }
120 }
121}
122
123static void disable_igd(const sysinfo_t *const sysinfo)
124{
125 const device_t mch_dev = PCI_DEV(0, 0, 0);
126
127 printk(BIOS_DEBUG, "Disabling IGD.\n");
128
129 u16 reg16;
130
131 reg16 = pci_read_config16(mch_dev, D0F0_GGC);
132 reg16 &= 0xff0f; /* Disable Graphics Stolen Memory. */
133 reg16 |= 0x0002; /* Disable IGD. */
134 pci_write_config16(mch_dev, D0F0_GGC, reg16);
135 MCHBAR8(0xf10) |= (1 << 0);
136
137 if (!(pci_read_config8(mch_dev, D0F0_CAPID0 + 4) & (1 << (33 - 32)))) {
138 MCHBAR16(0x1190) |= (1 << 14);
139 MCHBAR16(0x119e) = (MCHBAR16(0x119e) & ~(7 << 13)) | (4 << 13);
140 MCHBAR16(0x119e) |= (1 << 12);
141 }
142}
143
144void init_igd(const sysinfo_t *const sysinfo,
145 const int no_igd, const int no_peg)
146{
147 const device_t mch_dev = PCI_DEV(0, 0, 0);
148
149 const u8 capid = pci_read_config8(mch_dev, D0F0_CAPID0 + 4);
150 if (no_igd || (capid & (1 << (33 - 32))))
151 disable_igd(sysinfo);
152 else
153 enable_igd(sysinfo, no_peg);
154}