This patch adds three new ioctl's to the VIA Unichrome/Pro DRM driver:
[platform/upstream/libdrm.git] / shared-core / via_drm.h
1 /*
2  * Copyright 1998-2003 VIA Technologies, Inc. All Rights Reserved.
3  * Copyright 2001-2003 S3 Graphics, Inc. All Rights Reserved.
4  *
5  * Permission is hereby granted, free of charge, to any person obtaining a
6  * copy of this software and associated documentation files (the "Software"),
7  * to deal in the Software without restriction, including without limitation
8  * the rights to use, copy, modify, merge, publish, distribute, sub license,
9  * and/or sell copies of the Software, and to permit persons to whom the
10  * Software is furnished to do so, subject to the following conditions:
11  *
12  * The above copyright notice and this permission notice (including the
13  * next paragraph) shall be included in all copies or substantial portions
14  * of the Software.
15  *
16  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18  * FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT. IN NO EVENT SHALL
19  * VIA, S3 GRAPHICS, AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
20  * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21  * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
22  * DEALINGS IN THE SOFTWARE.
23  */
24 #ifndef _VIA_DRM_H_
25 #define _VIA_DRM_H_
26
27 /* WARNING: These defines must be the same as what the Xserver uses.
28  * if you change them, you must change the defines in the Xserver.
29  */
30
31 #ifndef _VIA_DEFINES_
32 #define _VIA_DEFINES_
33
34 #define VIA_DMA_BUF_ORDER               12
35 #define VIA_DMA_BUF_SZ                  (1 << VIA_DMA_BUF_ORDER)
36 #define VIA_DMA_BUF_NR                  256
37 #define VIA_NR_SAREA_CLIPRECTS          8
38 #define VIA_NR_XVMC_PORTS               10
39 #define VIA_NR_XVMC_LOCKS               5
40 #define VIA_MAX_CACHELINE_SIZE          64
41 #define XVMCLOCKPTR(saPriv,lockNo)                                      \
42         ((volatile int *)(((((unsigned long) (saPriv)->XvMCLockArea) +  \
43                             (VIA_MAX_CACHELINE_SIZE - 1)) &             \
44                            ~(VIA_MAX_CACHELINE_SIZE - 1)) +             \
45                           VIA_MAX_CACHELINE_SIZE*(lockNo)))
46
47 /* Each region is a minimum of 64k, and there are at most 64 of them.
48  */
49 #define VIA_NR_TEX_REGIONS 64
50 #define VIA_LOG_MIN_TEX_REGION_SIZE 16
51 #endif
52
53 #define VIA_UPLOAD_TEX0IMAGE  0x1 /* handled clientside */
54 #define VIA_UPLOAD_TEX1IMAGE  0x2 /* handled clientside */
55 #define VIA_UPLOAD_CTX        0x4
56 #define VIA_UPLOAD_BUFFERS    0x8
57 #define VIA_UPLOAD_TEX0       0x10
58 #define VIA_UPLOAD_TEX1       0x20
59 #define VIA_UPLOAD_CLIPRECTS  0x40
60 #define VIA_UPLOAD_ALL        0xff
61
62 /* VIA specific ioctls */
63 #define DRM_IOCTL_VIA_ALLOCMEM  DRM_IOWR(0x40, drm_via_mem_t)
64 #define DRM_IOCTL_VIA_FREEMEM   DRM_IOW(0x41, drm_via_mem_t)
65 #define DRM_IOCTL_VIA_AGP_INIT  DRM_IOWR(0x42, drm_via_agp_t)
66 #define DRM_IOCTL_VIA_FB_INIT   DRM_IOWR(0x43, drm_via_fb_t)
67 #define DRM_IOCTL_VIA_MAP_INIT  DRM_IOWR(0x44, drm_via_init_t)
68 #define DRM_IOCTL_VIA_DEC_FUTEX DRM_IOW(0x45, drm_via_futex_t)
69 #define DRM_IOCTL_VIA_DMA_INIT  DRM_IOWR(0x47, drm_via_dma_init_t)
70 #define DRM_IOCTL_VIA_CMDBUFFER DRM_IOWR(0x48, drm_via_dma_init_t)
71 #define DRM_IOCTL_VIA_FLUSH     DRM_IO(0x49)
72
73 /* Indices into buf.Setup where various bits of state are mirrored per
74  * context and per buffer.  These can be fired at the card as a unit,
75  * or in a piecewise fashion as required.
76  */
77  
78 #define VIA_TEX_SETUP_SIZE 8
79
80 /* Flags for clear ioctl
81  */
82 #define VIA_FRONT   0x1
83 #define VIA_BACK    0x2
84 #define VIA_DEPTH   0x4
85 #define VIA_STENCIL 0x8
86 #define VIDEO 0
87 #define AGP 1
88 typedef struct {
89         unsigned int offset;
90         unsigned int size;
91 } drm_via_agp_t;    
92
93 typedef struct {
94         unsigned int offset;
95         unsigned int size;
96 } drm_via_fb_t;    
97
98 typedef struct {
99         unsigned int context;
100         unsigned int type;
101         unsigned int size;
102         unsigned long index;
103         unsigned long offset;
104 } drm_via_mem_t;    
105
106 typedef struct _drm_via_init {
107         enum {
108                 VIA_INIT_MAP = 0x01,
109                 VIA_CLEANUP_MAP = 0x02
110         } func;
111
112         unsigned long sarea_priv_offset;
113         unsigned long fb_offset;
114         unsigned long mmio_offset;
115         unsigned long agpAddr;
116 } drm_via_init_t;
117
118 typedef struct _drm_via_futex {
119         enum {
120                 VIA_FUTEX_WAIT = 0x00,
121                 VIA_FUTEX_WAKE = 0X01
122         }fut;
123         unsigned int op;
124         unsigned int ms;
125         unsigned int lock;
126         unsigned int val;
127 } drm_via_futex_t;
128
129 typedef struct _drm_via_dma_init {
130         enum {
131                 VIA_INIT_DMA = 0x01,
132                 VIA_CLEANUP_DMA = 0x02
133         } func;
134
135         unsigned long offset;
136         unsigned long size;
137         unsigned long reg_pause_addr;
138 } drm_via_dma_init_t;
139
140 typedef struct _drm_via_cmdbuffer {
141         char *buf;
142         unsigned long size;
143 } drm_via_cmdbuffer_t;
144
145 /* Warning: If you change the SAREA structure you must change the Xserver
146  * structure as well */
147
148 typedef struct _drm_via_tex_region {
149         unsigned char next, prev;       /* indices to form a circular LRU  */
150         unsigned char inUse;    /* owned by a client, or free? */
151         int age;                        /* tracked by clients to update local LRU's */
152 } drm_via_tex_region_t;
153
154 typedef struct _drm_via_sarea {
155         unsigned int dirty;
156         unsigned int nbox;
157         drm_clip_rect_t boxes[VIA_NR_SAREA_CLIPRECTS];   
158         drm_via_tex_region_t texList[VIA_NR_TEX_REGIONS + 1]; 
159         int texAge;                     /* last time texture was uploaded */
160         int ctxOwner;           /* last context to upload state */
161         int vertexPrim;
162
163         /*
164          * Below is for XvMC.
165          * We want the lock integers alone on, and aligned to, a cache line.
166          * Therefore this somewhat strange construct.
167          */
168
169         char XvMCLockArea[VIA_MAX_CACHELINE_SIZE * (VIA_NR_XVMC_LOCKS + 1)];
170
171         unsigned int XvMCDisplaying[VIA_NR_XVMC_PORTS];      
172         unsigned int XvMCSubPicOn[VIA_NR_XVMC_PORTS]; 
173         unsigned int XvMCCtxNoGrabbed;     /* Last context to hold decoder */
174
175 } drm_via_sarea_t;
176
177
178 typedef struct _drm_via_flush_agp {
179         unsigned int offset;
180         unsigned int size;
181         unsigned int index;             
182         int discard;    /* client is finished with the buffer? */
183 } drm_via_flush_agp_t;
184
185 typedef struct _drm_via_flush_sys {
186         unsigned int offset;
187         unsigned int size;
188         unsigned long index;            
189         int discard;    /* client is finished with the buffer? */
190 } drm_via_flush_sys_t;
191
192 #ifdef __KERNEL__
193
194 int via_fb_init( DRM_IOCTL_ARGS );              
195 int via_mem_alloc( DRM_IOCTL_ARGS );                            
196 int via_mem_free( DRM_IOCTL_ARGS );             
197 int via_agp_init( DRM_IOCTL_ARGS );                             
198 int via_map_init( DRM_IOCTL_ARGS );                             
199 int via_decoder_futex( DRM_IOCTL_ARGS ); 
200 int via_dma_init( DRM_IOCTL_ARGS );
201 int via_cmdbuffer( DRM_IOCTL_ARGS );
202 int via_flush_ioctl( DRM_IOCTL_ARGS );
203
204 #endif
205 #endif /* _VIA_DRM_H_ */