blob: 4ab6ae7e92b43171fcd354bc7dbb2a1762c0daad [file] [log] [blame]
Alan Cox5c49fd32011-11-03 18:22:04 +00001/**************************************************************************
2 * Copyright (c) 2007-2011, Intel Corporation.
3 * All Rights Reserved.
4 *
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms and conditions of the GNU General Public License,
7 * version 2, as published by the Free Software Foundation.
8 *
9 * This program is distributed in the hope it will be useful, but WITHOUT
10 * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
11 * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
12 * more details.
13 *
14 * You should have received a copy of the GNU General Public License along with
15 * this program; if not, write to the Free Software Foundation, Inc.,
16 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
17 *
18 **************************************************************************/
19
20#ifndef _PSB_DRV_H_
21#define _PSB_DRV_H_
22
23#include <linux/kref.h>
24
25#include <drm/drmP.h>
26#include "drm_global.h"
27#include "gem_glue.h"
Alan Cox838fa582011-11-16 22:39:45 +000028#include "gma_drm.h"
Alan Cox5c49fd32011-11-03 18:22:04 +000029#include "psb_reg.h"
30#include "psb_intel_drv.h"
Zhao Yakuid112a812012-08-08 13:55:55 +000031#include "intel_bios.h"
Alan Cox5c49fd32011-11-03 18:22:04 +000032#include "gtt.h"
33#include "power.h"
Alan Coxd839ede2012-05-03 15:06:18 +010034#include "opregion.h"
Alan Cox5c49fd32011-11-03 18:22:04 +000035#include "oaktrail.h"
36
37/* Append new drm mode definition here, align with libdrm definition */
38#define DRM_MODE_SCALE_NO_SCALE 2
39
40enum {
41 CHIP_PSB_8108 = 0, /* Poulsbo */
42 CHIP_PSB_8109 = 1, /* Poulsbo */
43 CHIP_MRST_4100 = 2, /* Moorestown/Oaktrail */
44 CHIP_MFLD_0130 = 3, /* Medfield */
45};
46
Patrik Jakobssone036ba52011-11-29 22:20:07 +000047#define IS_PSB(dev) (((dev)->pci_device & 0xfffe) == 0x8108)
Alan Cox5c49fd32011-11-03 18:22:04 +000048#define IS_MRST(dev) (((dev)->pci_device & 0xfffc) == 0x4100)
49#define IS_MFLD(dev) (((dev)->pci_device & 0xfff8) == 0x0130)
50
51/*
52 * Driver definitions
53 */
54
55#define DRIVER_NAME "gma500"
56#define DRIVER_DESC "DRM driver for the Intel GMA500"
57
58#define PSB_DRM_DRIVER_DATE "2011-06-06"
59#define PSB_DRM_DRIVER_MAJOR 1
60#define PSB_DRM_DRIVER_MINOR 0
61#define PSB_DRM_DRIVER_PATCHLEVEL 0
62
63/*
64 * Hardware offsets
65 */
66#define PSB_VDC_OFFSET 0x00000000
67#define PSB_VDC_SIZE 0x000080000
68#define MRST_MMIO_SIZE 0x0000C0000
69#define MDFLD_MMIO_SIZE 0x000100000
70#define PSB_SGX_SIZE 0x8000
71#define PSB_SGX_OFFSET 0x00040000
72#define MRST_SGX_OFFSET 0x00080000
73/*
74 * PCI resource identifiers
75 */
76#define PSB_MMIO_RESOURCE 0
77#define PSB_GATT_RESOURCE 2
78#define PSB_GTT_RESOURCE 3
79/*
80 * PCI configuration
81 */
82#define PSB_GMCH_CTRL 0x52
83#define PSB_BSM 0x5C
84#define _PSB_GMCH_ENABLED 0x4
85#define PSB_PGETBL_CTL 0x2020
86#define _PSB_PGETBL_ENABLED 0x00000001
87#define PSB_SGX_2D_SLAVE_PORT 0x4000
88
89/* To get rid of */
90#define PSB_TT_PRIV0_LIMIT (256*1024*1024)
91#define PSB_TT_PRIV0_PLIMIT (PSB_TT_PRIV0_LIMIT >> PAGE_SHIFT)
92
93/*
94 * SGX side MMU definitions (these can probably go)
95 */
96
97/*
98 * Flags for external memory type field.
99 */
100#define PSB_MMU_CACHED_MEMORY 0x0001 /* Bind to MMU only */
101#define PSB_MMU_RO_MEMORY 0x0002 /* MMU RO memory */
102#define PSB_MMU_WO_MEMORY 0x0004 /* MMU WO memory */
103/*
104 * PTE's and PDE's
105 */
106#define PSB_PDE_MASK 0x003FFFFF
107#define PSB_PDE_SHIFT 22
108#define PSB_PTE_SHIFT 12
109/*
110 * Cache control
111 */
112#define PSB_PTE_VALID 0x0001 /* PTE / PDE valid */
113#define PSB_PTE_WO 0x0002 /* Write only */
114#define PSB_PTE_RO 0x0004 /* Read only */
115#define PSB_PTE_CACHED 0x0008 /* CPU cache coherent */
116
117/*
118 * VDC registers and bits
119 */
120#define PSB_MSVDX_CLOCKGATING 0x2064
121#define PSB_TOPAZ_CLOCKGATING 0x2068
122#define PSB_HWSTAM 0x2098
123#define PSB_INSTPM 0x20C0
124#define PSB_INT_IDENTITY_R 0x20A4
Alan Coxd839ede2012-05-03 15:06:18 +0100125#define _PSB_IRQ_ASLE (1<<0)
Alan Cox5c49fd32011-11-03 18:22:04 +0000126#define _MDFLD_PIPEC_EVENT_FLAG (1<<2)
127#define _MDFLD_PIPEC_VBLANK_FLAG (1<<3)
128#define _PSB_DPST_PIPEB_FLAG (1<<4)
129#define _MDFLD_PIPEB_EVENT_FLAG (1<<4)
130#define _PSB_VSYNC_PIPEB_FLAG (1<<5)
131#define _PSB_DPST_PIPEA_FLAG (1<<6)
132#define _PSB_PIPEA_EVENT_FLAG (1<<6)
133#define _PSB_VSYNC_PIPEA_FLAG (1<<7)
134#define _MDFLD_MIPIA_FLAG (1<<16)
135#define _MDFLD_MIPIC_FLAG (1<<17)
Alan Cox68cb6382012-04-25 14:38:20 +0100136#define _PSB_IRQ_DISP_HOTSYNC (1<<17)
Alan Cox5c49fd32011-11-03 18:22:04 +0000137#define _PSB_IRQ_SGX_FLAG (1<<18)
138#define _PSB_IRQ_MSVDX_FLAG (1<<19)
139#define _LNC_IRQ_TOPAZ_FLAG (1<<20)
140
Patrik Jakobsson700e59f2011-11-29 22:20:34 +0000141#define _PSB_PIPE_EVENT_FLAG (_PSB_VSYNC_PIPEA_FLAG | \
142 _PSB_VSYNC_PIPEB_FLAG)
143
Alan Cox5c49fd32011-11-03 18:22:04 +0000144/* This flag includes all the display IRQ bits excepts the vblank irqs. */
145#define _MDFLD_DISP_ALL_IRQ_FLAG (_MDFLD_PIPEC_EVENT_FLAG | \
146 _MDFLD_PIPEB_EVENT_FLAG | \
147 _PSB_PIPEA_EVENT_FLAG | \
148 _PSB_VSYNC_PIPEA_FLAG | \
149 _MDFLD_MIPIA_FLAG | \
150 _MDFLD_MIPIC_FLAG)
151#define PSB_INT_IDENTITY_R 0x20A4
152#define PSB_INT_MASK_R 0x20A8
153#define PSB_INT_ENABLE_R 0x20A0
154
155#define _PSB_MMU_ER_MASK 0x0001FF00
156#define _PSB_MMU_ER_HOST (1 << 16)
157#define GPIOA 0x5010
158#define GPIOB 0x5014
159#define GPIOC 0x5018
160#define GPIOD 0x501c
161#define GPIOE 0x5020
162#define GPIOF 0x5024
163#define GPIOG 0x5028
164#define GPIOH 0x502c
165#define GPIO_CLOCK_DIR_MASK (1 << 0)
166#define GPIO_CLOCK_DIR_IN (0 << 1)
167#define GPIO_CLOCK_DIR_OUT (1 << 1)
168#define GPIO_CLOCK_VAL_MASK (1 << 2)
169#define GPIO_CLOCK_VAL_OUT (1 << 3)
170#define GPIO_CLOCK_VAL_IN (1 << 4)
171#define GPIO_CLOCK_PULLUP_DISABLE (1 << 5)
172#define GPIO_DATA_DIR_MASK (1 << 8)
173#define GPIO_DATA_DIR_IN (0 << 9)
174#define GPIO_DATA_DIR_OUT (1 << 9)
175#define GPIO_DATA_VAL_MASK (1 << 10)
176#define GPIO_DATA_VAL_OUT (1 << 11)
177#define GPIO_DATA_VAL_IN (1 << 12)
178#define GPIO_DATA_PULLUP_DISABLE (1 << 13)
179
180#define VCLK_DIVISOR_VGA0 0x6000
181#define VCLK_DIVISOR_VGA1 0x6004
182#define VCLK_POST_DIV 0x6010
183
184#define PSB_COMM_2D (PSB_ENGINE_2D << 4)
185#define PSB_COMM_3D (PSB_ENGINE_3D << 4)
186#define PSB_COMM_TA (PSB_ENGINE_TA << 4)
187#define PSB_COMM_HP (PSB_ENGINE_HP << 4)
188#define PSB_COMM_USER_IRQ (1024 >> 2)
189#define PSB_COMM_USER_IRQ_LOST (PSB_COMM_USER_IRQ + 1)
190#define PSB_COMM_FW (2048 >> 2)
191
192#define PSB_UIRQ_VISTEST 1
193#define PSB_UIRQ_OOM_REPLY 2
194#define PSB_UIRQ_FIRE_TA_REPLY 3
195#define PSB_UIRQ_FIRE_RASTER_REPLY 4
196
197#define PSB_2D_SIZE (256*1024*1024)
198#define PSB_MAX_RELOC_PAGES 1024
199
200#define PSB_LOW_REG_OFFS 0x0204
201#define PSB_HIGH_REG_OFFS 0x0600
202
203#define PSB_NUM_VBLANKS 2
204
205
206#define PSB_2D_SIZE (256*1024*1024)
207#define PSB_MAX_RELOC_PAGES 1024
208
209#define PSB_LOW_REG_OFFS 0x0204
210#define PSB_HIGH_REG_OFFS 0x0600
211
212#define PSB_NUM_VBLANKS 2
213#define PSB_WATCHDOG_DELAY (DRM_HZ * 2)
214#define PSB_LID_DELAY (DRM_HZ / 10)
215
216#define MDFLD_PNW_B0 0x04
217#define MDFLD_PNW_C0 0x08
218
219#define MDFLD_DSR_2D_3D_0 (1 << 0)
220#define MDFLD_DSR_2D_3D_2 (1 << 1)
221#define MDFLD_DSR_CURSOR_0 (1 << 2)
222#define MDFLD_DSR_CURSOR_2 (1 << 3)
223#define MDFLD_DSR_OVERLAY_0 (1 << 4)
224#define MDFLD_DSR_OVERLAY_2 (1 << 5)
225#define MDFLD_DSR_MIPI_CONTROL (1 << 6)
226#define MDFLD_DSR_DAMAGE_MASK_0 ((1 << 0) | (1 << 2) | (1 << 4))
227#define MDFLD_DSR_DAMAGE_MASK_2 ((1 << 1) | (1 << 3) | (1 << 5))
228#define MDFLD_DSR_2D_3D (MDFLD_DSR_2D_3D_0 | MDFLD_DSR_2D_3D_2)
229
230#define MDFLD_DSR_RR 45
231#define MDFLD_DPU_ENABLE (1 << 31)
232#define MDFLD_DSR_FULLSCREEN (1 << 30)
233#define MDFLD_DSR_DELAY (DRM_HZ / MDFLD_DSR_RR)
234
235#define PSB_PWR_STATE_ON 1
236#define PSB_PWR_STATE_OFF 2
237
238#define PSB_PMPOLICY_NOPM 0
239#define PSB_PMPOLICY_CLOCKGATING 1
240#define PSB_PMPOLICY_POWERDOWN 2
241
242#define PSB_PMSTATE_POWERUP 0
243#define PSB_PMSTATE_CLOCKGATED 1
244#define PSB_PMSTATE_POWERDOWN 2
245#define PSB_PCIx_MSI_ADDR_LOC 0x94
246#define PSB_PCIx_MSI_DATA_LOC 0x98
247
248/* Medfield crystal settings */
249#define KSEL_CRYSTAL_19 1
250#define KSEL_BYPASS_19 5
251#define KSEL_BYPASS_25 6
252#define KSEL_BYPASS_83_100 7
253
254struct opregion_header;
255struct opregion_acpi;
256struct opregion_swsci;
257struct opregion_asle;
258
259struct psb_intel_opregion {
260 struct opregion_header *header;
261 struct opregion_acpi *acpi;
262 struct opregion_swsci *swsci;
263 struct opregion_asle *asle;
Alan Cox1fb28e92012-04-25 14:37:14 +0100264 void *vbt;
Alan Coxd839ede2012-05-03 15:06:18 +0100265 u32 __iomem *lid_state;
Alan Cox5c49fd32011-11-03 18:22:04 +0000266};
267
Patrik Jakobsson57369952011-12-19 21:41:10 +0000268struct sdvo_device_mapping {
269 u8 initialized;
270 u8 dvo_port;
271 u8 slave_addr;
272 u8 dvo_wiring;
273 u8 i2c_pin;
274 u8 i2c_speed;
275 u8 ddc_pin;
276};
277
Patrik Jakobsson5c0c1d52011-12-19 21:40:58 +0000278struct intel_gmbus {
279 struct i2c_adapter adapter;
280 struct i2c_adapter *force_bit;
281 u32 reg0;
282};
283
Alan Cox648a8e32012-03-08 16:00:31 +0000284/*
Alan Cox8512e072012-05-11 11:30:53 +0100285 * Register offset maps
286 */
287
288struct psb_offset {
289 u32 fp0;
290 u32 fp1;
291 u32 cntr;
292 u32 conf;
293 u32 src;
294 u32 dpll;
295 u32 dpll_md;
296 u32 htotal;
297 u32 hblank;
298 u32 hsync;
299 u32 vtotal;
300 u32 vblank;
301 u32 vsync;
302 u32 stride;
303 u32 size;
304 u32 pos;
305 u32 surf;
306 u32 addr;
307 u32 base;
308 u32 status;
309 u32 linoff;
310 u32 tileoff;
311 u32 palette;
312};
313
314/*
Alan Cox648a8e32012-03-08 16:00:31 +0000315 * Register save state. This is used to hold the context when the
316 * device is powered off. In the case of Oaktrail this can (but does not
317 * yet) include screen blank. Operations occuring during the save
318 * update the register cache instead.
319 */
Alan Cox62563042012-05-11 11:30:16 +0100320
321/*
322 * Common status for pipes.
323 */
324struct psb_pipe {
325 u32 fp0;
326 u32 fp1;
327 u32 cntr;
328 u32 conf;
329 u32 src;
330 u32 dpll;
331 u32 dpll_md;
332 u32 htotal;
333 u32 hblank;
334 u32 hsync;
335 u32 vtotal;
336 u32 vblank;
337 u32 vsync;
338 u32 stride;
339 u32 size;
340 u32 pos;
341 u32 base;
342 u32 surf;
343 u32 addr;
344 u32 status;
345 u32 linoff;
346 u32 tileoff;
347 u32 palette[256];
348};
349
Alan Cox648a8e32012-03-08 16:00:31 +0000350struct psb_state {
Alan Cox648a8e32012-03-08 16:00:31 +0000351 uint32_t saveVCLK_DIVISOR_VGA0;
352 uint32_t saveVCLK_DIVISOR_VGA1;
353 uint32_t saveVCLK_POST_DIV;
354 uint32_t saveVGACNTRL;
355 uint32_t saveADPA;
356 uint32_t saveLVDS;
357 uint32_t saveDVOA;
358 uint32_t saveDVOB;
359 uint32_t saveDVOC;
360 uint32_t savePP_ON;
361 uint32_t savePP_OFF;
362 uint32_t savePP_CONTROL;
363 uint32_t savePP_CYCLE;
364 uint32_t savePFIT_CONTROL;
Alan Cox648a8e32012-03-08 16:00:31 +0000365 uint32_t saveCLOCKGATING;
366 uint32_t saveDSPARB;
Alan Cox648a8e32012-03-08 16:00:31 +0000367 uint32_t savePFIT_AUTO_RATIOS;
368 uint32_t savePFIT_PGM_RATIOS;
369 uint32_t savePP_ON_DELAYS;
370 uint32_t savePP_OFF_DELAYS;
371 uint32_t savePP_DIVISOR;
Alan Cox648a8e32012-03-08 16:00:31 +0000372 uint32_t saveBCLRPAT_A;
373 uint32_t saveBCLRPAT_B;
Alan Cox648a8e32012-03-08 16:00:31 +0000374 uint32_t savePERF_MODE;
375 uint32_t saveDSPFW1;
376 uint32_t saveDSPFW2;
377 uint32_t saveDSPFW3;
378 uint32_t saveDSPFW4;
379 uint32_t saveDSPFW5;
380 uint32_t saveDSPFW6;
381 uint32_t saveCHICKENBIT;
382 uint32_t saveDSPACURSOR_CTRL;
383 uint32_t saveDSPBCURSOR_CTRL;
384 uint32_t saveDSPACURSOR_BASE;
385 uint32_t saveDSPBCURSOR_BASE;
386 uint32_t saveDSPACURSOR_POS;
387 uint32_t saveDSPBCURSOR_POS;
Alan Cox648a8e32012-03-08 16:00:31 +0000388 uint32_t saveOV_OVADD;
389 uint32_t saveOV_OGAMC0;
390 uint32_t saveOV_OGAMC1;
391 uint32_t saveOV_OGAMC2;
392 uint32_t saveOV_OGAMC3;
393 uint32_t saveOV_OGAMC4;
394 uint32_t saveOV_OGAMC5;
395 uint32_t saveOVC_OVADD;
396 uint32_t saveOVC_OGAMC0;
397 uint32_t saveOVC_OGAMC1;
398 uint32_t saveOVC_OGAMC2;
399 uint32_t saveOVC_OGAMC3;
400 uint32_t saveOVC_OGAMC4;
401 uint32_t saveOVC_OGAMC5;
402
403 /* DPST register save */
404 uint32_t saveHISTOGRAM_INT_CONTROL_REG;
405 uint32_t saveHISTOGRAM_LOGIC_CONTROL_REG;
406 uint32_t savePWM_CONTROL_LOGIC;
407};
408
Kirill A. Shutemov026abc32012-03-08 16:02:20 +0000409struct medfield_state {
Kirill A. Shutemov026abc32012-03-08 16:02:20 +0000410 uint32_t saveMIPI;
Kirill A. Shutemov026abc32012-03-08 16:02:20 +0000411 uint32_t saveMIPI_C;
412
413 uint32_t savePFIT_CONTROL;
414 uint32_t savePFIT_PGM_RATIOS;
415 uint32_t saveHDMIPHYMISCCTL;
416 uint32_t saveHDMIB_CONTROL;
417};
418
Alan Cox09016a12012-03-14 12:00:29 +0000419struct cdv_state {
420 uint32_t saveDSPCLK_GATE_D;
421 uint32_t saveRAMCLK_GATE_D;
422 uint32_t saveDSPARB;
423 uint32_t saveDSPFW[6];
424 uint32_t saveADPA;
425 uint32_t savePP_CONTROL;
426 uint32_t savePFIT_PGM_RATIOS;
427 uint32_t saveLVDS;
428 uint32_t savePFIT_CONTROL;
429 uint32_t savePP_ON_DELAYS;
430 uint32_t savePP_OFF_DELAYS;
431 uint32_t savePP_CYCLE;
432 uint32_t saveVGACNTRL;
433 uint32_t saveIER;
434 uint32_t saveIMR;
435 u8 saveLBB;
436};
437
Alan Coxc6265ff2012-03-08 16:02:05 +0000438struct psb_save_area {
Alan Cox62563042012-05-11 11:30:16 +0100439 struct psb_pipe pipe[3];
Alan Coxc6265ff2012-03-08 16:02:05 +0000440 uint32_t saveBSM;
441 uint32_t saveVBT;
442 union {
443 struct psb_state psb;
Kirill A. Shutemov026abc32012-03-08 16:02:20 +0000444 struct medfield_state mdfld;
Alan Cox09016a12012-03-14 12:00:29 +0000445 struct cdv_state cdv;
Alan Coxc6265ff2012-03-08 16:02:05 +0000446 };
447 uint32_t saveBLC_PWM_CTL2;
448 uint32_t saveBLC_PWM_CTL;
449};
450
Alan Cox5c49fd32011-11-03 18:22:04 +0000451struct psb_ops;
452
Alan Cox04bd5642011-11-16 22:39:32 +0000453#define PSB_NUM_PIPE 3
454
Alan Cox5c49fd32011-11-03 18:22:04 +0000455struct drm_psb_private {
456 struct drm_device *dev;
457 const struct psb_ops *ops;
Alan Cox8512e072012-05-11 11:30:53 +0100458 const struct psb_offset *regmap;
Alan Cox1fb28e92012-04-25 14:37:14 +0100459
460 struct child_device_config *child_dev;
461 int child_dev_num;
Alan Cox5c49fd32011-11-03 18:22:04 +0000462
463 struct psb_gtt gtt;
464
465 /* GTT Memory manager */
466 struct psb_gtt_mm *gtt_mm;
467 struct page *scratch_page;
Kirill A. Shutemoveab37602012-05-03 15:07:46 +0100468 u32 __iomem *gtt_map;
Alan Cox5c49fd32011-11-03 18:22:04 +0000469 uint32_t stolen_base;
Kirill A. Shutemov37214ca2012-05-03 15:08:26 +0100470 u8 __iomem *vram_addr;
Alan Cox5c49fd32011-11-03 18:22:04 +0000471 unsigned long vram_stolen_size;
472 int gtt_initialized;
473 u16 gmch_ctrl; /* Saved GTT setup */
474 u32 pge_ctl;
475
476 struct mutex gtt_mutex;
477 struct resource *gtt_mem; /* Our PCI resource */
478
479 struct psb_mmu_driver *mmu;
480 struct psb_mmu_pd *pf_pd;
481
482 /*
483 * Register base
484 */
485
Kirill A. Shutemov846a60382012-05-03 15:08:08 +0100486 uint8_t __iomem *sgx_reg;
487 uint8_t __iomem *vdc_reg;
Alan Cox5c49fd32011-11-03 18:22:04 +0000488 uint32_t gatt_free_offset;
489
490 /*
491 * Fencing / irq.
492 */
493
494 uint32_t vdc_irq_mask;
495 uint32_t pipestat[PSB_NUM_PIPE];
496
497 spinlock_t irqmask_lock;
498
499 /*
500 * Power
501 */
502
503 bool suspended;
504 bool display_power;
505 int display_count;
506
507 /*
508 * Modesetting
509 */
510 struct psb_intel_mode_device mode_dev;
Alan Cox4ab2c7f2012-05-14 12:04:00 +0100511 bool modeset; /* true if we have done the mode_device setup */
Alan Cox5c49fd32011-11-03 18:22:04 +0000512
513 struct drm_crtc *plane_to_crtc_mapping[PSB_NUM_PIPE];
514 struct drm_crtc *pipe_to_crtc_mapping[PSB_NUM_PIPE];
515 uint32_t num_pipe;
516
517 /*
518 * OSPM info (Power management base) (can go ?)
519 */
520 uint32_t ospm_base;
521
522 /*
523 * Sizes info
524 */
525
Alan Cox5c49fd32011-11-03 18:22:04 +0000526 u32 fuse_reg_value;
527 u32 video_device_fuse;
528
529 /* PCI revision ID for B0:D2:F0 */
530 uint8_t platform_rev_id;
531
Patrik Jakobsson5c0c1d52011-12-19 21:40:58 +0000532 /* gmbus */
533 struct intel_gmbus *gmbus;
534
Patrik Jakobsson57369952011-12-19 21:41:10 +0000535 /* Used by SDVO */
536 int crt_ddc_pin;
537 /* FIXME: The mappings should be parsed from bios but for now we can
538 pretend there are no mappings available */
539 struct sdvo_device_mapping sdvo_mappings[2];
540 u32 hotplug_supported_mask;
541 struct drm_property *broadcast_rgb_property;
542 struct drm_property *force_audio_property;
543
Alan Cox5c49fd32011-11-03 18:22:04 +0000544 /*
545 * LVDS info
546 */
547 int backlight_duty_cycle; /* restore backlight to this value */
548 bool panel_wants_dither;
549 struct drm_display_mode *panel_fixed_mode;
550 struct drm_display_mode *lfp_lvds_vbt_mode;
551 struct drm_display_mode *sdvo_lvds_vbt_mode;
552
553 struct bdb_lvds_backlight *lvds_bl; /* LVDS backlight info from VBT */
Patrik Jakobssona12d6a02011-12-19 21:41:22 +0000554 struct psb_intel_i2c_chan *lvds_i2c_bus; /* FIXME: Remove this? */
Alan Cox5c49fd32011-11-03 18:22:04 +0000555
556 /* Feature bits from the VBIOS */
557 unsigned int int_tv_support:1;
558 unsigned int lvds_dither:1;
559 unsigned int lvds_vbt:1;
560 unsigned int int_crt_support:1;
561 unsigned int lvds_use_ssc:1;
562 int lvds_ssc_freq;
563 bool is_lvds_on;
564 bool is_mipi_on;
565 u32 mipi_ctrl_display;
566
567 unsigned int core_freq;
568 uint32_t iLVDS_enable;
569
570 /* Runtime PM state */
571 int rpm_enabled;
572
573 /* MID specific */
Kirill A. Shutemov4086b1e2012-05-03 16:27:21 +0100574 bool has_gct;
Alan Cox5c49fd32011-11-03 18:22:04 +0000575 struct oaktrail_gct_data gct_data;
576
Alan Cox933315a2012-03-08 16:00:17 +0000577 /* Oaktrail HDMI state */
Alan Cox5c49fd32011-11-03 18:22:04 +0000578 struct oaktrail_hdmi_dev *hdmi_priv;
Alan Cox933315a2012-03-08 16:00:17 +0000579
Alan Cox5c49fd32011-11-03 18:22:04 +0000580 /*
581 * Register state
582 */
Alan Coxc6265ff2012-03-08 16:02:05 +0000583
584 struct psb_save_area regs;
585
Alan Cox5c49fd32011-11-03 18:22:04 +0000586 /* MSI reg save */
587 uint32_t msi_addr;
588 uint32_t msi_data;
589
Alan Coxae0a2462012-04-25 14:38:32 +0100590 /*
591 * Hotplug handling
592 */
593
594 struct work_struct hotplug_work;
Alan Cox5c49fd32011-11-03 18:22:04 +0000595
596 /*
Alan Cox5c49fd32011-11-03 18:22:04 +0000597 * LID-Switch
598 */
599 spinlock_t lid_lock;
600 struct timer_list lid_timer;
601 struct psb_intel_opregion opregion;
Alan Cox5c49fd32011-11-03 18:22:04 +0000602 u32 lid_last_state;
603
604 /*
605 * Watchdog
606 */
607
608 uint32_t apm_reg;
609 uint16_t apm_base;
610
611 /*
612 * Used for modifying backlight from
613 * xrandr -- consider removing and using HAL instead
614 */
615 struct backlight_device *backlight_device;
616 struct drm_property *backlight_property;
Zhao Yakuid112a812012-08-08 13:55:55 +0000617 bool backlight_enabled;
618 int backlight_level;
Alan Cox5c49fd32011-11-03 18:22:04 +0000619 uint32_t blc_adj1;
620 uint32_t blc_adj2;
621
622 void *fbdev;
623
624 /* 2D acceleration */
Alan Cox9242fe22011-11-29 22:27:10 +0000625 spinlock_t lock_2d;
Kirill A. Shutemov026abc32012-03-08 16:02:20 +0000626
627 /*
628 * Panel brightness
629 */
630 int brightness;
631 int brightness_adjusted;
632
633 bool dsr_enable;
634 u32 dsr_fb_update;
635 bool dpi_panel_on[3];
636 void *dsi_configs[2];
637 u32 bpp;
638 u32 bpp2;
639
640 u32 pipeconf[3];
641 u32 dspcntr[3];
642
643 int mdfld_panel_id;
Alan Cox642c52f2012-04-25 14:36:34 +0100644
645 bool dplla_96mhz; /* DPLL data from the VBT */
Zhao Yakuid112a812012-08-08 13:55:55 +0000646
647 struct {
648 int rate;
649 int lanes;
650 int preemphasis;
651 int vswing;
652
653 bool initialized;
654 bool support;
655 int bpp;
656 struct edp_power_seq pps;
657 } edp;
658 uint8_t panel_type;
Alan Cox5c49fd32011-11-03 18:22:04 +0000659};
660
661
662/*
663 * Operations for each board type
664 */
665
666struct psb_ops {
667 const char *name;
668 unsigned int accel_2d:1;
669 int pipes; /* Number of output pipes */
670 int crtcs; /* Number of CRTCs */
671 int sgx_offset; /* Base offset of SGX device */
Alan Coxd235e642012-04-25 14:38:07 +0100672 int hdmi_mask; /* Mask of HDMI CRTCs */
673 int lvds_mask; /* Mask of LVDS CRTCs */
Patrik Jakobssonbc794822012-05-21 15:27:30 +0100674 int cursor_needs_phys; /* If cursor base reg need physical address */
Alan Cox5c49fd32011-11-03 18:22:04 +0000675
676 /* Sub functions */
677 struct drm_crtc_helper_funcs const *crtc_helper;
678 struct drm_crtc_funcs const *crtc_funcs;
679
680 /* Setup hooks */
681 int (*chip_setup)(struct drm_device *dev);
682 void (*chip_teardown)(struct drm_device *dev);
Alan Coxd235e642012-04-25 14:38:07 +0100683 /* Optional helper caller after modeset */
684 void (*errata)(struct drm_device *dev);
Alan Cox5c49fd32011-11-03 18:22:04 +0000685
686 /* Display management hooks */
687 int (*output_init)(struct drm_device *dev);
Alan Cox68cb6382012-04-25 14:38:20 +0100688 int (*hotplug)(struct drm_device *dev);
689 void (*hotplug_enable)(struct drm_device *dev, bool on);
Alan Cox5c49fd32011-11-03 18:22:04 +0000690 /* Power management hooks */
691 void (*init_pm)(struct drm_device *dev);
692 int (*save_regs)(struct drm_device *dev);
693 int (*restore_regs)(struct drm_device *dev);
694 int (*power_up)(struct drm_device *dev);
695 int (*power_down)(struct drm_device *dev);
696
697 void (*lvds_bl_power)(struct drm_device *dev, bool on);
698#ifdef CONFIG_BACKLIGHT_CLASS_DEVICE
699 /* Backlight */
700 int (*backlight_init)(struct drm_device *dev);
701#endif
702 int i2c_bus; /* I2C bus identifier for Moorestown */
703};
704
705
706
707struct psb_mmu_driver;
708
709extern int drm_crtc_probe_output_modes(struct drm_device *dev, int, int);
710extern int drm_pick_crtcs(struct drm_device *dev);
711
712static inline struct drm_psb_private *psb_priv(struct drm_device *dev)
713{
714 return (struct drm_psb_private *) dev->dev_private;
715}
716
717/*
718 * MMU stuff.
719 */
720
721extern struct psb_mmu_driver *psb_mmu_driver_init(uint8_t __iomem * registers,
722 int trap_pagefaults,
723 int invalid_type,
724 struct drm_psb_private *dev_priv);
725extern void psb_mmu_driver_takedown(struct psb_mmu_driver *driver);
726extern struct psb_mmu_pd *psb_mmu_get_default_pd(struct psb_mmu_driver
727 *driver);
728extern void psb_mmu_mirror_gtt(struct psb_mmu_pd *pd, uint32_t mmu_offset,
729 uint32_t gtt_start, uint32_t gtt_pages);
730extern struct psb_mmu_pd *psb_mmu_alloc_pd(struct psb_mmu_driver *driver,
731 int trap_pagefaults,
732 int invalid_type);
733extern void psb_mmu_free_pagedir(struct psb_mmu_pd *pd);
734extern void psb_mmu_flush(struct psb_mmu_driver *driver, int rc_prot);
735extern void psb_mmu_remove_pfn_sequence(struct psb_mmu_pd *pd,
736 unsigned long address,
737 uint32_t num_pages);
738extern int psb_mmu_insert_pfn_sequence(struct psb_mmu_pd *pd,
739 uint32_t start_pfn,
740 unsigned long address,
741 uint32_t num_pages, int type);
742extern int psb_mmu_virtual_to_pfn(struct psb_mmu_pd *pd, uint32_t virtual,
743 unsigned long *pfn);
744
745/*
746 * Enable / disable MMU for different requestors.
747 */
748
749
750extern void psb_mmu_set_pd_context(struct psb_mmu_pd *pd, int hw_context);
751extern int psb_mmu_insert_pages(struct psb_mmu_pd *pd, struct page **pages,
752 unsigned long address, uint32_t num_pages,
753 uint32_t desired_tile_stride,
754 uint32_t hw_tile_stride, int type);
755extern void psb_mmu_remove_pages(struct psb_mmu_pd *pd,
756 unsigned long address, uint32_t num_pages,
757 uint32_t desired_tile_stride,
758 uint32_t hw_tile_stride);
759/*
760 *psb_irq.c
761 */
762
763extern irqreturn_t psb_irq_handler(DRM_IRQ_ARGS);
764extern int psb_irq_enable_dpst(struct drm_device *dev);
765extern int psb_irq_disable_dpst(struct drm_device *dev);
766extern void psb_irq_preinstall(struct drm_device *dev);
767extern int psb_irq_postinstall(struct drm_device *dev);
768extern void psb_irq_uninstall(struct drm_device *dev);
769extern void psb_irq_turn_on_dpst(struct drm_device *dev);
770extern void psb_irq_turn_off_dpst(struct drm_device *dev);
771
772extern void psb_irq_uninstall_islands(struct drm_device *dev, int hw_islands);
773extern int psb_vblank_wait2(struct drm_device *dev, unsigned int *sequence);
774extern int psb_vblank_wait(struct drm_device *dev, unsigned int *sequence);
775extern int psb_enable_vblank(struct drm_device *dev, int crtc);
776extern void psb_disable_vblank(struct drm_device *dev, int crtc);
777void
778psb_enable_pipestat(struct drm_psb_private *dev_priv, int pipe, u32 mask);
779
780void
781psb_disable_pipestat(struct drm_psb_private *dev_priv, int pipe, u32 mask);
782
783extern u32 psb_get_vblank_counter(struct drm_device *dev, int crtc);
784
785/*
Alan Cox5c49fd32011-11-03 18:22:04 +0000786 * framebuffer.c
787 */
788extern int psbfb_probed(struct drm_device *dev);
789extern int psbfb_remove(struct drm_device *dev,
790 struct drm_framebuffer *fb);
791/*
792 * accel_2d.c
793 */
794extern void psbfb_copyarea(struct fb_info *info,
795 const struct fb_copyarea *region);
796extern int psbfb_sync(struct fb_info *info);
797extern void psb_spank(struct drm_psb_private *dev_priv);
798
799/*
800 * psb_reset.c
801 */
802
803extern void psb_lid_timer_init(struct drm_psb_private *dev_priv);
804extern void psb_lid_timer_takedown(struct drm_psb_private *dev_priv);
805extern void psb_print_pagefault(struct drm_psb_private *dev_priv);
806
807/* modesetting */
808extern void psb_modeset_init(struct drm_device *dev);
809extern void psb_modeset_cleanup(struct drm_device *dev);
810extern int psb_fbdev_init(struct drm_device *dev);
811
812/* backlight.c */
813int gma_backlight_init(struct drm_device *dev);
814void gma_backlight_exit(struct drm_device *dev);
Zhao Yakuid112a812012-08-08 13:55:55 +0000815void gma_backlight_disable(struct drm_device *dev);
816void gma_backlight_enable(struct drm_device *dev);
817void gma_backlight_set(struct drm_device *dev, int v);
Alan Cox5c49fd32011-11-03 18:22:04 +0000818
819/* oaktrail_crtc.c */
820extern const struct drm_crtc_helper_funcs oaktrail_helper_funcs;
821
822/* oaktrail_lvds.c */
823extern void oaktrail_lvds_init(struct drm_device *dev,
824 struct psb_intel_mode_device *mode_dev);
825
826/* psb_intel_display.c */
827extern const struct drm_crtc_helper_funcs psb_intel_helper_funcs;
828extern const struct drm_crtc_funcs psb_intel_crtc_funcs;
829
830/* psb_intel_lvds.c */
831extern const struct drm_connector_helper_funcs
832 psb_intel_lvds_connector_helper_funcs;
833extern const struct drm_connector_funcs psb_intel_lvds_connector_funcs;
834
835/* gem.c */
836extern int psb_gem_init_object(struct drm_gem_object *obj);
837extern void psb_gem_free_object(struct drm_gem_object *obj);
838extern int psb_gem_get_aperture(struct drm_device *dev, void *data,
839 struct drm_file *file);
840extern int psb_gem_dumb_create(struct drm_file *file, struct drm_device *dev,
841 struct drm_mode_create_dumb *args);
842extern int psb_gem_dumb_destroy(struct drm_file *file, struct drm_device *dev,
843 uint32_t handle);
844extern int psb_gem_dumb_map_gtt(struct drm_file *file, struct drm_device *dev,
845 uint32_t handle, uint64_t *offset);
846extern int psb_gem_fault(struct vm_area_struct *vma, struct vm_fault *vmf);
847extern int psb_gem_create_ioctl(struct drm_device *dev, void *data,
848 struct drm_file *file);
849extern int psb_gem_mmap_ioctl(struct drm_device *dev, void *data,
850 struct drm_file *file);
851
852/* psb_device.c */
853extern const struct psb_ops psb_chip_ops;
854
855/* oaktrail_device.c */
856extern const struct psb_ops oaktrail_chip_ops;
857
Kirill A. Shutemov026abc32012-03-08 16:02:20 +0000858/* mdlfd_device.c */
859extern const struct psb_ops mdfld_chip_ops;
860
Alan Cox5c49fd32011-11-03 18:22:04 +0000861/* cdv_device.c */
862extern const struct psb_ops cdv_chip_ops;
863
864/*
865 * Debug print bits setting
866 */
867#define PSB_D_GENERAL (1 << 0)
868#define PSB_D_INIT (1 << 1)
869#define PSB_D_IRQ (1 << 2)
870#define PSB_D_ENTRY (1 << 3)
871/* debug the get H/V BP/FP count */
872#define PSB_D_HV (1 << 4)
873#define PSB_D_DBI_BF (1 << 5)
874#define PSB_D_PM (1 << 6)
875#define PSB_D_RENDER (1 << 7)
876#define PSB_D_REG (1 << 8)
877#define PSB_D_MSVDX (1 << 9)
878#define PSB_D_TOPAZ (1 << 10)
879
880extern int drm_psb_no_fb;
881extern int drm_idle_check_interval;
882
883/*
884 * Utilities
885 */
886
887static inline u32 MRST_MSG_READ32(uint port, uint offset)
888{
889 int mcr = (0xD0<<24) | (port << 16) | (offset << 8);
890 uint32_t ret_val = 0;
891 struct pci_dev *pci_root = pci_get_bus_and_slot(0, 0);
892 pci_write_config_dword(pci_root, 0xD0, mcr);
893 pci_read_config_dword(pci_root, 0xD4, &ret_val);
894 pci_dev_put(pci_root);
895 return ret_val;
896}
897static inline void MRST_MSG_WRITE32(uint port, uint offset, u32 value)
898{
899 int mcr = (0xE0<<24) | (port << 16) | (offset << 8) | 0xF0;
900 struct pci_dev *pci_root = pci_get_bus_and_slot(0, 0);
901 pci_write_config_dword(pci_root, 0xD4, value);
902 pci_write_config_dword(pci_root, 0xD0, mcr);
903 pci_dev_put(pci_root);
904}
905static inline u32 MDFLD_MSG_READ32(uint port, uint offset)
906{
907 int mcr = (0x10<<24) | (port << 16) | (offset << 8);
908 uint32_t ret_val = 0;
909 struct pci_dev *pci_root = pci_get_bus_and_slot(0, 0);
910 pci_write_config_dword(pci_root, 0xD0, mcr);
911 pci_read_config_dword(pci_root, 0xD4, &ret_val);
912 pci_dev_put(pci_root);
913 return ret_val;
914}
915static inline void MDFLD_MSG_WRITE32(uint port, uint offset, u32 value)
916{
917 int mcr = (0x11<<24) | (port << 16) | (offset << 8) | 0xF0;
918 struct pci_dev *pci_root = pci_get_bus_and_slot(0, 0);
919 pci_write_config_dword(pci_root, 0xD4, value);
920 pci_write_config_dword(pci_root, 0xD0, mcr);
921 pci_dev_put(pci_root);
922}
923
924static inline uint32_t REGISTER_READ(struct drm_device *dev, uint32_t reg)
925{
926 struct drm_psb_private *dev_priv = dev->dev_private;
927 return ioread32(dev_priv->vdc_reg + reg);
928}
929
930#define REG_READ(reg) REGISTER_READ(dev, (reg))
931
932static inline void REGISTER_WRITE(struct drm_device *dev, uint32_t reg,
933 uint32_t val)
934{
935 struct drm_psb_private *dev_priv = dev->dev_private;
936 iowrite32((val), dev_priv->vdc_reg + (reg));
937}
938
939#define REG_WRITE(reg, val) REGISTER_WRITE(dev, (reg), (val))
940
941static inline void REGISTER_WRITE16(struct drm_device *dev,
942 uint32_t reg, uint32_t val)
943{
944 struct drm_psb_private *dev_priv = dev->dev_private;
945 iowrite16((val), dev_priv->vdc_reg + (reg));
946}
947
948#define REG_WRITE16(reg, val) REGISTER_WRITE16(dev, (reg), (val))
949
950static inline void REGISTER_WRITE8(struct drm_device *dev,
951 uint32_t reg, uint32_t val)
952{
953 struct drm_psb_private *dev_priv = dev->dev_private;
954 iowrite8((val), dev_priv->vdc_reg + (reg));
955}
956
957#define REG_WRITE8(reg, val) REGISTER_WRITE8(dev, (reg), (val))
958
959#define PSB_WVDC32(_val, _offs) iowrite32(_val, dev_priv->vdc_reg + (_offs))
960#define PSB_RVDC32(_offs) ioread32(dev_priv->vdc_reg + (_offs))
961
962/* #define TRAP_SGX_PM_FAULT 1 */
963#ifdef TRAP_SGX_PM_FAULT
964#define PSB_RSGX32(_offs) \
965({ \
966 if (inl(dev_priv->apm_base + PSB_APM_STS) & 0x3) { \
967 printk(KERN_ERR \
968 "access sgx when it's off!! (READ) %s, %d\n", \
969 __FILE__, __LINE__); \
970 melay(1000); \
971 } \
972 ioread32(dev_priv->sgx_reg + (_offs)); \
973})
974#else
975#define PSB_RSGX32(_offs) ioread32(dev_priv->sgx_reg + (_offs))
976#endif
977#define PSB_WSGX32(_val, _offs) iowrite32(_val, dev_priv->sgx_reg + (_offs))
978
979#define MSVDX_REG_DUMP 0
980
981#define PSB_WMSVDX32(_val, _offs) iowrite32(_val, dev_priv->msvdx_reg + (_offs))
982#define PSB_RMSVDX32(_offs) ioread32(dev_priv->msvdx_reg + (_offs))
983
984#endif