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
63 #define NV50_VM_MAX_VRAM (2*1024*1024*1024ULL)
64 #define NV50_VM_BLOCK (512*1024*1024ULL)
65 #define NV50_VM_VRAM_NR (NV50_VM_MAX_VRAM / NV50_VM_BLOCK)
68 struct ttm_buffer_object bo;
69 struct ttm_placement placement;
71 struct ttm_bo_kmap_obj kmap;
72 struct list_head head;
74 /* protected by ttm_bo_reserve() */
75 struct drm_file *reserved_by;
76 struct list_head entry;
79 struct nouveau_channel *channel;
87 struct drm_gem_object *gem;
88 struct drm_file *cpu_filp;
92 static inline struct nouveau_bo *
93 nouveau_bo(struct ttm_buffer_object *bo)
95 return container_of(bo, struct nouveau_bo, bo);
98 static inline struct nouveau_bo *
99 nouveau_gem_object(struct drm_gem_object *gem)
101 return gem ? gem->driver_private : NULL;
104 /* TODO: submit equivalent to TTM generic API upstream? */
105 static inline void __iomem *
106 nvbo_kmap_obj_iovirtual(struct nouveau_bo *nvbo)
109 void __iomem *ioptr = (void __force __iomem *)ttm_kmap_obj_virtual(
110 &nvbo->kmap, &is_iomem);
111 WARN_ON_ONCE(ioptr && !is_iomem);
116 struct mem_block *next;
117 struct mem_block *prev;
120 struct drm_file *file_priv; /* NULL: free, -1: heap, other: real files */
124 NV_NFORCE = 0x10000000,
125 NV_NFORCE2 = 0x20000000
128 #define NVOBJ_ENGINE_SW 0
129 #define NVOBJ_ENGINE_GR 1
130 #define NVOBJ_ENGINE_DISPLAY 2
131 #define NVOBJ_ENGINE_INT 0xdeadbeef
133 #define NVOBJ_FLAG_ALLOW_NO_REFS (1 << 0)
134 #define NVOBJ_FLAG_ZERO_ALLOC (1 << 1)
135 #define NVOBJ_FLAG_ZERO_FREE (1 << 2)
136 #define NVOBJ_FLAG_FAKE (1 << 3)
137 struct nouveau_gpuobj {
138 struct list_head list;
140 struct nouveau_channel *im_channel;
141 struct mem_block *im_pramin;
142 struct nouveau_bo *im_backing;
143 uint32_t im_backing_start;
144 uint32_t *im_backing_suspend;
153 void (*dtor)(struct drm_device *, struct nouveau_gpuobj *);
157 struct nouveau_gpuobj_ref {
158 struct list_head list;
160 struct nouveau_gpuobj *gpuobj;
163 struct nouveau_channel *channel;
167 struct nouveau_channel {
168 struct drm_device *dev;
171 /* owner of this fifo */
172 struct drm_file *file_priv;
173 /* mapping of the fifo itself */
174 struct drm_local_map *map;
176 /* mapping of the regs controling the fifo */
183 /* lock protects the pending list only */
185 struct list_head pending;
187 uint32_t sequence_ack;
188 uint32_t last_sequence_irq;
191 /* DMA push buffer */
192 struct nouveau_gpuobj_ref *pushbuf;
193 struct nouveau_bo *pushbuf_bo;
194 uint32_t pushbuf_base;
196 /* Notifier memory */
197 struct nouveau_bo *notifier_bo;
198 struct mem_block *notifier_heap;
201 struct nouveau_gpuobj_ref *ramfc;
202 struct nouveau_gpuobj_ref *cache;
205 /* XXX may be merge 2 pointers as private data ??? */
206 struct nouveau_gpuobj_ref *ramin_grctx;
210 struct nouveau_gpuobj *vm_pd;
211 struct nouveau_gpuobj_ref *vm_gart_pt;
212 struct nouveau_gpuobj_ref *vm_vram_pt[NV50_VM_VRAM_NR];
215 struct nouveau_gpuobj_ref *ramin; /* Private instmem */
216 struct mem_block *ramin_heap; /* Private PRAMIN heap */
217 struct nouveau_gpuobj_ref *ramht; /* Hash table */
218 struct list_head ramht_refs; /* Objects referenced by RAMHT */
220 /* GPU object info for stuff used in-kernel (mm_enabled) */
222 uint32_t vram_handle;
223 uint32_t gart_handle;
226 /* Push buffer state (only for drm's channel on !mm_enabled) */
232 /* access via pushbuf_bo */
235 uint32_t sw_subchannel[8];
238 struct nouveau_gpuobj *vblsem;
239 uint32_t vblsem_offset;
240 uint32_t vblsem_rval;
241 struct list_head vbl_wait;
247 struct drm_info_list info;
251 struct nouveau_instmem_engine {
254 int (*init)(struct drm_device *dev);
255 void (*takedown)(struct drm_device *dev);
256 int (*suspend)(struct drm_device *dev);
257 void (*resume)(struct drm_device *dev);
259 int (*populate)(struct drm_device *, struct nouveau_gpuobj *,
261 void (*clear)(struct drm_device *, struct nouveau_gpuobj *);
262 int (*bind)(struct drm_device *, struct nouveau_gpuobj *);
263 int (*unbind)(struct drm_device *, struct nouveau_gpuobj *);
264 void (*prepare_access)(struct drm_device *, bool write);
265 void (*finish_access)(struct drm_device *);
268 struct nouveau_mc_engine {
269 int (*init)(struct drm_device *dev);
270 void (*takedown)(struct drm_device *dev);
273 struct nouveau_timer_engine {
274 int (*init)(struct drm_device *dev);
275 void (*takedown)(struct drm_device *dev);
276 uint64_t (*read)(struct drm_device *dev);
279 struct nouveau_fb_engine {
280 int (*init)(struct drm_device *dev);
281 void (*takedown)(struct drm_device *dev);
284 struct nouveau_fifo_engine {
289 int (*init)(struct drm_device *);
290 void (*takedown)(struct drm_device *);
292 void (*disable)(struct drm_device *);
293 void (*enable)(struct drm_device *);
294 bool (*reassign)(struct drm_device *, bool enable);
296 int (*channel_id)(struct drm_device *);
298 int (*create_context)(struct nouveau_channel *);
299 void (*destroy_context)(struct nouveau_channel *);
300 int (*load_context)(struct nouveau_channel *);
301 int (*unload_context)(struct drm_device *);
304 struct nouveau_pgraph_object_method {
306 int (*exec)(struct nouveau_channel *chan, int grclass, int mthd,
310 struct nouveau_pgraph_object_class {
313 struct nouveau_pgraph_object_method *methods;
316 struct nouveau_pgraph_engine {
317 struct nouveau_pgraph_object_class *grclass;
323 int (*init)(struct drm_device *);
324 void (*takedown)(struct drm_device *);
326 void (*fifo_access)(struct drm_device *, bool);
328 struct nouveau_channel *(*channel)(struct drm_device *);
329 int (*create_context)(struct nouveau_channel *);
330 void (*destroy_context)(struct nouveau_channel *);
331 int (*load_context)(struct nouveau_channel *);
332 int (*unload_context)(struct drm_device *);
335 struct nouveau_engine {
336 struct nouveau_instmem_engine instmem;
337 struct nouveau_mc_engine mc;
338 struct nouveau_timer_engine timer;
339 struct nouveau_fb_engine fb;
340 struct nouveau_pgraph_engine graph;
341 struct nouveau_fifo_engine fifo;
344 struct nouveau_pll_vals {
348 uint8_t N1, M1, N2, M2;
350 uint8_t M1, N1, M2, N2;
355 } __attribute__((packed));
362 enum nv04_fp_display_regs {
372 struct nv04_crtc_reg {
373 unsigned char MiscOutReg; /* */
376 uint8_t Sequencer[5];
378 uint8_t Attribute[21];
379 unsigned char DAC[768]; /* Internal Colorlookuptable */
389 uint32_t crtc_eng_ctrl;
392 uint32_t nv10_cursync;
393 struct nouveau_pll_vals pllvals;
394 uint32_t ramdac_gen_ctrl;
400 uint32_t tv_vsync_delay;
403 uint32_t tv_hsync_delay;
404 uint32_t tv_hsync_delay2;
405 uint32_t fp_horiz_regs[7];
406 uint32_t fp_vert_regs[7];
409 uint32_t dither_regs[6];
413 uint32_t fp_margin_color;
418 uint32_t ctv_regs[38];
421 struct nv04_output_reg {
426 struct nv04_mode_state {
454 uint32_t cursorConfig;
463 struct nv04_crtc_reg crtc_reg[2];
466 enum nouveau_card_type {
475 struct drm_nouveau_private {
476 struct drm_device *dev;
478 NOUVEAU_CARD_INIT_DOWN,
479 NOUVEAU_CARD_INIT_DONE,
480 NOUVEAU_CARD_INIT_FAILED
483 /* the card type, takes NV_* as values */
484 enum nouveau_card_type card_type;
485 /* exact chipset, derived from NV_PMC_BOOT_0 */
493 struct workqueue_struct *wq;
494 struct work_struct irq_work;
496 struct list_head vbl_waiting;
499 struct ttm_global_reference mem_global_ref;
500 struct ttm_bo_global_ref bo_global_ref;
501 struct ttm_bo_device bdev;
502 spinlock_t bo_list_lock;
503 struct list_head bo_list;
504 atomic_t validate_sequence;
507 struct fb_info *fbdev_info;
509 int fifo_alloc_count;
510 struct nouveau_channel *fifos[NOUVEAU_MAX_CHANNEL_NR];
512 struct nouveau_engine engine;
513 struct nouveau_channel *channel;
515 /* RAMIN configuration, RAMFC, RAMHT and RAMRO offsets */
516 struct nouveau_gpuobj *ramht;
517 uint32_t ramin_rsvd_vram;
518 uint32_t ramht_offset;
521 uint32_t ramfc_offset;
523 uint32_t ramro_offset;
526 /* base physical adresses */
528 uint64_t fb_available_size;
529 uint64_t fb_mappable_pages;
530 uint64_t fb_aper_free;
534 NOUVEAU_GART_NONE = 0,
542 struct nouveau_gpuobj *sg_ctxdma;
543 struct page *sg_dummy_page;
544 dma_addr_t sg_dummy_bus;
547 struct drm_ttm_backend *sg_be;
548 unsigned long sg_handle;
551 /* G8x/G9x virtual address space */
552 uint64_t vm_gart_base;
553 uint64_t vm_gart_size;
554 uint64_t vm_vram_base;
555 uint64_t vm_vram_size;
557 struct nouveau_gpuobj *vm_vram_pt[NV50_VM_VRAM_NR];
560 /* the mtrr covering the FB */
563 struct mem_block *ramin_heap;
565 /* context table pointed to be NV_PGRAPH_CHANNEL_CTX_TABLE (0x400780) */
566 uint32_t ctx_table_size;
567 struct nouveau_gpuobj_ref *ctx_table;
569 struct list_head gpuobj_list;
572 struct nouveau_bios_info *vbios;
574 struct nv04_mode_state mode_reg;
575 struct nv04_mode_state saved_reg;
576 uint32_t saved_vga_font[4][16384];
578 uint32_t dac_users[4];
580 struct nouveau_suspend_resume {
582 uint32_t graph_ctx_control;
583 uint32_t graph_state;
584 uint32_t *ramin_copy;
588 struct backlight_device *backlight;
591 struct nouveau_channel *evo;
594 struct dentry *channel_root;
598 static inline struct drm_nouveau_private *
599 nouveau_bdev(struct ttm_bo_device *bd)
601 return container_of(bd, struct drm_nouveau_private, ttm.bdev);
605 nouveau_bo_ref(struct nouveau_bo *ref, struct nouveau_bo **pnvbo)
607 struct nouveau_bo *prev;
613 *pnvbo = ref ? nouveau_bo(ttm_bo_reference(&ref->bo)) : NULL;
615 struct ttm_buffer_object *bo = &prev->bo;
623 #define NOUVEAU_CHECK_INITIALISED_WITH_RETURN do { \
624 struct drm_nouveau_private *nv = dev->dev_private; \
625 if (nv->init_state != NOUVEAU_CARD_INIT_DONE) { \
626 NV_ERROR(dev, "called without init\n"); \
631 #define NOUVEAU_GET_USER_CHANNEL_WITH_RETURN(id, cl, ch) do { \
632 struct drm_nouveau_private *nv = dev->dev_private; \
633 if (!nouveau_channel_owner(dev, (cl), (id))) { \
634 NV_ERROR(dev, "pid %d doesn't own channel %d\n", \
635 DRM_CURRENTPID, (id)); \
638 (ch) = nv->fifos[(id)]; \
642 extern int nouveau_noagp;
643 extern int nouveau_duallink;
644 extern int nouveau_uscript_lvds;
645 extern int nouveau_uscript_tmds;
646 extern int nouveau_vram_pushbuf;
647 extern int nouveau_vram_notify;
648 extern int nouveau_fbpercrtc;
649 extern char *nouveau_tv_norm;
650 extern int nouveau_reg_debug;
651 extern char *nouveau_vbios;
652 extern int nouveau_ctxfw;
654 /* nouveau_state.c */
655 extern void nouveau_preclose(struct drm_device *dev, struct drm_file *);
656 extern int nouveau_load(struct drm_device *, unsigned long flags);
657 extern int nouveau_firstopen(struct drm_device *);
658 extern void nouveau_lastclose(struct drm_device *);
659 extern int nouveau_unload(struct drm_device *);
660 extern int nouveau_ioctl_getparam(struct drm_device *, void *data,
662 extern int nouveau_ioctl_setparam(struct drm_device *, void *data,
664 extern bool nouveau_wait_until(struct drm_device *, uint64_t timeout,
665 uint32_t reg, uint32_t mask, uint32_t val);
666 extern bool nouveau_wait_for_idle(struct drm_device *);
667 extern int nouveau_card_init(struct drm_device *);
668 extern int nouveau_ioctl_card_init(struct drm_device *, void *data,
670 extern int nouveau_ioctl_suspend(struct drm_device *, void *data,
672 extern int nouveau_ioctl_resume(struct drm_device *, void *data,
676 extern int nouveau_mem_init_heap(struct mem_block **, uint64_t start,
678 extern struct mem_block *nouveau_mem_alloc_block(struct mem_block *,
679 uint64_t size, int align2,
680 struct drm_file *, int tail);
681 extern void nouveau_mem_takedown(struct mem_block **heap);
682 extern void nouveau_mem_free_block(struct mem_block *);
683 extern uint64_t nouveau_mem_fb_amount(struct drm_device *);
684 extern void nouveau_mem_release(struct drm_file *, struct mem_block *heap);
685 extern int nouveau_mem_init(struct drm_device *);
686 extern int nouveau_mem_init_agp(struct drm_device *);
687 extern void nouveau_mem_close(struct drm_device *);
688 extern int nv50_mem_vm_bind_linear(struct drm_device *, uint64_t virt,
689 uint32_t size, uint32_t flags,
691 extern void nv50_mem_vm_unbind(struct drm_device *, uint64_t virt,
694 /* nouveau_notifier.c */
695 extern int nouveau_notifier_init_channel(struct nouveau_channel *);
696 extern void nouveau_notifier_takedown_channel(struct nouveau_channel *);
697 extern int nouveau_notifier_alloc(struct nouveau_channel *, uint32_t handle,
698 int cout, uint32_t *offset);
699 extern int nouveau_notifier_offset(struct nouveau_gpuobj *, uint32_t *);
700 extern int nouveau_ioctl_notifier_alloc(struct drm_device *, void *data,
702 extern int nouveau_ioctl_notifier_free(struct drm_device *, void *data,
705 /* nouveau_channel.c */
706 extern struct drm_ioctl_desc nouveau_ioctls[];
707 extern int nouveau_max_ioctl;
708 extern void nouveau_channel_cleanup(struct drm_device *, struct drm_file *);
709 extern int nouveau_channel_owner(struct drm_device *, struct drm_file *,
711 extern int nouveau_channel_alloc(struct drm_device *dev,
712 struct nouveau_channel **chan,
713 struct drm_file *file_priv,
714 uint32_t fb_ctxdma, uint32_t tt_ctxdma);
715 extern void nouveau_channel_free(struct nouveau_channel *);
716 extern int nouveau_channel_idle(struct nouveau_channel *chan);
718 /* nouveau_object.c */
719 extern int nouveau_gpuobj_early_init(struct drm_device *);
720 extern int nouveau_gpuobj_init(struct drm_device *);
721 extern void nouveau_gpuobj_takedown(struct drm_device *);
722 extern void nouveau_gpuobj_late_takedown(struct drm_device *);
723 extern int nouveau_gpuobj_suspend(struct drm_device *dev);
724 extern void nouveau_gpuobj_suspend_cleanup(struct drm_device *dev);
725 extern void nouveau_gpuobj_resume(struct drm_device *dev);
726 extern int nouveau_gpuobj_channel_init(struct nouveau_channel *,
727 uint32_t vram_h, uint32_t tt_h);
728 extern void nouveau_gpuobj_channel_takedown(struct nouveau_channel *);
729 extern int nouveau_gpuobj_new(struct drm_device *, struct nouveau_channel *,
730 uint32_t size, int align, uint32_t flags,
731 struct nouveau_gpuobj **);
732 extern int nouveau_gpuobj_del(struct drm_device *, struct nouveau_gpuobj **);
733 extern int nouveau_gpuobj_ref_add(struct drm_device *, struct nouveau_channel *,
734 uint32_t handle, struct nouveau_gpuobj *,
735 struct nouveau_gpuobj_ref **);
736 extern int nouveau_gpuobj_ref_del(struct drm_device *,
737 struct nouveau_gpuobj_ref **);
738 extern int nouveau_gpuobj_ref_find(struct nouveau_channel *, uint32_t handle,
739 struct nouveau_gpuobj_ref **ref_ret);
740 extern int nouveau_gpuobj_new_ref(struct drm_device *,
741 struct nouveau_channel *alloc_chan,
742 struct nouveau_channel *ref_chan,
743 uint32_t handle, uint32_t size, int align,
744 uint32_t flags, struct nouveau_gpuobj_ref **);
745 extern int nouveau_gpuobj_new_fake(struct drm_device *,
746 uint32_t p_offset, uint32_t b_offset,
747 uint32_t size, uint32_t flags,
748 struct nouveau_gpuobj **,
749 struct nouveau_gpuobj_ref**);
750 extern int nouveau_gpuobj_dma_new(struct nouveau_channel *, int class,
751 uint64_t offset, uint64_t size, int access,
752 int target, struct nouveau_gpuobj **);
753 extern int nouveau_gpuobj_gart_dma_new(struct nouveau_channel *,
754 uint64_t offset, uint64_t size,
755 int access, struct nouveau_gpuobj **,
757 extern int nouveau_gpuobj_gr_new(struct nouveau_channel *, int class,
758 struct nouveau_gpuobj **);
759 extern int nouveau_ioctl_grobj_alloc(struct drm_device *, void *data,
761 extern int nouveau_ioctl_gpuobj_free(struct drm_device *, void *data,
765 extern irqreturn_t nouveau_irq_handler(DRM_IRQ_ARGS);
766 extern void nouveau_irq_preinstall(struct drm_device *);
767 extern int nouveau_irq_postinstall(struct drm_device *);
768 extern void nouveau_irq_uninstall(struct drm_device *);
770 /* nouveau_sgdma.c */
771 extern int nouveau_sgdma_init(struct drm_device *);
772 extern void nouveau_sgdma_takedown(struct drm_device *);
773 extern int nouveau_sgdma_get_page(struct drm_device *, uint32_t offset,
775 extern struct ttm_backend *nouveau_sgdma_init_ttm(struct drm_device *);
777 /* nouveau_debugfs.c */
778 #if defined(CONFIG_DRM_NOUVEAU_DEBUG)
779 extern int nouveau_debugfs_init(struct drm_minor *);
780 extern void nouveau_debugfs_takedown(struct drm_minor *);
781 extern int nouveau_debugfs_channel_init(struct nouveau_channel *);
782 extern void nouveau_debugfs_channel_fini(struct nouveau_channel *);
785 nouveau_debugfs_init(struct drm_minor *minor)
790 static inline void nouveau_debugfs_takedown(struct drm_minor *minor)
795 nouveau_debugfs_channel_init(struct nouveau_channel *chan)
801 nouveau_debugfs_channel_fini(struct nouveau_channel *chan)
807 extern int nouveau_dma_init(struct nouveau_channel *);
808 extern int nouveau_dma_wait(struct nouveau_channel *, int size);
812 extern int nouveau_hybrid_setup(struct drm_device *dev);
813 extern bool nouveau_dsm_probe(struct drm_device *dev);
815 static inline int nouveau_hybrid_setup(struct drm_device *dev)
819 static inline bool nouveau_dsm_probe(struct drm_device *dev)
825 /* nouveau_backlight.c */
826 #ifdef CONFIG_DRM_NOUVEAU_BACKLIGHT
827 extern int nouveau_backlight_init(struct drm_device *);
828 extern void nouveau_backlight_exit(struct drm_device *);
830 static inline int nouveau_backlight_init(struct drm_device *dev)
835 static inline void nouveau_backlight_exit(struct drm_device *dev) { }
839 extern int nouveau_bios_init(struct drm_device *);
840 extern void nouveau_bios_takedown(struct drm_device *dev);
841 extern int nouveau_run_vbios_init(struct drm_device *);
842 extern void nouveau_bios_run_init_table(struct drm_device *, uint16_t table,
844 extern struct dcb_gpio_entry *nouveau_bios_gpio_entry(struct drm_device *,
846 extern struct dcb_connector_table_entry *
847 nouveau_bios_connector_entry(struct drm_device *, int index);
848 extern int get_pll_limits(struct drm_device *, uint32_t limit_match,
850 extern int nouveau_bios_run_display_table(struct drm_device *,
852 uint32_t script, int pxclk);
853 extern void *nouveau_bios_dp_table(struct drm_device *, struct dcb_entry *,
855 extern bool nouveau_bios_fp_mode(struct drm_device *, struct drm_display_mode *);
856 extern uint8_t *nouveau_bios_embedded_edid(struct drm_device *);
857 extern int nouveau_bios_parse_lvds_table(struct drm_device *, int pxclk,
858 bool *dl, bool *if_is_24bit);
859 extern int run_tmds_table(struct drm_device *, struct dcb_entry *,
860 int head, int pxclk);
861 extern int call_lvds_script(struct drm_device *, struct dcb_entry *, int head,
862 enum LVDS_script, int pxclk);
865 int nouveau_ttm_global_init(struct drm_nouveau_private *);
866 void nouveau_ttm_global_release(struct drm_nouveau_private *);
867 int nouveau_ttm_mmap(struct file *, struct vm_area_struct *);
870 int nouveau_dp_auxch(struct nouveau_i2c_chan *auxch, int cmd, int addr,
871 uint8_t *data, int data_nr);
872 bool nouveau_dp_detect(struct drm_encoder *);
873 bool nouveau_dp_link_train(struct drm_encoder *);
876 extern int nv04_fb_init(struct drm_device *);
877 extern void nv04_fb_takedown(struct drm_device *);
880 extern int nv10_fb_init(struct drm_device *);
881 extern void nv10_fb_takedown(struct drm_device *);
884 extern int nv40_fb_init(struct drm_device *);
885 extern void nv40_fb_takedown(struct drm_device *);
888 extern int nv04_fifo_init(struct drm_device *);
889 extern void nv04_fifo_disable(struct drm_device *);
890 extern void nv04_fifo_enable(struct drm_device *);
891 extern bool nv04_fifo_reassign(struct drm_device *, bool);
892 extern int nv04_fifo_channel_id(struct drm_device *);
893 extern int nv04_fifo_create_context(struct nouveau_channel *);
894 extern void nv04_fifo_destroy_context(struct nouveau_channel *);
895 extern int nv04_fifo_load_context(struct nouveau_channel *);
896 extern int nv04_fifo_unload_context(struct drm_device *);
899 extern int nv10_fifo_init(struct drm_device *);
900 extern int nv10_fifo_channel_id(struct drm_device *);
901 extern int nv10_fifo_create_context(struct nouveau_channel *);
902 extern void nv10_fifo_destroy_context(struct nouveau_channel *);
903 extern int nv10_fifo_load_context(struct nouveau_channel *);
904 extern int nv10_fifo_unload_context(struct drm_device *);
907 extern int nv40_fifo_init(struct drm_device *);
908 extern int nv40_fifo_create_context(struct nouveau_channel *);
909 extern void nv40_fifo_destroy_context(struct nouveau_channel *);
910 extern int nv40_fifo_load_context(struct nouveau_channel *);
911 extern int nv40_fifo_unload_context(struct drm_device *);
914 extern int nv50_fifo_init(struct drm_device *);
915 extern void nv50_fifo_takedown(struct drm_device *);
916 extern int nv50_fifo_channel_id(struct drm_device *);
917 extern int nv50_fifo_create_context(struct nouveau_channel *);
918 extern void nv50_fifo_destroy_context(struct nouveau_channel *);
919 extern int nv50_fifo_load_context(struct nouveau_channel *);
920 extern int nv50_fifo_unload_context(struct drm_device *);
923 extern struct nouveau_pgraph_object_class nv04_graph_grclass[];
924 extern int nv04_graph_init(struct drm_device *);
925 extern void nv04_graph_takedown(struct drm_device *);
926 extern void nv04_graph_fifo_access(struct drm_device *, bool);
927 extern struct nouveau_channel *nv04_graph_channel(struct drm_device *);
928 extern int nv04_graph_create_context(struct nouveau_channel *);
929 extern void nv04_graph_destroy_context(struct nouveau_channel *);
930 extern int nv04_graph_load_context(struct nouveau_channel *);
931 extern int nv04_graph_unload_context(struct drm_device *);
932 extern void nv04_graph_context_switch(struct drm_device *);
935 extern struct nouveau_pgraph_object_class nv10_graph_grclass[];
936 extern int nv10_graph_init(struct drm_device *);
937 extern void nv10_graph_takedown(struct drm_device *);
938 extern struct nouveau_channel *nv10_graph_channel(struct drm_device *);
939 extern int nv10_graph_create_context(struct nouveau_channel *);
940 extern void nv10_graph_destroy_context(struct nouveau_channel *);
941 extern int nv10_graph_load_context(struct nouveau_channel *);
942 extern int nv10_graph_unload_context(struct drm_device *);
943 extern void nv10_graph_context_switch(struct drm_device *);
946 extern struct nouveau_pgraph_object_class nv20_graph_grclass[];
947 extern struct nouveau_pgraph_object_class nv30_graph_grclass[];
948 extern int nv20_graph_create_context(struct nouveau_channel *);
949 extern void nv20_graph_destroy_context(struct nouveau_channel *);
950 extern int nv20_graph_load_context(struct nouveau_channel *);
951 extern int nv20_graph_unload_context(struct drm_device *);
952 extern int nv20_graph_init(struct drm_device *);
953 extern void nv20_graph_takedown(struct drm_device *);
954 extern int nv30_graph_init(struct drm_device *);
957 extern struct nouveau_pgraph_object_class nv40_graph_grclass[];
958 extern int nv40_graph_init(struct drm_device *);
959 extern void nv40_graph_takedown(struct drm_device *);
960 extern struct nouveau_channel *nv40_graph_channel(struct drm_device *);
961 extern int nv40_graph_create_context(struct nouveau_channel *);
962 extern void nv40_graph_destroy_context(struct nouveau_channel *);
963 extern int nv40_graph_load_context(struct nouveau_channel *);
964 extern int nv40_graph_unload_context(struct drm_device *);
965 extern void nv40_grctx_init(struct nouveau_grctx *);
968 extern struct nouveau_pgraph_object_class nv50_graph_grclass[];
969 extern int nv50_graph_init(struct drm_device *);
970 extern void nv50_graph_takedown(struct drm_device *);
971 extern void nv50_graph_fifo_access(struct drm_device *, bool);
972 extern struct nouveau_channel *nv50_graph_channel(struct drm_device *);
973 extern int nv50_graph_create_context(struct nouveau_channel *);
974 extern void nv50_graph_destroy_context(struct nouveau_channel *);
975 extern int nv50_graph_load_context(struct nouveau_channel *);
976 extern int nv50_graph_unload_context(struct drm_device *);
977 extern void nv50_graph_context_switch(struct drm_device *);
979 /* nouveau_grctx.c */
980 extern int nouveau_grctx_prog_load(struct drm_device *);
981 extern void nouveau_grctx_vals_load(struct drm_device *,
982 struct nouveau_gpuobj *);
983 extern void nouveau_grctx_fini(struct drm_device *);
986 extern int nv04_instmem_init(struct drm_device *);
987 extern void nv04_instmem_takedown(struct drm_device *);
988 extern int nv04_instmem_suspend(struct drm_device *);
989 extern void nv04_instmem_resume(struct drm_device *);
990 extern int nv04_instmem_populate(struct drm_device *, struct nouveau_gpuobj *,
992 extern void nv04_instmem_clear(struct drm_device *, struct nouveau_gpuobj *);
993 extern int nv04_instmem_bind(struct drm_device *, struct nouveau_gpuobj *);
994 extern int nv04_instmem_unbind(struct drm_device *, struct nouveau_gpuobj *);
995 extern void nv04_instmem_prepare_access(struct drm_device *, bool write);
996 extern void nv04_instmem_finish_access(struct drm_device *);
999 extern int nv50_instmem_init(struct drm_device *);
1000 extern void nv50_instmem_takedown(struct drm_device *);
1001 extern int nv50_instmem_suspend(struct drm_device *);
1002 extern void nv50_instmem_resume(struct drm_device *);
1003 extern int nv50_instmem_populate(struct drm_device *, struct nouveau_gpuobj *,
1005 extern void nv50_instmem_clear(struct drm_device *, struct nouveau_gpuobj *);
1006 extern int nv50_instmem_bind(struct drm_device *, struct nouveau_gpuobj *);
1007 extern int nv50_instmem_unbind(struct drm_device *, struct nouveau_gpuobj *);
1008 extern void nv50_instmem_prepare_access(struct drm_device *, bool write);
1009 extern void nv50_instmem_finish_access(struct drm_device *);
1012 extern int nv04_mc_init(struct drm_device *);
1013 extern void nv04_mc_takedown(struct drm_device *);
1016 extern int nv40_mc_init(struct drm_device *);
1017 extern void nv40_mc_takedown(struct drm_device *);
1020 extern int nv50_mc_init(struct drm_device *);
1021 extern void nv50_mc_takedown(struct drm_device *);
1024 extern int nv04_timer_init(struct drm_device *);
1025 extern uint64_t nv04_timer_read(struct drm_device *);
1026 extern void nv04_timer_takedown(struct drm_device *);
1028 extern long nouveau_compat_ioctl(struct file *file, unsigned int cmd,
1032 extern int nv04_dac_create(struct drm_device *dev, struct dcb_entry *entry);
1033 extern enum drm_connector_status nv17_dac_detect(struct drm_encoder *encoder,
1034 struct drm_connector *connector);
1035 extern int nv04_dac_output_offset(struct drm_encoder *encoder);
1036 extern void nv04_dac_update_dacclk(struct drm_encoder *encoder, bool enable);
1039 extern int nv04_dfp_create(struct drm_device *dev, struct dcb_entry *entry);
1040 extern int nv04_dfp_get_bound_head(struct drm_device *dev, struct dcb_entry *dcbent);
1041 extern void nv04_dfp_bind_head(struct drm_device *dev, struct dcb_entry *dcbent,
1043 extern void nv04_dfp_disable(struct drm_device *dev, int head);
1044 extern void nv04_dfp_update_fp_control(struct drm_encoder *encoder, int mode);
1047 extern int nv04_tv_identify(struct drm_device *dev, int i2c_index);
1048 extern int nv04_tv_create(struct drm_device *dev, struct dcb_entry *entry);
1051 extern int nv17_tv_create(struct drm_device *dev, struct dcb_entry *entry);
1052 extern enum drm_connector_status nv17_tv_detect(struct drm_encoder *encoder,
1053 struct drm_connector *connector,
1056 /* nv04_display.c */
1057 extern int nv04_display_create(struct drm_device *);
1058 extern void nv04_display_destroy(struct drm_device *);
1059 extern void nv04_display_restore(struct drm_device *);
1062 extern int nv04_crtc_create(struct drm_device *, int index);
1065 extern struct ttm_bo_driver nouveau_bo_driver;
1066 extern int nouveau_bo_new(struct drm_device *, struct nouveau_channel *,
1067 int size, int align, uint32_t flags,
1068 uint32_t tile_mode, uint32_t tile_flags,
1069 bool no_vm, bool mappable, struct nouveau_bo **);
1070 extern int nouveau_bo_pin(struct nouveau_bo *, uint32_t flags);
1071 extern int nouveau_bo_unpin(struct nouveau_bo *);
1072 extern int nouveau_bo_map(struct nouveau_bo *);
1073 extern void nouveau_bo_unmap(struct nouveau_bo *);
1074 extern void nouveau_bo_placement_set(struct nouveau_bo *, uint32_t memtype);
1075 extern u16 nouveau_bo_rd16(struct nouveau_bo *nvbo, unsigned index);
1076 extern void nouveau_bo_wr16(struct nouveau_bo *nvbo, unsigned index, u16 val);
1077 extern u32 nouveau_bo_rd32(struct nouveau_bo *nvbo, unsigned index);
1078 extern void nouveau_bo_wr32(struct nouveau_bo *nvbo, unsigned index, u32 val);
1080 /* nouveau_fence.c */
1081 struct nouveau_fence;
1082 extern int nouveau_fence_init(struct nouveau_channel *);
1083 extern void nouveau_fence_fini(struct nouveau_channel *);
1084 extern void nouveau_fence_update(struct nouveau_channel *);
1085 extern int nouveau_fence_new(struct nouveau_channel *, struct nouveau_fence **,
1087 extern int nouveau_fence_emit(struct nouveau_fence *);
1088 struct nouveau_channel *nouveau_fence_channel(struct nouveau_fence *);
1089 extern bool nouveau_fence_signalled(void *obj, void *arg);
1090 extern int nouveau_fence_wait(void *obj, void *arg, bool lazy, bool intr);
1091 extern int nouveau_fence_flush(void *obj, void *arg);
1092 extern void nouveau_fence_unref(void **obj);
1093 extern void *nouveau_fence_ref(void *obj);
1094 extern void nouveau_fence_handler(struct drm_device *dev, int channel);
1097 extern int nouveau_gem_new(struct drm_device *, struct nouveau_channel *,
1098 int size, int align, uint32_t flags,
1099 uint32_t tile_mode, uint32_t tile_flags,
1100 bool no_vm, bool mappable, struct nouveau_bo **);
1101 extern int nouveau_gem_object_new(struct drm_gem_object *);
1102 extern void nouveau_gem_object_del(struct drm_gem_object *);
1103 extern int nouveau_gem_ioctl_new(struct drm_device *, void *,
1105 extern int nouveau_gem_ioctl_pushbuf(struct drm_device *, void *,
1107 extern int nouveau_gem_ioctl_pushbuf_call(struct drm_device *, void *,
1109 extern int nouveau_gem_ioctl_pushbuf_call2(struct drm_device *, void *,
1111 extern int nouveau_gem_ioctl_pin(struct drm_device *, void *,
1113 extern int nouveau_gem_ioctl_unpin(struct drm_device *, void *,
1115 extern int nouveau_gem_ioctl_tile(struct drm_device *, void *,
1117 extern int nouveau_gem_ioctl_cpu_prep(struct drm_device *, void *,
1119 extern int nouveau_gem_ioctl_cpu_fini(struct drm_device *, void *,
1121 extern int nouveau_gem_ioctl_info(struct drm_device *, void *,
1125 int nv17_gpio_get(struct drm_device *dev, enum dcb_gpio_tag tag);
1126 int nv17_gpio_set(struct drm_device *dev, enum dcb_gpio_tag tag, int state);
1128 #ifndef ioread32_native
1130 #define ioread16_native ioread16be
1131 #define iowrite16_native iowrite16be
1132 #define ioread32_native ioread32be
1133 #define iowrite32_native iowrite32be
1134 #else /* def __BIG_ENDIAN */
1135 #define ioread16_native ioread16
1136 #define iowrite16_native iowrite16
1137 #define ioread32_native ioread32
1138 #define iowrite32_native iowrite32
1139 #endif /* def __BIG_ENDIAN else */
1140 #endif /* !ioread32_native */
1142 /* channel control reg access */
1143 static inline u32 nvchan_rd32(struct nouveau_channel *chan, unsigned reg)
1145 return ioread32_native(chan->user + reg);
1148 static inline void nvchan_wr32(struct nouveau_channel *chan,
1149 unsigned reg, u32 val)
1151 iowrite32_native(val, chan->user + reg);
1154 /* register access */
1155 static inline u32 nv_rd32(struct drm_device *dev, unsigned reg)
1157 struct drm_nouveau_private *dev_priv = dev->dev_private;
1158 return ioread32_native(dev_priv->mmio + reg);
1161 static inline void nv_wr32(struct drm_device *dev, unsigned reg, u32 val)
1163 struct drm_nouveau_private *dev_priv = dev->dev_private;
1164 iowrite32_native(val, dev_priv->mmio + reg);
1167 static inline u8 nv_rd08(struct drm_device *dev, unsigned reg)
1169 struct drm_nouveau_private *dev_priv = dev->dev_private;
1170 return ioread8(dev_priv->mmio + reg);
1173 static inline void nv_wr08(struct drm_device *dev, unsigned reg, u8 val)
1175 struct drm_nouveau_private *dev_priv = dev->dev_private;
1176 iowrite8(val, dev_priv->mmio + reg);
1179 #define nv_wait(reg, mask, val) \
1180 nouveau_wait_until(dev, 2000000000ULL, (reg), (mask), (val))
1183 static inline u32 nv_ri32(struct drm_device *dev, unsigned offset)
1185 struct drm_nouveau_private *dev_priv = dev->dev_private;
1186 return ioread32_native(dev_priv->ramin + offset);
1189 static inline void nv_wi32(struct drm_device *dev, unsigned offset, u32 val)
1191 struct drm_nouveau_private *dev_priv = dev->dev_private;
1192 iowrite32_native(val, dev_priv->ramin + offset);
1196 static inline u32 nv_ro32(struct drm_device *dev, struct nouveau_gpuobj *obj,
1199 return nv_ri32(dev, obj->im_pramin->start + index * 4);
1202 static inline void nv_wo32(struct drm_device *dev, struct nouveau_gpuobj *obj,
1203 unsigned index, u32 val)
1205 nv_wi32(dev, obj->im_pramin->start + index * 4, val);
1210 * Argument d is (struct drm_device *).
1212 #define NV_PRINTK(level, d, fmt, arg...) \
1213 printk(level "[" DRM_NAME "] " DRIVER_NAME " %s: " fmt, \
1214 pci_name(d->pdev), ##arg)
1215 #ifndef NV_DEBUG_NOTRACE
1216 #define NV_DEBUG(d, fmt, arg...) do { \
1217 if (drm_debug & DRM_UT_DRIVER) { \
1218 NV_PRINTK(KERN_DEBUG, d, "%s:%d - " fmt, __func__, \
1222 #define NV_DEBUG_KMS(d, fmt, arg...) do { \
1223 if (drm_debug & DRM_UT_KMS) { \
1224 NV_PRINTK(KERN_DEBUG, d, "%s:%d - " fmt, __func__, \
1229 #define NV_DEBUG(d, fmt, arg...) do { \
1230 if (drm_debug & DRM_UT_DRIVER) \
1231 NV_PRINTK(KERN_DEBUG, d, fmt, ##arg); \
1233 #define NV_DEBUG_KMS(d, fmt, arg...) do { \
1234 if (drm_debug & DRM_UT_KMS) \
1235 NV_PRINTK(KERN_DEBUG, d, fmt, ##arg); \
1238 #define NV_ERROR(d, fmt, arg...) NV_PRINTK(KERN_ERR, d, fmt, ##arg)
1239 #define NV_INFO(d, fmt, arg...) NV_PRINTK(KERN_INFO, d, fmt, ##arg)
1240 #define NV_TRACEWARN(d, fmt, arg...) NV_PRINTK(KERN_NOTICE, d, fmt, ##arg)
1241 #define NV_TRACE(d, fmt, arg...) NV_PRINTK(KERN_INFO, d, fmt, ##arg)
1242 #define NV_WARN(d, fmt, arg...) NV_PRINTK(KERN_WARNING, d, fmt, ##arg)
1244 /* nouveau_reg_debug bitmask */
1246 NOUVEAU_REG_DEBUG_MC = 0x1,
1247 NOUVEAU_REG_DEBUG_VIDEO = 0x2,
1248 NOUVEAU_REG_DEBUG_FB = 0x4,
1249 NOUVEAU_REG_DEBUG_EXTDEV = 0x8,
1250 NOUVEAU_REG_DEBUG_CRTC = 0x10,
1251 NOUVEAU_REG_DEBUG_RAMDAC = 0x20,
1252 NOUVEAU_REG_DEBUG_VGACRTC = 0x40,
1253 NOUVEAU_REG_DEBUG_RMVIO = 0x80,
1254 NOUVEAU_REG_DEBUG_VGAATTR = 0x100,
1255 NOUVEAU_REG_DEBUG_EVO = 0x200,
1258 #define NV_REG_DEBUG(type, dev, fmt, arg...) do { \
1259 if (nouveau_reg_debug & NOUVEAU_REG_DEBUG_##type) \
1260 NV_PRINTK(KERN_DEBUG, dev, "%s: " fmt, __func__, ##arg); \
1264 nv_two_heads(struct drm_device *dev)
1266 struct drm_nouveau_private *dev_priv = dev->dev_private;
1267 const int impl = dev->pci_device & 0x0ff0;
1269 if (dev_priv->card_type >= NV_10 && impl != 0x0100 &&
1270 impl != 0x0150 && impl != 0x01a0 && impl != 0x0200)
1277 nv_gf4_disp_arch(struct drm_device *dev)
1279 return nv_two_heads(dev) && (dev->pci_device & 0x0ff0) != 0x0110;
1283 nv_two_reg_pll(struct drm_device *dev)
1285 struct drm_nouveau_private *dev_priv = dev->dev_private;
1286 const int impl = dev->pci_device & 0x0ff0;
1288 if (impl == 0x0310 || impl == 0x0340 || dev_priv->card_type >= NV_40)
1293 #define NV50_NVSW 0x0000506e
1294 #define NV50_NVSW_DMA_SEMAPHORE 0x00000060
1295 #define NV50_NVSW_SEMAPHORE_OFFSET 0x00000064
1296 #define NV50_NVSW_SEMAPHORE_ACQUIRE 0x00000068
1297 #define NV50_NVSW_SEMAPHORE_RELEASE 0x0000006c
1298 #define NV50_NVSW_DMA_VBLSEM 0x0000018c
1299 #define NV50_NVSW_VBLSEM_OFFSET 0x00000400
1300 #define NV50_NVSW_VBLSEM_RELEASE_VALUE 0x00000404
1301 #define NV50_NVSW_VBLSEM_RELEASE 0x00000408
1303 #endif /* __NOUVEAU_DRV_H__ */