blob: d303f8271f7eedf05d846868df839bdc9015c4d5 [file] [log] [blame]
Thomas Gleixnera61127c2019-05-29 16:57:49 -07001/* SPDX-License-Identifier: GPL-2.0-only */
Alan Cox5c49fd32011-11-03 18:22:04 +00002/**************************************************************************
3 * Copyright (c) 2007-2011, Intel Corporation.
4 * All Rights Reserved.
5 *
Alan Cox5c49fd32011-11-03 18:22:04 +00006 **************************************************************************/
7
8#ifndef _PSB_DRV_H_
9#define _PSB_DRV_H_
10
11#include <linux/kref.h>
Souptick Joarder0edf6812018-08-23 17:01:22 -070012#include <linux/mm_types.h>
Alan Cox5c49fd32011-11-03 18:22:04 +000013
Sam Ravnborg51474332019-05-19 21:55:23 +020014#include <drm/drm_device.h>
Sam Ravnborgd825c562019-05-19 21:55:22 +020015
Patrik Jakobsson5ea75e02013-06-30 21:39:00 +020016#include "gma_display.h"
Alan Cox5c49fd32011-11-03 18:22:04 +000017#include "gtt.h"
Sam Ravnborg0c7b1782019-05-19 21:55:26 +020018#include "intel_bios.h"
Patrik Jakobssonac1b01b2014-01-04 19:35:20 +010019#include "mmu.h"
Sam Ravnborg0c7b1782019-05-19 21:55:26 +020020#include "oaktrail.h"
21#include "opregion.h"
22#include "power.h"
23#include "psb_intel_drv.h"
24#include "psb_reg.h"
Alan Cox5c49fd32011-11-03 18:22:04 +000025
Arthur Borsboomf90cd812014-03-15 22:12:17 +010026#define DRIVER_AUTHOR "Alan Cox <alan@linux.intel.com> and others"
Arthur Borsboomf90cd812014-03-15 22:12:17 +010027
28#define DRIVER_NAME "gma500"
29#define DRIVER_DESC "DRM driver for the Intel GMA500, GMA600, GMA3600, GMA3650"
30#define DRIVER_DATE "20140314"
31
32#define DRIVER_MAJOR 1
33#define DRIVER_MINOR 0
34#define DRIVER_PATCHLEVEL 0
35
Alan Cox5c49fd32011-11-03 18:22:04 +000036/* Append new drm mode definition here, align with libdrm definition */
37#define DRM_MODE_SCALE_NO_SCALE 2
38
39enum {
40 CHIP_PSB_8108 = 0, /* Poulsbo */
41 CHIP_PSB_8109 = 1, /* Poulsbo */
42 CHIP_MRST_4100 = 2, /* Moorestown/Oaktrail */
43 CHIP_MFLD_0130 = 3, /* Medfield */
44};
45
Thomas Zimmermanna2c68492020-12-01 11:35:29 +010046#define IS_PSB(drm) ((to_pci_dev((drm)->dev)->device & 0xfffe) == 0x8108)
47#define IS_MRST(drm) ((to_pci_dev((drm)->dev)->device & 0xfff0) == 0x4100)
48#define IS_MFLD(drm) ((to_pci_dev((drm)->dev)->device & 0xfff8) == 0x0130)
49#define IS_CDV(drm) ((to_pci_dev((drm)->dev)->device & 0xfff0) == 0x0be0)
Alan Cox5c49fd32011-11-03 18:22:04 +000050
Arthur Borsboom9083eb32014-03-15 22:12:18 +010051/* Hardware offsets */
Alan Cox5c49fd32011-11-03 18:22:04 +000052#define PSB_VDC_OFFSET 0x00000000
53#define PSB_VDC_SIZE 0x000080000
54#define MRST_MMIO_SIZE 0x0000C0000
55#define MDFLD_MMIO_SIZE 0x000100000
56#define PSB_SGX_SIZE 0x8000
57#define PSB_SGX_OFFSET 0x00040000
58#define MRST_SGX_OFFSET 0x00080000
Arthur Borsboom9083eb32014-03-15 22:12:18 +010059
60/* PCI resource identifiers */
Alan Cox5c49fd32011-11-03 18:22:04 +000061#define PSB_MMIO_RESOURCE 0
Patrik Jakobsson26579292013-09-16 18:02:40 +020062#define PSB_AUX_RESOURCE 0
Alan Cox5c49fd32011-11-03 18:22:04 +000063#define PSB_GATT_RESOURCE 2
64#define PSB_GTT_RESOURCE 3
Arthur Borsboom9083eb32014-03-15 22:12:18 +010065
66/* PCI configuration */
Alan Cox5c49fd32011-11-03 18:22:04 +000067#define PSB_GMCH_CTRL 0x52
68#define PSB_BSM 0x5C
69#define _PSB_GMCH_ENABLED 0x4
70#define PSB_PGETBL_CTL 0x2020
71#define _PSB_PGETBL_ENABLED 0x00000001
72#define PSB_SGX_2D_SLAVE_PORT 0x4000
Jan Safrata5a52b1f2014-09-26 10:40:29 +020073#define PSB_LPC_GBA 0x44
Alan Cox5c49fd32011-11-03 18:22:04 +000074
Arthur Borsboom9083eb32014-03-15 22:12:18 +010075/* TODO: To get rid of */
Alan Cox5c49fd32011-11-03 18:22:04 +000076#define PSB_TT_PRIV0_LIMIT (256*1024*1024)
77#define PSB_TT_PRIV0_PLIMIT (PSB_TT_PRIV0_LIMIT >> PAGE_SHIFT)
78
Arthur Borsboom9083eb32014-03-15 22:12:18 +010079/* SGX side MMU definitions (these can probably go) */
Alan Cox5c49fd32011-11-03 18:22:04 +000080
Arthur Borsboom9083eb32014-03-15 22:12:18 +010081/* Flags for external memory type field */
Alan Cox5c49fd32011-11-03 18:22:04 +000082#define PSB_MMU_CACHED_MEMORY 0x0001 /* Bind to MMU only */
83#define PSB_MMU_RO_MEMORY 0x0002 /* MMU RO memory */
84#define PSB_MMU_WO_MEMORY 0x0004 /* MMU WO memory */
Arthur Borsboom9083eb32014-03-15 22:12:18 +010085
86/* PTE's and PDE's */
Alan Cox5c49fd32011-11-03 18:22:04 +000087#define PSB_PDE_MASK 0x003FFFFF
88#define PSB_PDE_SHIFT 22
89#define PSB_PTE_SHIFT 12
Arthur Borsboom9083eb32014-03-15 22:12:18 +010090
91/* Cache control */
Alan Cox5c49fd32011-11-03 18:22:04 +000092#define PSB_PTE_VALID 0x0001 /* PTE / PDE valid */
93#define PSB_PTE_WO 0x0002 /* Write only */
94#define PSB_PTE_RO 0x0004 /* Read only */
95#define PSB_PTE_CACHED 0x0008 /* CPU cache coherent */
96
Arthur Borsboom9083eb32014-03-15 22:12:18 +010097/* VDC registers and bits */
Alan Cox5c49fd32011-11-03 18:22:04 +000098#define PSB_MSVDX_CLOCKGATING 0x2064
99#define PSB_TOPAZ_CLOCKGATING 0x2068
100#define PSB_HWSTAM 0x2098
101#define PSB_INSTPM 0x20C0
102#define PSB_INT_IDENTITY_R 0x20A4
Alan Coxd839ede2012-05-03 15:06:18 +0100103#define _PSB_IRQ_ASLE (1<<0)
Alan Cox5c49fd32011-11-03 18:22:04 +0000104#define _MDFLD_PIPEC_EVENT_FLAG (1<<2)
105#define _MDFLD_PIPEC_VBLANK_FLAG (1<<3)
106#define _PSB_DPST_PIPEB_FLAG (1<<4)
107#define _MDFLD_PIPEB_EVENT_FLAG (1<<4)
108#define _PSB_VSYNC_PIPEB_FLAG (1<<5)
109#define _PSB_DPST_PIPEA_FLAG (1<<6)
110#define _PSB_PIPEA_EVENT_FLAG (1<<6)
111#define _PSB_VSYNC_PIPEA_FLAG (1<<7)
112#define _MDFLD_MIPIA_FLAG (1<<16)
113#define _MDFLD_MIPIC_FLAG (1<<17)
Alan Cox68cb6382012-04-25 14:38:20 +0100114#define _PSB_IRQ_DISP_HOTSYNC (1<<17)
Alan Cox5c49fd32011-11-03 18:22:04 +0000115#define _PSB_IRQ_SGX_FLAG (1<<18)
116#define _PSB_IRQ_MSVDX_FLAG (1<<19)
117#define _LNC_IRQ_TOPAZ_FLAG (1<<20)
118
Patrik Jakobsson700e59f2011-11-29 22:20:34 +0000119#define _PSB_PIPE_EVENT_FLAG (_PSB_VSYNC_PIPEA_FLAG | \
120 _PSB_VSYNC_PIPEB_FLAG)
121
Alan Cox5c49fd32011-11-03 18:22:04 +0000122/* This flag includes all the display IRQ bits excepts the vblank irqs. */
123#define _MDFLD_DISP_ALL_IRQ_FLAG (_MDFLD_PIPEC_EVENT_FLAG | \
124 _MDFLD_PIPEB_EVENT_FLAG | \
125 _PSB_PIPEA_EVENT_FLAG | \
126 _PSB_VSYNC_PIPEA_FLAG | \
127 _MDFLD_MIPIA_FLAG | \
128 _MDFLD_MIPIC_FLAG)
129#define PSB_INT_IDENTITY_R 0x20A4
130#define PSB_INT_MASK_R 0x20A8
131#define PSB_INT_ENABLE_R 0x20A0
132
133#define _PSB_MMU_ER_MASK 0x0001FF00
134#define _PSB_MMU_ER_HOST (1 << 16)
135#define GPIOA 0x5010
136#define GPIOB 0x5014
137#define GPIOC 0x5018
138#define GPIOD 0x501c
139#define GPIOE 0x5020
140#define GPIOF 0x5024
141#define GPIOG 0x5028
142#define GPIOH 0x502c
143#define GPIO_CLOCK_DIR_MASK (1 << 0)
144#define GPIO_CLOCK_DIR_IN (0 << 1)
145#define GPIO_CLOCK_DIR_OUT (1 << 1)
146#define GPIO_CLOCK_VAL_MASK (1 << 2)
147#define GPIO_CLOCK_VAL_OUT (1 << 3)
148#define GPIO_CLOCK_VAL_IN (1 << 4)
149#define GPIO_CLOCK_PULLUP_DISABLE (1 << 5)
150#define GPIO_DATA_DIR_MASK (1 << 8)
151#define GPIO_DATA_DIR_IN (0 << 9)
152#define GPIO_DATA_DIR_OUT (1 << 9)
153#define GPIO_DATA_VAL_MASK (1 << 10)
154#define GPIO_DATA_VAL_OUT (1 << 11)
155#define GPIO_DATA_VAL_IN (1 << 12)
156#define GPIO_DATA_PULLUP_DISABLE (1 << 13)
157
158#define VCLK_DIVISOR_VGA0 0x6000
159#define VCLK_DIVISOR_VGA1 0x6004
160#define VCLK_POST_DIV 0x6010
161
162#define PSB_COMM_2D (PSB_ENGINE_2D << 4)
163#define PSB_COMM_3D (PSB_ENGINE_3D << 4)
164#define PSB_COMM_TA (PSB_ENGINE_TA << 4)
165#define PSB_COMM_HP (PSB_ENGINE_HP << 4)
166#define PSB_COMM_USER_IRQ (1024 >> 2)
167#define PSB_COMM_USER_IRQ_LOST (PSB_COMM_USER_IRQ + 1)
168#define PSB_COMM_FW (2048 >> 2)
169
170#define PSB_UIRQ_VISTEST 1
171#define PSB_UIRQ_OOM_REPLY 2
172#define PSB_UIRQ_FIRE_TA_REPLY 3
173#define PSB_UIRQ_FIRE_RASTER_REPLY 4
174
175#define PSB_2D_SIZE (256*1024*1024)
176#define PSB_MAX_RELOC_PAGES 1024
177
178#define PSB_LOW_REG_OFFS 0x0204
179#define PSB_HIGH_REG_OFFS 0x0600
180
181#define PSB_NUM_VBLANKS 2
182
183
184#define PSB_2D_SIZE (256*1024*1024)
185#define PSB_MAX_RELOC_PAGES 1024
186
187#define PSB_LOW_REG_OFFS 0x0204
188#define PSB_HIGH_REG_OFFS 0x0600
189
190#define PSB_NUM_VBLANKS 2
Daniel Vetterbfd83032013-12-11 11:34:41 +0100191#define PSB_WATCHDOG_DELAY (HZ * 2)
192#define PSB_LID_DELAY (HZ / 10)
Alan Cox5c49fd32011-11-03 18:22:04 +0000193
194#define MDFLD_PNW_B0 0x04
195#define MDFLD_PNW_C0 0x08
196
197#define MDFLD_DSR_2D_3D_0 (1 << 0)
198#define MDFLD_DSR_2D_3D_2 (1 << 1)
199#define MDFLD_DSR_CURSOR_0 (1 << 2)
200#define MDFLD_DSR_CURSOR_2 (1 << 3)
201#define MDFLD_DSR_OVERLAY_0 (1 << 4)
202#define MDFLD_DSR_OVERLAY_2 (1 << 5)
203#define MDFLD_DSR_MIPI_CONTROL (1 << 6)
204#define MDFLD_DSR_DAMAGE_MASK_0 ((1 << 0) | (1 << 2) | (1 << 4))
205#define MDFLD_DSR_DAMAGE_MASK_2 ((1 << 1) | (1 << 3) | (1 << 5))
206#define MDFLD_DSR_2D_3D (MDFLD_DSR_2D_3D_0 | MDFLD_DSR_2D_3D_2)
207
208#define MDFLD_DSR_RR 45
209#define MDFLD_DPU_ENABLE (1 << 31)
210#define MDFLD_DSR_FULLSCREEN (1 << 30)
Daniel Vetterbfd83032013-12-11 11:34:41 +0100211#define MDFLD_DSR_DELAY (HZ / MDFLD_DSR_RR)
Alan Cox5c49fd32011-11-03 18:22:04 +0000212
213#define PSB_PWR_STATE_ON 1
214#define PSB_PWR_STATE_OFF 2
215
216#define PSB_PMPOLICY_NOPM 0
217#define PSB_PMPOLICY_CLOCKGATING 1
218#define PSB_PMPOLICY_POWERDOWN 2
219
220#define PSB_PMSTATE_POWERUP 0
221#define PSB_PMSTATE_CLOCKGATED 1
222#define PSB_PMSTATE_POWERDOWN 2
223#define PSB_PCIx_MSI_ADDR_LOC 0x94
224#define PSB_PCIx_MSI_DATA_LOC 0x98
225
226/* Medfield crystal settings */
227#define KSEL_CRYSTAL_19 1
228#define KSEL_BYPASS_19 5
229#define KSEL_BYPASS_25 6
230#define KSEL_BYPASS_83_100 7
231
Thomas Zimmermann6b7ce2c2019-11-22 11:05:45 +0100232struct drm_fb_helper;
233
Alan Cox5c49fd32011-11-03 18:22:04 +0000234struct opregion_header;
235struct opregion_acpi;
236struct opregion_swsci;
237struct opregion_asle;
238
239struct psb_intel_opregion {
240 struct opregion_header *header;
241 struct opregion_acpi *acpi;
242 struct opregion_swsci *swsci;
243 struct opregion_asle *asle;
Alan Cox1fb28e92012-04-25 14:37:14 +0100244 void *vbt;
Alan Coxd839ede2012-05-03 15:06:18 +0100245 u32 __iomem *lid_state;
Patrik Jakobsson778e26d2014-03-11 18:51:20 +0100246 struct work_struct asle_work;
Alan Cox5c49fd32011-11-03 18:22:04 +0000247};
248
Patrik Jakobsson57369952011-12-19 21:41:10 +0000249struct sdvo_device_mapping {
250 u8 initialized;
251 u8 dvo_port;
252 u8 slave_addr;
253 u8 dvo_wiring;
254 u8 i2c_pin;
255 u8 i2c_speed;
256 u8 ddc_pin;
257};
258
Patrik Jakobsson5c0c1d52011-12-19 21:40:58 +0000259struct intel_gmbus {
260 struct i2c_adapter adapter;
261 struct i2c_adapter *force_bit;
262 u32 reg0;
263};
264
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100265/* Register offset maps */
Alan Cox8512e072012-05-11 11:30:53 +0100266struct psb_offset {
267 u32 fp0;
268 u32 fp1;
269 u32 cntr;
270 u32 conf;
271 u32 src;
272 u32 dpll;
273 u32 dpll_md;
274 u32 htotal;
275 u32 hblank;
276 u32 hsync;
277 u32 vtotal;
278 u32 vblank;
279 u32 vsync;
280 u32 stride;
281 u32 size;
282 u32 pos;
283 u32 surf;
284 u32 addr;
285 u32 base;
286 u32 status;
287 u32 linoff;
288 u32 tileoff;
289 u32 palette;
290};
291
292/*
Alan Cox648a8e32012-03-08 16:00:31 +0000293 * Register save state. This is used to hold the context when the
294 * device is powered off. In the case of Oaktrail this can (but does not
295 * yet) include screen blank. Operations occuring during the save
296 * update the register cache instead.
297 */
Alan Cox62563042012-05-11 11:30:16 +0100298
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100299/* Common status for pipes */
Alan Cox62563042012-05-11 11:30:16 +0100300struct psb_pipe {
301 u32 fp0;
302 u32 fp1;
303 u32 cntr;
304 u32 conf;
305 u32 src;
306 u32 dpll;
307 u32 dpll_md;
308 u32 htotal;
309 u32 hblank;
310 u32 hsync;
311 u32 vtotal;
312 u32 vblank;
313 u32 vsync;
314 u32 stride;
315 u32 size;
316 u32 pos;
317 u32 base;
318 u32 surf;
319 u32 addr;
320 u32 status;
321 u32 linoff;
322 u32 tileoff;
323 u32 palette[256];
324};
325
Alan Cox648a8e32012-03-08 16:00:31 +0000326struct psb_state {
Alan Cox648a8e32012-03-08 16:00:31 +0000327 uint32_t saveVCLK_DIVISOR_VGA0;
328 uint32_t saveVCLK_DIVISOR_VGA1;
329 uint32_t saveVCLK_POST_DIV;
330 uint32_t saveVGACNTRL;
331 uint32_t saveADPA;
332 uint32_t saveLVDS;
333 uint32_t saveDVOA;
334 uint32_t saveDVOB;
335 uint32_t saveDVOC;
336 uint32_t savePP_ON;
337 uint32_t savePP_OFF;
338 uint32_t savePP_CONTROL;
339 uint32_t savePP_CYCLE;
340 uint32_t savePFIT_CONTROL;
Alan Cox648a8e32012-03-08 16:00:31 +0000341 uint32_t saveCLOCKGATING;
342 uint32_t saveDSPARB;
Alan Cox648a8e32012-03-08 16:00:31 +0000343 uint32_t savePFIT_AUTO_RATIOS;
344 uint32_t savePFIT_PGM_RATIOS;
345 uint32_t savePP_ON_DELAYS;
346 uint32_t savePP_OFF_DELAYS;
347 uint32_t savePP_DIVISOR;
Alan Cox648a8e32012-03-08 16:00:31 +0000348 uint32_t saveBCLRPAT_A;
349 uint32_t saveBCLRPAT_B;
Alan Cox648a8e32012-03-08 16:00:31 +0000350 uint32_t savePERF_MODE;
351 uint32_t saveDSPFW1;
352 uint32_t saveDSPFW2;
353 uint32_t saveDSPFW3;
354 uint32_t saveDSPFW4;
355 uint32_t saveDSPFW5;
356 uint32_t saveDSPFW6;
357 uint32_t saveCHICKENBIT;
358 uint32_t saveDSPACURSOR_CTRL;
359 uint32_t saveDSPBCURSOR_CTRL;
360 uint32_t saveDSPACURSOR_BASE;
361 uint32_t saveDSPBCURSOR_BASE;
362 uint32_t saveDSPACURSOR_POS;
363 uint32_t saveDSPBCURSOR_POS;
Alan Cox648a8e32012-03-08 16:00:31 +0000364 uint32_t saveOV_OVADD;
365 uint32_t saveOV_OGAMC0;
366 uint32_t saveOV_OGAMC1;
367 uint32_t saveOV_OGAMC2;
368 uint32_t saveOV_OGAMC3;
369 uint32_t saveOV_OGAMC4;
370 uint32_t saveOV_OGAMC5;
371 uint32_t saveOVC_OVADD;
372 uint32_t saveOVC_OGAMC0;
373 uint32_t saveOVC_OGAMC1;
374 uint32_t saveOVC_OGAMC2;
375 uint32_t saveOVC_OGAMC3;
376 uint32_t saveOVC_OGAMC4;
377 uint32_t saveOVC_OGAMC5;
378
379 /* DPST register save */
380 uint32_t saveHISTOGRAM_INT_CONTROL_REG;
381 uint32_t saveHISTOGRAM_LOGIC_CONTROL_REG;
382 uint32_t savePWM_CONTROL_LOGIC;
383};
384
Kirill A. Shutemov026abc32012-03-08 16:02:20 +0000385struct medfield_state {
Kirill A. Shutemov026abc32012-03-08 16:02:20 +0000386 uint32_t saveMIPI;
Kirill A. Shutemov026abc32012-03-08 16:02:20 +0000387 uint32_t saveMIPI_C;
388
389 uint32_t savePFIT_CONTROL;
390 uint32_t savePFIT_PGM_RATIOS;
391 uint32_t saveHDMIPHYMISCCTL;
392 uint32_t saveHDMIB_CONTROL;
393};
394
Alan Cox09016a12012-03-14 12:00:29 +0000395struct cdv_state {
396 uint32_t saveDSPCLK_GATE_D;
397 uint32_t saveRAMCLK_GATE_D;
398 uint32_t saveDSPARB;
399 uint32_t saveDSPFW[6];
400 uint32_t saveADPA;
401 uint32_t savePP_CONTROL;
402 uint32_t savePFIT_PGM_RATIOS;
403 uint32_t saveLVDS;
404 uint32_t savePFIT_CONTROL;
405 uint32_t savePP_ON_DELAYS;
406 uint32_t savePP_OFF_DELAYS;
407 uint32_t savePP_CYCLE;
408 uint32_t saveVGACNTRL;
409 uint32_t saveIER;
410 uint32_t saveIMR;
411 u8 saveLBB;
412};
413
Alan Coxc6265ff2012-03-08 16:02:05 +0000414struct psb_save_area {
Alan Cox62563042012-05-11 11:30:16 +0100415 struct psb_pipe pipe[3];
Alan Coxc6265ff2012-03-08 16:02:05 +0000416 uint32_t saveBSM;
417 uint32_t saveVBT;
418 union {
419 struct psb_state psb;
Kirill A. Shutemov026abc32012-03-08 16:02:20 +0000420 struct medfield_state mdfld;
Alan Cox09016a12012-03-14 12:00:29 +0000421 struct cdv_state cdv;
Alan Coxc6265ff2012-03-08 16:02:05 +0000422 };
423 uint32_t saveBLC_PWM_CTL2;
424 uint32_t saveBLC_PWM_CTL;
425};
426
Alan Cox5c49fd32011-11-03 18:22:04 +0000427struct psb_ops;
428
Alan Cox04bd5642011-11-16 22:39:32 +0000429#define PSB_NUM_PIPE 3
430
Alan Cox5c49fd32011-11-03 18:22:04 +0000431struct drm_psb_private {
432 struct drm_device *dev;
Patrik Jakobsson26579292013-09-16 18:02:40 +0200433 struct pci_dev *aux_pdev; /* Currently only used by mrst */
Jan Safrata5a52b1f2014-09-26 10:40:29 +0200434 struct pci_dev *lpc_pdev; /* Currently only used by mrst */
Alan Cox5c49fd32011-11-03 18:22:04 +0000435 const struct psb_ops *ops;
Alan Cox8512e072012-05-11 11:30:53 +0100436 const struct psb_offset *regmap;
Thomas Zimmermann6b7ce2c2019-11-22 11:05:45 +0100437
Alan Cox1fb28e92012-04-25 14:37:14 +0100438 struct child_device_config *child_dev;
439 int child_dev_num;
Alan Cox5c49fd32011-11-03 18:22:04 +0000440
441 struct psb_gtt gtt;
442
443 /* GTT Memory manager */
444 struct psb_gtt_mm *gtt_mm;
445 struct page *scratch_page;
Kirill A. Shutemoveab37602012-05-03 15:07:46 +0100446 u32 __iomem *gtt_map;
Alan Cox5c49fd32011-11-03 18:22:04 +0000447 uint32_t stolen_base;
Kirill A. Shutemov37214ca2012-05-03 15:08:26 +0100448 u8 __iomem *vram_addr;
Alan Cox5c49fd32011-11-03 18:22:04 +0000449 unsigned long vram_stolen_size;
450 int gtt_initialized;
451 u16 gmch_ctrl; /* Saved GTT setup */
452 u32 pge_ctl;
453
454 struct mutex gtt_mutex;
455 struct resource *gtt_mem; /* Our PCI resource */
456
Daniel Vetter737292a2015-11-23 10:32:53 +0100457 struct mutex mmap_mutex;
458
Alan Cox5c49fd32011-11-03 18:22:04 +0000459 struct psb_mmu_driver *mmu;
460 struct psb_mmu_pd *pf_pd;
461
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100462 /* Register base */
Kirill A. Shutemov846a60382012-05-03 15:08:08 +0100463 uint8_t __iomem *sgx_reg;
464 uint8_t __iomem *vdc_reg;
Patrik Jakobsson26579292013-09-16 18:02:40 +0200465 uint8_t __iomem *aux_reg; /* Auxillary vdc pipe regs */
Jan Safrata5a52b1f2014-09-26 10:40:29 +0200466 uint16_t lpc_gpio_base;
Alan Cox5c49fd32011-11-03 18:22:04 +0000467 uint32_t gatt_free_offset;
468
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100469 /* Fencing / irq */
Alan Cox5c49fd32011-11-03 18:22:04 +0000470 uint32_t vdc_irq_mask;
471 uint32_t pipestat[PSB_NUM_PIPE];
472
473 spinlock_t irqmask_lock;
474
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100475 /* Power */
Alan Cox5c49fd32011-11-03 18:22:04 +0000476 bool suspended;
477 bool display_power;
478 int display_count;
479
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100480 /* Modesetting */
Alan Cox5c49fd32011-11-03 18:22:04 +0000481 struct psb_intel_mode_device mode_dev;
Alan Cox4ab2c7f2012-05-14 12:04:00 +0100482 bool modeset; /* true if we have done the mode_device setup */
Alan Cox5c49fd32011-11-03 18:22:04 +0000483
484 struct drm_crtc *plane_to_crtc_mapping[PSB_NUM_PIPE];
485 struct drm_crtc *pipe_to_crtc_mapping[PSB_NUM_PIPE];
486 uint32_t num_pipe;
487
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100488 /* OSPM info (Power management base) (TODO: can go ?) */
Alan Cox5c49fd32011-11-03 18:22:04 +0000489 uint32_t ospm_base;
490
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100491 /* Sizes info */
Alan Cox5c49fd32011-11-03 18:22:04 +0000492 u32 fuse_reg_value;
493 u32 video_device_fuse;
494
495 /* PCI revision ID for B0:D2:F0 */
496 uint8_t platform_rev_id;
497
Patrik Jakobsson5c0c1d52011-12-19 21:40:58 +0000498 /* gmbus */
499 struct intel_gmbus *gmbus;
Patrik Jakobsson26579292013-09-16 18:02:40 +0200500 uint8_t __iomem *gmbus_reg;
Patrik Jakobsson5c0c1d52011-12-19 21:40:58 +0000501
Patrik Jakobsson57369952011-12-19 21:41:10 +0000502 /* Used by SDVO */
503 int crt_ddc_pin;
504 /* FIXME: The mappings should be parsed from bios but for now we can
505 pretend there are no mappings available */
506 struct sdvo_device_mapping sdvo_mappings[2];
507 u32 hotplug_supported_mask;
508 struct drm_property *broadcast_rgb_property;
509 struct drm_property *force_audio_property;
510
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100511 /* LVDS info */
Alan Cox5c49fd32011-11-03 18:22:04 +0000512 int backlight_duty_cycle; /* restore backlight to this value */
513 bool panel_wants_dither;
514 struct drm_display_mode *panel_fixed_mode;
515 struct drm_display_mode *lfp_lvds_vbt_mode;
516 struct drm_display_mode *sdvo_lvds_vbt_mode;
517
518 struct bdb_lvds_backlight *lvds_bl; /* LVDS backlight info from VBT */
Patrik Jakobssona12d6a02011-12-19 21:41:22 +0000519 struct psb_intel_i2c_chan *lvds_i2c_bus; /* FIXME: Remove this? */
Alan Cox5c49fd32011-11-03 18:22:04 +0000520
521 /* Feature bits from the VBIOS */
522 unsigned int int_tv_support:1;
523 unsigned int lvds_dither:1;
524 unsigned int lvds_vbt:1;
525 unsigned int int_crt_support:1;
526 unsigned int lvds_use_ssc:1;
527 int lvds_ssc_freq;
528 bool is_lvds_on;
529 bool is_mipi_on;
Patrik Jakobsson7c420632019-04-16 13:46:07 +0200530 bool lvds_enabled_in_vbt;
Alan Cox5c49fd32011-11-03 18:22:04 +0000531 u32 mipi_ctrl_display;
532
533 unsigned int core_freq;
534 uint32_t iLVDS_enable;
535
536 /* Runtime PM state */
537 int rpm_enabled;
538
539 /* MID specific */
Kirill A. Shutemov4086b1e2012-05-03 16:27:21 +0100540 bool has_gct;
Alan Cox5c49fd32011-11-03 18:22:04 +0000541 struct oaktrail_gct_data gct_data;
542
Alan Cox933315a2012-03-08 16:00:17 +0000543 /* Oaktrail HDMI state */
Alan Cox5c49fd32011-11-03 18:22:04 +0000544 struct oaktrail_hdmi_dev *hdmi_priv;
Thomas Zimmermann6b7ce2c2019-11-22 11:05:45 +0100545
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100546 /* Register state */
Alan Coxc6265ff2012-03-08 16:02:05 +0000547 struct psb_save_area regs;
548
Alan Cox5c49fd32011-11-03 18:22:04 +0000549 /* MSI reg save */
550 uint32_t msi_addr;
551 uint32_t msi_data;
552
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100553 /* Hotplug handling */
Alan Coxae0a2462012-04-25 14:38:32 +0100554 struct work_struct hotplug_work;
Alan Cox5c49fd32011-11-03 18:22:04 +0000555
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100556 /* LID-Switch */
Alan Cox5c49fd32011-11-03 18:22:04 +0000557 spinlock_t lid_lock;
558 struct timer_list lid_timer;
559 struct psb_intel_opregion opregion;
Alan Cox5c49fd32011-11-03 18:22:04 +0000560 u32 lid_last_state;
561
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100562 /* Watchdog */
Alan Cox5c49fd32011-11-03 18:22:04 +0000563 uint32_t apm_reg;
564 uint16_t apm_base;
565
566 /*
567 * Used for modifying backlight from
568 * xrandr -- consider removing and using HAL instead
569 */
570 struct backlight_device *backlight_device;
571 struct drm_property *backlight_property;
Zhao Yakuid112a812012-08-08 13:55:55 +0000572 bool backlight_enabled;
573 int backlight_level;
Alan Cox5c49fd32011-11-03 18:22:04 +0000574 uint32_t blc_adj1;
575 uint32_t blc_adj2;
576
Thomas Zimmermann6b7ce2c2019-11-22 11:05:45 +0100577 struct drm_fb_helper *fb_helper;
Alan Cox5c49fd32011-11-03 18:22:04 +0000578
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100579 /* Panel brightness */
Kirill A. Shutemov026abc32012-03-08 16:02:20 +0000580 int brightness;
581 int brightness_adjusted;
582
583 bool dsr_enable;
584 u32 dsr_fb_update;
585 bool dpi_panel_on[3];
586 void *dsi_configs[2];
587 u32 bpp;
588 u32 bpp2;
589
590 u32 pipeconf[3];
591 u32 dspcntr[3];
592
593 int mdfld_panel_id;
Alan Cox642c52f2012-04-25 14:36:34 +0100594
595 bool dplla_96mhz; /* DPLL data from the VBT */
Zhao Yakuid112a812012-08-08 13:55:55 +0000596
597 struct {
598 int rate;
599 int lanes;
600 int preemphasis;
601 int vswing;
602
603 bool initialized;
604 bool support;
605 int bpp;
606 struct edp_power_seq pps;
607 } edp;
608 uint8_t panel_type;
Alan Cox5c49fd32011-11-03 18:22:04 +0000609};
610
611
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100612/* Operations for each board type */
Alan Cox5c49fd32011-11-03 18:22:04 +0000613struct psb_ops {
614 const char *name;
Alan Cox5c49fd32011-11-03 18:22:04 +0000615 int pipes; /* Number of output pipes */
616 int crtcs; /* Number of CRTCs */
617 int sgx_offset; /* Base offset of SGX device */
Alan Coxd235e642012-04-25 14:38:07 +0100618 int hdmi_mask; /* Mask of HDMI CRTCs */
619 int lvds_mask; /* Mask of LVDS CRTCs */
Patrik Jakobssoncf8efd32013-09-16 17:54:54 +0200620 int sdvo_mask; /* Mask of SDVO CRTCs */
Patrik Jakobssonbc794822012-05-21 15:27:30 +0100621 int cursor_needs_phys; /* If cursor base reg need physical address */
Alan Cox5c49fd32011-11-03 18:22:04 +0000622
623 /* Sub functions */
624 struct drm_crtc_helper_funcs const *crtc_helper;
625 struct drm_crtc_funcs const *crtc_funcs;
Patrik Jakobsson5ea75e02013-06-30 21:39:00 +0200626 const struct gma_clock_funcs *clock_funcs;
Alan Cox5c49fd32011-11-03 18:22:04 +0000627
628 /* Setup hooks */
629 int (*chip_setup)(struct drm_device *dev);
630 void (*chip_teardown)(struct drm_device *dev);
Alan Coxd235e642012-04-25 14:38:07 +0100631 /* Optional helper caller after modeset */
632 void (*errata)(struct drm_device *dev);
Alan Cox5c49fd32011-11-03 18:22:04 +0000633
634 /* Display management hooks */
635 int (*output_init)(struct drm_device *dev);
Alan Cox68cb6382012-04-25 14:38:20 +0100636 int (*hotplug)(struct drm_device *dev);
637 void (*hotplug_enable)(struct drm_device *dev, bool on);
Alan Cox5c49fd32011-11-03 18:22:04 +0000638 /* Power management hooks */
639 void (*init_pm)(struct drm_device *dev);
640 int (*save_regs)(struct drm_device *dev);
641 int (*restore_regs)(struct drm_device *dev);
Daniel Vetterd56f57a2015-12-04 09:45:53 +0100642 void (*save_crtc)(struct drm_crtc *crtc);
643 void (*restore_crtc)(struct drm_crtc *crtc);
Alan Cox5c49fd32011-11-03 18:22:04 +0000644 int (*power_up)(struct drm_device *dev);
645 int (*power_down)(struct drm_device *dev);
Patrik Jakobsson28a81942013-08-14 19:14:17 +0200646 void (*update_wm)(struct drm_device *dev, struct drm_crtc *crtc);
Patrik Jakobsson75346fe2013-08-15 00:54:44 +0200647 void (*disable_sr)(struct drm_device *dev);
Alan Cox5c49fd32011-11-03 18:22:04 +0000648
649 void (*lvds_bl_power)(struct drm_device *dev, bool on);
650#ifdef CONFIG_BACKLIGHT_CLASS_DEVICE
651 /* Backlight */
652 int (*backlight_init)(struct drm_device *dev);
653#endif
654 int i2c_bus; /* I2C bus identifier for Moorestown */
655};
656
657
658
Alan Cox5c49fd32011-11-03 18:22:04 +0000659extern int drm_crtc_probe_output_modes(struct drm_device *dev, int, int);
660extern int drm_pick_crtcs(struct drm_device *dev);
661
662static inline struct drm_psb_private *psb_priv(struct drm_device *dev)
663{
664 return (struct drm_psb_private *) dev->dev_private;
665}
666
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100667/* psb_irq.c */
Daniel Vettere9f0d762013-12-11 11:34:42 +0100668extern irqreturn_t psb_irq_handler(int irq, void *arg);
Alan Cox5c49fd32011-11-03 18:22:04 +0000669extern int psb_irq_enable_dpst(struct drm_device *dev);
670extern int psb_irq_disable_dpst(struct drm_device *dev);
671extern void psb_irq_preinstall(struct drm_device *dev);
672extern int psb_irq_postinstall(struct drm_device *dev);
673extern void psb_irq_uninstall(struct drm_device *dev);
674extern void psb_irq_turn_on_dpst(struct drm_device *dev);
675extern void psb_irq_turn_off_dpst(struct drm_device *dev);
676
677extern void psb_irq_uninstall_islands(struct drm_device *dev, int hw_islands);
678extern int psb_vblank_wait2(struct drm_device *dev, unsigned int *sequence);
679extern int psb_vblank_wait(struct drm_device *dev, unsigned int *sequence);
Thomas Zimmermann42eabbe2020-01-23 14:59:27 +0100680extern int psb_enable_vblank(struct drm_crtc *crtc);
681extern void psb_disable_vblank(struct drm_crtc *crtc);
Alan Cox5c49fd32011-11-03 18:22:04 +0000682void
683psb_enable_pipestat(struct drm_psb_private *dev_priv, int pipe, u32 mask);
684
685void
686psb_disable_pipestat(struct drm_psb_private *dev_priv, int pipe, u32 mask);
687
Thomas Zimmermann42eabbe2020-01-23 14:59:27 +0100688extern u32 psb_get_vblank_counter(struct drm_crtc *crtc);
Alan Cox5c49fd32011-11-03 18:22:04 +0000689
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100690/* framebuffer.c */
Alan Cox5c49fd32011-11-03 18:22:04 +0000691extern int psbfb_probed(struct drm_device *dev);
692extern int psbfb_remove(struct drm_device *dev,
693 struct drm_framebuffer *fb);
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100694/* accel_2d.c */
Alan Cox5c49fd32011-11-03 18:22:04 +0000695extern void psb_spank(struct drm_psb_private *dev_priv);
696
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100697/* psb_reset.c */
Alan Cox5c49fd32011-11-03 18:22:04 +0000698extern void psb_lid_timer_init(struct drm_psb_private *dev_priv);
699extern void psb_lid_timer_takedown(struct drm_psb_private *dev_priv);
700extern void psb_print_pagefault(struct drm_psb_private *dev_priv);
701
702/* modesetting */
703extern void psb_modeset_init(struct drm_device *dev);
704extern void psb_modeset_cleanup(struct drm_device *dev);
705extern int psb_fbdev_init(struct drm_device *dev);
706
707/* backlight.c */
708int gma_backlight_init(struct drm_device *dev);
709void gma_backlight_exit(struct drm_device *dev);
Zhao Yakuid112a812012-08-08 13:55:55 +0000710void gma_backlight_disable(struct drm_device *dev);
711void gma_backlight_enable(struct drm_device *dev);
712void gma_backlight_set(struct drm_device *dev, int v);
Alan Cox5c49fd32011-11-03 18:22:04 +0000713
714/* oaktrail_crtc.c */
715extern const struct drm_crtc_helper_funcs oaktrail_helper_funcs;
716
717/* oaktrail_lvds.c */
718extern void oaktrail_lvds_init(struct drm_device *dev,
719 struct psb_intel_mode_device *mode_dev);
720
721/* psb_intel_display.c */
722extern const struct drm_crtc_helper_funcs psb_intel_helper_funcs;
723extern const struct drm_crtc_funcs psb_intel_crtc_funcs;
724
725/* psb_intel_lvds.c */
726extern const struct drm_connector_helper_funcs
727 psb_intel_lvds_connector_helper_funcs;
728extern const struct drm_connector_funcs psb_intel_lvds_connector_funcs;
729
730/* gem.c */
Alan Cox5c49fd32011-11-03 18:22:04 +0000731extern int psb_gem_dumb_create(struct drm_file *file, struct drm_device *dev,
732 struct drm_mode_create_dumb *args);
Alan Cox5c49fd32011-11-03 18:22:04 +0000733
734/* psb_device.c */
735extern const struct psb_ops psb_chip_ops;
736
737/* oaktrail_device.c */
738extern const struct psb_ops oaktrail_chip_ops;
739
Kirill A. Shutemov026abc32012-03-08 16:02:20 +0000740/* mdlfd_device.c */
741extern const struct psb_ops mdfld_chip_ops;
742
Alan Cox5c49fd32011-11-03 18:22:04 +0000743/* cdv_device.c */
744extern const struct psb_ops cdv_chip_ops;
745
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100746/* Debug print bits setting */
Alan Cox5c49fd32011-11-03 18:22:04 +0000747#define PSB_D_GENERAL (1 << 0)
748#define PSB_D_INIT (1 << 1)
749#define PSB_D_IRQ (1 << 2)
750#define PSB_D_ENTRY (1 << 3)
751/* debug the get H/V BP/FP count */
752#define PSB_D_HV (1 << 4)
753#define PSB_D_DBI_BF (1 << 5)
754#define PSB_D_PM (1 << 6)
755#define PSB_D_RENDER (1 << 7)
756#define PSB_D_REG (1 << 8)
757#define PSB_D_MSVDX (1 << 9)
758#define PSB_D_TOPAZ (1 << 10)
759
Alan Cox5c49fd32011-11-03 18:22:04 +0000760extern int drm_idle_check_interval;
761
Arthur Borsboom9083eb32014-03-15 22:12:18 +0100762/* Utilities */
Sinan Kayaba99d832017-12-19 00:37:44 -0500763static inline u32 MRST_MSG_READ32(int domain, uint port, uint offset)
Alan Cox5c49fd32011-11-03 18:22:04 +0000764{
765 int mcr = (0xD0<<24) | (port << 16) | (offset << 8);
766 uint32_t ret_val = 0;
Sinan Kayaba99d832017-12-19 00:37:44 -0500767 struct pci_dev *pci_root = pci_get_domain_bus_and_slot(domain, 0, 0);
Alan Cox5c49fd32011-11-03 18:22:04 +0000768 pci_write_config_dword(pci_root, 0xD0, mcr);
769 pci_read_config_dword(pci_root, 0xD4, &ret_val);
770 pci_dev_put(pci_root);
771 return ret_val;
772}
Sinan Kayaba99d832017-12-19 00:37:44 -0500773static inline void MRST_MSG_WRITE32(int domain, uint port, uint offset,
774 u32 value)
Alan Cox5c49fd32011-11-03 18:22:04 +0000775{
776 int mcr = (0xE0<<24) | (port << 16) | (offset << 8) | 0xF0;
Sinan Kayaba99d832017-12-19 00:37:44 -0500777 struct pci_dev *pci_root = pci_get_domain_bus_and_slot(domain, 0, 0);
Alan Cox5c49fd32011-11-03 18:22:04 +0000778 pci_write_config_dword(pci_root, 0xD4, value);
779 pci_write_config_dword(pci_root, 0xD0, mcr);
780 pci_dev_put(pci_root);
781}
Sinan Kayaba99d832017-12-19 00:37:44 -0500782static inline u32 MDFLD_MSG_READ32(int domain, uint port, uint offset)
Alan Cox5c49fd32011-11-03 18:22:04 +0000783{
784 int mcr = (0x10<<24) | (port << 16) | (offset << 8);
785 uint32_t ret_val = 0;
Sinan Kayaba99d832017-12-19 00:37:44 -0500786 struct pci_dev *pci_root = pci_get_domain_bus_and_slot(domain, 0, 0);
Alan Cox5c49fd32011-11-03 18:22:04 +0000787 pci_write_config_dword(pci_root, 0xD0, mcr);
788 pci_read_config_dword(pci_root, 0xD4, &ret_val);
789 pci_dev_put(pci_root);
790 return ret_val;
791}
Sinan Kayaba99d832017-12-19 00:37:44 -0500792static inline void MDFLD_MSG_WRITE32(int domain, uint port, uint offset,
793 u32 value)
Alan Cox5c49fd32011-11-03 18:22:04 +0000794{
795 int mcr = (0x11<<24) | (port << 16) | (offset << 8) | 0xF0;
Sinan Kayaba99d832017-12-19 00:37:44 -0500796 struct pci_dev *pci_root = pci_get_domain_bus_and_slot(domain, 0, 0);
Alan Cox5c49fd32011-11-03 18:22:04 +0000797 pci_write_config_dword(pci_root, 0xD4, value);
798 pci_write_config_dword(pci_root, 0xD0, mcr);
799 pci_dev_put(pci_root);
800}
801
802static inline uint32_t REGISTER_READ(struct drm_device *dev, uint32_t reg)
803{
804 struct drm_psb_private *dev_priv = dev->dev_private;
805 return ioread32(dev_priv->vdc_reg + reg);
806}
807
Patrik Jakobsson26579292013-09-16 18:02:40 +0200808static inline uint32_t REGISTER_READ_AUX(struct drm_device *dev, uint32_t reg)
809{
810 struct drm_psb_private *dev_priv = dev->dev_private;
811 return ioread32(dev_priv->aux_reg + reg);
812}
813
Alan Cox5c49fd32011-11-03 18:22:04 +0000814#define REG_READ(reg) REGISTER_READ(dev, (reg))
Patrik Jakobsson26579292013-09-16 18:02:40 +0200815#define REG_READ_AUX(reg) REGISTER_READ_AUX(dev, (reg))
Alan Cox5c49fd32011-11-03 18:22:04 +0000816
Patrik Jakobssonb97b8282013-11-07 00:14:18 +0100817/* Useful for post reads */
818static inline uint32_t REGISTER_READ_WITH_AUX(struct drm_device *dev,
819 uint32_t reg, int aux)
820{
821 uint32_t val;
822
823 if (aux)
824 val = REG_READ_AUX(reg);
825 else
826 val = REG_READ(reg);
827
828 return val;
829}
830
831#define REG_READ_WITH_AUX(reg, aux) REGISTER_READ_WITH_AUX(dev, (reg), (aux))
832
Alan Cox5c49fd32011-11-03 18:22:04 +0000833static inline void REGISTER_WRITE(struct drm_device *dev, uint32_t reg,
Patrik Jakobsson26579292013-09-16 18:02:40 +0200834 uint32_t val)
Alan Cox5c49fd32011-11-03 18:22:04 +0000835{
836 struct drm_psb_private *dev_priv = dev->dev_private;
837 iowrite32((val), dev_priv->vdc_reg + (reg));
838}
839
Patrik Jakobsson26579292013-09-16 18:02:40 +0200840static inline void REGISTER_WRITE_AUX(struct drm_device *dev, uint32_t reg,
841 uint32_t val)
842{
843 struct drm_psb_private *dev_priv = dev->dev_private;
844 iowrite32((val), dev_priv->aux_reg + (reg));
845}
846
Alan Cox5c49fd32011-11-03 18:22:04 +0000847#define REG_WRITE(reg, val) REGISTER_WRITE(dev, (reg), (val))
Patrik Jakobsson26579292013-09-16 18:02:40 +0200848#define REG_WRITE_AUX(reg, val) REGISTER_WRITE_AUX(dev, (reg), (val))
Alan Cox5c49fd32011-11-03 18:22:04 +0000849
Patrik Jakobssonb97b8282013-11-07 00:14:18 +0100850static inline void REGISTER_WRITE_WITH_AUX(struct drm_device *dev, uint32_t reg,
851 uint32_t val, int aux)
852{
853 if (aux)
854 REG_WRITE_AUX(reg, val);
855 else
856 REG_WRITE(reg, val);
857}
858
859#define REG_WRITE_WITH_AUX(reg, val, aux) REGISTER_WRITE_WITH_AUX(dev, (reg), (val), (aux))
860
Alan Cox5c49fd32011-11-03 18:22:04 +0000861static inline void REGISTER_WRITE16(struct drm_device *dev,
862 uint32_t reg, uint32_t val)
863{
864 struct drm_psb_private *dev_priv = dev->dev_private;
865 iowrite16((val), dev_priv->vdc_reg + (reg));
866}
867
868#define REG_WRITE16(reg, val) REGISTER_WRITE16(dev, (reg), (val))
869
870static inline void REGISTER_WRITE8(struct drm_device *dev,
871 uint32_t reg, uint32_t val)
872{
873 struct drm_psb_private *dev_priv = dev->dev_private;
874 iowrite8((val), dev_priv->vdc_reg + (reg));
875}
876
877#define REG_WRITE8(reg, val) REGISTER_WRITE8(dev, (reg), (val))
878
879#define PSB_WVDC32(_val, _offs) iowrite32(_val, dev_priv->vdc_reg + (_offs))
880#define PSB_RVDC32(_offs) ioread32(dev_priv->vdc_reg + (_offs))
881
882/* #define TRAP_SGX_PM_FAULT 1 */
883#ifdef TRAP_SGX_PM_FAULT
884#define PSB_RSGX32(_offs) \
885({ \
886 if (inl(dev_priv->apm_base + PSB_APM_STS) & 0x3) { \
Joe Perches8dfe1622017-02-28 04:55:54 -0800887 pr_err("access sgx when it's off!! (READ) %s, %d\n", \
888 __FILE__, __LINE__); \
Alan Cox5c49fd32011-11-03 18:22:04 +0000889 melay(1000); \
890 } \
891 ioread32(dev_priv->sgx_reg + (_offs)); \
892})
893#else
894#define PSB_RSGX32(_offs) ioread32(dev_priv->sgx_reg + (_offs))
895#endif
896#define PSB_WSGX32(_val, _offs) iowrite32(_val, dev_priv->sgx_reg + (_offs))
897
898#define MSVDX_REG_DUMP 0
899
900#define PSB_WMSVDX32(_val, _offs) iowrite32(_val, dev_priv->msvdx_reg + (_offs))
901#define PSB_RMSVDX32(_offs) ioread32(dev_priv->msvdx_reg + (_offs))
902
903#endif