aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/staging/cdv/pvr/services4/3rdparty/linux_framebuffer_mrst/mrstlfb.h
blob: 8780ea0fa3b36b5c75aa3d5839806c6f217ed729 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
/**********************************************************************
 *
 * Copyright(c) 2008 Imagination Technologies Ltd. All rights reserved.
 *
 * This program is free software; you can redistribute it and/or modify it
 * under the terms and conditions of the GNU General Public License,
 * version 2, as published by the Free Software Foundation.
 *
 * This program is distributed in the hope it will be useful but, except
 * as otherwise stated in writing, without any warranty; without even the
 * implied warranty of merchantability or fitness for a particular purpose.
 * See the GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License along with
 * this program; if not, write to the Free Software Foundation, Inc.,
 * 51 Franklin St - Fifth Floor, Boston, MA 02110-1301 USA.
 *
 * The full GNU General Public License is included in this distribution in
 * the file called "COPYING".
 *
 * Contact Information:
 * Imagination Technologies Ltd. <gpl-support@imgtec.com>
 * Home Park Estate, Kings Langley, Herts, WD4 8LZ, UK
 *
 ******************************************************************************/

#ifndef __MRSTLFB_H__
#define __MRSTLFB_H__

#include <drm/drmP.h>
#include "psb_intel_reg.h"

#define MRST_USING_INTERRUPTS

#define PSB_HWSTAM                0x2098
#define PSB_INSTPM                0x20C0
#define PSB_INT_IDENTITY_R        0x20A4
#define _PSB_VSYNC_PIPEB_FLAG     (1<<5)
#define _PSB_VSYNC_PIPEA_FLAG     (1<<7)
#define _PSB_IRQ_SGX_FLAG         (1<<18)
#define _PSB_IRQ_MSVDX_FLAG       (1<<19)
#define PSB_INT_MASK_R            0x20A8
#define PSB_INT_ENABLE_R          0x20A0

#define MAX_SWAPCHAINS			  1
#define MAX_FLIPBUFFERS			  9

/* IPC message and command defines used to enable/disable mipi panel voltages */
#define	IPC_MSG_PANEL_ON_OFF	0xE9
#define IPC_CMD_PANEL_ON	1
#define IPC_CMD_PANEL_OFF	0

typedef void *   MRST_HANDLE;

typedef enum tag_mrst_bool
{
	MRST_FALSE = 0,
	MRST_TRUE  = 1,
} MRST_BOOL, *MRST_PBOOL;

typedef int(* MRSTLFB_VSYNC_ISR_PFN)(struct drm_device* psDrmDevice, int iPipe);


typedef struct MRSTLFB_BUFFER_TAG
{
	
    IMG_UINT32		             	ui32BufferSize;
	union {
		
		IMG_SYS_PHYADDR             *psNonCont;
		
		IMG_SYS_PHYADDR				sCont;
	} uSysAddr;
	
	IMG_DEV_VIRTADDR             	sDevVAddr;
	
    IMG_CPU_VIRTADDR             	sCPUVAddr;    
	
	PVRSRV_SYNC_DATA             	*psSyncData;
	
	MRST_BOOL					 	bIsContiguous;
	
	MRST_BOOL					 	bIsAllocated;

	IMG_UINT32						ui32OwnerTaskID;
} MRSTLFB_BUFFER;

typedef struct MRSTLFB_VSYNC_FLIP_ITEM_TAG
{



	MRST_HANDLE      hCmdComplete;

	unsigned long    ulSwapInterval;

	MRST_BOOL        bValid;

	MRST_BOOL        bFlipped;

	MRST_BOOL        bCmdCompleted;





	MRSTLFB_BUFFER*	psBuffer;
} MRSTLFB_VSYNC_FLIP_ITEM;

typedef struct MRSTLFB_SWAPCHAIN_TAG
{
	
	unsigned long       ulBufferCount;

	IMG_UINT32			ui32SwapChainID;

	
	MRSTLFB_BUFFER     **ppsBuffer;

	
	unsigned long	    ulSwapChainLength;

	
	MRSTLFB_VSYNC_FLIP_ITEM	*psVSyncFlips;

	
	unsigned long       ulInsertIndex;
	
	
	unsigned long       ulRemoveIndex;

	
	PVRSRV_DC_DISP2SRV_KMJTABLE	*psPVRJTable;

	
	struct drm_driver         *psDrmDriver;

	
	struct drm_device         *psDrmDev;

	struct MRSTLFB_SWAPCHAIN_TAG *psNext;

	struct MRSTLFB_DEVINFO_TAG *psDevInfo;
	unsigned long 		ui32Height;
	unsigned long		ui32Width;
	unsigned long		ui32ByteStride;

} MRSTLFB_SWAPCHAIN;

typedef struct MRSTLFB_FBINFO_TAG
{
	unsigned long       ulFBSize;
	unsigned long       ulBufferSize;
	unsigned long       ulRoundedBufferSize;
	unsigned long       ulWidth;
	unsigned long       ulHeight;
	unsigned long       ulByteStride;



	IMG_SYS_PHYADDR     sSysAddr;
	IMG_CPU_VIRTADDR    sCPUVAddr;
        IMG_DEV_VIRTADDR    sDevVAddr;


	PVRSRV_PIXEL_FORMAT ePixelFormat;
}MRSTLFB_FBINFO;

/**
 * If DRI is enable then extemding drm_device
 */
typedef struct MRSTLFB_DEVINFO_TAG
{
	unsigned int           uiDeviceID;

	struct drm_device 	*psDrmDevice;

	

	MRSTLFB_BUFFER          sSystemBuffer;

	
	PVRSRV_DC_DISP2SRV_KMJTABLE	sPVRJTable;
	
	
	PVRSRV_DC_SRV2DISP_KMJTABLE	sDCJTable;

	
	unsigned long           ulRefCount;

	MRSTLFB_SWAPCHAIN      *psCurrentSwapChain;

	MRSTLFB_SWAPCHAIN      *apsSwapChains[MAX_SWAPCHAINS];

	IMG_UINT32	   	ui32SwapChainNum;

	
	void *pvRegs;

	
	unsigned long ulSetFlushStateRefCount;

	
	MRST_BOOL           bFlushCommands;

	
	MRST_BOOL           bBlanked;

	
	struct fb_info         *psLINFBInfo;

	
	struct notifier_block   sLINNotifBlock;

	
	spinlock_t             sSwapChainLock;

	

	
	IMG_DEV_VIRTADDR	sDisplayDevVAddr;

	DISPLAY_INFO            sDisplayInfo;

	
	DISPLAY_FORMAT          sDisplayFormat;
	
	
	DISPLAY_DIMS            sDisplayDim;

	IMG_UINT32		ui32MainPipe;

	
	MRST_BOOL bSuspended;

	
	MRST_BOOL bLeaveVT;

	
	unsigned long ulLastFlipAddr;

	
	MRST_BOOL bLastFlipAddrValid;
}  MRSTLFB_DEVINFO;

#if 0
#define	MRSTLFB_PAGE_SIZE 4096
#define	MRSTLFB_PAGE_MASK (MRSTLFB_PAGE_SIZE - 1)
#define	MRSTLFB_PAGE_TRUNC (~MRSTLFB_PAGE_MASK)

#define	MRSTLFB_PAGE_ROUNDUP(x) (((x) + MRSTLFB_PAGE_MASK) & MRSTLFB_PAGE_TRUNC)
#endif

#ifdef	DEBUG
#define	DEBUG_PRINTK(x) printk x
#else
#define	DEBUG_PRINTK(x)
#endif

#define DISPLAY_DEVICE_NAME "PowerVR Cedartrail Linux Display Driver"
#define	DRVNAME	"cdvlfb"
#define	DEVNAME	DRVNAME
#define	DRIVER_PREFIX DRVNAME

typedef enum _MRST_ERROR_
{
	MRST_OK                             =  0,
	MRST_ERROR_GENERIC                  =  1,
	MRST_ERROR_OUT_OF_MEMORY            =  2,
	MRST_ERROR_TOO_FEW_BUFFERS          =  3,
	MRST_ERROR_INVALID_PARAMS           =  4,
	MRST_ERROR_INIT_FAILURE             =  5,
	MRST_ERROR_CANT_REGISTER_CALLBACK   =  6,
	MRST_ERROR_INVALID_DEVICE           =  7,
	MRST_ERROR_DEVICE_REGISTER_FAILED   =  8
} MRST_ERROR;


#ifndef UNREFERENCED_PARAMETER
#define	UNREFERENCED_PARAMETER(param) (param) = (param)
#endif

MRST_ERROR MRSTLFBInit(struct drm_device * dev);
MRST_ERROR MRSTLFBDeinit(void);

int MRSTLFBAllocBuffer(struct drm_device *dev, IMG_UINT32 ui32Size, MRSTLFB_BUFFER **ppBuffer);
int MRSTLFBFreeBuffer(struct drm_device *dev, MRSTLFB_BUFFER **ppBuffer);

void *MRSTLFBAllocKernelMem(unsigned long ulSize);
void MRSTLFBFreeKernelMem(void *pvMem);
MRST_ERROR MRSTLFBGetLibFuncAddr(char *szFunctionName, PFN_DC_GET_PVRJTABLE *ppfnFuncTable);
MRST_ERROR MRSTLFBInstallVSyncISR (MRSTLFB_DEVINFO *psDevInfo, MRSTLFB_VSYNC_ISR_PFN pVsyncHandler);
MRST_ERROR MRSTLFBUninstallVSyncISR(MRSTLFB_DEVINFO *psDevInfo);
void MRSTLFBEnableVSyncInterrupt(MRSTLFB_DEVINFO *psDevInfo);
void MRSTLFBDisableVSyncInterrupt(MRSTLFB_DEVINFO *psDevInfo);

void MRSTLFBFlipToSurface(MRSTLFB_DEVINFO *psDevInfo,  unsigned long uiAddr);

void MRSTLFBSuspend(void);
void MRSTLFBResume(void);

#endif