summaryrefslogtreecommitdiff
path: root/linux/i810_drm_public.h
blob: 68714ae978f64328b728721981326cd210d4050c (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
/* i810_drm_public.h -- Public header for the i810 driver -*- linux-c -*-
 * Created: Mon Dec 13 01:50:01 1999 by jhartmann@precisioninsight.com
 *
 * Copyright 1999 Precision Insight, Inc., Cedar Park, Texas.
 * 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, sublicense,
 * 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 NONINFRINGEMENT.  IN NO EVENT SHALL
 * PRECISION INSIGHT 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.
 *
 * Authors: Jeff Hartmann <jhartmann@precisioninsight.com>
 *          Keith Whitwell <keithw@precisioninsight.com>
 *
 * $XFree86$
 */

#ifndef _I810_DRM_H_
#define _I810_DRM_H_

typedef struct drm_i810_init {
   	enum {
	   	I810_INIT_DMA = 0x01,
	   	I810_CLEANUP_DMA = 0x02
	} func;
   	int ring_map_idx;
      	int buffer_map_idx;
	int sarea_priv_offset;
   	unsigned long ring_start;
   	unsigned long ring_end;
   	unsigned long ring_size;
	
} drm_i810_init_t;

typedef struct _xf86drmClipRectRec {
   	unsigned short x1;
   	unsigned short y1;
   	unsigned short x2;
   	unsigned short y2;
} xf86drmClipRectRec;


/* Might one day want to support the client-side ringbuffer code again.
 */
#define I810_USE_BATCH 1

/* 32 16k dma buffers -- 512k 
 */
#define I810_DMA_BUF_ORDER     14
#define I810_DMA_BUF_SZ        (1<<I810_DMA_BUF_ORDER)
#define I810_DMA_BUF_NR        32

#define I810_NR_SAREA_CLIPRECTS 2


/* Each region is a minimum of 64k, and there are at most 128 of them.
 */
#define I810_NR_TEX_REGIONS 128
#define I810_LOG_MIN_TEX_REGION_SIZE 16

 

typedef struct {
	unsigned char next, prev; /* indices to form a circular LRU  */
	unsigned char in_use;	/* owned by a client, or free? */
	int age;		/* tracked by clients to update local LRU's */
} i810TexRegion;

typedef struct {
	unsigned int nbox;
	xf86drmClipRectRec boxes[I810_NR_SAREA_CLIPRECTS];

	/* Maintain an LRU of contiguous regions of texture space.  If
	 * you think you own a region of texture memory, and it has an age
	 * different to the one you set, then you are mistaken and it has
	 * been stolen by another client.  If texAge hasn't changed, there 
	 * is no need to walk the list.
	 *
	 * These regions can be used as a proxy for the fine-grained texture
	 * information of other clients - by maintaining them in the same
	 * lru which is used to age their own textures, clients have an
	 * approximate lru for the whole of global texture space, and can
	 * make informed decisions as to which areas to kick out.  There is
	 * no need to choose whether to kick out your own texture or someone
	 * else's - simply eject them all in LRU order.
	 */
	i810TexRegion texList[I810_NR_TEX_REGIONS+1]; /* Last elt is sentinal */
        int texAge;		/* last time texture was uploaded */

        int last_enqueue;	/* last time a buffer was enqueued */
	int last_dispatch;	/* age of the most recently dispatched buffer */
	int last_quiescent;     /*  */

        int ctxOwner;	        /* last 3d context to hold lock */


} drm_i810_sarea_t;


typedef struct {
   	int idx;
	int used;
	int age;
} drm_i810_general_t;


/* These may be placeholders if we have more cliprects than
 * I810_NR_SAREA_CLIPRECTS.  In that case, idx != real_idx; idx is the
 * number of a placeholder buffer, real_idx is the real buffer to be
 * rendered multiple times.  
 *
 * This is a hack to work around the fact that the drm considers
 * buffers to be only in a single state (ie on a single queue).
 */
typedef struct {
   	int idx;		/* buffer to queue and free on completion */
   	int real_idx;		/* buffer to execute */
	int real_used;		/* buf->used in for real buffer */
	int discard;		/* don't execute the commands */
	int age;
} drm_i810_vertex_t;



#define DRM_IOCTL_I810_INIT    DRM_IOW( 0x40, drm_i810_init_t)
#define DRM_IOCTL_I810_VERTEX  DRM_IOW( 0x41, drm_i810_vertex_t)
#define DRM_IOCTL_I810_DMA     DRM_IOW( 0x42, drm_i810_general_t)
#define DRM_IOCTL_I810_FLUSH   DRM_IO ( 0x43 )
#endif /* _I810_DRM_H_ */