]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - sys/dev/drm/i915_drv.h
Merge DRM CVS as of 2005-12-02, adding i915 DRM support thanks to Alexey Popov,
[FreeBSD/FreeBSD.git] / sys / dev / drm / i915_drv.h
1 /* i915_drv.h -- Private header for the I915 driver -*- linux-c -*-
2  */
3 /*
4  * 
5  * Copyright 2003 Tungsten Graphics, Inc., Cedar Park, Texas.
6  * All Rights Reserved.
7  * 
8  * Permission is hereby granted, free of charge, to any person obtaining a
9  * copy of this software and associated documentation files (the
10  * "Software"), to deal in the Software without restriction, including
11  * without limitation the rights to use, copy, modify, merge, publish,
12  * distribute, sub license, and/or sell copies of the Software, and to
13  * permit persons to whom the Software is furnished to do so, subject to
14  * the following conditions:
15  * 
16  * The above copyright notice and this permission notice (including the
17  * next paragraph) shall be included in all copies or substantial portions
18  * of the Software.
19  * 
20  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS
21  * OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF
22  * MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NON-INFRINGEMENT.
23  * IN NO EVENT SHALL TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR
24  * ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT,
25  * TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE
26  * SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
27  * 
28  */
29
30 #include <sys/cdefs.h>
31 __FBSDID("$FreeBSD$");
32
33 #ifndef _I915_DRV_H_
34 #define _I915_DRV_H_
35
36 /* General customization:
37  */
38
39 #define DRIVER_AUTHOR           "Tungsten Graphics, Inc."
40
41 #define DRIVER_NAME             "i915"
42 #define DRIVER_DESC             "Intel Graphics"
43 #define DRIVER_DATE             "20041217"
44
45 /* Interface history:
46  *
47  * 1.1: Original.
48  * 1.2: Add Power Management
49  */
50 #define DRIVER_MAJOR            1
51 #define DRIVER_MINOR            2
52 #define DRIVER_PATCHLEVEL       0
53
54 typedef struct _drm_i915_ring_buffer {
55         int tail_mask;
56         unsigned long Start;
57         unsigned long End;
58         unsigned long Size;
59         u8 *virtual_start;
60         int head;
61         int tail;
62         int space;
63         drm_local_map_t map;
64 } drm_i915_ring_buffer_t;
65
66 struct mem_block {
67         struct mem_block *next;
68         struct mem_block *prev;
69         int start;
70         int size;
71         DRMFILE filp;           /* 0: free, -1: heap, other: real files */
72 };
73
74 typedef struct drm_i915_private {
75         drm_local_map_t *sarea;
76         drm_local_map_t *mmio_map;
77
78         drm_i915_sarea_t *sarea_priv;
79         drm_i915_ring_buffer_t ring;
80
81         drm_dma_handle_t *status_page_dmah;
82         void *hw_status_page;
83         dma_addr_t dma_status_page;
84         unsigned long counter;
85
86         int back_offset;
87         int front_offset;
88         int current_page;
89         int page_flipping;
90         int use_mi_batchbuffer_start;
91
92         wait_queue_head_t irq_queue;
93         atomic_t irq_received;
94         atomic_t irq_emitted;
95
96         int tex_lru_log_granularity;
97         int allow_batchbuffer;
98         struct mem_block *agp_heap;
99         unsigned int sr01, adpa, ppcr, dvob, dvoc, lvds;
100 } drm_i915_private_t;
101
102 extern drm_ioctl_desc_t i915_ioctls[];
103 extern int i915_max_ioctl;
104
105                                 /* i915_dma.c */
106 extern void i915_kernel_lost_context(drm_device_t * dev);
107 extern int i915_driver_load(struct drm_device *, unsigned long flags);
108 extern void i915_driver_lastclose(drm_device_t * dev);
109 extern void i915_driver_preclose(drm_device_t * dev, DRMFILE filp);
110 extern int i915_driver_device_is_agp(drm_device_t * dev);
111 extern long i915_compat_ioctl(struct file *filp, unsigned int cmd,
112                               unsigned long arg);
113
114 /* i915_irq.c */
115 extern int i915_irq_emit(DRM_IOCTL_ARGS);
116 extern int i915_irq_wait(DRM_IOCTL_ARGS);
117
118 extern irqreturn_t i915_driver_irq_handler(DRM_IRQ_ARGS);
119 extern void i915_driver_irq_preinstall(drm_device_t * dev);
120 extern void i915_driver_irq_postinstall(drm_device_t * dev);
121 extern void i915_driver_irq_uninstall(drm_device_t * dev);
122
123 /* i915_mem.c */
124 extern int i915_mem_alloc(DRM_IOCTL_ARGS);
125 extern int i915_mem_free(DRM_IOCTL_ARGS);
126 extern int i915_mem_init_heap(DRM_IOCTL_ARGS);
127 extern void i915_mem_takedown(struct mem_block **heap);
128 extern void i915_mem_release(drm_device_t * dev,
129                              DRMFILE filp, struct mem_block *heap);
130
131 #define I915_READ(reg)          DRM_READ32(dev_priv->mmio_map, (reg))
132 #define I915_WRITE(reg,val)     DRM_WRITE32(dev_priv->mmio_map, (reg), (val))
133 #define I915_READ16(reg)        DRM_READ16(dev_priv->mmio_map, (reg))
134 #define I915_WRITE16(reg,val)   DRM_WRITE16(dev_priv->mmio_map, (reg), (val))
135
136 #define I915_VERBOSE 0
137
138 #define RING_LOCALS     unsigned int outring, ringmask, outcount; \
139                         volatile char *virt;
140
141 #define BEGIN_LP_RING(n) do {                           \
142         if (I915_VERBOSE)                               \
143                 DRM_DEBUG("BEGIN_LP_RING(%d) in %s\n",  \
144                           n, __FUNCTION__);             \
145         if (dev_priv->ring.space < n*4)                 \
146                 i915_wait_ring(dev, n*4, __FUNCTION__);         \
147         outcount = 0;                                   \
148         outring = dev_priv->ring.tail;                  \
149         ringmask = dev_priv->ring.tail_mask;            \
150         virt = dev_priv->ring.virtual_start;            \
151 } while (0)
152
153 #define OUT_RING(n) do {                                        \
154         if (I915_VERBOSE) DRM_DEBUG("   OUT_RING %x\n", (int)(n));      \
155         *(volatile unsigned int *)(virt + outring) = n;         \
156         outcount++;                                             \
157         outring += 4;                                           \
158         outring &= ringmask;                                    \
159 } while (0)
160
161 #define ADVANCE_LP_RING() do {                                          \
162         if (I915_VERBOSE) DRM_DEBUG("ADVANCE_LP_RING %x\n", outring);   \
163         dev_priv->ring.tail = outring;                                  \
164         dev_priv->ring.space -= outcount * 4;                           \
165         I915_WRITE(LP_RING + RING_TAIL, outring);                       \
166 } while(0)
167
168 extern int i915_wait_ring(drm_device_t * dev, int n, const char *caller);
169
170 #define GFX_OP_USER_INTERRUPT           ((0<<29)|(2<<23))
171 #define GFX_OP_BREAKPOINT_INTERRUPT     ((0<<29)|(1<<23))
172 #define CMD_REPORT_HEAD                 (7<<23)
173 #define CMD_STORE_DWORD_IDX             ((0x21<<23) | 0x1)
174 #define CMD_OP_BATCH_BUFFER  ((0x0<<29)|(0x30<<23)|0x1)
175
176 #define INST_PARSER_CLIENT   0x00000000
177 #define INST_OP_FLUSH        0x02000000
178 #define INST_FLUSH_MAP_CACHE 0x00000001
179
180 #define BB1_START_ADDR_MASK   (~0x7)
181 #define BB1_PROTECTED         (1<<0)
182 #define BB1_UNPROTECTED       (0<<0)
183 #define BB2_END_ADDR_MASK     (~0x7)
184
185 #define I915REG_HWSTAM          0x02098
186 #define I915REG_INT_IDENTITY_R  0x020a4
187 #define I915REG_INT_MASK_R      0x020a8
188 #define I915REG_INT_ENABLE_R    0x020a0
189
190 #define SRX_INDEX               0x3c4
191 #define SRX_DATA                0x3c5
192 #define SR01                    1
193 #define SR01_SCREEN_OFF         (1<<5)
194
195 #define PPCR                    0x61204
196 #define PPCR_ON                 (1<<0)
197
198 #define DVOB                    0x61140
199 #define DVOB_ON                 (1<<31)
200 #define DVOC                    0x61160
201 #define DVOC_ON                 (1<<31)
202 #define LVDS                    0x61180
203 #define LVDS_ON                 (1<<31)
204
205 #define ADPA                    0x61100
206 #define ADPA_DPMS_MASK          (~(3<<10))
207 #define ADPA_DPMS_ON            (0<<10)
208 #define ADPA_DPMS_SUSPEND       (1<<10)
209 #define ADPA_DPMS_STANDBY       (2<<10)
210 #define ADPA_DPMS_OFF           (3<<10)
211
212 #define NOPID                   0x2094
213 #define LP_RING                 0x2030
214 #define HP_RING                 0x2040
215 #define RING_TAIL               0x00
216 #define TAIL_ADDR               0x001FFFF8
217 #define RING_HEAD               0x04
218 #define HEAD_WRAP_COUNT         0xFFE00000
219 #define HEAD_WRAP_ONE           0x00200000
220 #define HEAD_ADDR               0x001FFFFC
221 #define RING_START              0x08
222 #define START_ADDR              0x0xFFFFF000
223 #define RING_LEN                0x0C
224 #define RING_NR_PAGES           0x001FF000
225 #define RING_REPORT_MASK        0x00000006
226 #define RING_REPORT_64K         0x00000002
227 #define RING_REPORT_128K        0x00000004
228 #define RING_NO_REPORT          0x00000000
229 #define RING_VALID_MASK         0x00000001
230 #define RING_VALID              0x00000001
231 #define RING_INVALID            0x00000000
232
233 #define GFX_OP_SCISSOR         ((0x3<<29)|(0x1c<<24)|(0x10<<19))
234 #define SC_UPDATE_SCISSOR       (0x1<<1)
235 #define SC_ENABLE_MASK          (0x1<<0)
236 #define SC_ENABLE               (0x1<<0)
237
238 #define GFX_OP_SCISSOR_INFO    ((0x3<<29)|(0x1d<<24)|(0x81<<16)|(0x1))
239 #define SCI_YMIN_MASK      (0xffff<<16)
240 #define SCI_XMIN_MASK      (0xffff<<0)
241 #define SCI_YMAX_MASK      (0xffff<<16)
242 #define SCI_XMAX_MASK      (0xffff<<0)
243
244 #define GFX_OP_SCISSOR_ENABLE    ((0x3<<29)|(0x1c<<24)|(0x10<<19))
245 #define GFX_OP_SCISSOR_RECT      ((0x3<<29)|(0x1d<<24)|(0x81<<16)|1)
246 #define GFX_OP_COLOR_FACTOR      ((0x3<<29)|(0x1d<<24)|(0x1<<16)|0x0)
247 #define GFX_OP_STIPPLE           ((0x3<<29)|(0x1d<<24)|(0x83<<16))
248 #define GFX_OP_MAP_INFO          ((0x3<<29)|(0x1d<<24)|0x4)
249 #define GFX_OP_DESTBUFFER_VARS   ((0x3<<29)|(0x1d<<24)|(0x85<<16)|0x0)
250 #define GFX_OP_DRAWRECT_INFO     ((0x3<<29)|(0x1d<<24)|(0x80<<16)|(0x3))
251
252 #define MI_BATCH_BUFFER         ((0x30<<23)|1)
253 #define MI_BATCH_BUFFER_START   (0x31<<23)
254 #define MI_BATCH_BUFFER_END     (0xA<<23)
255 #define MI_BATCH_NON_SECURE     (1)
256
257 #define MI_WAIT_FOR_EVENT       ((0x3<<23))
258 #define MI_WAIT_FOR_PLANE_A_FLIP      (1<<2)
259 #define MI_WAIT_FOR_PLANE_A_SCANLINES (1<<1)
260
261 #define MI_LOAD_SCAN_LINES_INCL  ((0x12<<23))
262
263 #define CMD_OP_DISPLAYBUFFER_INFO ((0x0<<29)|(0x14<<23)|2)
264 #define ASYNC_FLIP                (1<<22)
265
266 #define CMD_OP_DESTBUFFER_INFO   ((0x3<<29)|(0x1d<<24)|(0x8e<<16)|1)
267
268 #endif