Blame view

include/drm/via_drm.h 8.18 KB
22f579c62   Dave Airlie   drm: Add via unic...
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
  /*
   * Copyright 1998-2003 VIA Technologies, Inc. All Rights Reserved.
   * Copyright 2001-2003 S3 Graphics, Inc. All Rights Reserved.
   *
   * Permission is hereby granted, free of charge, to any person obtaining a
   * copy of this software and associated documentation files (the "Software"),
   * to deal in the Software without restriction, including without limitation
   * the rights to use, copy, modify, merge, publish, distribute, sub license,
   * and/or sell copies of the Software, and to permit persons to whom the
   * Software is furnished to do so, subject to the following conditions:
   *
   * The above copyright notice and this permission notice (including the
   * next paragraph) shall be included in all copies or substantial portions
   * of the Software.
   *
   * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
   * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
   * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
   * VIA, S3 GRAPHICS, AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
   * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
   * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
   * DEALINGS IN THE SOFTWARE.
   */
  #ifndef _VIA_DRM_H_
  #define _VIA_DRM_H_
1a95916f5   Kristian Høgsberg   drm: Add compatib...
26
  #include "drm.h"
1d7f83d5a   Arnd Bergmann   make drm headers ...
27

22f579c62   Dave Airlie   drm: Add via unic...
28
29
30
31
32
33
34
35
36
37
  /* WARNING: These defines must be the same as what the Xserver uses.
   * if you change them, you must change the defines in the Xserver.
   */
  
  #ifndef _VIA_DEFINES_
  #define _VIA_DEFINES_
  
  #ifndef __KERNEL__
  #include "via_drmclient.h"
  #endif
bc5f4523f   Dave Airlie   drm: run cleanfil...
38
  #define VIA_NR_SAREA_CLIPRECTS		8
22f579c62   Dave Airlie   drm: Add via unic...
39
40
41
42
  #define VIA_NR_XVMC_PORTS               10
  #define VIA_NR_XVMC_LOCKS               5
  #define VIA_MAX_CACHELINE_SIZE          64
  #define XVMCLOCKPTR(saPriv,lockNo)					\
c60ce623b   Dave Airlie   drm: remove a bun...
43
  	((volatile struct drm_hw_lock *)(((((unsigned long) (saPriv)->XvMCLockArea) + \
22f579c62   Dave Airlie   drm: Add via unic...
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
  				      (VIA_MAX_CACHELINE_SIZE - 1)) &	\
  				     ~(VIA_MAX_CACHELINE_SIZE - 1)) +	\
  				    VIA_MAX_CACHELINE_SIZE*(lockNo)))
  
  /* Each region is a minimum of 64k, and there are at most 64 of them.
   */
  #define VIA_NR_TEX_REGIONS 64
  #define VIA_LOG_MIN_TEX_REGION_SIZE 16
  #endif
  
  #define VIA_UPLOAD_TEX0IMAGE  0x1	/* handled clientside */
  #define VIA_UPLOAD_TEX1IMAGE  0x2	/* handled clientside */
  #define VIA_UPLOAD_CTX        0x4
  #define VIA_UPLOAD_BUFFERS    0x8
  #define VIA_UPLOAD_TEX0       0x10
  #define VIA_UPLOAD_TEX1       0x20
  #define VIA_UPLOAD_CLIPRECTS  0x40
  #define VIA_UPLOAD_ALL        0xff
  
  /* VIA specific ioctls */
  #define DRM_VIA_ALLOCMEM	0x00
  #define DRM_VIA_FREEMEM	        0x01
  #define DRM_VIA_AGP_INIT	0x02
  #define DRM_VIA_FB_INIT	        0x03
  #define DRM_VIA_MAP_INIT	0x04
  #define DRM_VIA_DEC_FUTEX       0x05
  #define NOT_USED
  #define DRM_VIA_DMA_INIT	0x07
  #define DRM_VIA_CMDBUFFER	0x08
  #define DRM_VIA_FLUSH	        0x09
  #define DRM_VIA_PCICMD	        0x0a
  #define DRM_VIA_CMDBUF_SIZE	0x0b
  #define NOT_USED
  #define DRM_VIA_WAIT_IRQ        0x0d
925142431   Dave Airlie   drm: update VIA d...
78
79
  #define DRM_VIA_DMA_BLIT        0x0e
  #define DRM_VIA_BLIT_SYNC       0x0f
22f579c62   Dave Airlie   drm: Add via unic...
80
81
82
83
84
85
86
87
88
89
90
91
92
93
  
  #define DRM_IOCTL_VIA_ALLOCMEM	  DRM_IOWR(DRM_COMMAND_BASE + DRM_VIA_ALLOCMEM, drm_via_mem_t)
  #define DRM_IOCTL_VIA_FREEMEM	  DRM_IOW( DRM_COMMAND_BASE + DRM_VIA_FREEMEM, drm_via_mem_t)
  #define DRM_IOCTL_VIA_AGP_INIT	  DRM_IOWR(DRM_COMMAND_BASE + DRM_VIA_AGP_INIT, drm_via_agp_t)
  #define DRM_IOCTL_VIA_FB_INIT	  DRM_IOWR(DRM_COMMAND_BASE + DRM_VIA_FB_INIT, drm_via_fb_t)
  #define DRM_IOCTL_VIA_MAP_INIT	  DRM_IOWR(DRM_COMMAND_BASE + DRM_VIA_MAP_INIT, drm_via_init_t)
  #define DRM_IOCTL_VIA_DEC_FUTEX   DRM_IOW( DRM_COMMAND_BASE + DRM_VIA_DEC_FUTEX, drm_via_futex_t)
  #define DRM_IOCTL_VIA_DMA_INIT	  DRM_IOWR(DRM_COMMAND_BASE + DRM_VIA_DMA_INIT, drm_via_dma_init_t)
  #define DRM_IOCTL_VIA_CMDBUFFER	  DRM_IOW( DRM_COMMAND_BASE + DRM_VIA_CMDBUFFER, drm_via_cmdbuffer_t)
  #define DRM_IOCTL_VIA_FLUSH	  DRM_IO(  DRM_COMMAND_BASE + DRM_VIA_FLUSH)
  #define DRM_IOCTL_VIA_PCICMD	  DRM_IOW( DRM_COMMAND_BASE + DRM_VIA_PCICMD, drm_via_cmdbuffer_t)
  #define DRM_IOCTL_VIA_CMDBUF_SIZE DRM_IOWR( DRM_COMMAND_BASE + DRM_VIA_CMDBUF_SIZE, \
  					    drm_via_cmdbuf_size_t)
  #define DRM_IOCTL_VIA_WAIT_IRQ    DRM_IOWR( DRM_COMMAND_BASE + DRM_VIA_WAIT_IRQ, drm_via_irqwait_t)
925142431   Dave Airlie   drm: update VIA d...
94
95
  #define DRM_IOCTL_VIA_DMA_BLIT    DRM_IOW(DRM_COMMAND_BASE + DRM_VIA_DMA_BLIT, drm_via_dmablit_t)
  #define DRM_IOCTL_VIA_BLIT_SYNC   DRM_IOW(DRM_COMMAND_BASE + DRM_VIA_BLIT_SYNC, drm_via_blitsync_t)
22f579c62   Dave Airlie   drm: Add via unic...
96
97
98
99
100
101
102
103
104
105
106
107
108
109
  
  /* Indices into buf.Setup where various bits of state are mirrored per
   * context and per buffer.  These can be fired at the card as a unit,
   * or in a piecewise fashion as required.
   */
  
  #define VIA_TEX_SETUP_SIZE 8
  
  /* Flags for clear ioctl
   */
  #define VIA_FRONT   0x1
  #define VIA_BACK    0x2
  #define VIA_DEPTH   0x4
  #define VIA_STENCIL 0x8
925142431   Dave Airlie   drm: update VIA d...
110
111
112
113
114
  #define VIA_MEM_VIDEO   0	/* matches drm constant */
  #define VIA_MEM_AGP     1	/* matches drm constant */
  #define VIA_MEM_SYSTEM  2
  #define VIA_MEM_MIXED   3
  #define VIA_MEM_UNKNOWN 4
22f579c62   Dave Airlie   drm: Add via unic...
115
  typedef struct {
1d7f83d5a   Arnd Bergmann   make drm headers ...
116
117
  	__u32 offset;
  	__u32 size;
22f579c62   Dave Airlie   drm: Add via unic...
118
119
120
  } drm_via_agp_t;
  
  typedef struct {
1d7f83d5a   Arnd Bergmann   make drm headers ...
121
122
  	__u32 offset;
  	__u32 size;
22f579c62   Dave Airlie   drm: Add via unic...
123
124
125
  } drm_via_fb_t;
  
  typedef struct {
1d7f83d5a   Arnd Bergmann   make drm headers ...
126
127
128
  	__u32 context;
  	__u32 type;
  	__u32 size;
22f579c62   Dave Airlie   drm: Add via unic...
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
  	unsigned long index;
  	unsigned long offset;
  } drm_via_mem_t;
  
  typedef struct _drm_via_init {
  	enum {
  		VIA_INIT_MAP = 0x01,
  		VIA_CLEANUP_MAP = 0x02
  	} func;
  
  	unsigned long sarea_priv_offset;
  	unsigned long fb_offset;
  	unsigned long mmio_offset;
  	unsigned long agpAddr;
  } drm_via_init_t;
  
  typedef struct _drm_via_futex {
  	enum {
  		VIA_FUTEX_WAIT = 0x00,
  		VIA_FUTEX_WAKE = 0X01
  	} func;
1d7f83d5a   Arnd Bergmann   make drm headers ...
150
151
152
  	__u32 ms;
  	__u32 lock;
  	__u32 val;
22f579c62   Dave Airlie   drm: Add via unic...
153
154
155
156
157
158
  } drm_via_futex_t;
  
  typedef struct _drm_via_dma_init {
  	enum {
  		VIA_INIT_DMA = 0x01,
  		VIA_CLEANUP_DMA = 0x02,
b5e89ed53   Dave Airlie   drm: lindent the ...
159
  		VIA_DMA_INITIALIZED = 0x03
22f579c62   Dave Airlie   drm: Add via unic...
160
161
162
163
164
165
166
167
  	} func;
  
  	unsigned long offset;
  	unsigned long size;
  	unsigned long reg_pause_addr;
  } drm_via_dma_init_t;
  
  typedef struct _drm_via_cmdbuffer {
bbaf36410   Alexey Dobriyan   [PATCH] drm: via:...
168
  	char __user *buf;
22f579c62   Dave Airlie   drm: Add via unic...
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
  	unsigned long size;
  } drm_via_cmdbuffer_t;
  
  /* Warning: If you change the SAREA structure you must change the Xserver
   * structure as well */
  
  typedef struct _drm_via_tex_region {
  	unsigned char next, prev;	/* indices to form a circular LRU  */
  	unsigned char inUse;	/* owned by a client, or free? */
  	int age;		/* tracked by clients to update local LRU's */
  } drm_via_tex_region_t;
  
  typedef struct _drm_via_sarea {
  	unsigned int dirty;
  	unsigned int nbox;
c60ce623b   Dave Airlie   drm: remove a bun...
184
  	struct drm_clip_rect boxes[VIA_NR_SAREA_CLIPRECTS];
22f579c62   Dave Airlie   drm: Add via unic...
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
  	drm_via_tex_region_t texList[VIA_NR_TEX_REGIONS + 1];
  	int texAge;		/* last time texture was uploaded */
  	int ctxOwner;		/* last context to upload state */
  	int vertexPrim;
  
  	/*
  	 * Below is for XvMC.
  	 * We want the lock integers alone on, and aligned to, a cache line.
  	 * Therefore this somewhat strange construct.
  	 */
  
  	char XvMCLockArea[VIA_MAX_CACHELINE_SIZE * (VIA_NR_XVMC_LOCKS + 1)];
  
  	unsigned int XvMCDisplaying[VIA_NR_XVMC_PORTS];
  	unsigned int XvMCSubPicOn[VIA_NR_XVMC_PORTS];
  	unsigned int XvMCCtxNoGrabbed;	/* Last context to hold decoder */
443448d05   Dave Airlie   drm: via driver u...
201
  	/* Used by the 3d driver only at this point, for pageflipping:
925142431   Dave Airlie   drm: update VIA d...
202
203
  	 */
  	unsigned int pfCurrentOffset;
22f579c62   Dave Airlie   drm: Add via unic...
204
205
206
207
208
209
210
211
  } drm_via_sarea_t;
  
  typedef struct _drm_via_cmdbuf_size {
  	enum {
  		VIA_CMDBUF_SPACE = 0x01,
  		VIA_CMDBUF_LAG = 0x02
  	} func;
  	int wait;
1d7f83d5a   Arnd Bergmann   make drm headers ...
212
  	__u32 size;
22f579c62   Dave Airlie   drm: Add via unic...
213
214
215
216
217
218
219
220
221
222
  } drm_via_cmdbuf_size_t;
  
  typedef enum {
  	VIA_IRQ_ABSOLUTE = 0x0,
  	VIA_IRQ_RELATIVE = 0x1,
  	VIA_IRQ_SIGNAL = 0x10000000,
  	VIA_IRQ_FORCE_SEQUENCE = 0x20000000
  } via_irq_seq_type_t;
  
  #define VIA_IRQ_FLAGS_MASK 0xF0000000
925142431   Dave Airlie   drm: update VIA d...
223
224
225
226
227
228
229
230
231
  enum drm_via_irqs {
  	drm_via_irq_hqv0 = 0,
  	drm_via_irq_hqv1,
  	drm_via_irq_dma0_dd,
  	drm_via_irq_dma0_td,
  	drm_via_irq_dma1_dd,
  	drm_via_irq_dma1_td,
  	drm_via_irq_num
  };
b5e89ed53   Dave Airlie   drm: lindent the ...
232
  struct drm_via_wait_irq_request {
22f579c62   Dave Airlie   drm: Add via unic...
233
234
  	unsigned irq;
  	via_irq_seq_type_t type;
1d7f83d5a   Arnd Bergmann   make drm headers ...
235
236
  	__u32 sequence;
  	__u32 signal;
22f579c62   Dave Airlie   drm: Add via unic...
237
238
239
240
241
242
  };
  
  typedef union drm_via_irqwait {
  	struct drm_via_wait_irq_request request;
  	struct drm_wait_vblank_reply reply;
  } drm_via_irqwait_t;
925142431   Dave Airlie   drm: update VIA d...
243
  typedef struct drm_via_blitsync {
1d7f83d5a   Arnd Bergmann   make drm headers ...
244
  	__u32 sync_handle;
925142431   Dave Airlie   drm: update VIA d...
245
246
  	unsigned engine;
  } drm_via_blitsync_t;
d40c8533a   Dave Airlie   drm: realign via ...
247
248
249
250
251
  /* - * Below,"flags" is currently unused but will be used for possible future
   * extensions like kernel space bounce buffers for bad alignments and
   * blit engine busy-wait polling for better latency in the absence of
   * interrupts.
   */
925142431   Dave Airlie   drm: update VIA d...
252
  typedef struct drm_via_dmablit {
1d7f83d5a   Arnd Bergmann   make drm headers ...
253
254
  	__u32 num_lines;
  	__u32 line_length;
bc5f4523f   Dave Airlie   drm: run cleanfil...
255

1d7f83d5a   Arnd Bergmann   make drm headers ...
256
257
  	__u32 fb_addr;
  	__u32 fb_stride;
925142431   Dave Airlie   drm: update VIA d...
258
259
  
  	unsigned char *mem_addr;
1d7f83d5a   Arnd Bergmann   make drm headers ...
260
  	__u32 mem_stride;
925142431   Dave Airlie   drm: update VIA d...
261

1d7f83d5a   Arnd Bergmann   make drm headers ...
262
  	__u32 flags;
925142431   Dave Airlie   drm: update VIA d...
263
264
265
266
  	int to_fb;
  
  	drm_via_blitsync_t sync;
  } drm_via_dmablit_t;
22f579c62   Dave Airlie   drm: Add via unic...
267

c828e2045   Daniel Vetter   drm/via: track ob...
268
269
270
  struct via_file_private {
  	struct list_head obj_list;
  };
22f579c62   Dave Airlie   drm: Add via unic...
271
  #endif				/* _VIA_DRM_H_ */