blob: 21053ec1c0493cfc810daf4675c5460843e58565 [file] [log] [blame]
Angel Pons4b429832020-04-02 23:48:50 +02001/* SPDX-License-Identifier: GPL-2.0-only */
Aaron Durbin76c37002012-10-30 09:03:43 -05002
Nico Huberc2e46422020-03-23 01:22:49 +01003#include <commonlib/helpers.h>
Aaron Durbin76c37002012-10-30 09:03:43 -05004#include <arch/io.h>
Kyösti Mälkki13f66502019-03-03 08:01:05 +02005#include <device/mmio.h>
Kyösti Mälkkif1b58b72019-03-01 13:43:02 +02006#include <device/pci_ops.h>
Aaron Durbin76c37002012-10-30 09:03:43 -05007#include <console/console.h>
Kyösti Mälkkiab56b3b2013-11-28 16:44:51 +02008#include <bootmode.h>
Aaron Durbin76c37002012-10-30 09:03:43 -05009#include <delay.h>
10#include <device/device.h>
11#include <device/pci.h>
12#include <device/pci_ids.h>
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -070013#include <drivers/intel/gma/i915_reg.h>
Furquan Shaikh77f48cd2013-08-19 10:16:50 -070014#include <drivers/intel/gma/i915.h>
Nico Huber18228162017-06-08 16:31:57 +020015#include <drivers/intel/gma/libgfxinit.h>
Duncan Laurie356833d2013-07-09 15:40:27 -070016#include <cpu/intel/haswell/haswell.h>
Matt DeVillierebe08e02017-07-14 13:28:42 -050017#include <drivers/intel/gma/opregion.h>
Ronald G. Minnich9518b562013-09-19 16:45:22 -070018#include <string.h>
Elyes HAOUAS51401c32019-05-15 21:09:30 +020019#include <types.h>
Aaron Durbin76c37002012-10-30 09:03:43 -050020
21#include "chip.h"
22#include "haswell.h"
23
Duncan Laurie356833d2013-07-09 15:40:27 -070024struct gt_reg {
25 u32 reg;
26 u32 andmask;
27 u32 ormask;
28};
29
30static const struct gt_reg haswell_gt_setup[] = {
31 /* Enable Counters */
32 { 0x0a248, 0x00000000, 0x00000016 },
33 { 0x0a000, 0x00000000, 0x00070020 },
34 { 0x0a180, 0xff3fffff, 0x15000000 },
35 /* Enable DOP Clock Gating */
36 { 0x09424, 0x00000000, 0x000003fd },
37 /* Enable Unit Level Clock Gating */
38 { 0x09400, 0x00000000, 0x00000080 },
39 { 0x09404, 0x00000000, 0x40401000 },
40 { 0x09408, 0x00000000, 0x00000000 },
41 { 0x0940c, 0x00000000, 0x02000001 },
42 { 0x0a008, 0x00000000, 0x08000000 },
43 /* Wake Rate Limits */
44 { 0x0a090, 0xffffffff, 0x00000000 },
45 { 0x0a098, 0xffffffff, 0x03e80000 },
46 { 0x0a09c, 0xffffffff, 0x00280000 },
47 { 0x0a0a8, 0xffffffff, 0x0001e848 },
48 { 0x0a0ac, 0xffffffff, 0x00000019 },
49 /* Render/Video/Blitter Idle Max Count */
50 { 0x02054, 0x00000000, 0x0000000a },
51 { 0x12054, 0x00000000, 0x0000000a },
52 { 0x22054, 0x00000000, 0x0000000a },
53 /* RC Sleep / RCx Thresholds */
54 { 0x0a0b0, 0xffffffff, 0x00000000 },
55 { 0x0a0b4, 0xffffffff, 0x000003e8 },
56 { 0x0a0b8, 0xffffffff, 0x0000c350 },
57 /* RP Settings */
58 { 0x0a010, 0xffffffff, 0x000f4240 },
59 { 0x0a014, 0xffffffff, 0x12060000 },
60 { 0x0a02c, 0xffffffff, 0x0000e808 },
61 { 0x0a030, 0xffffffff, 0x0003bd08 },
62 { 0x0a068, 0xffffffff, 0x000101d0 },
63 { 0x0a06c, 0xffffffff, 0x00055730 },
64 { 0x0a070, 0xffffffff, 0x0000000a },
65 /* RP Control */
66 { 0x0a024, 0x00000000, 0x00000b92 },
67 /* HW RC6 Control */
68 { 0x0a090, 0x00000000, 0x88040000 },
69 /* Video Frequency Request */
70 { 0x0a00c, 0x00000000, 0x08000000 },
71 { 0 },
72};
73
74static const struct gt_reg haswell_gt_lock[] = {
75 { 0x0a248, 0xffffffff, 0x80000000 },
76 { 0x0a004, 0xffffffff, 0x00000010 },
77 { 0x0a080, 0xffffffff, 0x00000004 },
78 { 0x0a180, 0xffffffff, 0x80000000 },
79 { 0 },
80};
81
Angel Pons1db5bc72020-01-15 00:49:03 +010082/*
83 * Some VGA option roms are used for several chipsets but they only have one PCI ID in their
84 * header. If we encounter such an option rom, we need to do the mapping ourselves.
Aaron Durbin76c37002012-10-30 09:03:43 -050085 */
86
87u32 map_oprom_vendev(u32 vendev)
88{
Elyes HAOUAS69d658f2016-09-17 20:32:07 +020089 u32 new_vendev = vendev;
Aaron Durbin76c37002012-10-30 09:03:43 -050090
91 switch (vendev) {
Aaron Durbin71161292012-12-13 16:43:32 -060092 case 0x80860402: /* GT1 Desktop */
93 case 0x80860406: /* GT1 Mobile */
94 case 0x8086040a: /* GT1 Server */
Duncan Laurie26e7dd72012-12-19 09:12:31 -080095 case 0x80860a06: /* GT1 ULT */
Aaron Durbin71161292012-12-13 16:43:32 -060096
97 case 0x80860412: /* GT2 Desktop */
98 case 0x80860416: /* GT2 Mobile */
99 case 0x8086041a: /* GT2 Server */
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800100 case 0x80860a16: /* GT2 ULT */
Aaron Durbin71161292012-12-13 16:43:32 -0600101
102 case 0x80860422: /* GT3 Desktop */
103 case 0x80860426: /* GT3 Mobile */
104 case 0x8086042a: /* GT3 Server */
Duncan Laurie26e7dd72012-12-19 09:12:31 -0800105 case 0x80860a26: /* GT3 ULT */
Aaron Durbin71161292012-12-13 16:43:32 -0600106
Iru Cai12a13e12020-05-22 22:57:03 +0800107 case 0x80860d22: /* GT3e Desktop */
108 case 0x80860d16: /* GT1 Mobile 4+3 */
109 case 0x80860d26: /* GT2 Mobile 4+3, GT3e Mobile */
110 case 0x80860d36: /* GT3 Mobile 4+3 */
111
Elyes HAOUAS69d658f2016-09-17 20:32:07 +0200112 new_vendev = 0x80860406; /* GT1 Mobile */
Aaron Durbin76c37002012-10-30 09:03:43 -0500113 break;
114 }
115
116 return new_vendev;
117}
118
119static struct resource *gtt_res = NULL;
120
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700121u32 gtt_read(u32 reg)
Aaron Durbin76c37002012-10-30 09:03:43 -0500122{
Ronald G. Minnich9518b562013-09-19 16:45:22 -0700123 u32 val;
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800124 val = read32(res2mmio(gtt_res, reg, 0));
Ronald G. Minnich9518b562013-09-19 16:45:22 -0700125 return val;
126
Aaron Durbin76c37002012-10-30 09:03:43 -0500127}
128
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700129void gtt_write(u32 reg, u32 data)
Aaron Durbin76c37002012-10-30 09:03:43 -0500130{
Kevin Paul Herbertbde6d302014-12-24 18:43:20 -0800131 write32(res2mmio(gtt_res, reg, 0), data);
Aaron Durbin76c37002012-10-30 09:03:43 -0500132}
133
Duncan Laurie356833d2013-07-09 15:40:27 -0700134static inline void gtt_rmw(u32 reg, u32 andmask, u32 ormask)
135{
136 u32 val = gtt_read(reg);
137 val &= andmask;
138 val |= ormask;
139 gtt_write(reg, val);
140}
141
142static inline void gtt_write_regs(const struct gt_reg *gt)
143{
144 for (; gt && gt->reg; gt++) {
145 if (gt->andmask)
146 gtt_rmw(gt->reg, gt->andmask, gt->ormask);
147 else
148 gtt_write(gt->reg, gt->ormask);
149 }
150}
151
Aaron Durbin76c37002012-10-30 09:03:43 -0500152#define GTT_RETRY 1000
Ronald G. Minnich9518b562013-09-19 16:45:22 -0700153int gtt_poll(u32 reg, u32 mask, u32 value)
Aaron Durbin76c37002012-10-30 09:03:43 -0500154{
Martin Roth468d02c2019-10-23 21:44:42 -0600155 unsigned int try = GTT_RETRY;
Aaron Durbin76c37002012-10-30 09:03:43 -0500156 u32 data;
157
158 while (try--) {
159 data = gtt_read(reg);
160 if ((data & mask) == value)
161 return 1;
Angel Pons1db5bc72020-01-15 00:49:03 +0100162
Aaron Durbin76c37002012-10-30 09:03:43 -0500163 udelay(10);
164 }
165
166 printk(BIOS_ERR, "GT init timeout\n");
167 return 0;
168}
169
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -0700170static void power_well_enable(void)
171{
172 gtt_write(HSW_PWR_WELL_CTL1, HSW_PWR_WELL_ENABLE);
173 gtt_poll(HSW_PWR_WELL_CTL1, HSW_PWR_WELL_STATE, HSW_PWR_WELL_STATE);
174}
175
Aaron Durbin76c37002012-10-30 09:03:43 -0500176static void gma_pm_init_pre_vbios(struct device *dev)
177{
Aaron Durbin76c37002012-10-30 09:03:43 -0500178 printk(BIOS_DEBUG, "GT Power Management Init\n");
179
180 gtt_res = find_resource(dev, PCI_BASE_ADDRESS_0);
181 if (!gtt_res || !gtt_res->base)
182 return;
183
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -0700184 power_well_enable();
185
Duncan Laurie67113e92013-01-10 13:23:04 -0800186 /*
187 * Enable RC6
188 */
Aaron Durbin76c37002012-10-30 09:03:43 -0500189
Duncan Laurie67113e92013-01-10 13:23:04 -0800190 /* Enable Force Wake */
191 gtt_write(0x0a180, 1 << 5);
192 gtt_write(0x0a188, 0x00010001);
Edward O'Callaghan986e85c2014-10-29 12:15:34 +1100193 gtt_poll(FORCEWAKE_ACK_HSW, 1 << 0, 1 << 0);
Aaron Durbin76c37002012-10-30 09:03:43 -0500194
Duncan Laurie356833d2013-07-09 15:40:27 -0700195 /* GT Settings */
196 gtt_write_regs(haswell_gt_setup);
Aaron Durbin76c37002012-10-30 09:03:43 -0500197
Duncan Laurie356833d2013-07-09 15:40:27 -0700198 /* Wait for Mailbox Ready */
Angel Ponsf5dd7b62020-10-24 12:24:19 +0200199 gtt_poll(0x138124, (1 << 31), (0 << 31));
Angel Pons1db5bc72020-01-15 00:49:03 +0100200
Duncan Laurie356833d2013-07-09 15:40:27 -0700201 /* Mailbox Data - RC6 VIDS */
202 gtt_write(0x138128, 0x00000000);
Angel Pons1db5bc72020-01-15 00:49:03 +0100203
Duncan Laurie356833d2013-07-09 15:40:27 -0700204 /* Mailbox Command */
205 gtt_write(0x138124, 0x80000004);
Angel Pons1db5bc72020-01-15 00:49:03 +0100206
Duncan Laurie356833d2013-07-09 15:40:27 -0700207 /* Wait for Mailbox Ready */
Angel Ponsf5dd7b62020-10-24 12:24:19 +0200208 gtt_poll(0x138124, (1 << 31), (0 << 31));
Aaron Durbin76c37002012-10-30 09:03:43 -0500209
Duncan Laurie356833d2013-07-09 15:40:27 -0700210 /* Enable PM Interrupts */
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700211 gtt_write(GEN6_PMIER, GEN6_PM_MBOX_EVENT | GEN6_PM_THERMAL_EVENT |
212 GEN6_PM_RP_DOWN_TIMEOUT | GEN6_PM_RP_UP_THRESHOLD |
213 GEN6_PM_RP_DOWN_THRESHOLD | GEN6_PM_RP_UP_EI_EXPIRED |
214 GEN6_PM_RP_DOWN_EI_EXPIRED);
Aaron Durbin76c37002012-10-30 09:03:43 -0500215
Duncan Laurie67113e92013-01-10 13:23:04 -0800216 /* Enable RC6 in idle */
217 gtt_write(0x0a094, 0x00040000);
Duncan Laurie356833d2013-07-09 15:40:27 -0700218
219 /* PM Lock Settings */
220 gtt_write_regs(haswell_gt_lock);
Aaron Durbin76c37002012-10-30 09:03:43 -0500221}
222
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700223static void init_display_planes(void)
224{
225 int pipe, plane;
226
227 /* Disable cursor mode */
228 for (pipe = PIPE_A; pipe <= PIPE_C; pipe++) {
229 gtt_write(CURCNTR_IVB(pipe), CURSOR_MODE_DISABLE);
230 gtt_write(CURBASE_IVB(pipe), 0x00000000);
231 }
232
Angel Pons1db5bc72020-01-15 00:49:03 +0100233 /* Disable primary plane and set surface base address */
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700234 for (plane = PLANE_A; plane <= PLANE_C; plane++) {
235 gtt_write(DSPCNTR(plane), DISPLAY_PLANE_DISABLE);
236 gtt_write(DSPSURF(plane), 0x00000000);
237 }
238
239 /* Disable VGA display */
240 gtt_write(CPU_VGACNTRL, CPU_VGA_DISABLE);
241}
242
Duncan Lauriec7f2ab72013-05-28 07:49:09 -0700243static void gma_setup_panel(struct device *dev)
Aaron Durbin76c37002012-10-30 09:03:43 -0500244{
Angel Ponse153a352020-10-23 14:53:59 +0200245 struct northbridge_intel_haswell_config *conf = config_of(dev);
Michael Niewöhner97e21d32020-12-28 00:49:33 +0100246 const struct i915_gpu_panel_config *panel_cfg = &conf->panel_cfg;
Aaron Durbin76c37002012-10-30 09:03:43 -0500247 u32 reg32;
248
Aaron Durbin76c37002012-10-30 09:03:43 -0500249 /* Setup Digital Port Hotplug */
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700250 reg32 = gtt_read(PCH_PORT_HOTPLUG);
Aaron Durbin76c37002012-10-30 09:03:43 -0500251 if (!reg32) {
252 reg32 = (conf->gpu_dp_b_hotplug & 0x7) << 2;
253 reg32 |= (conf->gpu_dp_c_hotplug & 0x7) << 10;
254 reg32 |= (conf->gpu_dp_d_hotplug & 0x7) << 18;
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700255 gtt_write(PCH_PORT_HOTPLUG, reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -0500256 }
257
258 /* Setup Panel Power On Delays */
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700259 reg32 = gtt_read(PCH_PP_ON_DELAYS);
Aaron Durbin76c37002012-10-30 09:03:43 -0500260 if (!reg32) {
Michael Niewöhner97e21d32020-12-28 00:49:33 +0100261 reg32 |= ((panel_cfg->up_delay_ms * 10) & 0x1fff) << 16;
262 reg32 |= (panel_cfg->backlight_on_delay_ms * 10) & 0x1fff;
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700263 gtt_write(PCH_PP_ON_DELAYS, reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -0500264 }
265
266 /* Setup Panel Power Off Delays */
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700267 reg32 = gtt_read(PCH_PP_OFF_DELAYS);
Aaron Durbin76c37002012-10-30 09:03:43 -0500268 if (!reg32) {
Michael Niewöhner97e21d32020-12-28 00:49:33 +0100269 reg32 = ((panel_cfg->down_delay_ms * 10) & 0x1fff) << 16;
270 reg32 |= (panel_cfg->backlight_off_delay_ms * 10) & 0x1fff;
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700271 gtt_write(PCH_PP_OFF_DELAYS, reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -0500272 }
273
274 /* Setup Panel Power Cycle Delay */
Michael Niewöhner97e21d32020-12-28 00:49:33 +0100275 if (panel_cfg->cycle_delay_ms) {
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700276 reg32 = gtt_read(PCH_PP_DIVISOR);
Michael Niewöhner3054a192020-12-28 15:00:39 +0100277 reg32 &= ~0x1f;
Michael Niewöhner97e21d32020-12-28 00:49:33 +0100278 reg32 |= (DIV_ROUND_UP(panel_cfg->cycle_delay_ms, 100) + 1) & 0x1f;
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700279 gtt_write(PCH_PP_DIVISOR, reg32);
Aaron Durbin76c37002012-10-30 09:03:43 -0500280 }
281
Nico Huberc2e46422020-03-23 01:22:49 +0100282 /* Enforce the PCH PWM function, as so does Linux.
283 The CPU PWM controls are disabled after reset. */
Michael Niewöhner97e21d32020-12-28 00:49:33 +0100284 if (panel_cfg->backlight_pwm_hz) {
Nico Huberc2e46422020-03-23 01:22:49 +0100285 /* Reference clock is either 24MHz or 135MHz. We can choose
286 either a 16 or a 128 step increment. Use 16 if we would
287 have less than 100 steps otherwise. */
288 const unsigned int refclock = CONFIG(INTEL_LYNXPOINT_LP) ? 24*MHz : 135*MHz;
289 const unsigned int hz_limit = refclock / 128 / 100;
290 unsigned int pwm_increment, pwm_period;
291 u32 south_chicken2;
292
293 south_chicken2 = gtt_read(SOUTH_CHICKEN2);
Michael Niewöhner97e21d32020-12-28 00:49:33 +0100294 if (panel_cfg->backlight_pwm_hz > hz_limit) {
Nico Huberc2e46422020-03-23 01:22:49 +0100295 pwm_increment = 16;
296 south_chicken2 |= LPT_PWM_GRANULARITY;
297 } else {
298 pwm_increment = 128;
299 south_chicken2 &= ~LPT_PWM_GRANULARITY;
300 }
301 gtt_write(SOUTH_CHICKEN2, south_chicken2);
302
Michael Niewöhner97e21d32020-12-28 00:49:33 +0100303 pwm_period = refclock / pwm_increment / panel_cfg->backlight_pwm_hz;
Nico Huberc2e46422020-03-23 01:22:49 +0100304 printk(BIOS_INFO,
305 "GMA: Setting backlight PWM frequency to %uMHz / %u / %u = %uHz\n",
306 refclock / MHz, pwm_increment, pwm_period,
307 DIV_ROUND_CLOSEST(refclock, pwm_increment * pwm_period));
308
309 /* Start with a 50% duty cycle. */
310 gtt_write(BLC_PWM_PCH_CTL2, pwm_period << 16 | pwm_period / 2);
311
312 gtt_write(BLC_PWM_PCH_CTL1,
Michael Niewöhner97e21d32020-12-28 00:49:33 +0100313 (panel_cfg->backlight_polarity == GPU_BACKLIGHT_POLARITY_LOW) << 29 |
Nico Huberc2e46422020-03-23 01:22:49 +0100314 BLM_PCH_OVERRIDE_ENABLE | BLM_PCH_PWM_ENABLE);
Aaron Durbin76c37002012-10-30 09:03:43 -0500315 }
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -0700316
317 /* Get display,pipeline,and DDI registers into a basic sane state */
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700318 power_well_enable();
319
320 init_display_planes();
321
Angel Pons1db5bc72020-01-15 00:49:03 +0100322 /*
323 * DDI-A params set:
324 * bit 0: Display detected (RO)
325 * bit 4: DDI A supports 4 lanes and DDI E is not used
326 * bit 7: DDI buffer is idle
327 */
Tristan Corrick1a73eb02018-10-31 02:27:29 +1300328 reg32 = DDI_BUF_IS_IDLE | DDI_INIT_DISPLAY_DETECTED;
329 if (!conf->gpu_ddi_e_connected)
330 reg32 |= DDI_A_4_LANES;
331 gtt_write(DDI_BUF_CTL_A, reg32);
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700332
333 /* Set FDI registers - is this required? */
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -0700334 gtt_write(_FDI_RXA_MISC, 0x00200090);
335 gtt_write(_FDI_RXA_MISC, 0x0a000000);
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700336
337 /* Enable the handshake with PCH display when processing reset */
338 gtt_write(NDE_RSTWRN_OPT, RST_PCH_HNDSHK_EN);
339
Angel Pons1db5bc72020-01-15 00:49:03 +0100340 /* Undocumented */
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -0700341 gtt_write(0x42090, 0x04000000);
Angel Pons1db5bc72020-01-15 00:49:03 +0100342 gtt_write(0x9840, 0x00000000);
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -0700343 gtt_write(0x42090, 0xa4000000);
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700344
345 gtt_write(SOUTH_DSPCLK_GATE_D, PCH_LP_PARTITION_LEVEL_DISABLE);
346
Angel Pons1db5bc72020-01-15 00:49:03 +0100347 /* Undocumented */
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -0700348 gtt_write(0x42080, 0x00004000);
Furquan Shaikh77f48cd2013-08-19 10:16:50 -0700349
350 /* Prepare DDI buffers for DP and FDI */
351 intel_prepare_ddi();
352
353 /* Hot plug detect buffer enabled for port A */
354 gtt_write(DIGITAL_PORT_HOTPLUG_CNTRL, DIGITAL_PORTA_HOTPLUG_ENABLE);
355
356 /* Enable HPD buffer for digital port D and B */
357 gtt_write(PCH_PORT_HOTPLUG, PORTD_HOTPLUG_ENABLE | PORTB_HOTPLUG_ENABLE);
358
Angel Pons1db5bc72020-01-15 00:49:03 +0100359 /*
360 * Bits 4:0 - Power cycle delay (default 0x6 --> 500ms)
361 * Bits 31:8 - Reference divider (0x0004af ----> 24MHz)
362 */
Ronald G. Minnich5bcca7e2013-06-25 15:56:46 -0700363 gtt_write(PCH_PP_DIVISOR, 0x0004af06);
Aaron Durbin76c37002012-10-30 09:03:43 -0500364}
365
Duncan Lauriec7f2ab72013-05-28 07:49:09 -0700366static void gma_pm_init_post_vbios(struct device *dev)
367{
Duncan Laurie356833d2013-07-09 15:40:27 -0700368 int cdclk = 0;
369 int devid = pci_read_config16(dev, PCI_DEVICE_ID);
370 int gpu_is_ulx = 0;
371
372 if (devid == 0x0a0e || devid == 0x0a1e)
373 gpu_is_ulx = 1;
374
375 /* CD Frequency */
Duncan Laurie3106d0f2013-08-12 13:51:22 -0700376 if ((gtt_read(0x42014) & 0x1000000) || gpu_is_ulx || haswell_is_ult())
377 cdclk = 0; /* fixed frequency */
378 else
379 cdclk = 2; /* variable frequency */
Duncan Laurie356833d2013-07-09 15:40:27 -0700380
Duncan Laurie356833d2013-07-09 15:40:27 -0700381 if (gpu_is_ulx || cdclk != 0)
382 gtt_rmw(0x130040, 0xf7ffffff, 0x04000000);
383 else
384 gtt_rmw(0x130040, 0xf3ffffff, 0x00000000);
385
386 /* More magic */
387 if (haswell_is_ult() || gpu_is_ulx) {
Duncan Laurie3106d0f2013-08-12 13:51:22 -0700388 if (!gpu_is_ulx)
Duncan Laurie356833d2013-07-09 15:40:27 -0700389 gtt_write(0x138128, 0x00000000);
390 else
391 gtt_write(0x138128, 0x00000001);
392 gtt_write(0x13812c, 0x00000000);
393 gtt_write(0x138124, 0x80000017);
394 }
395
Duncan Lauriec7f2ab72013-05-28 07:49:09 -0700396 /* Disable Force Wake */
397 gtt_write(0x0a188, 0x00010000);
Edward O'Callaghan986e85c2014-10-29 12:15:34 +1100398 gtt_poll(FORCEWAKE_ACK_HSW, 1 << 0, 0 << 0);
Duncan Laurie356833d2013-07-09 15:40:27 -0700399 gtt_write(0x0a188, 0x00000001);
Duncan Lauriec7f2ab72013-05-28 07:49:09 -0700400}
401
Patrick Rudolph89f3a602017-06-20 18:25:22 +0200402/* Enable SCI to ACPI _GPE._L06 */
403static void gma_enable_swsci(void)
404{
405 u16 reg16;
406
Angel Pons1db5bc72020-01-15 00:49:03 +0100407 /* Clear DMISCI status */
Patrick Rudolph89f3a602017-06-20 18:25:22 +0200408 reg16 = inw(get_pmbase() + TCO1_STS);
409 reg16 &= DMISCI_STS;
410 outw(get_pmbase() + TCO1_STS, reg16);
411
Angel Pons1db5bc72020-01-15 00:49:03 +0100412 /* Clear and enable ACPI TCO SCI */
Patrick Rudolph89f3a602017-06-20 18:25:22 +0200413 enable_tco_sci();
414}
415
Aaron Durbin76c37002012-10-30 09:03:43 -0500416static void gma_func0_init(struct device *dev)
417{
Ronald G. Minnich4f78b182013-04-17 16:57:30 -0700418 int lightup_ok = 0;
Matt DeVillier6955b9c2017-04-16 01:42:44 -0500419
Nico Huberf2a0be22020-04-26 17:01:25 +0200420 intel_gma_init_igd_opregion();
421
Aaron Durbin76c37002012-10-30 09:03:43 -0500422 /* Init graphics power management */
423 gma_pm_init_pre_vbios(dev);
424
Matt DeVillier6955b9c2017-04-16 01:42:44 -0500425 /* Pre panel init */
Duncan Lauriec7f2ab72013-05-28 07:49:09 -0700426 gma_setup_panel(dev);
427
Nico Huberdd597622020-04-26 19:46:35 +0200428 if (!CONFIG(NO_GFX_INIT))
429 pci_or_config16(dev, PCI_COMMAND, PCI_COMMAND_MASTER);
430
Arthur Heymanse6c8f7e2018-08-09 11:31:51 +0200431 int vga_disable = (pci_read_config16(dev, GGC) & 2) >> 1;
432
Julius Wernercd49cce2019-03-05 16:53:33 -0800433 if (CONFIG(MAINBOARD_USE_LIBGFXINIT)) {
Arthur Heymanse6c8f7e2018-08-09 11:31:51 +0200434 if (vga_disable) {
435 printk(BIOS_INFO,
436 "IGD is not decoding legacy VGA MEM and IO: skipping NATIVE graphic init\n");
437 } else {
438 printk(BIOS_SPEW, "NATIVE graphics, run native enable\n");
439 gma_gfxinit(&lightup_ok);
440 gfx_set_init_done(1);
441 }
Arthur Heymans23cda3472016-12-18 16:03:52 +0100442 }
443
Angel Ponsda59ca92020-10-23 14:59:37 +0200444 if (!lightup_ok) {
Ronald G. Minnich4f78b182013-04-17 16:57:30 -0700445 printk(BIOS_SPEW, "FUI did not run; using VBIOS\n");
Stefan Reinauerf1aabec2014-01-22 15:16:30 -0800446 mdelay(CONFIG_PRE_GRAPHICS_DELAY);
Ronald G. Minnich4f78b182013-04-17 16:57:30 -0700447 pci_dev_init(dev);
448 }
449
Angel Ponsdb3047c2020-10-23 14:56:19 +0200450 printk(BIOS_DEBUG, "GT Power Management Init (post VBIOS)\n");
451
Ronald G. Minnich4f78b182013-04-17 16:57:30 -0700452 gma_pm_init_post_vbios(dev);
Patrick Rudolph89f3a602017-06-20 18:25:22 +0200453
454 gma_enable_swsci();
Aaron Durbin76c37002012-10-30 09:03:43 -0500455}
456
Furquan Shaikh7536a392020-04-24 21:59:21 -0700457static void gma_generate_ssdt(const struct device *dev)
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +0100458{
Matt DeVillier41c4eb52020-03-30 19:20:54 -0500459 const struct northbridge_intel_haswell_config *chip = dev->chip_info;
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +0100460
Matt DeVillier41c4eb52020-03-30 19:20:54 -0500461 drivers_intel_gma_displays_ssdt_generate(&chip->gfx);
Vladimir Serbinenkodd2bc3f2014-10-31 09:16:31 +0100462}
463
Aaron Durbin76c37002012-10-30 09:03:43 -0500464static struct device_operations gma_func0_ops = {
Matt DeVillier41c4eb52020-03-30 19:20:54 -0500465 .read_resources = pci_dev_read_resources,
466 .set_resources = pci_dev_set_resources,
467 .enable_resources = pci_dev_enable_resources,
468 .init = gma_func0_init,
469 .acpi_fill_ssdt = gma_generate_ssdt,
Angel Pons1fc0edd2020-05-31 00:03:28 +0200470 .ops_pci = &pci_dev_ops_pci,
Aaron Durbin76c37002012-10-30 09:03:43 -0500471};
472
Duncan Lauriedf7be712012-12-17 11:22:57 -0800473static const unsigned short pci_device_ids[] = {
474 0x0402, /* Desktop GT1 */
475 0x0412, /* Desktop GT2 */
476 0x0422, /* Desktop GT3 */
Iru Cai12a13e12020-05-22 22:57:03 +0800477 0x0d22, /* Desktop GT3e */
Duncan Lauriedf7be712012-12-17 11:22:57 -0800478 0x0406, /* Mobile GT1 */
479 0x0416, /* Mobile GT2 */
480 0x0426, /* Mobile GT3 */
481 0x0d16, /* Mobile 4+3 GT1 */
Iru Cai12a13e12020-05-22 22:57:03 +0800482 0x0d26, /* Mobile 4+3 GT2, Mobile GT3e */
Duncan Lauriedf7be712012-12-17 11:22:57 -0800483 0x0d36, /* Mobile 4+3 GT3 */
484 0x0a06, /* ULT GT1 */
485 0x0a16, /* ULT GT2 */
486 0x0a26, /* ULT GT3 */
487 0,
488};
Aaron Durbin76c37002012-10-30 09:03:43 -0500489
490static const struct pci_driver pch_lpc __pci_driver = {
Angel Pons1db5bc72020-01-15 00:49:03 +0100491 .ops = &gma_func0_ops,
492 .vendor = PCI_VENDOR_ID_INTEL,
Aaron Durbin76c37002012-10-30 09:03:43 -0500493 .devices = pci_device_ids,
494};