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 "20090420"
35 #define DRIVER_MAJOR 0
36 #define DRIVER_MINOR 0
37 #define DRIVER_PATCHLEVEL 15
39 #define NOUVEAU_FAMILY 0x0000FFFF
40 #define NOUVEAU_FLAGS 0xFFFF0000
42 #include "ttm/ttm_bo_api.h"
43 #include "ttm/ttm_bo_driver.h"
44 #include "ttm/ttm_placement.h"
45 #include "ttm/ttm_memory.h"
46 #include "ttm/ttm_module.h"
48 struct nouveau_fpriv
{
49 struct ttm_object_file
*tfile
;
52 #define DRM_FILE_PAGE_OFFSET (0x100000000ULL >> PAGE_SHIFT)
54 #include "nouveau_drm.h"
55 #include "nouveau_reg.h"
56 #include "nouveau_bios.h"
59 #define MAX_NUM_DCB_ENTRIES 16
61 #define NOUVEAU_MAX_CHANNEL_NR 128
62 #define NOUVEAU_MAX_TILE_NR 15
64 #define NV50_VM_MAX_VRAM (2*1024*1024*1024ULL)
65 #define NV50_VM_BLOCK (512*1024*1024ULL)
66 #define NV50_VM_VRAM_NR (NV50_VM_MAX_VRAM / NV50_VM_BLOCK)
68 struct nouveau_tile_reg
{
69 struct nouveau_fence
*fence
;
76 struct ttm_buffer_object bo
;
77 struct ttm_placement placement
;
79 struct ttm_bo_kmap_obj kmap
;
80 struct list_head head
;
82 /* protected by ttm_bo_reserve() */
83 struct drm_file
*reserved_by
;
84 struct list_head entry
;
87 struct nouveau_channel
*channel
;
94 struct nouveau_tile_reg
*tile
;
96 struct drm_gem_object
*gem
;
97 struct drm_file
*cpu_filp
;
101 static inline struct nouveau_bo
*
102 nouveau_bo(struct ttm_buffer_object
*bo
)
104 return container_of(bo
, struct nouveau_bo
, bo
);
107 static inline struct nouveau_bo
*
108 nouveau_gem_object(struct drm_gem_object
*gem
)
110 return gem
? gem
->driver_private
: NULL
;
113 /* TODO: submit equivalent to TTM generic API upstream? */
114 static inline void __iomem
*
115 nvbo_kmap_obj_iovirtual(struct nouveau_bo
*nvbo
)
118 void __iomem
*ioptr
= (void __force __iomem
*)ttm_kmap_obj_virtual(
119 &nvbo
->kmap
, &is_iomem
);
120 WARN_ON_ONCE(ioptr
&& !is_iomem
);
125 struct mem_block
*next
;
126 struct mem_block
*prev
;
129 struct drm_file
*file_priv
; /* NULL: free, -1: heap, other: real files */
133 NV_NFORCE
= 0x10000000,
134 NV_NFORCE2
= 0x20000000
137 #define NVOBJ_ENGINE_SW 0
138 #define NVOBJ_ENGINE_GR 1
139 #define NVOBJ_ENGINE_DISPLAY 2
140 #define NVOBJ_ENGINE_INT 0xdeadbeef
142 #define NVOBJ_FLAG_ALLOW_NO_REFS (1 << 0)
143 #define NVOBJ_FLAG_ZERO_ALLOC (1 << 1)
144 #define NVOBJ_FLAG_ZERO_FREE (1 << 2)
145 #define NVOBJ_FLAG_FAKE (1 << 3)
146 struct nouveau_gpuobj
{
147 struct list_head list
;
149 struct nouveau_channel
*im_channel
;
150 struct mem_block
*im_pramin
;
151 struct nouveau_bo
*im_backing
;
152 uint32_t im_backing_start
;
153 uint32_t *im_backing_suspend
;
162 void (*dtor
)(struct drm_device
*, struct nouveau_gpuobj
*);
166 struct nouveau_gpuobj_ref
{
167 struct list_head list
;
169 struct nouveau_gpuobj
*gpuobj
;
172 struct nouveau_channel
*channel
;
176 struct nouveau_channel
{
177 struct drm_device
*dev
;
180 /* owner of this fifo */
181 struct drm_file
*file_priv
;
182 /* mapping of the fifo itself */
183 struct drm_local_map
*map
;
185 /* mapping of the regs controling the fifo */
192 /* lock protects the pending list only */
194 struct list_head pending
;
196 uint32_t sequence_ack
;
197 uint32_t last_sequence_irq
;
200 /* DMA push buffer */
201 struct nouveau_gpuobj_ref
*pushbuf
;
202 struct nouveau_bo
*pushbuf_bo
;
203 uint32_t pushbuf_base
;
205 /* Notifier memory */
206 struct nouveau_bo
*notifier_bo
;
207 struct mem_block
*notifier_heap
;
210 struct nouveau_gpuobj_ref
*ramfc
;
211 struct nouveau_gpuobj_ref
*cache
;
214 /* XXX may be merge 2 pointers as private data ??? */
215 struct nouveau_gpuobj_ref
*ramin_grctx
;
219 struct nouveau_gpuobj
*vm_pd
;
220 struct nouveau_gpuobj_ref
*vm_gart_pt
;
221 struct nouveau_gpuobj_ref
*vm_vram_pt
[NV50_VM_VRAM_NR
];
224 struct nouveau_gpuobj_ref
*ramin
; /* Private instmem */
225 struct mem_block
*ramin_heap
; /* Private PRAMIN heap */
226 struct nouveau_gpuobj_ref
*ramht
; /* Hash table */
227 struct list_head ramht_refs
; /* Objects referenced by RAMHT */
229 /* GPU object info for stuff used in-kernel (mm_enabled) */
231 uint32_t vram_handle
;
232 uint32_t gart_handle
;
235 /* Push buffer state (only for drm's channel on !mm_enabled) */
241 /* access via pushbuf_bo */
244 uint32_t sw_subchannel
[8];
247 struct nouveau_gpuobj
*vblsem
;
248 uint32_t vblsem_offset
;
249 uint32_t vblsem_rval
;
250 struct list_head vbl_wait
;
256 struct drm_info_list info
;
260 struct nouveau_instmem_engine
{
263 int (*init
)(struct drm_device
*dev
);
264 void (*takedown
)(struct drm_device
*dev
);
265 int (*suspend
)(struct drm_device
*dev
);
266 void (*resume
)(struct drm_device
*dev
);
268 int (*populate
)(struct drm_device
*, struct nouveau_gpuobj
*,
270 void (*clear
)(struct drm_device
*, struct nouveau_gpuobj
*);
271 int (*bind
)(struct drm_device
*, struct nouveau_gpuobj
*);
272 int (*unbind
)(struct drm_device
*, struct nouveau_gpuobj
*);
273 void (*prepare_access
)(struct drm_device
*, bool write
);
274 void (*finish_access
)(struct drm_device
*);
277 struct nouveau_mc_engine
{
278 int (*init
)(struct drm_device
*dev
);
279 void (*takedown
)(struct drm_device
*dev
);
282 struct nouveau_timer_engine
{
283 int (*init
)(struct drm_device
*dev
);
284 void (*takedown
)(struct drm_device
*dev
);
285 uint64_t (*read
)(struct drm_device
*dev
);
288 struct nouveau_fb_engine
{
291 int (*init
)(struct drm_device
*dev
);
292 void (*takedown
)(struct drm_device
*dev
);
294 void (*set_region_tiling
)(struct drm_device
*dev
, int i
, uint32_t addr
,
295 uint32_t size
, uint32_t pitch
);
298 struct nouveau_fifo_engine
{
303 int (*init
)(struct drm_device
*);
304 void (*takedown
)(struct drm_device
*);
306 void (*disable
)(struct drm_device
*);
307 void (*enable
)(struct drm_device
*);
308 bool (*reassign
)(struct drm_device
*, bool enable
);
309 bool (*cache_flush
)(struct drm_device
*dev
);
310 bool (*cache_pull
)(struct drm_device
*dev
, bool enable
);
312 int (*channel_id
)(struct drm_device
*);
314 int (*create_context
)(struct nouveau_channel
*);
315 void (*destroy_context
)(struct nouveau_channel
*);
316 int (*load_context
)(struct nouveau_channel
*);
317 int (*unload_context
)(struct drm_device
*);
320 struct nouveau_pgraph_object_method
{
322 int (*exec
)(struct nouveau_channel
*chan
, int grclass
, int mthd
,
326 struct nouveau_pgraph_object_class
{
329 struct nouveau_pgraph_object_method
*methods
;
332 struct nouveau_pgraph_engine
{
333 struct nouveau_pgraph_object_class
*grclass
;
339 int (*init
)(struct drm_device
*);
340 void (*takedown
)(struct drm_device
*);
342 void (*fifo_access
)(struct drm_device
*, bool);
344 struct nouveau_channel
*(*channel
)(struct drm_device
*);
345 int (*create_context
)(struct nouveau_channel
*);
346 void (*destroy_context
)(struct nouveau_channel
*);
347 int (*load_context
)(struct nouveau_channel
*);
348 int (*unload_context
)(struct drm_device
*);
350 void (*set_region_tiling
)(struct drm_device
*dev
, int i
, uint32_t addr
,
351 uint32_t size
, uint32_t pitch
);
354 struct nouveau_engine
{
355 struct nouveau_instmem_engine instmem
;
356 struct nouveau_mc_engine mc
;
357 struct nouveau_timer_engine timer
;
358 struct nouveau_fb_engine fb
;
359 struct nouveau_pgraph_engine graph
;
360 struct nouveau_fifo_engine fifo
;
363 struct nouveau_pll_vals
{
367 uint8_t N1
, M1
, N2
, M2
;
369 uint8_t M1
, N1
, M2
, N2
;
374 } __attribute__((packed
));
381 enum nv04_fp_display_regs
{
391 struct nv04_crtc_reg
{
392 unsigned char MiscOutReg
; /* */
395 uint8_t Sequencer
[5];
397 uint8_t Attribute
[21];
398 unsigned char DAC
[768]; /* Internal Colorlookuptable */
408 uint32_t crtc_eng_ctrl
;
411 uint32_t nv10_cursync
;
412 struct nouveau_pll_vals pllvals
;
413 uint32_t ramdac_gen_ctrl
;
419 uint32_t tv_vsync_delay
;
422 uint32_t tv_hsync_delay
;
423 uint32_t tv_hsync_delay2
;
424 uint32_t fp_horiz_regs
[7];
425 uint32_t fp_vert_regs
[7];
428 uint32_t dither_regs
[6];
432 uint32_t fp_margin_color
;
437 uint32_t ctv_regs
[38];
440 struct nv04_output_reg
{
445 struct nv04_mode_state
{
473 uint32_t cursorConfig
;
482 struct nv04_crtc_reg crtc_reg
[2];
485 enum nouveau_card_type
{
494 struct drm_nouveau_private
{
495 struct drm_device
*dev
;
497 NOUVEAU_CARD_INIT_DOWN
,
498 NOUVEAU_CARD_INIT_DONE
,
499 NOUVEAU_CARD_INIT_FAILED
502 /* the card type, takes NV_* as values */
503 enum nouveau_card_type card_type
;
504 /* exact chipset, derived from NV_PMC_BOOT_0 */
512 struct nouveau_bo
*vga_ram
;
514 struct workqueue_struct
*wq
;
515 struct work_struct irq_work
;
517 struct list_head vbl_waiting
;
520 struct ttm_global_reference mem_global_ref
;
521 struct ttm_bo_global_ref bo_global_ref
;
522 struct ttm_bo_device bdev
;
523 spinlock_t bo_list_lock
;
524 struct list_head bo_list
;
525 atomic_t validate_sequence
;
528 struct fb_info
*fbdev_info
;
530 int fifo_alloc_count
;
531 struct nouveau_channel
*fifos
[NOUVEAU_MAX_CHANNEL_NR
];
533 struct nouveau_engine engine
;
534 struct nouveau_channel
*channel
;
536 /* RAMIN configuration, RAMFC, RAMHT and RAMRO offsets */
537 struct nouveau_gpuobj
*ramht
;
538 uint32_t ramin_rsvd_vram
;
539 uint32_t ramht_offset
;
542 uint32_t ramfc_offset
;
544 uint32_t ramro_offset
;
547 /* base physical adresses */
549 uint64_t fb_available_size
;
550 uint64_t fb_mappable_pages
;
551 uint64_t fb_aper_free
;
555 NOUVEAU_GART_NONE
= 0,
563 struct nouveau_gpuobj
*sg_ctxdma
;
564 struct page
*sg_dummy_page
;
565 dma_addr_t sg_dummy_bus
;
568 struct drm_ttm_backend
*sg_be
;
569 unsigned long sg_handle
;
572 /* nv10-nv40 tiling regions */
574 struct nouveau_tile_reg reg
[NOUVEAU_MAX_TILE_NR
];
578 /* G8x/G9x virtual address space */
579 uint64_t vm_gart_base
;
580 uint64_t vm_gart_size
;
581 uint64_t vm_vram_base
;
582 uint64_t vm_vram_size
;
584 struct nouveau_gpuobj
*vm_vram_pt
[NV50_VM_VRAM_NR
];
587 /* the mtrr covering the FB */
590 struct mem_block
*ramin_heap
;
592 /* context table pointed to be NV_PGRAPH_CHANNEL_CTX_TABLE (0x400780) */
593 uint32_t ctx_table_size
;
594 struct nouveau_gpuobj_ref
*ctx_table
;
596 struct list_head gpuobj_list
;
599 struct nouveau_bios_info
*vbios
;
601 struct nv04_mode_state mode_reg
;
602 struct nv04_mode_state saved_reg
;
603 uint32_t saved_vga_font
[4][16384];
605 uint32_t dac_users
[4];
607 struct nouveau_suspend_resume
{
609 uint32_t graph_ctx_control
;
610 uint32_t graph_state
;
611 uint32_t *ramin_copy
;
615 struct backlight_device
*backlight
;
618 struct nouveau_channel
*evo
;
621 struct dentry
*channel_root
;
625 static inline struct drm_nouveau_private
*
626 nouveau_bdev(struct ttm_bo_device
*bd
)
628 return container_of(bd
, struct drm_nouveau_private
, ttm
.bdev
);
632 nouveau_bo_ref(struct nouveau_bo
*ref
, struct nouveau_bo
**pnvbo
)
634 struct nouveau_bo
*prev
;
640 *pnvbo
= ref
? nouveau_bo(ttm_bo_reference(&ref
->bo
)) : NULL
;
642 struct ttm_buffer_object
*bo
= &prev
->bo
;
650 #define NOUVEAU_CHECK_INITIALISED_WITH_RETURN do { \
651 struct drm_nouveau_private *nv = dev->dev_private; \
652 if (nv->init_state != NOUVEAU_CARD_INIT_DONE) { \
653 NV_ERROR(dev, "called without init\n"); \
658 #define NOUVEAU_GET_USER_CHANNEL_WITH_RETURN(id, cl, ch) do { \
659 struct drm_nouveau_private *nv = dev->dev_private; \
660 if (!nouveau_channel_owner(dev, (cl), (id))) { \
661 NV_ERROR(dev, "pid %d doesn't own channel %d\n", \
662 DRM_CURRENTPID, (id)); \
665 (ch) = nv->fifos[(id)]; \
669 extern int nouveau_noagp
;
670 extern int nouveau_duallink
;
671 extern int nouveau_uscript_lvds
;
672 extern int nouveau_uscript_tmds
;
673 extern int nouveau_vram_pushbuf
;
674 extern int nouveau_vram_notify
;
675 extern int nouveau_fbpercrtc
;
676 extern char *nouveau_tv_norm
;
677 extern int nouveau_reg_debug
;
678 extern char *nouveau_vbios
;
679 extern int nouveau_ctxfw
;
680 extern int nouveau_ignorelid
;
682 /* nouveau_state.c */
683 extern void nouveau_preclose(struct drm_device
*dev
, struct drm_file
*);
684 extern int nouveau_load(struct drm_device
*, unsigned long flags
);
685 extern int nouveau_firstopen(struct drm_device
*);
686 extern void nouveau_lastclose(struct drm_device
*);
687 extern int nouveau_unload(struct drm_device
*);
688 extern int nouveau_ioctl_getparam(struct drm_device
*, void *data
,
690 extern int nouveau_ioctl_setparam(struct drm_device
*, void *data
,
692 extern bool nouveau_wait_until(struct drm_device
*, uint64_t timeout
,
693 uint32_t reg
, uint32_t mask
, uint32_t val
);
694 extern bool nouveau_wait_for_idle(struct drm_device
*);
695 extern int nouveau_card_init(struct drm_device
*);
696 extern int nouveau_ioctl_card_init(struct drm_device
*, void *data
,
698 extern int nouveau_ioctl_suspend(struct drm_device
*, void *data
,
700 extern int nouveau_ioctl_resume(struct drm_device
*, void *data
,
704 extern int nouveau_mem_init_heap(struct mem_block
**, uint64_t start
,
706 extern struct mem_block
*nouveau_mem_alloc_block(struct mem_block
*,
707 uint64_t size
, int align2
,
708 struct drm_file
*, int tail
);
709 extern void nouveau_mem_takedown(struct mem_block
**heap
);
710 extern void nouveau_mem_free_block(struct mem_block
*);
711 extern uint64_t nouveau_mem_fb_amount(struct drm_device
*);
712 extern void nouveau_mem_release(struct drm_file
*, struct mem_block
*heap
);
713 extern int nouveau_mem_init(struct drm_device
*);
714 extern int nouveau_mem_init_agp(struct drm_device
*);
715 extern void nouveau_mem_close(struct drm_device
*);
716 extern struct nouveau_tile_reg
*nv10_mem_set_tiling(struct drm_device
*dev
,
720 extern void nv10_mem_expire_tiling(struct drm_device
*dev
,
721 struct nouveau_tile_reg
*tile
,
722 struct nouveau_fence
*fence
);
723 extern int nv50_mem_vm_bind_linear(struct drm_device
*, uint64_t virt
,
724 uint32_t size
, uint32_t flags
,
726 extern void nv50_mem_vm_unbind(struct drm_device
*, uint64_t virt
,
729 /* nouveau_notifier.c */
730 extern int nouveau_notifier_init_channel(struct nouveau_channel
*);
731 extern void nouveau_notifier_takedown_channel(struct nouveau_channel
*);
732 extern int nouveau_notifier_alloc(struct nouveau_channel
*, uint32_t handle
,
733 int cout
, uint32_t *offset
);
734 extern int nouveau_notifier_offset(struct nouveau_gpuobj
*, uint32_t *);
735 extern int nouveau_ioctl_notifier_alloc(struct drm_device
*, void *data
,
737 extern int nouveau_ioctl_notifier_free(struct drm_device
*, void *data
,
740 /* nouveau_channel.c */
741 extern struct drm_ioctl_desc nouveau_ioctls
[];
742 extern int nouveau_max_ioctl
;
743 extern void nouveau_channel_cleanup(struct drm_device
*, struct drm_file
*);
744 extern int nouveau_channel_owner(struct drm_device
*, struct drm_file
*,
746 extern int nouveau_channel_alloc(struct drm_device
*dev
,
747 struct nouveau_channel
**chan
,
748 struct drm_file
*file_priv
,
749 uint32_t fb_ctxdma
, uint32_t tt_ctxdma
);
750 extern void nouveau_channel_free(struct nouveau_channel
*);
752 /* nouveau_object.c */
753 extern int nouveau_gpuobj_early_init(struct drm_device
*);
754 extern int nouveau_gpuobj_init(struct drm_device
*);
755 extern void nouveau_gpuobj_takedown(struct drm_device
*);
756 extern void nouveau_gpuobj_late_takedown(struct drm_device
*);
757 extern int nouveau_gpuobj_suspend(struct drm_device
*dev
);
758 extern void nouveau_gpuobj_suspend_cleanup(struct drm_device
*dev
);
759 extern void nouveau_gpuobj_resume(struct drm_device
*dev
);
760 extern int nouveau_gpuobj_channel_init(struct nouveau_channel
*,
761 uint32_t vram_h
, uint32_t tt_h
);
762 extern void nouveau_gpuobj_channel_takedown(struct nouveau_channel
*);
763 extern int nouveau_gpuobj_new(struct drm_device
*, struct nouveau_channel
*,
764 uint32_t size
, int align
, uint32_t flags
,
765 struct nouveau_gpuobj
**);
766 extern int nouveau_gpuobj_del(struct drm_device
*, struct nouveau_gpuobj
**);
767 extern int nouveau_gpuobj_ref_add(struct drm_device
*, struct nouveau_channel
*,
768 uint32_t handle
, struct nouveau_gpuobj
*,
769 struct nouveau_gpuobj_ref
**);
770 extern int nouveau_gpuobj_ref_del(struct drm_device
*,
771 struct nouveau_gpuobj_ref
**);
772 extern int nouveau_gpuobj_ref_find(struct nouveau_channel
*, uint32_t handle
,
773 struct nouveau_gpuobj_ref
**ref_ret
);
774 extern int nouveau_gpuobj_new_ref(struct drm_device
*,
775 struct nouveau_channel
*alloc_chan
,
776 struct nouveau_channel
*ref_chan
,
777 uint32_t handle
, uint32_t size
, int align
,
778 uint32_t flags
, struct nouveau_gpuobj_ref
**);
779 extern int nouveau_gpuobj_new_fake(struct drm_device
*,
780 uint32_t p_offset
, uint32_t b_offset
,
781 uint32_t size
, uint32_t flags
,
782 struct nouveau_gpuobj
**,
783 struct nouveau_gpuobj_ref
**);
784 extern int nouveau_gpuobj_dma_new(struct nouveau_channel
*, int class,
785 uint64_t offset
, uint64_t size
, int access
,
786 int target
, struct nouveau_gpuobj
**);
787 extern int nouveau_gpuobj_gart_dma_new(struct nouveau_channel
*,
788 uint64_t offset
, uint64_t size
,
789 int access
, struct nouveau_gpuobj
**,
791 extern int nouveau_gpuobj_gr_new(struct nouveau_channel
*, int class,
792 struct nouveau_gpuobj
**);
793 extern int nouveau_gpuobj_sw_new(struct nouveau_channel
*, int class,
794 struct nouveau_gpuobj
**);
795 extern int nouveau_ioctl_grobj_alloc(struct drm_device
*, void *data
,
797 extern int nouveau_ioctl_gpuobj_free(struct drm_device
*, void *data
,
801 extern irqreturn_t
nouveau_irq_handler(DRM_IRQ_ARGS
);
802 extern void nouveau_irq_preinstall(struct drm_device
*);
803 extern int nouveau_irq_postinstall(struct drm_device
*);
804 extern void nouveau_irq_uninstall(struct drm_device
*);
806 /* nouveau_sgdma.c */
807 extern int nouveau_sgdma_init(struct drm_device
*);
808 extern void nouveau_sgdma_takedown(struct drm_device
*);
809 extern int nouveau_sgdma_get_page(struct drm_device
*, uint32_t offset
,
811 extern struct ttm_backend
*nouveau_sgdma_init_ttm(struct drm_device
*);
813 /* nouveau_debugfs.c */
814 #if defined(CONFIG_DRM_NOUVEAU_DEBUG)
815 extern int nouveau_debugfs_init(struct drm_minor
*);
816 extern void nouveau_debugfs_takedown(struct drm_minor
*);
817 extern int nouveau_debugfs_channel_init(struct nouveau_channel
*);
818 extern void nouveau_debugfs_channel_fini(struct nouveau_channel
*);
821 nouveau_debugfs_init(struct drm_minor
*minor
)
826 static inline void nouveau_debugfs_takedown(struct drm_minor
*minor
)
831 nouveau_debugfs_channel_init(struct nouveau_channel
*chan
)
837 nouveau_debugfs_channel_fini(struct nouveau_channel
*chan
)
843 extern void nouveau_dma_pre_init(struct nouveau_channel
*);
844 extern int nouveau_dma_init(struct nouveau_channel
*);
845 extern int nouveau_dma_wait(struct nouveau_channel
*, int size
);
849 extern int nouveau_hybrid_setup(struct drm_device
*dev
);
850 extern bool nouveau_dsm_probe(struct drm_device
*dev
);
852 static inline int nouveau_hybrid_setup(struct drm_device
*dev
)
856 static inline bool nouveau_dsm_probe(struct drm_device
*dev
)
862 /* nouveau_backlight.c */
863 #ifdef CONFIG_DRM_NOUVEAU_BACKLIGHT
864 extern int nouveau_backlight_init(struct drm_device
*);
865 extern void nouveau_backlight_exit(struct drm_device
*);
867 static inline int nouveau_backlight_init(struct drm_device
*dev
)
872 static inline void nouveau_backlight_exit(struct drm_device
*dev
) { }
876 extern int nouveau_bios_init(struct drm_device
*);
877 extern void nouveau_bios_takedown(struct drm_device
*dev
);
878 extern int nouveau_run_vbios_init(struct drm_device
*);
879 extern void nouveau_bios_run_init_table(struct drm_device
*, uint16_t table
,
881 extern struct dcb_gpio_entry
*nouveau_bios_gpio_entry(struct drm_device
*,
883 extern struct dcb_connector_table_entry
*
884 nouveau_bios_connector_entry(struct drm_device
*, int index
);
885 extern int get_pll_limits(struct drm_device
*, uint32_t limit_match
,
887 extern int nouveau_bios_run_display_table(struct drm_device
*,
889 uint32_t script
, int pxclk
);
890 extern void *nouveau_bios_dp_table(struct drm_device
*, struct dcb_entry
*,
892 extern bool nouveau_bios_fp_mode(struct drm_device
*, struct drm_display_mode
*);
893 extern uint8_t *nouveau_bios_embedded_edid(struct drm_device
*);
894 extern int nouveau_bios_parse_lvds_table(struct drm_device
*, int pxclk
,
895 bool *dl
, bool *if_is_24bit
);
896 extern int run_tmds_table(struct drm_device
*, struct dcb_entry
*,
897 int head
, int pxclk
);
898 extern int call_lvds_script(struct drm_device
*, struct dcb_entry
*, int head
,
899 enum LVDS_script
, int pxclk
);
902 int nouveau_ttm_global_init(struct drm_nouveau_private
*);
903 void nouveau_ttm_global_release(struct drm_nouveau_private
*);
904 int nouveau_ttm_mmap(struct file
*, struct vm_area_struct
*);
907 int nouveau_dp_auxch(struct nouveau_i2c_chan
*auxch
, int cmd
, int addr
,
908 uint8_t *data
, int data_nr
);
909 bool nouveau_dp_detect(struct drm_encoder
*);
910 bool nouveau_dp_link_train(struct drm_encoder
*);
913 extern int nv04_fb_init(struct drm_device
*);
914 extern void nv04_fb_takedown(struct drm_device
*);
917 extern int nv10_fb_init(struct drm_device
*);
918 extern void nv10_fb_takedown(struct drm_device
*);
919 extern void nv10_fb_set_region_tiling(struct drm_device
*, int, uint32_t,
923 extern int nv40_fb_init(struct drm_device
*);
924 extern void nv40_fb_takedown(struct drm_device
*);
925 extern void nv40_fb_set_region_tiling(struct drm_device
*, int, uint32_t,
929 extern int nv04_fifo_init(struct drm_device
*);
930 extern void nv04_fifo_disable(struct drm_device
*);
931 extern void nv04_fifo_enable(struct drm_device
*);
932 extern bool nv04_fifo_reassign(struct drm_device
*, bool);
933 extern bool nv04_fifo_cache_flush(struct drm_device
*);
934 extern bool nv04_fifo_cache_pull(struct drm_device
*, bool);
935 extern int nv04_fifo_channel_id(struct drm_device
*);
936 extern int nv04_fifo_create_context(struct nouveau_channel
*);
937 extern void nv04_fifo_destroy_context(struct nouveau_channel
*);
938 extern int nv04_fifo_load_context(struct nouveau_channel
*);
939 extern int nv04_fifo_unload_context(struct drm_device
*);
942 extern int nv10_fifo_init(struct drm_device
*);
943 extern int nv10_fifo_channel_id(struct drm_device
*);
944 extern int nv10_fifo_create_context(struct nouveau_channel
*);
945 extern void nv10_fifo_destroy_context(struct nouveau_channel
*);
946 extern int nv10_fifo_load_context(struct nouveau_channel
*);
947 extern int nv10_fifo_unload_context(struct drm_device
*);
950 extern int nv40_fifo_init(struct drm_device
*);
951 extern int nv40_fifo_create_context(struct nouveau_channel
*);
952 extern void nv40_fifo_destroy_context(struct nouveau_channel
*);
953 extern int nv40_fifo_load_context(struct nouveau_channel
*);
954 extern int nv40_fifo_unload_context(struct drm_device
*);
957 extern int nv50_fifo_init(struct drm_device
*);
958 extern void nv50_fifo_takedown(struct drm_device
*);
959 extern int nv50_fifo_channel_id(struct drm_device
*);
960 extern int nv50_fifo_create_context(struct nouveau_channel
*);
961 extern void nv50_fifo_destroy_context(struct nouveau_channel
*);
962 extern int nv50_fifo_load_context(struct nouveau_channel
*);
963 extern int nv50_fifo_unload_context(struct drm_device
*);
966 extern struct nouveau_pgraph_object_class nv04_graph_grclass
[];
967 extern int nv04_graph_init(struct drm_device
*);
968 extern void nv04_graph_takedown(struct drm_device
*);
969 extern void nv04_graph_fifo_access(struct drm_device
*, bool);
970 extern struct nouveau_channel
*nv04_graph_channel(struct drm_device
*);
971 extern int nv04_graph_create_context(struct nouveau_channel
*);
972 extern void nv04_graph_destroy_context(struct nouveau_channel
*);
973 extern int nv04_graph_load_context(struct nouveau_channel
*);
974 extern int nv04_graph_unload_context(struct drm_device
*);
975 extern void nv04_graph_context_switch(struct drm_device
*);
978 extern struct nouveau_pgraph_object_class nv10_graph_grclass
[];
979 extern int nv10_graph_init(struct drm_device
*);
980 extern void nv10_graph_takedown(struct drm_device
*);
981 extern struct nouveau_channel
*nv10_graph_channel(struct drm_device
*);
982 extern int nv10_graph_create_context(struct nouveau_channel
*);
983 extern void nv10_graph_destroy_context(struct nouveau_channel
*);
984 extern int nv10_graph_load_context(struct nouveau_channel
*);
985 extern int nv10_graph_unload_context(struct drm_device
*);
986 extern void nv10_graph_context_switch(struct drm_device
*);
987 extern void nv10_graph_set_region_tiling(struct drm_device
*, int, uint32_t,
991 extern struct nouveau_pgraph_object_class nv20_graph_grclass
[];
992 extern struct nouveau_pgraph_object_class nv30_graph_grclass
[];
993 extern int nv20_graph_create_context(struct nouveau_channel
*);
994 extern void nv20_graph_destroy_context(struct nouveau_channel
*);
995 extern int nv20_graph_load_context(struct nouveau_channel
*);
996 extern int nv20_graph_unload_context(struct drm_device
*);
997 extern int nv20_graph_init(struct drm_device
*);
998 extern void nv20_graph_takedown(struct drm_device
*);
999 extern int nv30_graph_init(struct drm_device
*);
1000 extern void nv20_graph_set_region_tiling(struct drm_device
*, int, uint32_t,
1001 uint32_t, uint32_t);
1004 extern struct nouveau_pgraph_object_class nv40_graph_grclass
[];
1005 extern int nv40_graph_init(struct drm_device
*);
1006 extern void nv40_graph_takedown(struct drm_device
*);
1007 extern struct nouveau_channel
*nv40_graph_channel(struct drm_device
*);
1008 extern int nv40_graph_create_context(struct nouveau_channel
*);
1009 extern void nv40_graph_destroy_context(struct nouveau_channel
*);
1010 extern int nv40_graph_load_context(struct nouveau_channel
*);
1011 extern int nv40_graph_unload_context(struct drm_device
*);
1012 extern void nv40_grctx_init(struct nouveau_grctx
*);
1013 extern void nv40_graph_set_region_tiling(struct drm_device
*, int, uint32_t,
1014 uint32_t, uint32_t);
1017 extern struct nouveau_pgraph_object_class nv50_graph_grclass
[];
1018 extern int nv50_graph_init(struct drm_device
*);
1019 extern void nv50_graph_takedown(struct drm_device
*);
1020 extern void nv50_graph_fifo_access(struct drm_device
*, bool);
1021 extern struct nouveau_channel
*nv50_graph_channel(struct drm_device
*);
1022 extern int nv50_graph_create_context(struct nouveau_channel
*);
1023 extern void nv50_graph_destroy_context(struct nouveau_channel
*);
1024 extern int nv50_graph_load_context(struct nouveau_channel
*);
1025 extern int nv50_graph_unload_context(struct drm_device
*);
1026 extern void nv50_graph_context_switch(struct drm_device
*);
1028 /* nouveau_grctx.c */
1029 extern int nouveau_grctx_prog_load(struct drm_device
*);
1030 extern void nouveau_grctx_vals_load(struct drm_device
*,
1031 struct nouveau_gpuobj
*);
1032 extern void nouveau_grctx_fini(struct drm_device
*);
1034 /* nv04_instmem.c */
1035 extern int nv04_instmem_init(struct drm_device
*);
1036 extern void nv04_instmem_takedown(struct drm_device
*);
1037 extern int nv04_instmem_suspend(struct drm_device
*);
1038 extern void nv04_instmem_resume(struct drm_device
*);
1039 extern int nv04_instmem_populate(struct drm_device
*, struct nouveau_gpuobj
*,
1041 extern void nv04_instmem_clear(struct drm_device
*, struct nouveau_gpuobj
*);
1042 extern int nv04_instmem_bind(struct drm_device
*, struct nouveau_gpuobj
*);
1043 extern int nv04_instmem_unbind(struct drm_device
*, struct nouveau_gpuobj
*);
1044 extern void nv04_instmem_prepare_access(struct drm_device
*, bool write
);
1045 extern void nv04_instmem_finish_access(struct drm_device
*);
1047 /* nv50_instmem.c */
1048 extern int nv50_instmem_init(struct drm_device
*);
1049 extern void nv50_instmem_takedown(struct drm_device
*);
1050 extern int nv50_instmem_suspend(struct drm_device
*);
1051 extern void nv50_instmem_resume(struct drm_device
*);
1052 extern int nv50_instmem_populate(struct drm_device
*, struct nouveau_gpuobj
*,
1054 extern void nv50_instmem_clear(struct drm_device
*, struct nouveau_gpuobj
*);
1055 extern int nv50_instmem_bind(struct drm_device
*, struct nouveau_gpuobj
*);
1056 extern int nv50_instmem_unbind(struct drm_device
*, struct nouveau_gpuobj
*);
1057 extern void nv50_instmem_prepare_access(struct drm_device
*, bool write
);
1058 extern void nv50_instmem_finish_access(struct drm_device
*);
1061 extern int nv04_mc_init(struct drm_device
*);
1062 extern void nv04_mc_takedown(struct drm_device
*);
1065 extern int nv40_mc_init(struct drm_device
*);
1066 extern void nv40_mc_takedown(struct drm_device
*);
1069 extern int nv50_mc_init(struct drm_device
*);
1070 extern void nv50_mc_takedown(struct drm_device
*);
1073 extern int nv04_timer_init(struct drm_device
*);
1074 extern uint64_t nv04_timer_read(struct drm_device
*);
1075 extern void nv04_timer_takedown(struct drm_device
*);
1077 extern long nouveau_compat_ioctl(struct file
*file
, unsigned int cmd
,
1081 extern int nv04_dac_create(struct drm_device
*dev
, struct dcb_entry
*entry
);
1082 extern uint32_t nv17_dac_sample_load(struct drm_encoder
*encoder
);
1083 extern int nv04_dac_output_offset(struct drm_encoder
*encoder
);
1084 extern void nv04_dac_update_dacclk(struct drm_encoder
*encoder
, bool enable
);
1087 extern int nv04_dfp_create(struct drm_device
*dev
, struct dcb_entry
*entry
);
1088 extern int nv04_dfp_get_bound_head(struct drm_device
*dev
, struct dcb_entry
*dcbent
);
1089 extern void nv04_dfp_bind_head(struct drm_device
*dev
, struct dcb_entry
*dcbent
,
1091 extern void nv04_dfp_disable(struct drm_device
*dev
, int head
);
1092 extern void nv04_dfp_update_fp_control(struct drm_encoder
*encoder
, int mode
);
1095 extern int nv04_tv_identify(struct drm_device
*dev
, int i2c_index
);
1096 extern int nv04_tv_create(struct drm_device
*dev
, struct dcb_entry
*entry
);
1099 extern int nv17_tv_create(struct drm_device
*dev
, struct dcb_entry
*entry
);
1101 /* nv04_display.c */
1102 extern int nv04_display_create(struct drm_device
*);
1103 extern void nv04_display_destroy(struct drm_device
*);
1104 extern void nv04_display_restore(struct drm_device
*);
1107 extern int nv04_crtc_create(struct drm_device
*, int index
);
1110 extern struct ttm_bo_driver nouveau_bo_driver
;
1111 extern int nouveau_bo_new(struct drm_device
*, struct nouveau_channel
*,
1112 int size
, int align
, uint32_t flags
,
1113 uint32_t tile_mode
, uint32_t tile_flags
,
1114 bool no_vm
, bool mappable
, struct nouveau_bo
**);
1115 extern int nouveau_bo_pin(struct nouveau_bo
*, uint32_t flags
);
1116 extern int nouveau_bo_unpin(struct nouveau_bo
*);
1117 extern int nouveau_bo_map(struct nouveau_bo
*);
1118 extern void nouveau_bo_unmap(struct nouveau_bo
*);
1119 extern void nouveau_bo_placement_set(struct nouveau_bo
*, uint32_t memtype
);
1120 extern u16
nouveau_bo_rd16(struct nouveau_bo
*nvbo
, unsigned index
);
1121 extern void nouveau_bo_wr16(struct nouveau_bo
*nvbo
, unsigned index
, u16 val
);
1122 extern u32
nouveau_bo_rd32(struct nouveau_bo
*nvbo
, unsigned index
);
1123 extern void nouveau_bo_wr32(struct nouveau_bo
*nvbo
, unsigned index
, u32 val
);
1125 /* nouveau_fence.c */
1126 struct nouveau_fence
;
1127 extern int nouveau_fence_init(struct nouveau_channel
*);
1128 extern void nouveau_fence_fini(struct nouveau_channel
*);
1129 extern void nouveau_fence_update(struct nouveau_channel
*);
1130 extern int nouveau_fence_new(struct nouveau_channel
*, struct nouveau_fence
**,
1132 extern int nouveau_fence_emit(struct nouveau_fence
*);
1133 struct nouveau_channel
*nouveau_fence_channel(struct nouveau_fence
*);
1134 extern bool nouveau_fence_signalled(void *obj
, void *arg
);
1135 extern int nouveau_fence_wait(void *obj
, void *arg
, bool lazy
, bool intr
);
1136 extern int nouveau_fence_flush(void *obj
, void *arg
);
1137 extern void nouveau_fence_unref(void **obj
);
1138 extern void *nouveau_fence_ref(void *obj
);
1139 extern void nouveau_fence_handler(struct drm_device
*dev
, int channel
);
1142 extern int nouveau_gem_new(struct drm_device
*, struct nouveau_channel
*,
1143 int size
, int align
, uint32_t flags
,
1144 uint32_t tile_mode
, uint32_t tile_flags
,
1145 bool no_vm
, bool mappable
, struct nouveau_bo
**);
1146 extern int nouveau_gem_object_new(struct drm_gem_object
*);
1147 extern void nouveau_gem_object_del(struct drm_gem_object
*);
1148 extern int nouveau_gem_ioctl_new(struct drm_device
*, void *,
1150 extern int nouveau_gem_ioctl_pushbuf(struct drm_device
*, void *,
1152 extern int nouveau_gem_ioctl_pushbuf_call(struct drm_device
*, void *,
1154 extern int nouveau_gem_ioctl_pushbuf_call2(struct drm_device
*, void *,
1156 extern int nouveau_gem_ioctl_pin(struct drm_device
*, void *,
1158 extern int nouveau_gem_ioctl_unpin(struct drm_device
*, void *,
1160 extern int nouveau_gem_ioctl_tile(struct drm_device
*, void *,
1162 extern int nouveau_gem_ioctl_cpu_prep(struct drm_device
*, void *,
1164 extern int nouveau_gem_ioctl_cpu_fini(struct drm_device
*, void *,
1166 extern int nouveau_gem_ioctl_info(struct drm_device
*, void *,
1170 int nv17_gpio_get(struct drm_device
*dev
, enum dcb_gpio_tag tag
);
1171 int nv17_gpio_set(struct drm_device
*dev
, enum dcb_gpio_tag tag
, int state
);
1173 #ifndef ioread32_native
1175 #define ioread16_native ioread16be
1176 #define iowrite16_native iowrite16be
1177 #define ioread32_native ioread32be
1178 #define iowrite32_native iowrite32be
1179 #else /* def __BIG_ENDIAN */
1180 #define ioread16_native ioread16
1181 #define iowrite16_native iowrite16
1182 #define ioread32_native ioread32
1183 #define iowrite32_native iowrite32
1184 #endif /* def __BIG_ENDIAN else */
1185 #endif /* !ioread32_native */
1187 /* channel control reg access */
1188 static inline u32
nvchan_rd32(struct nouveau_channel
*chan
, unsigned reg
)
1190 return ioread32_native(chan
->user
+ reg
);
1193 static inline void nvchan_wr32(struct nouveau_channel
*chan
,
1194 unsigned reg
, u32 val
)
1196 iowrite32_native(val
, chan
->user
+ reg
);
1199 /* register access */
1200 static inline u32
nv_rd32(struct drm_device
*dev
, unsigned reg
)
1202 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
1203 return ioread32_native(dev_priv
->mmio
+ reg
);
1206 static inline void nv_wr32(struct drm_device
*dev
, unsigned reg
, u32 val
)
1208 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
1209 iowrite32_native(val
, dev_priv
->mmio
+ reg
);
1212 static inline u8
nv_rd08(struct drm_device
*dev
, unsigned reg
)
1214 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
1215 return ioread8(dev_priv
->mmio
+ reg
);
1218 static inline void nv_wr08(struct drm_device
*dev
, unsigned reg
, u8 val
)
1220 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
1221 iowrite8(val
, dev_priv
->mmio
+ reg
);
1224 #define nv_wait(reg, mask, val) \
1225 nouveau_wait_until(dev, 2000000000ULL, (reg), (mask), (val))
1228 static inline u32
nv_ri32(struct drm_device
*dev
, unsigned offset
)
1230 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
1231 return ioread32_native(dev_priv
->ramin
+ offset
);
1234 static inline void nv_wi32(struct drm_device
*dev
, unsigned offset
, u32 val
)
1236 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
1237 iowrite32_native(val
, dev_priv
->ramin
+ offset
);
1241 static inline u32
nv_ro32(struct drm_device
*dev
, struct nouveau_gpuobj
*obj
,
1244 return nv_ri32(dev
, obj
->im_pramin
->start
+ index
* 4);
1247 static inline void nv_wo32(struct drm_device
*dev
, struct nouveau_gpuobj
*obj
,
1248 unsigned index
, u32 val
)
1250 nv_wi32(dev
, obj
->im_pramin
->start
+ index
* 4, val
);
1255 * Argument d is (struct drm_device *).
1257 #define NV_PRINTK(level, d, fmt, arg...) \
1258 printk(level "[" DRM_NAME "] " DRIVER_NAME " %s: " fmt, \
1259 pci_name(d->pdev), ##arg)
1260 #ifndef NV_DEBUG_NOTRACE
1261 #define NV_DEBUG(d, fmt, arg...) do { \
1262 if (drm_debug & DRM_UT_DRIVER) { \
1263 NV_PRINTK(KERN_DEBUG, d, "%s:%d - " fmt, __func__, \
1267 #define NV_DEBUG_KMS(d, fmt, arg...) do { \
1268 if (drm_debug & DRM_UT_KMS) { \
1269 NV_PRINTK(KERN_DEBUG, d, "%s:%d - " fmt, __func__, \
1274 #define NV_DEBUG(d, fmt, arg...) do { \
1275 if (drm_debug & DRM_UT_DRIVER) \
1276 NV_PRINTK(KERN_DEBUG, d, fmt, ##arg); \
1278 #define NV_DEBUG_KMS(d, fmt, arg...) do { \
1279 if (drm_debug & DRM_UT_KMS) \
1280 NV_PRINTK(KERN_DEBUG, d, fmt, ##arg); \
1283 #define NV_ERROR(d, fmt, arg...) NV_PRINTK(KERN_ERR, d, fmt, ##arg)
1284 #define NV_INFO(d, fmt, arg...) NV_PRINTK(KERN_INFO, d, fmt, ##arg)
1285 #define NV_TRACEWARN(d, fmt, arg...) NV_PRINTK(KERN_NOTICE, d, fmt, ##arg)
1286 #define NV_TRACE(d, fmt, arg...) NV_PRINTK(KERN_INFO, d, fmt, ##arg)
1287 #define NV_WARN(d, fmt, arg...) NV_PRINTK(KERN_WARNING, d, fmt, ##arg)
1289 /* nouveau_reg_debug bitmask */
1291 NOUVEAU_REG_DEBUG_MC
= 0x1,
1292 NOUVEAU_REG_DEBUG_VIDEO
= 0x2,
1293 NOUVEAU_REG_DEBUG_FB
= 0x4,
1294 NOUVEAU_REG_DEBUG_EXTDEV
= 0x8,
1295 NOUVEAU_REG_DEBUG_CRTC
= 0x10,
1296 NOUVEAU_REG_DEBUG_RAMDAC
= 0x20,
1297 NOUVEAU_REG_DEBUG_VGACRTC
= 0x40,
1298 NOUVEAU_REG_DEBUG_RMVIO
= 0x80,
1299 NOUVEAU_REG_DEBUG_VGAATTR
= 0x100,
1300 NOUVEAU_REG_DEBUG_EVO
= 0x200,
1303 #define NV_REG_DEBUG(type, dev, fmt, arg...) do { \
1304 if (nouveau_reg_debug & NOUVEAU_REG_DEBUG_##type) \
1305 NV_PRINTK(KERN_DEBUG, dev, "%s: " fmt, __func__, ##arg); \
1309 nv_two_heads(struct drm_device
*dev
)
1311 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
1312 const int impl
= dev
->pci_device
& 0x0ff0;
1314 if (dev_priv
->card_type
>= NV_10
&& impl
!= 0x0100 &&
1315 impl
!= 0x0150 && impl
!= 0x01a0 && impl
!= 0x0200)
1322 nv_gf4_disp_arch(struct drm_device
*dev
)
1324 return nv_two_heads(dev
) && (dev
->pci_device
& 0x0ff0) != 0x0110;
1328 nv_two_reg_pll(struct drm_device
*dev
)
1330 struct drm_nouveau_private
*dev_priv
= dev
->dev_private
;
1331 const int impl
= dev
->pci_device
& 0x0ff0;
1333 if (impl
== 0x0310 || impl
== 0x0340 || dev_priv
->card_type
>= NV_40
)
1338 #define NV_SW 0x0000506e
1339 #define NV_SW_DMA_SEMAPHORE 0x00000060
1340 #define NV_SW_SEMAPHORE_OFFSET 0x00000064
1341 #define NV_SW_SEMAPHORE_ACQUIRE 0x00000068
1342 #define NV_SW_SEMAPHORE_RELEASE 0x0000006c
1343 #define NV_SW_DMA_VBLSEM 0x0000018c
1344 #define NV_SW_VBLSEM_OFFSET 0x00000400
1345 #define NV_SW_VBLSEM_RELEASE_VALUE 0x00000404
1346 #define NV_SW_VBLSEM_RELEASE 0x00000408
1348 #endif /* __NOUVEAU_DRV_H__ */