nouveau: rename engtab functions
[platform/upstream/libdrm.git] / shared-core / nouveau_drv.h
1 /*
2  * Copyright 2005 Stephane Marchesin.
3  * 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, sublicense,
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 next
13  * paragraph) shall be included in all copies or substantial portions of the
14  * 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 NONINFRINGEMENT.  IN NO EVENT SHALL
19  * VA LINUX SYSTEMS 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
22  * OTHER DEALINGS IN THE SOFTWARE.
23  */
24
25 #ifndef __NOUVEAU_DRV_H__
26 #define __NOUVEAU_DRV_H__
27
28 #define DRIVER_AUTHOR           "Stephane Marchesin"
29 #define DRIVER_EMAIL            "dri-devel@lists.sourceforge.net"
30
31 #define DRIVER_NAME             "nouveau"
32 #define DRIVER_DESC             "nVidia Riva/TNT/GeForce"
33 #define DRIVER_DATE             "20060213"
34
35 #define DRIVER_MAJOR            0
36 #define DRIVER_MINOR            0
37 #define DRIVER_PATCHLEVEL       6
38
39 #define NOUVEAU_FAMILY   0x0000FFFF
40 #define NOUVEAU_FLAGS    0xFFFF0000
41
42 #include "nouveau_drm.h"
43 #include "nouveau_reg.h"
44
45 struct mem_block {
46         struct mem_block *next;
47         struct mem_block *prev;
48         uint64_t start;
49         uint64_t size;
50         DRMFILE filp;           /* 0: free, -1: heap, other: real files */
51         int flags;
52         drm_local_map_t *map;
53 };
54
55 enum nouveau_flags {
56         NV_NFORCE   =0x10000000,
57         NV_NFORCE2  =0x20000000
58 };
59
60 struct nouveau_object
61 {
62         struct nouveau_object *next;
63         struct nouveau_object *prev;
64         int channel;
65
66         struct mem_block *instance;
67         uint32_t          ht_loc;
68
69         uint32_t handle;
70         int      class;
71         int      engine;
72 };
73
74 struct nouveau_fifo
75 {
76         int used;
77         /* owner of this fifo */
78         DRMFILE filp;
79         /* mapping of the fifo itself */
80         drm_local_map_t *map;
81         /* mapping of the regs controling the fifo */
82         drm_local_map_t *regs;
83         /* dma object for the command buffer itself */
84         struct mem_block      *cmdbuf_mem;
85         struct nouveau_object *cmdbuf_obj;
86         /* PGRAPH context, for cards that keep it in RAMIN */
87         struct mem_block *ramin_grctx;
88         /* objects belonging to this fifo */
89         struct nouveau_object *objs;
90
91         /* XXX dynamic alloc ? */
92         uint32_t pgraph_ctx [340];
93 };
94
95 struct nouveau_config {
96         struct {
97                 int location;
98                 int size;
99         } cmdbuf;
100 };
101
102 struct nouveau_engine_func {
103         struct {
104                 int     (*init)(drm_device_t *dev);
105                 void    (*takedown)(drm_device_t *dev);
106         } mc;
107
108         struct {
109                 int     (*init)(drm_device_t *dev);
110                 void    (*takedown)(drm_device_t *dev);
111         } timer;
112
113         struct {
114                 int     (*init)(drm_device_t *dev);
115                 void    (*takedown)(drm_device_t *dev);
116         } fb;
117
118         struct {
119                 int     (*init)(drm_device_t *dev);
120                 void    (*takedown)(drm_device_t *dev);
121         } graph;
122
123         struct {
124                 int     (*init)(drm_device_t *dev);
125                 void    (*takedown)(drm_device_t *dev);
126         } fifo;
127 };
128
129 typedef struct drm_nouveau_private {
130         /* the card type, takes NV_* as values */
131         int card_type;
132         /* exact chipset, derived from NV_PMC_BOOT_0 */
133         int chipset;
134         int flags;
135
136         drm_local_map_t *mmio;
137         drm_local_map_t *fb;
138         drm_local_map_t *ramin; /* NV40 onwards */
139
140         int fifo_alloc_count;
141         struct nouveau_fifo fifos[NV_MAX_FIFO_NUMBER];
142
143         struct nouveau_engine_func Engine;
144
145         /* RAMIN configuration, RAMFC, RAMHT and RAMRO offsets */
146         uint32_t ramin_size;
147         uint32_t ramht_offset;
148         uint32_t ramht_size;
149         uint32_t ramht_bits;
150         uint32_t ramfc_offset;
151         uint32_t ramfc_size;
152         uint32_t ramro_offset;
153         uint32_t ramro_size;
154
155         /* base physical adresses */
156         uint64_t fb_phys;
157         uint64_t fb_available_size;
158         uint64_t agp_phys;
159         uint64_t agp_available_size;
160
161         /* the mtrr covering the FB */
162         int fb_mtrr;
163
164         struct mem_block *agp_heap;
165         struct mem_block *fb_heap;
166         struct mem_block *fb_nomap_heap;
167         struct mem_block *ramin_heap;
168
169         /* context table pointed to be NV_PGRAPH_CHANNEL_CTX_TABLE (0x400780) */
170         uint32_t ctx_table_size;
171         struct mem_block *ctx_table;
172
173         struct nouveau_config config;
174 }
175 drm_nouveau_private_t;
176
177 /* nouveau_state.c */
178 extern void nouveau_preclose(drm_device_t * dev, DRMFILE filp);
179 extern int nouveau_load(struct drm_device *dev, unsigned long flags);
180 extern int nouveau_firstopen(struct drm_device *dev);
181 extern void nouveau_lastclose(struct drm_device *dev);
182 extern int nouveau_unload(struct drm_device *dev);
183 extern int nouveau_ioctl_getparam(DRM_IOCTL_ARGS);
184 extern int nouveau_ioctl_setparam(DRM_IOCTL_ARGS);
185 extern void nouveau_wait_for_idle(struct drm_device *dev);
186 extern int nouveau_ioctl_card_init(DRM_IOCTL_ARGS);
187
188 /* nouveau_mem.c */
189 extern uint64_t          nouveau_mem_fb_amount(struct drm_device *dev);
190 extern void              nouveau_mem_release(DRMFILE filp, struct mem_block *heap);
191 extern int               nouveau_ioctl_mem_alloc(DRM_IOCTL_ARGS);
192 extern int               nouveau_ioctl_mem_free(DRM_IOCTL_ARGS);
193 extern struct mem_block* nouveau_mem_alloc(struct drm_device *dev, int alignment, uint64_t size, int flags, DRMFILE filp);
194 extern void              nouveau_mem_free(struct drm_device* dev, struct mem_block*);
195 extern int               nouveau_mem_init(struct drm_device *dev);
196 extern void              nouveau_mem_close(struct drm_device *dev);
197 extern int               nouveau_instmem_init(struct drm_device *dev);
198 extern struct mem_block* nouveau_instmem_alloc(struct drm_device *dev,
199                                                uint32_t size, uint32_t align);
200 extern void              nouveau_instmem_free(struct drm_device *dev,
201                                               struct mem_block *block);
202 extern uint32_t          nouveau_instmem_r32(drm_nouveau_private_t *dev_priv,
203                                              struct mem_block *mem, int index);
204 extern void              nouveau_instmem_w32(drm_nouveau_private_t *dev_priv,
205                                              struct mem_block *mem, int index,
206                                              uint32_t val);
207
208 /* nouveau_fifo.c */
209 extern int  nouveau_fifo_init(drm_device_t *dev);
210 extern int  nouveau_fifo_number(drm_device_t *dev);
211 extern int  nouveau_fifo_ctx_size(drm_device_t *dev);
212 extern void nouveau_fifo_cleanup(drm_device_t *dev, DRMFILE filp);
213 extern int  nouveau_fifo_owner(drm_device_t *dev, DRMFILE filp, int channel);
214 extern void nouveau_fifo_free(drm_device_t *dev, int channel);
215
216 /* nouveau_object.c */
217 extern void nouveau_object_cleanup(drm_device_t *dev, int channel);
218 extern struct nouveau_object *
219 nouveau_object_gr_create(drm_device_t *dev, int channel, int class);
220 extern struct nouveau_object *
221 nouveau_object_dma_create(drm_device_t *dev, int channel, int class,
222                           uint32_t offset, uint32_t size,
223                           int access, int target);
224 extern void nouveau_object_free(drm_device_t *dev, struct nouveau_object *obj);
225 extern int  nouveau_ioctl_object_init(DRM_IOCTL_ARGS);
226 extern int  nouveau_ioctl_dma_object_init(DRM_IOCTL_ARGS);
227 extern uint32_t nouveau_chip_instance_get(drm_device_t *dev, struct mem_block *mem);
228
229 /* nouveau_irq.c */
230 extern irqreturn_t nouveau_irq_handler(DRM_IRQ_ARGS);
231 extern void        nouveau_irq_preinstall(drm_device_t*);
232 extern void        nouveau_irq_postinstall(drm_device_t*);
233 extern void        nouveau_irq_uninstall(drm_device_t*);
234
235 /* nv04_fb.c */
236 extern int  nv04_fb_init(drm_device_t *dev);
237 extern void nv04_fb_takedown(drm_device_t *dev);
238
239 /* nv10_fb.c */
240 extern int  nv10_fb_init(drm_device_t *dev);
241 extern void nv10_fb_takedown(drm_device_t *dev);
242
243 /* nv40_fb.c */
244 extern int  nv40_fb_init(drm_device_t *dev);
245 extern void nv40_fb_takedown(drm_device_t *dev);
246
247 /* nv04_graph.c */
248 extern void nouveau_nv04_context_switch(drm_device_t *dev);
249 extern int nv04_graph_init(drm_device_t *dev);
250 extern void nv04_graph_takedown(drm_device_t *dev);
251 extern int nv04_graph_context_create(drm_device_t *dev, int channel);
252
253 /* nv10_graph.c */
254 extern void nouveau_nv10_context_switch(drm_device_t *dev);
255 extern int nv10_graph_init(drm_device_t *dev);
256 extern void nv10_graph_takedown(drm_device_t *dev);
257 extern int nv10_graph_context_create(drm_device_t *dev, int channel);
258
259 /* nv20_graph.c */
260 extern void nouveau_nv20_context_switch(drm_device_t *dev);
261 extern int nv20_graph_init(drm_device_t *dev);
262 extern void nv20_graph_takedown(drm_device_t *dev);
263 extern int nv20_graph_context_create(drm_device_t *dev, int channel);
264
265 /* nv30_graph.c */
266 extern int nv30_graph_init(drm_device_t *dev);
267 extern void nv30_graph_takedown(drm_device_t *dev);
268 extern int nv30_graph_context_create(drm_device_t *dev, int channel);
269
270 /* nv40_graph.c */
271 extern int  nv40_graph_init(drm_device_t *dev);
272 extern void nv40_graph_takedown(drm_device_t *dev);
273 extern int  nv40_graph_context_create(drm_device_t *dev, int channel);
274 extern void nv40_graph_context_save_current(drm_device_t *dev);
275 extern void nv40_graph_context_restore(drm_device_t *dev, int channel);
276
277 /* nv04_mc.c */
278 extern int  nv04_mc_init(drm_device_t *dev);
279 extern void nv04_mc_takedown(drm_device_t *dev);
280
281 /* nv40_mc.c */
282 extern int  nv40_mc_init(drm_device_t *dev);
283 extern void nv40_mc_takedown(drm_device_t *dev);
284
285 /* nv04_timer.c */
286 extern int  nv04_timer_init(drm_device_t *dev);
287 extern void nv04_timer_takedown(drm_device_t *dev);
288
289 extern long nouveau_compat_ioctl(struct file *filp, unsigned int cmd,
290                                 unsigned long arg);
291
292 #if defined(__powerpc__)
293 #define NV_READ(reg)        in_be32((void __iomem *)(dev_priv->mmio)->handle + (reg) )
294 #define NV_WRITE(reg,val)   out_be32((void __iomem *)(dev_priv->mmio)->handle + (reg) , (val) )
295 #else
296 #define NV_READ(reg)        DRM_READ32(  dev_priv->mmio, (reg) )
297 #define NV_WRITE(reg,val)   DRM_WRITE32( dev_priv->mmio, (reg), (val) )
298 #endif
299
300 #define INSTANCE_WR(mem,ofs,val) nouveau_instmem_w32(dev_priv,(mem),(ofs),(val))
301 #define INSTANCE_RD(mem,ofs)     nouveau_instmem_r32(dev_priv,(mem),(ofs))
302
303 #endif /* __NOUVEAU_DRV_H__ */
304