blob: 1c7aff9ea581f877a92f9a910b38d54a5a3d4f2b [file] [log] [blame]
Aaron Durbin76c37002012-10-30 09:03:43 -05001/*
2 * This file is part of the coreboot project.
3 *
Ronald G. Minnich4f78b182013-04-17 16:57:30 -07004 * Copyright 2012 Google Inc.
Aaron Durbin76c37002012-10-30 09:03:43 -05005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; version 2 of the License.
9 *
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
Aaron Durbin76c37002012-10-30 09:03:43 -050014 */
15
16#include <arch/io.h>
17#include <console/console.h>
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +020018#include <bootmode.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050019#include <delay.h>
20#include <device/device.h>
21#include <device/pci.h>
22#include <device/pci_ids.h>
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -070023#include <drivers/intel/gma/i915_reg.h>
Furquan Shaikh77f48cd2013-08-19 10:16:50 -070024#include <drivers/intel/gma/i915.h>
Duncan Laurie356833d2013-07-09 15:40:27 -070025#include <cpu/intel/haswell/haswell.h>
Furquan Shaikh77f48cd2013-08-19 10:16:50 -070026#include <stdlib.h>
Ronald G. Minnich9518b562013-09-19 16:45:22 -070027#include <string.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050028
29#include "chip.h"
30#include "haswell.h"
31
Furquan Shaikhcb61ea72013-08-15 15:23:58 -070032#if CONFIG_CHROMEOS
33#include <vendorcode/google/chromeos/chromeos.h>
34#endif
35
Duncan Laurie356833d2013-07-09 15:40:27 -070036struct gt_reg {
37 u32 reg;
38 u32 andmask;
39 u32 ormask;
40};
41
42static const struct gt_reg haswell_gt_setup[] = {
43 /* Enable Counters */
44 { 0x0a248, 0x00000000, 0x00000016 },
45 { 0x0a000, 0x00000000, 0x00070020 },
46 { 0x0a180, 0xff3fffff, 0x15000000 },
47 /* Enable DOP Clock Gating */
48 { 0x09424, 0x00000000, 0x000003fd },
49 /* Enable Unit Level Clock Gating */
50 { 0x09400, 0x00000000, 0x00000080 },
51 { 0x09404, 0x00000000, 0x40401000 },
52 { 0x09408, 0x00000000, 0x00000000 },
53 { 0x0940c, 0x00000000, 0x02000001 },
54 { 0x0a008, 0x00000000, 0x08000000 },
55 /* Wake Rate Limits */
56 { 0x0a090, 0xffffffff, 0x00000000 },
57 { 0x0a098, 0xffffffff, 0x03e80000 },
58 { 0x0a09c, 0xffffffff, 0x00280000 },
59 { 0x0a0a8, 0xffffffff, 0x0001e848 },
60 { 0x0a0ac, 0xffffffff, 0x00000019 },
61 /* Render/Video/Blitter Idle Max Count */
62 { 0x02054, 0x00000000, 0x0000000a },
63 { 0x12054, 0x00000000, 0x0000000a },
64 { 0x22054, 0x00000000, 0x0000000a },
65 /* RC Sleep / RCx Thresholds */
66 { 0x0a0b0, 0xffffffff, 0x00000000 },
67 { 0x0a0b4, 0xffffffff, 0x000003e8 },
68 { 0x0a0b8, 0xffffffff, 0x0000c350 },
69 /* RP Settings */
70 { 0x0a010, 0xffffffff, 0x000f4240 },
71 { 0x0a014, 0xffffffff, 0x12060000 },
72 { 0x0a02c, 0xffffffff, 0x0000e808 },
73 { 0x0a030, 0xffffffff, 0x0003bd08 },
74 { 0x0a068, 0xffffffff, 0x000101d0 },
75 { 0x0a06c, 0xffffffff, 0x00055730 },
76 { 0x0a070, 0xffffffff, 0x0000000a },
77 /* RP Control */
78 { 0x0a024, 0x00000000, 0x00000b92 },
79 /* HW RC6 Control */
80 { 0x0a090, 0x00000000, 0x88040000 },
81 /* Video Frequency Request */
82 { 0x0a00c, 0x00000000, 0x08000000 },
83 { 0 },
84};
85
86static const struct gt_reg haswell_gt_lock[] = {
87 { 0x0a248, 0xffffffff, 0x80000000 },
88 { 0x0a004, 0xffffffff, 0x00000010 },
89 { 0x0a080, 0xffffffff, 0x00000004 },
90 { 0x0a180, 0xffffffff, 0x80000000 },
91 { 0 },
92};
93
Aaron Durbin76c37002012-10-30 09:03:43 -050094/* some vga option roms are used for several chipsets but they only have one
95 * PCI ID in their header. If we encounter such an option rom, we need to do
96 * the mapping ourselfes
97 */
98
99u32 map_oprom_vendev(u32 vendev)
100{
Elyes HAOUAS69d658f2016-09-17 20:32:07 +0200101 u32 new_vendev = vendev;
Aaron Durbin76c37002012-10-30 09:03:43 -0500102
103 switch (vendev) {
Aaron Durbin71161292012-12-13 16:43:32 -0600104 case 0x80860402: /* GT1 Desktop */
105 case 0x80860406: /* GT1 Mobile */
106 case 0x8086040a: /* GT1 Server */
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800107 case 0x80860a06: /* GT1 ULT */
Aaron Durbin71161292012-12-13 16:43:32 -0600108
109 case 0x80860412: /* GT2 Desktop */
110 case 0x80860416: /* GT2 Mobile */
111 case 0x8086041a: /* GT2 Server */
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800112 case 0x80860a16: /* GT2 ULT */
Aaron Durbin71161292012-12-13 16:43:32 -0600113
114 case 0x80860422: /* GT3 Desktop */
115 case 0x80860426: /* GT3 Mobile */
116 case 0x8086042a: /* GT3 Server */
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800117 case 0x80860a26: /* GT3 ULT */
Aaron Durbin71161292012-12-13 16:43:32 -0600118
Elyes HAOUAS69d658f2016-09-17 20:32:07 +0200119 new_vendev = 0x80860406; /* GT1 Mobile */
Aaron Durbin76c37002012-10-30 09:03:43 -0500120 break;
121 }
122
123 return new_vendev;
124}
125
Ronald G. Minnich4c8465c2013-09-30 15:57:21 -0700126/* GTT is the Global Translation Table for the graphics pipeline.
127 * It is used to translate graphics addresses to physical
128 * memory addresses. As in the CPU, GTTs map 4K pages.
129 * The setgtt function adds a further bit of flexibility:
130 * it allows you to set a range (the first two parameters) to point
131 * to a physical address (third parameter);the physical address is
132 * incremented by a count (fourth parameter) for each GTT in the
133 * range.
134 * Why do it this way? For ultrafast startup,
135 * we can point all the GTT entries to point to one page,
136 * and set that page to 0s:
137 * memset(physbase, 0, 4096);
138 * setgtt(0, 4250, physbase, 0);
139 * this takes about 2 ms, and is a win because zeroing
140 * the page takes a up to 200 ms.
141 * This call sets the GTT to point to a linear range of pages
142 * starting at physbase.
143 */
144
145#define GTT_PTE_BASE (2 << 20)
146
147void
148set_translation_table(int start, int end, u64 base, int inc)
149{
150 int i;
151
Elyes HAOUAS12df9502016-08-23 21:29:48 +0200152 for (i = start; i < end; i++){
Ronald G. Minnich4c8465c2013-09-30 15:57:21 -0700153 u64 physical_address = base + i*inc;
154 /* swizzle the 32:39 bits to 4:11 */
155 u32 word = physical_address | ((physical_address >> 28) & 0xff0) | 1;
156 /* note: we've confirmed by checking
157 * the values that mrc does no
158 * useful setup before we run this.
159 */
160 gtt_write(GTT_PTE_BASE + i * 4, word);
161 gtt_read(GTT_PTE_BASE + i * 4);
162 }
163}
164
Aaron Durbin76c37002012-10-30 09:03:43 -0500165static struct resource *gtt_res = NULL;
166
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700167u32 gtt_read(u32 reg)
Aaron Durbin76c37002012-10-30 09:03:43 -0500168{
Ronald G. Minnich9518b562013-09-19 16:45:22 -0700169 u32 val;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800170 val = read32(res2mmio(gtt_res, reg, 0));
Ronald G. Minnich9518b562013-09-19 16:45:22 -0700171 return val;
172
Aaron Durbin76c37002012-10-30 09:03:43 -0500173}
174
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700175void gtt_write(u32 reg, u32 data)
Aaron Durbin76c37002012-10-30 09:03:43 -0500176{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800177 write32(res2mmio(gtt_res, reg, 0), data);
Aaron Durbin76c37002012-10-30 09:03:43 -0500178}
179
Duncan Laurie356833d2013-07-09 15:40:27 -0700180static inline void gtt_rmw(u32 reg, u32 andmask, u32 ormask)
181{
182 u32 val = gtt_read(reg);
183 val &= andmask;
184 val |= ormask;
185 gtt_write(reg, val);
186}
187
188static inline void gtt_write_regs(const struct gt_reg *gt)
189{
190 for (; gt && gt->reg; gt++) {
191 if (gt->andmask)
192 gtt_rmw(gt->reg, gt->andmask, gt->ormask);
193 else
194 gtt_write(gt->reg, gt->ormask);
195 }
196}
197
Aaron Durbin76c37002012-10-30 09:03:43 -0500198#define GTT_RETRY 1000
Ronald G. Minnich9518b562013-09-19 16:45:22 -0700199int gtt_poll(u32 reg, u32 mask, u32 value)
Aaron Durbin76c37002012-10-30 09:03:43 -0500200{
201 unsigned try = GTT_RETRY;
202 u32 data;
203
204 while (try--) {
205 data = gtt_read(reg);
206 if ((data & mask) == value)
207 return 1;
208 udelay(10);
209 }
210
211 printk(BIOS_ERR, "GT init timeout\n");
212 return 0;
213}
214
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -0700215static void power_well_enable(void)
216{
217 gtt_write(HSW_PWR_WELL_CTL1, HSW_PWR_WELL_ENABLE);
218 gtt_poll(HSW_PWR_WELL_CTL1, HSW_PWR_WELL_STATE, HSW_PWR_WELL_STATE);
Ronald G. Minnich9518b562013-09-19 16:45:22 -0700219#if CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT
220 /* In the native graphics case, we've got about 20 ms.
221 * after we power up the the AUX channel until we can talk to it.
222 * So get that going right now. We can't turn on the panel, yet, just VDD.
223 */
224 gtt_write(PCH_PP_CONTROL, PCH_PP_UNLOCK| EDP_FORCE_VDD | PANEL_POWER_RESET);
225#endif
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -0700226}
227
Aaron Durbin76c37002012-10-30 09:03:43 -0500228static void gma_pm_init_pre_vbios(struct device *dev)
229{
Aaron Durbin76c37002012-10-30 09:03:43 -0500230 printk(BIOS_DEBUG, "GT Power Management Init\n");
231
232 gtt_res = find_resource(dev, PCI_BASE_ADDRESS_0);
233 if (!gtt_res || !gtt_res->base)
234 return;
235
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -0700236 power_well_enable();
237
Duncan Laurie67113e92013-01-10 13:23:04 -0800238 /*
239 * Enable RC6
240 */
Aaron Durbin76c37002012-10-30 09:03:43 -0500241
Duncan Laurie67113e92013-01-10 13:23:04 -0800242 /* Enable Force Wake */
243 gtt_write(0x0a180, 1 << 5);
244 gtt_write(0x0a188, 0x00010001);
Edward O'Callaghan986e85c2014-10-29 12:15:34 +1100245 gtt_poll(FORCEWAKE_ACK_HSW, 1 << 0, 1 << 0);
Aaron Durbin76c37002012-10-30 09:03:43 -0500246
Duncan Laurie356833d2013-07-09 15:40:27 -0700247 /* GT Settings */
248 gtt_write_regs(haswell_gt_setup);
Aaron Durbin76c37002012-10-30 09:03:43 -0500249
Duncan Laurie356833d2013-07-09 15:40:27 -0700250 /* Wait for Mailbox Ready */
251 gtt_poll(0x138124, (1 << 31), (0 << 31));
252 /* Mailbox Data - RC6 VIDS */
253 gtt_write(0x138128, 0x00000000);
254 /* Mailbox Command */
255 gtt_write(0x138124, 0x80000004);
256 /* Wait for Mailbox Ready */
257 gtt_poll(0x138124, (1 << 31), (0 << 31));
Aaron Durbin76c37002012-10-30 09:03:43 -0500258
Duncan Laurie356833d2013-07-09 15:40:27 -0700259 /* Enable PM Interrupts */
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700260 gtt_write(GEN6_PMIER, GEN6_PM_MBOX_EVENT | GEN6_PM_THERMAL_EVENT |
261 GEN6_PM_RP_DOWN_TIMEOUT | GEN6_PM_RP_UP_THRESHOLD |
262 GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_UP_EI_EXPIRED |
263 GEN6_PM_RP_DOWN_EI_EXPIRED);
Aaron Durbin76c37002012-10-30 09:03:43 -0500264
Duncan Laurie67113e92013-01-10 13:23:04 -0800265 /* Enable RC6 in idle */
266 gtt_write(0x0a094, 0x00040000);
Duncan Laurie356833d2013-07-09 15:40:27 -0700267
268 /* PM Lock Settings */
269 gtt_write_regs(haswell_gt_lock);
Aaron Durbin76c37002012-10-30 09:03:43 -0500270}
271
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700272static void init_display_planes(void)
273{
274 int pipe, plane;
275
276 /* Disable cursor mode */
277 for (pipe = PIPE_A; pipe <= PIPE_C; pipe++) {
278 gtt_write(CURCNTR_IVB(pipe), CURSOR_MODE_DISABLE);
279 gtt_write(CURBASE_IVB(pipe), 0x00000000);
280 }
281
282 /* Disable primary plane and set surface base address*/
283 for (plane = PLANE_A; plane <= PLANE_C; plane++) {
284 gtt_write(DSPCNTR(plane), DISPLAY_PLANE_DISABLE);
285 gtt_write(DSPSURF(plane), 0x00000000);
286 }
287
288 /* Disable VGA display */
289 gtt_write(CPU_VGACNTRL, CPU_VGA_DISABLE);
290}
291
Duncan Lauriec7f2ab72013-05-28 07:49:09 -0700292static void gma_setup_panel(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500293{
294 struct northbridge_intel_haswell_config *conf = dev->chip_info;
295 u32 reg32;
296
297 printk(BIOS_DEBUG, "GT Power Management Init (post VBIOS)\n");
298
Aaron Durbin76c37002012-10-30 09:03:43 -0500299 /* Setup Digital Port Hotplug */
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700300 reg32 = gtt_read(PCH_PORT_HOTPLUG);
Aaron Durbin76c37002012-10-30 09:03:43 -0500301 if (!reg32) {
302 reg32 = (conf->gpu_dp_b_hotplug & 0x7) << 2;
303 reg32 |= (conf->gpu_dp_c_hotplug & 0x7) << 10;
304 reg32 |= (conf->gpu_dp_d_hotplug & 0x7) << 18;
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700305 gtt_write(PCH_PORT_HOTPLUG, reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -0500306 }
307
308 /* Setup Panel Power On Delays */
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700309 reg32 = gtt_read(PCH_PP_ON_DELAYS);
Aaron Durbin76c37002012-10-30 09:03:43 -0500310 if (!reg32) {
311 reg32 = (conf->gpu_panel_port_select & 0x3) << 30;
312 reg32 |= (conf->gpu_panel_power_up_delay & 0x1fff) << 16;
313 reg32 |= (conf->gpu_panel_power_backlight_on_delay & 0x1fff);
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700314 gtt_write(PCH_PP_ON_DELAYS, reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -0500315 }
316
317 /* Setup Panel Power Off Delays */
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700318 reg32 = gtt_read(PCH_PP_OFF_DELAYS);
Aaron Durbin76c37002012-10-30 09:03:43 -0500319 if (!reg32) {
320 reg32 = (conf->gpu_panel_power_down_delay & 0x1fff) << 16;
321 reg32 |= (conf->gpu_panel_power_backlight_off_delay & 0x1fff);
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700322 gtt_write(PCH_PP_OFF_DELAYS, reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -0500323 }
324
325 /* Setup Panel Power Cycle Delay */
326 if (conf->gpu_panel_power_cycle_delay) {
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700327 reg32 = gtt_read(PCH_PP_DIVISOR);
Aaron Durbin76c37002012-10-30 09:03:43 -0500328 reg32 &= ~0xff;
329 reg32 |= conf->gpu_panel_power_cycle_delay & 0xff;
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700330 gtt_write(PCH_PP_DIVISOR, reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -0500331 }
332
333 /* Enable Backlight if needed */
334 if (conf->gpu_cpu_backlight) {
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700335 gtt_write(BLC_PWM_CPU_CTL2, BLC_PWM2_ENABLE);
336 gtt_write(BLC_PWM_CPU_CTL, conf->gpu_cpu_backlight);
Aaron Durbin76c37002012-10-30 09:03:43 -0500337 }
338 if (conf->gpu_pch_backlight) {
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700339 gtt_write(BLC_PWM_PCH_CTL1, BLM_PCH_PWM_ENABLE);
340 gtt_write(BLC_PWM_PCH_CTL2, conf->gpu_pch_backlight);
Aaron Durbin76c37002012-10-30 09:03:43 -0500341 }
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -0700342
343 /* Get display,pipeline,and DDI registers into a basic sane state */
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700344 power_well_enable();
345
346 init_display_planes();
347
348 /* DDI-A params set:
349 bit 0: Display detected (RO)
350 bit 4: DDI A supports 4 lanes and DDI E is not used
351 bit 7: DDI buffer is idle
352 */
353 gtt_write(DDI_BUF_CTL_A, DDI_BUF_IS_IDLE | DDI_A_4_LANES | DDI_INIT_DISPLAY_DETECTED);
354
355 /* Set FDI registers - is this required? */
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -0700356 gtt_write(_FDI_RXA_MISC, 0x00200090);
357 gtt_write(_FDI_RXA_MISC, 0x0a000000);
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700358
359 /* Enable the handshake with PCH display when processing reset */
360 gtt_write(NDE_RSTWRN_OPT, RST_PCH_HNDSHK_EN);
361
362 /* undocumented */
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -0700363 gtt_write(0x42090, 0x04000000);
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -0700364 gtt_write(0x9840, 0x00000000);
365 gtt_write(0x42090, 0xa4000000);
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700366
367 gtt_write(SOUTH_DSPCLK_GATE_D, PCH_LP_PARTITION_LEVEL_DISABLE);
368
369 /* undocumented */
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -0700370 gtt_write(0x42080, 0x00004000);
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700371
372 /* Prepare DDI buffers for DP and FDI */
373 intel_prepare_ddi();
374
375 /* Hot plug detect buffer enabled for port A */
376 gtt_write(DIGITAL_PORT_HOTPLUG_CNTRL, DIGITAL_PORTA_HOTPLUG_ENABLE);
377
378 /* Enable HPD buffer for digital port D and B */
379 gtt_write(PCH_PORT_HOTPLUG, PORTD_HOTPLUG_ENABLE | PORTB_HOTPLUG_ENABLE);
380
381 /* Bits 4:0 - Power cycle delay (default 0x6 --> 500ms)
382 Bits 31:8 - Reference divider (0x0004af ----> 24MHz)
383 */
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -0700384 gtt_write(PCH_PP_DIVISOR, 0x0004af06);
Aaron Durbin76c37002012-10-30 09:03:43 -0500385}
386
Duncan Lauriec7f2ab72013-05-28 07:49:09 -0700387static void gma_pm_init_post_vbios(struct device *dev)
388{
Duncan Laurie356833d2013-07-09 15:40:27 -0700389 int cdclk = 0;
390 int devid = pci_read_config16(dev, PCI_DEVICE_ID);
391 int gpu_is_ulx = 0;
392
393 if (devid == 0x0a0e || devid == 0x0a1e)
394 gpu_is_ulx = 1;
395
396 /* CD Frequency */
Duncan Laurie3106d0f2013-08-12 13:51:22 -0700397 if ((gtt_read(0x42014) & 0x1000000) || gpu_is_ulx || haswell_is_ult())
398 cdclk = 0; /* fixed frequency */
399 else
400 cdclk = 2; /* variable frequency */
Duncan Laurie356833d2013-07-09 15:40:27 -0700401
Duncan Laurie356833d2013-07-09 15:40:27 -0700402 if (gpu_is_ulx || cdclk != 0)
403 gtt_rmw(0x130040, 0xf7ffffff, 0x04000000);
404 else
405 gtt_rmw(0x130040, 0xf3ffffff, 0x00000000);
406
407 /* More magic */
408 if (haswell_is_ult() || gpu_is_ulx) {
Duncan Laurie3106d0f2013-08-12 13:51:22 -0700409 if (!gpu_is_ulx)
Duncan Laurie356833d2013-07-09 15:40:27 -0700410 gtt_write(0x138128, 0x00000000);
411 else
412 gtt_write(0x138128, 0x00000001);
413 gtt_write(0x13812c, 0x00000000);
414 gtt_write(0x138124, 0x80000017);
415 }
416
Duncan Lauriec7f2ab72013-05-28 07:49:09 -0700417 /* Disable Force Wake */
418 gtt_write(0x0a188, 0x00010000);
Edward O'Callaghan986e85c2014-10-29 12:15:34 +1100419 gtt_poll(FORCEWAKE_ACK_HSW, 1 << 0, 0 << 0);
Duncan Laurie356833d2013-07-09 15:40:27 -0700420 gtt_write(0x0a188, 0x00000001);
Duncan Lauriec7f2ab72013-05-28 07:49:09 -0700421}
422
Aaron Durbin76c37002012-10-30 09:03:43 -0500423static void gma_func0_init(struct device *dev)
424{
Ronald G. Minnich3a75e5e2013-10-28 15:01:54 -0700425#if CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT
426 struct northbridge_intel_haswell_config *conf = dev->chip_info;
427 struct intel_dp dp;
428#endif
429
Ronald G. Minnich4f78b182013-04-17 16:57:30 -0700430 int lightup_ok = 0;
Aaron Durbin76c37002012-10-30 09:03:43 -0500431 u32 reg32;
Aaron Durbin76c37002012-10-30 09:03:43 -0500432 /* IGD needs to be Bus Master */
433 reg32 = pci_read_config32(dev, PCI_COMMAND);
434 reg32 |= PCI_COMMAND_MASTER | PCI_COMMAND_MEMORY | PCI_COMMAND_IO;
435 pci_write_config32(dev, PCI_COMMAND, reg32);
436
437 /* Init graphics power management */
438 gma_pm_init_pre_vbios(dev);
439
Duncan Lauriec7f2ab72013-05-28 07:49:09 -0700440 /* Post VBIOS init */
441 gma_setup_panel(dev);
442
Ronald G. Minnich2a66d6b2013-03-28 17:01:43 -0700443#if CONFIG_MAINBOARD_DO_NATIVE_VGA_INIT
444 printk(BIOS_SPEW, "NATIVE graphics, run native enable\n");
Furquan Shaikhcb61ea72013-08-15 15:23:58 -0700445 /* Default set to 1 since it might be required for
446 stuff like seabios */
447 unsigned int init_fb = 1;
Ronald G. Minnich3a75e5e2013-10-28 15:01:54 -0700448
449 /* the BAR for graphics space is a well known number for
450 * sandy and ivy. And the resource code renumbers it.
451 * So it's almost like having two hardcodes.
452 */
453 dp.graphics = (void *)((uintptr_t)dev->resource_list[1].base);
454 dp.physbase = pci_read_config32(dev, 0x5c) & ~0xf;
455 dp.panel_power_down_delay = conf->gpu_panel_power_down_delay;
456 dp.panel_power_up_delay = conf->gpu_panel_power_up_delay;
457 dp.panel_power_cycle_delay = conf->gpu_panel_power_cycle_delay;
458
Martin Rothc4e49f62015-07-11 13:42:54 -0600459#if IS_ENABLED(CONFIG_CHROMEOS)
Furquan Shaikh0325dc62016-07-25 13:02:36 -0700460 init_fb = display_init_required();
Furquan Shaikhcb61ea72013-08-15 15:23:58 -0700461#endif
Ronald G. Minnich3a75e5e2013-10-28 15:01:54 -0700462 lightup_ok = panel_lightup(&dp, init_fb);
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +0200463 gfx_set_init_done(1);
Ronald G. Minnich2a66d6b2013-03-28 17:01:43 -0700464#endif
Ronald G. Minnich4f78b182013-04-17 16:57:30 -0700465 if (! lightup_ok) {
466 printk(BIOS_SPEW, "FUI did not run; using VBIOS\n");
Stefan Reinauerf1aabec2014-01-22 15:16:30 -0800467 mdelay(CONFIG_PRE_GRAPHICS_DELAY);
Ronald G. Minnich4f78b182013-04-17 16:57:30 -0700468 pci_dev_init(dev);
469 }
470
471 /* Post VBIOS init */
472 gma_pm_init_post_vbios(dev);
Aaron Durbin76c37002012-10-30 09:03:43 -0500473}
474
475static void gma_set_subsystem(device_t dev, unsigned vendor, unsigned device)
476{
477 if (!vendor || !device) {
478 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
479 pci_read_config32(dev, PCI_VENDOR_ID));
480 } else {
481 pci_write_config32(dev, PCI_SUBSYSTEM_VENDOR_ID,
482 ((device & 0xffff) << 16) | (vendor & 0xffff));
483 }
484}
485
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +0100486const struct i915_gpu_controller_info *
487intel_gma_get_controller_info(void)
488{
489 device_t dev = dev_find_slot(0, PCI_DEVFN(0x2,0));
490 if (!dev) {
491 return NULL;
492 }
493 struct northbridge_intel_haswell_config *chip = dev->chip_info;
494 return &chip->gfx;
495}
496
Alexander Couzens5eea4582015-04-12 22:18:55 +0200497static void gma_ssdt(device_t device)
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +0100498{
499 const struct i915_gpu_controller_info *gfx = intel_gma_get_controller_info();
500 if (!gfx) {
501 return;
502 }
503
504 drivers_intel_gma_displays_ssdt_generate(gfx);
505}
506
Aaron Durbin76c37002012-10-30 09:03:43 -0500507static struct pci_operations gma_pci_ops = {
508 .set_subsystem = gma_set_subsystem,
509};
510
511static struct device_operations gma_func0_ops = {
Vladimir Serbinenko30fe6122014-02-05 23:25:28 +0100512 .read_resources = pci_dev_read_resources,
Aaron Durbin76c37002012-10-30 09:03:43 -0500513 .set_resources = pci_dev_set_resources,
514 .enable_resources = pci_dev_enable_resources,
515 .init = gma_func0_init,
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +0100516 .acpi_fill_ssdt_generator = gma_ssdt,
Aaron Durbin76c37002012-10-30 09:03:43 -0500517 .scan_bus = 0,
518 .enable = 0,
519 .ops_pci = &gma_pci_ops,
520};
521
Duncan Lauriedf7be712012-12-17 11:22:57 -0800522static const unsigned short pci_device_ids[] = {
523 0x0402, /* Desktop GT1 */
524 0x0412, /* Desktop GT2 */
525 0x0422, /* Desktop GT3 */
526 0x0406, /* Mobile GT1 */
527 0x0416, /* Mobile GT2 */
528 0x0426, /* Mobile GT3 */
529 0x0d16, /* Mobile 4+3 GT1 */
530 0x0d26, /* Mobile 4+3 GT2 */
531 0x0d36, /* Mobile 4+3 GT3 */
532 0x0a06, /* ULT GT1 */
533 0x0a16, /* ULT GT2 */
534 0x0a26, /* ULT GT3 */
535 0,
536};
Aaron Durbin76c37002012-10-30 09:03:43 -0500537
538static const struct pci_driver pch_lpc __pci_driver = {
539 .ops = &gma_func0_ops,
540 .vendor = PCI_VENDOR_ID_INTEL,
541 .devices = pci_device_ids,
542};