2 * Copyright 2005 Stephane Marchesin.
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:
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
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.
25 #ifndef __NOUVEAU_DRV_H__
26 #define __NOUVEAU_DRV_H__
28 #define DRIVER_AUTHOR "Stephane Marchesin"
29 #define DRIVER_EMAIL "dri-devel@lists.sourceforge.net"
31 #define DRIVER_NAME "nouveau"
32 #define DRIVER_DESC "nVidia Riva/TNT/GeForce"
33 #define DRIVER_DATE "20060213"
35 #define DRIVER_MAJOR 0
36 #define DRIVER_MINOR 0
37 #define DRIVER_PATCHLEVEL 2
39 #define NOUVEAU_FAMILY 0x0000FFFF
40 #define NOUVEAU_FLAGS 0xFFFF0000
42 #include "nouveau_drm.h"
43 #include "nouveau_reg.h"
46 struct mem_block *next;
47 struct mem_block *prev;
50 DRMFILE filp; /* 0: free, -1: heap, other: real files */
56 NV_NFORCE =0x10000000,
57 NV_NFORCE2 =0x20000000
62 struct nouveau_object *next;
63 struct nouveau_object *prev;
65 struct mem_block *instance;
73 #define NV_DMA_TARGET_VIDMEM 0
74 #define NV_DMA_TARGET_PCI 2
75 #define NV_DMA_TARGET_AGP 3
79 /* owner of this fifo */
81 /* mapping of the fifo itself */
83 /* mapping of the regs controling the fifo */
84 drm_local_map_t *regs;
85 /* dma object for the command buffer itself */
86 struct mem_block *cmdbuf_mem;
87 struct nouveau_object *cmdbuf_obj;
88 /* PGRAPH context, for cards that keep it in RAMIN */
89 struct mem_block *ramin_grctx;
90 /* objects belonging to this fifo */
91 struct nouveau_object *objs;
93 /* XXX move this in PGRAPH struct */
94 uint32_t pgraph_ctx_user;
97 struct nouveau_config {
104 typedef struct drm_nouveau_private {
105 /* the card type, takes NV_* as values */
109 drm_local_map_t *mmio;
111 drm_local_map_t *ramin; /* NV40 onwards */
113 //TODO: Remove me, I'm bogus :)
116 struct nouveau_object *fb_obj;
118 struct mem_block* cmdbuf_alloc;
120 int fifo_alloc_count;
121 struct nouveau_fifo fifos[NV_MAX_FIFO_NUMBER];
123 /* RAMIN configuration, RAMFC, RAMHT and RAMRO offsets */
125 uint32_t ramht_offset;
128 uint32_t ramfc_offset;
130 uint32_t ramro_offset;
133 /* base physical adresses */
137 /* the mtrr covering the FB */
140 struct mem_block *agp_heap;
141 struct mem_block *fb_heap;
142 struct mem_block *fb_nomap_heap;
143 struct mem_block *ramin_heap;
145 struct nouveau_config config;
147 drm_nouveau_private_t;
149 /* nouveau_state.c */
150 extern void nouveau_preclose(drm_device_t * dev, DRMFILE filp);
151 extern int nouveau_load(struct drm_device *dev, unsigned long flags);
152 extern int nouveau_firstopen(struct drm_device *dev);
153 extern void nouveau_lastclose(struct drm_device *dev);
154 extern int nouveau_unload(struct drm_device *dev);
155 extern int nouveau_ioctl_getparam(DRM_IOCTL_ARGS);
156 extern int nouveau_ioctl_setparam(DRM_IOCTL_ARGS);
157 extern void nouveau_wait_for_idle(struct drm_device *dev);
160 extern uint64_t nouveau_mem_fb_amount(struct drm_device *dev);
161 extern void nouveau_mem_release(DRMFILE filp, struct mem_block *heap);
162 extern int nouveau_ioctl_mem_alloc(DRM_IOCTL_ARGS);
163 extern int nouveau_ioctl_mem_free(DRM_IOCTL_ARGS);
164 extern struct mem_block* nouveau_mem_alloc(struct drm_device *dev, int alignment, uint64_t size, int flags, DRMFILE filp);
165 extern void nouveau_mem_free(struct drm_device* dev, struct mem_block*);
166 extern int nouveau_mem_init(struct drm_device *dev);
167 extern void nouveau_mem_close(struct drm_device *dev);
168 extern int nouveau_instmem_init(struct drm_device *dev,
170 extern struct mem_block* nouveau_instmem_alloc(struct drm_device *dev,
171 uint32_t size, uint32_t align);
172 extern void nouveau_instmem_free(struct drm_device *dev,
173 struct mem_block *block);
174 extern uint32_t nouveau_instmem_r32(drm_nouveau_private_t *dev_priv,
175 struct mem_block *mem, int index);
176 extern void nouveau_instmem_w32(drm_nouveau_private_t *dev_priv,
177 struct mem_block *mem, int index,
181 extern int nouveau_fifo_init(drm_device_t *dev);
182 extern int nouveau_fifo_number(drm_device_t *dev);
183 extern void nouveau_fifo_cleanup(drm_device_t *dev, DRMFILE filp);
184 extern int nouveau_fifo_id_get(drm_device_t *dev, DRMFILE filp);
185 extern void nouveau_fifo_free(drm_device_t *dev, int channel);
187 /* nouveau_object.c */
188 extern void nouveau_object_cleanup(drm_device_t *dev, DRMFILE filp);
189 extern struct nouveau_object *nouveau_dma_object_create(drm_device_t *dev,
190 uint32_t offset, uint32_t size, int access, uint32_t target);
191 extern int nouveau_ioctl_object_init(DRM_IOCTL_ARGS);
192 extern int nouveau_ioctl_dma_object_init(DRM_IOCTL_ARGS);
193 extern uint32_t nouveau_chip_instance_get(drm_device_t *dev, struct mem_block *mem);
196 extern irqreturn_t nouveau_irq_handler(DRM_IRQ_ARGS);
197 extern void nouveau_irq_preinstall(drm_device_t*);
198 extern void nouveau_irq_postinstall(drm_device_t*);
199 extern void nouveau_irq_uninstall(drm_device_t*);
202 extern int nv40_graph_init(drm_device_t *dev);
203 extern int nv40_graph_context_create(drm_device_t *dev, int channel);
204 extern void nv40_graph_context_save_current(drm_device_t *dev);
205 extern void nv40_graph_context_restore(drm_device_t *dev, int channel);
207 extern long nouveau_compat_ioctl(struct file *filp, unsigned int cmd,
210 #if defined(__powerpc__)
211 #define NV_READ(reg) in_be32((void __iomem *)(dev_priv->mmio)->handle + (reg) )
212 #define NV_WRITE(reg,val) out_be32((void __iomem *)(dev_priv->mmio)->handle + (reg) , (val) )
214 #define NV_READ(reg) DRM_READ32( dev_priv->mmio, (reg) )
215 #define NV_WRITE(reg,val) DRM_WRITE32( dev_priv->mmio, (reg), (val) )
218 #define INSTANCE_WR(mem,ofs,val) nouveau_instmem_w32(dev_priv,(mem),(ofs),(val))
219 #define INSTANCE_RD(mem,ofs) nouveau_instmem_r32(dev_priv,(mem),(ofs))
221 #endif /* __NOUVEAU_DRV_H__ */