blob: 799cd149745d000246dfe4a4bbc92c444cfde0f7 [file] [log] [blame]
Ben Skeggs6ee73862009-12-11 19:24:15 +10001/*
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 "20090420"
34
35#define DRIVER_MAJOR 0
36#define DRIVER_MINOR 0
Ben Skeggsa1606a92010-02-12 10:27:35 +100037#define DRIVER_PATCHLEVEL 16
Ben Skeggs6ee73862009-12-11 19:24:15 +100038
39#define NOUVEAU_FAMILY 0x0000FFFF
40#define NOUVEAU_FLAGS 0xFFFF0000
41
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"
47
48struct nouveau_fpriv {
49 struct ttm_object_file *tfile;
50};
51
52#define DRM_FILE_PAGE_OFFSET (0x100000000ULL >> PAGE_SHIFT)
53
54#include "nouveau_drm.h"
55#include "nouveau_reg.h"
56#include "nouveau_bios.h"
Ben Skeggs054b93e2009-12-15 22:02:47 +100057struct nouveau_grctx;
Ben Skeggs6ee73862009-12-11 19:24:15 +100058
59#define MAX_NUM_DCB_ENTRIES 16
60
61#define NOUVEAU_MAX_CHANNEL_NR 128
Francisco Jereza0af9ad2009-12-11 16:51:09 +010062#define NOUVEAU_MAX_TILE_NR 15
Ben Skeggs6ee73862009-12-11 19:24:15 +100063
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)
67
Francisco Jereza0af9ad2009-12-11 16:51:09 +010068struct nouveau_tile_reg {
69 struct nouveau_fence *fence;
70 uint32_t addr;
71 uint32_t size;
72 bool used;
73};
74
Ben Skeggs6ee73862009-12-11 19:24:15 +100075struct nouveau_bo {
76 struct ttm_buffer_object bo;
77 struct ttm_placement placement;
78 u32 placements[3];
Francisco Jerez78ad0f72010-03-18 13:07:47 +010079 u32 busy_placements[3];
Ben Skeggs6ee73862009-12-11 19:24:15 +100080 struct ttm_bo_kmap_obj kmap;
81 struct list_head head;
82
83 /* protected by ttm_bo_reserve() */
84 struct drm_file *reserved_by;
85 struct list_head entry;
86 int pbbo_index;
Ben Skeggsa1606a92010-02-12 10:27:35 +100087 bool validate_mapped;
Ben Skeggs6ee73862009-12-11 19:24:15 +100088
89 struct nouveau_channel *channel;
90
91 bool mappable;
92 bool no_vm;
93
94 uint32_t tile_mode;
95 uint32_t tile_flags;
Francisco Jereza0af9ad2009-12-11 16:51:09 +010096 struct nouveau_tile_reg *tile;
Ben Skeggs6ee73862009-12-11 19:24:15 +100097
98 struct drm_gem_object *gem;
99 struct drm_file *cpu_filp;
100 int pin_refcnt;
101};
102
103static inline struct nouveau_bo *
104nouveau_bo(struct ttm_buffer_object *bo)
105{
106 return container_of(bo, struct nouveau_bo, bo);
107}
108
109static inline struct nouveau_bo *
110nouveau_gem_object(struct drm_gem_object *gem)
111{
112 return gem ? gem->driver_private : NULL;
113}
114
115/* TODO: submit equivalent to TTM generic API upstream? */
116static inline void __iomem *
117nvbo_kmap_obj_iovirtual(struct nouveau_bo *nvbo)
118{
119 bool is_iomem;
120 void __iomem *ioptr = (void __force __iomem *)ttm_kmap_obj_virtual(
121 &nvbo->kmap, &is_iomem);
122 WARN_ON_ONCE(ioptr && !is_iomem);
123 return ioptr;
124}
125
Ben Skeggs6ee73862009-12-11 19:24:15 +1000126enum nouveau_flags {
127 NV_NFORCE = 0x10000000,
128 NV_NFORCE2 = 0x20000000
129};
130
131#define NVOBJ_ENGINE_SW 0
132#define NVOBJ_ENGINE_GR 1
133#define NVOBJ_ENGINE_DISPLAY 2
134#define NVOBJ_ENGINE_INT 0xdeadbeef
135
Ben Skeggs6ee73862009-12-11 19:24:15 +1000136#define NVOBJ_FLAG_ZERO_ALLOC (1 << 1)
137#define NVOBJ_FLAG_ZERO_FREE (1 << 2)
Ben Skeggs6ee73862009-12-11 19:24:15 +1000138struct nouveau_gpuobj {
Ben Skeggsb3beb162010-09-01 15:24:29 +1000139 struct drm_device *dev;
Ben Skeggseb9bcbd2010-09-01 15:24:37 +1000140 struct kref refcount;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000141 struct list_head list;
142
Ben Skeggsb833ac22010-06-01 15:32:24 +1000143 struct drm_mm_node *im_pramin;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000144 struct nouveau_bo *im_backing;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000145 uint32_t *im_backing_suspend;
146 int im_bound;
147
148 uint32_t flags;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000149
Ben Skeggs43efc9c2010-09-01 15:24:32 +1000150 u32 size;
Ben Skeggsde3a6c02010-09-01 15:24:30 +1000151 u32 pinst;
152 u32 cinst;
153 u64 vinst;
154
Ben Skeggs6ee73862009-12-11 19:24:15 +1000155 uint32_t engine;
156 uint32_t class;
157
158 void (*dtor)(struct drm_device *, struct nouveau_gpuobj *);
159 void *priv;
160};
161
Ben Skeggs6ee73862009-12-11 19:24:15 +1000162struct nouveau_channel {
163 struct drm_device *dev;
164 int id;
165
166 /* owner of this fifo */
167 struct drm_file *file_priv;
168 /* mapping of the fifo itself */
169 struct drm_local_map *map;
170
171 /* mapping of the regs controling the fifo */
172 void __iomem *user;
173 uint32_t user_get;
174 uint32_t user_put;
175
176 /* Fencing */
177 struct {
178 /* lock protects the pending list only */
179 spinlock_t lock;
180 struct list_head pending;
181 uint32_t sequence;
182 uint32_t sequence_ack;
Ben Skeggs047d1d32010-05-31 12:00:43 +1000183 atomic_t last_sequence_irq;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000184 } fence;
185
186 /* DMA push buffer */
Ben Skeggsa8eaebc2010-09-01 15:24:31 +1000187 struct nouveau_gpuobj *pushbuf;
188 struct nouveau_bo *pushbuf_bo;
189 uint32_t pushbuf_base;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000190
191 /* Notifier memory */
192 struct nouveau_bo *notifier_bo;
Ben Skeggsb833ac22010-06-01 15:32:24 +1000193 struct drm_mm notifier_heap;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000194
195 /* PFIFO context */
Ben Skeggsa8eaebc2010-09-01 15:24:31 +1000196 struct nouveau_gpuobj *ramfc;
197 struct nouveau_gpuobj *cache;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000198
199 /* PGRAPH context */
200 /* XXX may be merge 2 pointers as private data ??? */
Ben Skeggsa8eaebc2010-09-01 15:24:31 +1000201 struct nouveau_gpuobj *ramin_grctx;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000202 void *pgraph_ctx;
203
204 /* NV50 VM */
Ben Skeggsa8eaebc2010-09-01 15:24:31 +1000205 struct nouveau_gpuobj *vm_pd;
206 struct nouveau_gpuobj *vm_gart_pt;
207 struct nouveau_gpuobj *vm_vram_pt[NV50_VM_VRAM_NR];
Ben Skeggs6ee73862009-12-11 19:24:15 +1000208
209 /* Objects */
Ben Skeggsa8eaebc2010-09-01 15:24:31 +1000210 struct nouveau_gpuobj *ramin; /* Private instmem */
211 struct drm_mm ramin_heap; /* Private PRAMIN heap */
212 struct nouveau_ramht *ramht; /* Hash table */
Ben Skeggs6ee73862009-12-11 19:24:15 +1000213
214 /* GPU object info for stuff used in-kernel (mm_enabled) */
215 uint32_t m2mf_ntfy;
216 uint32_t vram_handle;
217 uint32_t gart_handle;
218 bool accel_done;
219
220 /* Push buffer state (only for drm's channel on !mm_enabled) */
221 struct {
222 int max;
223 int free;
224 int cur;
225 int put;
226 /* access via pushbuf_bo */
Ben Skeggs9a391ad2010-02-11 16:37:26 +1000227
228 int ib_base;
229 int ib_max;
230 int ib_free;
231 int ib_put;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000232 } dma;
233
234 uint32_t sw_subchannel[8];
235
236 struct {
237 struct nouveau_gpuobj *vblsem;
238 uint32_t vblsem_offset;
239 uint32_t vblsem_rval;
240 struct list_head vbl_wait;
241 } nvsw;
242
243 struct {
244 bool active;
245 char name[32];
246 struct drm_info_list info;
247 } debugfs;
248};
249
250struct nouveau_instmem_engine {
251 void *priv;
252
253 int (*init)(struct drm_device *dev);
254 void (*takedown)(struct drm_device *dev);
255 int (*suspend)(struct drm_device *dev);
256 void (*resume)(struct drm_device *dev);
257
258 int (*populate)(struct drm_device *, struct nouveau_gpuobj *,
259 uint32_t *size);
260 void (*clear)(struct drm_device *, struct nouveau_gpuobj *);
261 int (*bind)(struct drm_device *, struct nouveau_gpuobj *);
262 int (*unbind)(struct drm_device *, struct nouveau_gpuobj *);
Ben Skeggsf56cb862010-07-08 11:29:10 +1000263 void (*flush)(struct drm_device *);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000264};
265
266struct nouveau_mc_engine {
267 int (*init)(struct drm_device *dev);
268 void (*takedown)(struct drm_device *dev);
269};
270
271struct nouveau_timer_engine {
272 int (*init)(struct drm_device *dev);
273 void (*takedown)(struct drm_device *dev);
274 uint64_t (*read)(struct drm_device *dev);
275};
276
277struct nouveau_fb_engine {
Francisco Jerezcb00f7c2009-12-16 12:12:27 +0100278 int num_tiles;
279
Ben Skeggs6ee73862009-12-11 19:24:15 +1000280 int (*init)(struct drm_device *dev);
281 void (*takedown)(struct drm_device *dev);
Francisco Jerezcb00f7c2009-12-16 12:12:27 +0100282
283 void (*set_region_tiling)(struct drm_device *dev, int i, uint32_t addr,
284 uint32_t size, uint32_t pitch);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000285};
286
287struct nouveau_fifo_engine {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000288 int channels;
289
Ben Skeggsa8eaebc2010-09-01 15:24:31 +1000290 struct nouveau_gpuobj *playlist[2];
Ben Skeggsac94a342010-07-08 15:28:48 +1000291 int cur_playlist;
292
Ben Skeggs6ee73862009-12-11 19:24:15 +1000293 int (*init)(struct drm_device *);
294 void (*takedown)(struct drm_device *);
295
296 void (*disable)(struct drm_device *);
297 void (*enable)(struct drm_device *);
298 bool (*reassign)(struct drm_device *, bool enable);
Francisco Jerez588d7d12009-12-13 20:07:42 +0100299 bool (*cache_pull)(struct drm_device *dev, bool enable);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000300
301 int (*channel_id)(struct drm_device *);
302
303 int (*create_context)(struct nouveau_channel *);
304 void (*destroy_context)(struct nouveau_channel *);
305 int (*load_context)(struct nouveau_channel *);
306 int (*unload_context)(struct drm_device *);
307};
308
309struct nouveau_pgraph_object_method {
310 int id;
311 int (*exec)(struct nouveau_channel *chan, int grclass, int mthd,
312 uint32_t data);
313};
314
315struct nouveau_pgraph_object_class {
316 int id;
317 bool software;
318 struct nouveau_pgraph_object_method *methods;
319};
320
321struct nouveau_pgraph_engine {
322 struct nouveau_pgraph_object_class *grclass;
323 bool accel_blocked;
Ben Skeggs054b93e2009-12-15 22:02:47 +1000324 int grctx_size;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000325
Ben Skeggsc50a5682010-07-08 15:40:18 +1000326 /* NV2x/NV3x context table (0x400780) */
Ben Skeggsa8eaebc2010-09-01 15:24:31 +1000327 struct nouveau_gpuobj *ctx_table;
Ben Skeggsc50a5682010-07-08 15:40:18 +1000328
Ben Skeggs6ee73862009-12-11 19:24:15 +1000329 int (*init)(struct drm_device *);
330 void (*takedown)(struct drm_device *);
331
332 void (*fifo_access)(struct drm_device *, bool);
333
334 struct nouveau_channel *(*channel)(struct drm_device *);
335 int (*create_context)(struct nouveau_channel *);
336 void (*destroy_context)(struct nouveau_channel *);
337 int (*load_context)(struct nouveau_channel *);
338 int (*unload_context)(struct drm_device *);
Francisco Jerezcb00f7c2009-12-16 12:12:27 +0100339
340 void (*set_region_tiling)(struct drm_device *dev, int i, uint32_t addr,
341 uint32_t size, uint32_t pitch);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000342};
343
Francisco Jerezc88c2e02010-07-24 17:37:33 +0200344struct nouveau_display_engine {
345 int (*early_init)(struct drm_device *);
346 void (*late_takedown)(struct drm_device *);
347 int (*create)(struct drm_device *);
348 int (*init)(struct drm_device *);
349 void (*destroy)(struct drm_device *);
350};
351
Ben Skeggsee2e0132010-07-26 09:28:25 +1000352struct nouveau_gpio_engine {
353 int (*init)(struct drm_device *);
354 void (*takedown)(struct drm_device *);
355
356 int (*get)(struct drm_device *, enum dcb_gpio_tag);
357 int (*set)(struct drm_device *, enum dcb_gpio_tag, int state);
358
359 void (*irq_enable)(struct drm_device *, enum dcb_gpio_tag, bool on);
360};
361
Ben Skeggs330c5982010-09-16 15:39:49 +1000362struct nouveau_pm_voltage_level {
363 u8 voltage;
364 u8 vid;
365};
366
367struct nouveau_pm_voltage {
368 bool supported;
369 u8 vid_mask;
370
371 struct nouveau_pm_voltage_level *level;
372 int nr_level;
373};
374
375#define NOUVEAU_PM_MAX_LEVEL 8
376struct nouveau_pm_level {
377 struct device_attribute dev_attr;
378 char name[32];
379 int id;
380
381 u32 core;
382 u32 memory;
383 u32 shader;
384 u32 unk05;
385
386 u8 voltage;
387 u8 fanspeed;
388};
389
Martin Peres34e9d852010-09-22 20:54:22 +0200390struct nouveau_pm_temp_sensor_constants {
391 u16 offset_constant;
392 s16 offset_mult;
393 u16 offset_div;
394 u16 slope_mult;
395 u16 slope_div;
396};
397
398struct nouveau_pm_threshold_temp {
399 s16 critical;
400 s16 down_clock;
401 s16 fan_boost;
402};
403
Ben Skeggs330c5982010-09-16 15:39:49 +1000404struct nouveau_pm_engine {
405 struct nouveau_pm_voltage voltage;
406 struct nouveau_pm_level perflvl[NOUVEAU_PM_MAX_LEVEL];
407 int nr_perflvl;
Martin Peres34e9d852010-09-22 20:54:22 +0200408 struct nouveau_pm_temp_sensor_constants sensor_constants;
409 struct nouveau_pm_threshold_temp threshold_temp;
Ben Skeggs330c5982010-09-16 15:39:49 +1000410
411 struct nouveau_pm_level boot;
412 struct nouveau_pm_level *cur;
413
Francisco Jerez8155cac2010-09-23 20:58:38 +0200414 struct device *hwmon;
415
Ben Skeggs330c5982010-09-16 15:39:49 +1000416 int (*clock_get)(struct drm_device *, u32 id);
417 void *(*clock_pre)(struct drm_device *, u32 id, int khz);
418 void (*clock_set)(struct drm_device *, void *);
419 int (*voltage_get)(struct drm_device *);
420 int (*voltage_set)(struct drm_device *, int voltage);
421 int (*fanspeed_get)(struct drm_device *);
422 int (*fanspeed_set)(struct drm_device *, int fanspeed);
Francisco Jerez8155cac2010-09-23 20:58:38 +0200423 int (*temp_get)(struct drm_device *);
Ben Skeggs330c5982010-09-16 15:39:49 +1000424};
425
Ben Skeggs6ee73862009-12-11 19:24:15 +1000426struct nouveau_engine {
427 struct nouveau_instmem_engine instmem;
428 struct nouveau_mc_engine mc;
429 struct nouveau_timer_engine timer;
430 struct nouveau_fb_engine fb;
431 struct nouveau_pgraph_engine graph;
432 struct nouveau_fifo_engine fifo;
Francisco Jerezc88c2e02010-07-24 17:37:33 +0200433 struct nouveau_display_engine display;
Ben Skeggsee2e0132010-07-26 09:28:25 +1000434 struct nouveau_gpio_engine gpio;
Ben Skeggs330c5982010-09-16 15:39:49 +1000435 struct nouveau_pm_engine pm;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000436};
437
438struct nouveau_pll_vals {
439 union {
440 struct {
441#ifdef __BIG_ENDIAN
442 uint8_t N1, M1, N2, M2;
443#else
444 uint8_t M1, N1, M2, N2;
445#endif
446 };
447 struct {
448 uint16_t NM1, NM2;
449 } __attribute__((packed));
450 };
451 int log2P;
452
453 int refclk;
454};
455
456enum nv04_fp_display_regs {
457 FP_DISPLAY_END,
458 FP_TOTAL,
459 FP_CRTC,
460 FP_SYNC_START,
461 FP_SYNC_END,
462 FP_VALID_START,
463 FP_VALID_END
464};
465
466struct nv04_crtc_reg {
467 unsigned char MiscOutReg; /* */
Francisco Jerez4a9f8222010-07-20 16:48:08 +0200468 uint8_t CRTC[0xa0];
Ben Skeggs6ee73862009-12-11 19:24:15 +1000469 uint8_t CR58[0x10];
470 uint8_t Sequencer[5];
471 uint8_t Graphics[9];
472 uint8_t Attribute[21];
473 unsigned char DAC[768]; /* Internal Colorlookuptable */
474
475 /* PCRTC regs */
476 uint32_t fb_start;
477 uint32_t crtc_cfg;
478 uint32_t cursor_cfg;
479 uint32_t gpio_ext;
480 uint32_t crtc_830;
481 uint32_t crtc_834;
482 uint32_t crtc_850;
483 uint32_t crtc_eng_ctrl;
484
485 /* PRAMDAC regs */
486 uint32_t nv10_cursync;
487 struct nouveau_pll_vals pllvals;
488 uint32_t ramdac_gen_ctrl;
489 uint32_t ramdac_630;
490 uint32_t ramdac_634;
491 uint32_t tv_setup;
492 uint32_t tv_vtotal;
493 uint32_t tv_vskew;
494 uint32_t tv_vsync_delay;
495 uint32_t tv_htotal;
496 uint32_t tv_hskew;
497 uint32_t tv_hsync_delay;
498 uint32_t tv_hsync_delay2;
499 uint32_t fp_horiz_regs[7];
500 uint32_t fp_vert_regs[7];
501 uint32_t dither;
502 uint32_t fp_control;
503 uint32_t dither_regs[6];
504 uint32_t fp_debug_0;
505 uint32_t fp_debug_1;
506 uint32_t fp_debug_2;
507 uint32_t fp_margin_color;
508 uint32_t ramdac_8c0;
509 uint32_t ramdac_a20;
510 uint32_t ramdac_a24;
511 uint32_t ramdac_a34;
512 uint32_t ctv_regs[38];
513};
514
515struct nv04_output_reg {
516 uint32_t output;
517 int head;
518};
519
520struct nv04_mode_state {
521 uint32_t bpp;
522 uint32_t width;
523 uint32_t height;
524 uint32_t interlace;
525 uint32_t repaint0;
526 uint32_t repaint1;
527 uint32_t screen;
528 uint32_t scale;
529 uint32_t dither;
530 uint32_t extra;
531 uint32_t fifo;
532 uint32_t pixel;
533 uint32_t horiz;
534 int arbitration0;
535 int arbitration1;
536 uint32_t pll;
537 uint32_t pllB;
538 uint32_t vpll;
539 uint32_t vpll2;
540 uint32_t vpllB;
541 uint32_t vpll2B;
542 uint32_t pllsel;
543 uint32_t sel_clk;
544 uint32_t general;
545 uint32_t crtcOwner;
546 uint32_t head;
547 uint32_t head2;
548 uint32_t cursorConfig;
549 uint32_t cursor0;
550 uint32_t cursor1;
551 uint32_t cursor2;
552 uint32_t timingH;
553 uint32_t timingV;
554 uint32_t displayV;
555 uint32_t crtcSync;
556
557 struct nv04_crtc_reg crtc_reg[2];
558};
559
560enum nouveau_card_type {
561 NV_04 = 0x00,
562 NV_10 = 0x10,
563 NV_20 = 0x20,
564 NV_30 = 0x30,
565 NV_40 = 0x40,
566 NV_50 = 0x50,
Ben Skeggs4b223ee2010-08-03 10:00:56 +1000567 NV_C0 = 0xc0,
Ben Skeggs6ee73862009-12-11 19:24:15 +1000568};
569
570struct drm_nouveau_private {
571 struct drm_device *dev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000572
573 /* the card type, takes NV_* as values */
574 enum nouveau_card_type card_type;
575 /* exact chipset, derived from NV_PMC_BOOT_0 */
576 int chipset;
577 int flags;
578
579 void __iomem *mmio;
Ben Skeggs5125bfd2010-09-01 15:24:33 +1000580
Ben Skeggse05d7ea2010-09-01 15:24:38 +1000581 spinlock_t ramin_lock;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000582 void __iomem *ramin;
Ben Skeggs5125bfd2010-09-01 15:24:33 +1000583 u32 ramin_size;
584 u32 ramin_base;
585 bool ramin_available;
Ben Skeggse05d7ea2010-09-01 15:24:38 +1000586 struct drm_mm ramin_heap;
587 struct list_head gpuobj_list;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000588
Ben Skeggsac8fb972010-01-15 09:24:20 +1000589 struct nouveau_bo *vga_ram;
590
Ben Skeggs6ee73862009-12-11 19:24:15 +1000591 struct workqueue_struct *wq;
592 struct work_struct irq_work;
Ben Skeggsa5acac62010-03-30 15:14:41 +1000593 struct work_struct hpd_work;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000594
595 struct list_head vbl_waiting;
596
597 struct {
Dave Airlieba4420c2010-03-09 10:56:52 +1000598 struct drm_global_reference mem_global_ref;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000599 struct ttm_bo_global_ref bo_global_ref;
600 struct ttm_bo_device bdev;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000601 atomic_t validate_sequence;
602 } ttm;
603
Ben Skeggs6ee73862009-12-11 19:24:15 +1000604 int fifo_alloc_count;
605 struct nouveau_channel *fifos[NOUVEAU_MAX_CHANNEL_NR];
606
607 struct nouveau_engine engine;
608 struct nouveau_channel *channel;
609
Maarten Maathuisff9e5272010-02-01 20:58:27 +0100610 /* For PFIFO and PGRAPH. */
611 spinlock_t context_switch_lock;
612
Ben Skeggs6ee73862009-12-11 19:24:15 +1000613 /* RAMIN configuration, RAMFC, RAMHT and RAMRO offsets */
Ben Skeggse05c5a32010-09-01 15:24:35 +1000614 struct nouveau_ramht *ramht;
615 struct nouveau_gpuobj *ramfc;
616 struct nouveau_gpuobj *ramro;
617
Ben Skeggs6ee73862009-12-11 19:24:15 +1000618 uint32_t ramin_rsvd_vram;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000619
Ben Skeggs6ee73862009-12-11 19:24:15 +1000620 struct {
621 enum {
622 NOUVEAU_GART_NONE = 0,
623 NOUVEAU_GART_AGP,
624 NOUVEAU_GART_SGDMA
625 } type;
626 uint64_t aper_base;
627 uint64_t aper_size;
628 uint64_t aper_free;
629
630 struct nouveau_gpuobj *sg_ctxdma;
631 struct page *sg_dummy_page;
632 dma_addr_t sg_dummy_bus;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000633 } gart_info;
634
Francisco Jereza0af9ad2009-12-11 16:51:09 +0100635 /* nv10-nv40 tiling regions */
Francisco Jerez9f56b122010-09-07 18:24:52 +0200636 struct nouveau_tile_reg tile[NOUVEAU_MAX_TILE_NR];
Francisco Jereza0af9ad2009-12-11 16:51:09 +0100637
Ben Skeggsa76fb4e2010-03-18 09:45:20 +1000638 /* VRAM/fb configuration */
639 uint64_t vram_size;
640 uint64_t vram_sys_base;
Ben Skeggs6c3d7ef2010-08-12 12:37:28 +1000641 u32 vram_rblock_size;
Ben Skeggsa76fb4e2010-03-18 09:45:20 +1000642
643 uint64_t fb_phys;
644 uint64_t fb_available_size;
645 uint64_t fb_mappable_pages;
646 uint64_t fb_aper_free;
647 int fb_mtrr;
648
Ben Skeggs6ee73862009-12-11 19:24:15 +1000649 /* G8x/G9x virtual address space */
650 uint64_t vm_gart_base;
651 uint64_t vm_gart_size;
652 uint64_t vm_vram_base;
653 uint64_t vm_vram_size;
654 uint64_t vm_end;
655 struct nouveau_gpuobj *vm_vram_pt[NV50_VM_VRAM_NR];
656 int vm_vram_pt_nr;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000657
Ben Skeggs04a39c52010-02-24 10:03:05 +1000658 struct nvbios vbios;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000659
660 struct nv04_mode_state mode_reg;
661 struct nv04_mode_state saved_reg;
662 uint32_t saved_vga_font[4][16384];
663 uint32_t crtc_owner;
664 uint32_t dac_users[4];
665
666 struct nouveau_suspend_resume {
Ben Skeggs6ee73862009-12-11 19:24:15 +1000667 uint32_t *ramin_copy;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000668 } susres;
669
670 struct backlight_device *backlight;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000671
672 struct nouveau_channel *evo;
Ben Skeggs87c0e0e2010-07-06 08:54:34 +1000673 struct {
674 struct dcb_entry *dcb;
675 u16 script;
676 u32 pclk;
677 } evo_irq;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000678
679 struct {
680 struct dentry *channel_root;
681 } debugfs;
Dave Airlie38651672010-03-30 05:34:13 +0000682
Dave Airlie8be48d92010-03-30 05:34:14 +0000683 struct nouveau_fbdev *nfbdev;
Marcin Slusarz06415c52010-05-16 17:29:56 +0200684 struct apertures_struct *apertures;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000685};
686
687static inline struct drm_nouveau_private *
688nouveau_bdev(struct ttm_bo_device *bd)
689{
690 return container_of(bd, struct drm_nouveau_private, ttm.bdev);
691}
692
693static inline int
694nouveau_bo_ref(struct nouveau_bo *ref, struct nouveau_bo **pnvbo)
695{
696 struct nouveau_bo *prev;
697
698 if (!pnvbo)
699 return -EINVAL;
700 prev = *pnvbo;
701
702 *pnvbo = ref ? nouveau_bo(ttm_bo_reference(&ref->bo)) : NULL;
703 if (prev) {
704 struct ttm_buffer_object *bo = &prev->bo;
705
706 ttm_bo_unref(&bo);
707 }
708
709 return 0;
710}
711
Ben Skeggs6ee73862009-12-11 19:24:15 +1000712#define NOUVEAU_GET_USER_CHANNEL_WITH_RETURN(id, cl, ch) do { \
713 struct drm_nouveau_private *nv = dev->dev_private; \
714 if (!nouveau_channel_owner(dev, (cl), (id))) { \
715 NV_ERROR(dev, "pid %d doesn't own channel %d\n", \
716 DRM_CURRENTPID, (id)); \
717 return -EPERM; \
718 } \
719 (ch) = nv->fifos[(id)]; \
720} while (0)
721
722/* nouveau_drv.c */
Francisco Jerezde5899b2010-09-08 02:28:23 +0200723extern int nouveau_agpmode;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000724extern int nouveau_duallink;
725extern int nouveau_uscript_lvds;
726extern int nouveau_uscript_tmds;
727extern int nouveau_vram_pushbuf;
728extern int nouveau_vram_notify;
729extern int nouveau_fbpercrtc;
Ben Skeggsf4053502010-03-15 09:43:51 +1000730extern int nouveau_tv_disable;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000731extern char *nouveau_tv_norm;
732extern int nouveau_reg_debug;
733extern char *nouveau_vbios;
Ben Skeggsa1470892010-01-18 11:42:37 +1000734extern int nouveau_ignorelid;
Marcin Kościelnickia32ed692010-01-26 14:00:42 +0000735extern int nouveau_nofbaccel;
736extern int nouveau_noaccel;
Ben Skeggsda647d52010-03-04 12:00:39 +1000737extern int nouveau_override_conntype;
Ben Skeggs6f876982010-09-16 16:47:14 +1000738extern char *nouveau_perflvl;
739extern int nouveau_perflvl_wr;
Ben Skeggs6ee73862009-12-11 19:24:15 +1000740
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000741extern int nouveau_pci_suspend(struct pci_dev *pdev, pm_message_t pm_state);
742extern int nouveau_pci_resume(struct pci_dev *pdev);
743
Ben Skeggs6ee73862009-12-11 19:24:15 +1000744/* nouveau_state.c */
745extern void nouveau_preclose(struct drm_device *dev, struct drm_file *);
746extern int nouveau_load(struct drm_device *, unsigned long flags);
747extern int nouveau_firstopen(struct drm_device *);
748extern void nouveau_lastclose(struct drm_device *);
749extern int nouveau_unload(struct drm_device *);
750extern int nouveau_ioctl_getparam(struct drm_device *, void *data,
751 struct drm_file *);
752extern int nouveau_ioctl_setparam(struct drm_device *, void *data,
753 struct drm_file *);
754extern bool nouveau_wait_until(struct drm_device *, uint64_t timeout,
755 uint32_t reg, uint32_t mask, uint32_t val);
756extern bool nouveau_wait_for_idle(struct drm_device *);
757extern int nouveau_card_init(struct drm_device *);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000758
759/* nouveau_mem.c */
Ben Skeggsfbd28952010-09-01 15:24:34 +1000760extern int nouveau_mem_vram_init(struct drm_device *);
761extern void nouveau_mem_vram_fini(struct drm_device *);
762extern int nouveau_mem_gart_init(struct drm_device *);
763extern void nouveau_mem_gart_fini(struct drm_device *);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000764extern int nouveau_mem_init_agp(struct drm_device *);
Francisco Jereze04d8e82010-07-23 20:29:13 +0200765extern int nouveau_mem_reset_agp(struct drm_device *);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000766extern void nouveau_mem_close(struct drm_device *);
Francisco Jereza0af9ad2009-12-11 16:51:09 +0100767extern struct nouveau_tile_reg *nv10_mem_set_tiling(struct drm_device *dev,
768 uint32_t addr,
769 uint32_t size,
770 uint32_t pitch);
771extern void nv10_mem_expire_tiling(struct drm_device *dev,
772 struct nouveau_tile_reg *tile,
773 struct nouveau_fence *fence);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000774extern int nv50_mem_vm_bind_linear(struct drm_device *, uint64_t virt,
775 uint32_t size, uint32_t flags,
776 uint64_t phys);
777extern void nv50_mem_vm_unbind(struct drm_device *, uint64_t virt,
778 uint32_t size);
779
780/* nouveau_notifier.c */
781extern int nouveau_notifier_init_channel(struct nouveau_channel *);
782extern void nouveau_notifier_takedown_channel(struct nouveau_channel *);
783extern int nouveau_notifier_alloc(struct nouveau_channel *, uint32_t handle,
784 int cout, uint32_t *offset);
785extern int nouveau_notifier_offset(struct nouveau_gpuobj *, uint32_t *);
786extern int nouveau_ioctl_notifier_alloc(struct drm_device *, void *data,
787 struct drm_file *);
788extern int nouveau_ioctl_notifier_free(struct drm_device *, void *data,
789 struct drm_file *);
790
791/* nouveau_channel.c */
792extern struct drm_ioctl_desc nouveau_ioctls[];
793extern int nouveau_max_ioctl;
794extern void nouveau_channel_cleanup(struct drm_device *, struct drm_file *);
795extern int nouveau_channel_owner(struct drm_device *, struct drm_file *,
796 int channel);
797extern int nouveau_channel_alloc(struct drm_device *dev,
798 struct nouveau_channel **chan,
799 struct drm_file *file_priv,
800 uint32_t fb_ctxdma, uint32_t tt_ctxdma);
801extern void nouveau_channel_free(struct nouveau_channel *);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000802
803/* nouveau_object.c */
804extern int nouveau_gpuobj_early_init(struct drm_device *);
805extern int nouveau_gpuobj_init(struct drm_device *);
806extern void nouveau_gpuobj_takedown(struct drm_device *);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000807extern int nouveau_gpuobj_suspend(struct drm_device *dev);
808extern void nouveau_gpuobj_suspend_cleanup(struct drm_device *dev);
809extern void nouveau_gpuobj_resume(struct drm_device *dev);
810extern int nouveau_gpuobj_channel_init(struct nouveau_channel *,
811 uint32_t vram_h, uint32_t tt_h);
812extern void nouveau_gpuobj_channel_takedown(struct nouveau_channel *);
813extern int nouveau_gpuobj_new(struct drm_device *, struct nouveau_channel *,
814 uint32_t size, int align, uint32_t flags,
815 struct nouveau_gpuobj **);
Ben Skeggsa8eaebc2010-09-01 15:24:31 +1000816extern void nouveau_gpuobj_ref(struct nouveau_gpuobj *,
817 struct nouveau_gpuobj **);
Ben Skeggs43efc9c2010-09-01 15:24:32 +1000818extern int nouveau_gpuobj_new_fake(struct drm_device *, u32 pinst, u64 vinst,
819 u32 size, u32 flags,
Ben Skeggsa8eaebc2010-09-01 15:24:31 +1000820 struct nouveau_gpuobj **);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000821extern int nouveau_gpuobj_dma_new(struct nouveau_channel *, int class,
822 uint64_t offset, uint64_t size, int access,
823 int target, struct nouveau_gpuobj **);
824extern int nouveau_gpuobj_gart_dma_new(struct nouveau_channel *,
825 uint64_t offset, uint64_t size,
826 int access, struct nouveau_gpuobj **,
827 uint32_t *o_ret);
828extern int nouveau_gpuobj_gr_new(struct nouveau_channel *, int class,
829 struct nouveau_gpuobj **);
Francisco Jerezf03a3142009-12-26 02:42:45 +0100830extern int nouveau_gpuobj_sw_new(struct nouveau_channel *, int class,
831 struct nouveau_gpuobj **);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000832extern int nouveau_ioctl_grobj_alloc(struct drm_device *, void *data,
833 struct drm_file *);
834extern int nouveau_ioctl_gpuobj_free(struct drm_device *, void *data,
835 struct drm_file *);
836
837/* nouveau_irq.c */
838extern irqreturn_t nouveau_irq_handler(DRM_IRQ_ARGS);
839extern void nouveau_irq_preinstall(struct drm_device *);
840extern int nouveau_irq_postinstall(struct drm_device *);
841extern void nouveau_irq_uninstall(struct drm_device *);
842
843/* nouveau_sgdma.c */
844extern int nouveau_sgdma_init(struct drm_device *);
845extern void nouveau_sgdma_takedown(struct drm_device *);
846extern int nouveau_sgdma_get_page(struct drm_device *, uint32_t offset,
847 uint32_t *page);
848extern struct ttm_backend *nouveau_sgdma_init_ttm(struct drm_device *);
849
850/* nouveau_debugfs.c */
851#if defined(CONFIG_DRM_NOUVEAU_DEBUG)
852extern int nouveau_debugfs_init(struct drm_minor *);
853extern void nouveau_debugfs_takedown(struct drm_minor *);
854extern int nouveau_debugfs_channel_init(struct nouveau_channel *);
855extern void nouveau_debugfs_channel_fini(struct nouveau_channel *);
856#else
857static inline int
858nouveau_debugfs_init(struct drm_minor *minor)
859{
860 return 0;
861}
862
863static inline void nouveau_debugfs_takedown(struct drm_minor *minor)
864{
865}
866
867static inline int
868nouveau_debugfs_channel_init(struct nouveau_channel *chan)
869{
870 return 0;
871}
872
873static inline void
874nouveau_debugfs_channel_fini(struct nouveau_channel *chan)
875{
876}
877#endif
878
879/* nouveau_dma.c */
Ben Skeggs75c99da2010-01-08 10:57:39 +1000880extern void nouveau_dma_pre_init(struct nouveau_channel *);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000881extern int nouveau_dma_init(struct nouveau_channel *);
Ben Skeggs9a391ad2010-02-11 16:37:26 +1000882extern int nouveau_dma_wait(struct nouveau_channel *, int slots, int size);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000883
884/* nouveau_acpi.c */
Dave Airlieafeb3e12010-04-07 13:55:09 +1000885#define ROM_BIOS_PAGE 4096
Dave Airlie2f41a7f2010-03-03 09:20:25 +1000886#if defined(CONFIG_ACPI)
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000887void nouveau_register_dsm_handler(void);
888void nouveau_unregister_dsm_handler(void);
Dave Airlieafeb3e12010-04-07 13:55:09 +1000889int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len);
890bool nouveau_acpi_rom_supported(struct pci_dev *pdev);
Ben Skeggsa6ed76d2010-07-12 15:33:07 +1000891int nouveau_acpi_edid(struct drm_device *, struct drm_connector *);
Dave Airlie8edb3812010-03-01 21:50:01 +1100892#else
893static inline void nouveau_register_dsm_handler(void) {}
894static inline void nouveau_unregister_dsm_handler(void) {}
Dave Airlieafeb3e12010-04-07 13:55:09 +1000895static inline bool nouveau_acpi_rom_supported(struct pci_dev *pdev) { return false; }
896static inline int nouveau_acpi_get_bios_chunk(uint8_t *bios, int offset, int len) { return -EINVAL; }
Ben Skeggs5620ba42010-07-23 10:00:12 +1000897static inline int nouveau_acpi_edid(struct drm_device *dev, struct drm_connector *connector) { return -EINVAL; }
Dave Airlie8edb3812010-03-01 21:50:01 +1100898#endif
Ben Skeggs6ee73862009-12-11 19:24:15 +1000899
900/* nouveau_backlight.c */
901#ifdef CONFIG_DRM_NOUVEAU_BACKLIGHT
902extern int nouveau_backlight_init(struct drm_device *);
903extern void nouveau_backlight_exit(struct drm_device *);
904#else
905static inline int nouveau_backlight_init(struct drm_device *dev)
906{
907 return 0;
908}
909
910static inline void nouveau_backlight_exit(struct drm_device *dev) { }
911#endif
912
913/* nouveau_bios.c */
914extern int nouveau_bios_init(struct drm_device *);
915extern void nouveau_bios_takedown(struct drm_device *dev);
916extern int nouveau_run_vbios_init(struct drm_device *);
917extern void nouveau_bios_run_init_table(struct drm_device *, uint16_t table,
918 struct dcb_entry *);
919extern struct dcb_gpio_entry *nouveau_bios_gpio_entry(struct drm_device *,
920 enum dcb_gpio_tag);
921extern struct dcb_connector_table_entry *
922nouveau_bios_connector_entry(struct drm_device *, int index);
Ben Skeggs855a95e2010-09-16 15:25:25 +1000923extern u32 get_pll_register(struct drm_device *, enum pll_types);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000924extern int get_pll_limits(struct drm_device *, uint32_t limit_match,
925 struct pll_lims *);
926extern int nouveau_bios_run_display_table(struct drm_device *,
927 struct dcb_entry *,
928 uint32_t script, int pxclk);
929extern void *nouveau_bios_dp_table(struct drm_device *, struct dcb_entry *,
930 int *length);
931extern bool nouveau_bios_fp_mode(struct drm_device *, struct drm_display_mode *);
932extern uint8_t *nouveau_bios_embedded_edid(struct drm_device *);
933extern int nouveau_bios_parse_lvds_table(struct drm_device *, int pxclk,
934 bool *dl, bool *if_is_24bit);
935extern int run_tmds_table(struct drm_device *, struct dcb_entry *,
936 int head, int pxclk);
937extern int call_lvds_script(struct drm_device *, struct dcb_entry *, int head,
938 enum LVDS_script, int pxclk);
939
940/* nouveau_ttm.c */
941int nouveau_ttm_global_init(struct drm_nouveau_private *);
942void nouveau_ttm_global_release(struct drm_nouveau_private *);
943int nouveau_ttm_mmap(struct file *, struct vm_area_struct *);
944
945/* nouveau_dp.c */
946int nouveau_dp_auxch(struct nouveau_i2c_chan *auxch, int cmd, int addr,
947 uint8_t *data, int data_nr);
948bool nouveau_dp_detect(struct drm_encoder *);
949bool nouveau_dp_link_train(struct drm_encoder *);
950
951/* nv04_fb.c */
952extern int nv04_fb_init(struct drm_device *);
953extern void nv04_fb_takedown(struct drm_device *);
954
955/* nv10_fb.c */
956extern int nv10_fb_init(struct drm_device *);
957extern void nv10_fb_takedown(struct drm_device *);
Francisco Jerezcb00f7c2009-12-16 12:12:27 +0100958extern void nv10_fb_set_region_tiling(struct drm_device *, int, uint32_t,
959 uint32_t, uint32_t);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000960
Francisco Jerez8bded182010-07-21 21:08:11 +0200961/* nv30_fb.c */
962extern int nv30_fb_init(struct drm_device *);
963extern void nv30_fb_takedown(struct drm_device *);
964
Ben Skeggs6ee73862009-12-11 19:24:15 +1000965/* nv40_fb.c */
966extern int nv40_fb_init(struct drm_device *);
967extern void nv40_fb_takedown(struct drm_device *);
Francisco Jerezcb00f7c2009-12-16 12:12:27 +0100968extern void nv40_fb_set_region_tiling(struct drm_device *, int, uint32_t,
969 uint32_t, uint32_t);
Marcin Kościelnicki304424e2010-03-01 00:18:39 +0000970/* nv50_fb.c */
971extern int nv50_fb_init(struct drm_device *);
972extern void nv50_fb_takedown(struct drm_device *);
Ben Skeggsd96773e2010-09-03 15:46:58 +1000973extern void nv50_fb_vm_trap(struct drm_device *, int display, const char *);
Marcin Kościelnicki304424e2010-03-01 00:18:39 +0000974
Ben Skeggs4b223ee2010-08-03 10:00:56 +1000975/* nvc0_fb.c */
976extern int nvc0_fb_init(struct drm_device *);
977extern void nvc0_fb_takedown(struct drm_device *);
978
Ben Skeggs6ee73862009-12-11 19:24:15 +1000979/* nv04_fifo.c */
980extern int nv04_fifo_init(struct drm_device *);
981extern void nv04_fifo_disable(struct drm_device *);
982extern void nv04_fifo_enable(struct drm_device *);
983extern bool nv04_fifo_reassign(struct drm_device *, bool);
Francisco Jerez588d7d12009-12-13 20:07:42 +0100984extern bool nv04_fifo_cache_pull(struct drm_device *, bool);
Ben Skeggs6ee73862009-12-11 19:24:15 +1000985extern int nv04_fifo_channel_id(struct drm_device *);
986extern int nv04_fifo_create_context(struct nouveau_channel *);
987extern void nv04_fifo_destroy_context(struct nouveau_channel *);
988extern int nv04_fifo_load_context(struct nouveau_channel *);
989extern int nv04_fifo_unload_context(struct drm_device *);
990
991/* nv10_fifo.c */
992extern int nv10_fifo_init(struct drm_device *);
993extern int nv10_fifo_channel_id(struct drm_device *);
994extern int nv10_fifo_create_context(struct nouveau_channel *);
995extern void nv10_fifo_destroy_context(struct nouveau_channel *);
996extern int nv10_fifo_load_context(struct nouveau_channel *);
997extern int nv10_fifo_unload_context(struct drm_device *);
998
999/* nv40_fifo.c */
1000extern int nv40_fifo_init(struct drm_device *);
1001extern int nv40_fifo_create_context(struct nouveau_channel *);
1002extern void nv40_fifo_destroy_context(struct nouveau_channel *);
1003extern int nv40_fifo_load_context(struct nouveau_channel *);
1004extern int nv40_fifo_unload_context(struct drm_device *);
1005
1006/* nv50_fifo.c */
1007extern int nv50_fifo_init(struct drm_device *);
1008extern void nv50_fifo_takedown(struct drm_device *);
1009extern int nv50_fifo_channel_id(struct drm_device *);
1010extern int nv50_fifo_create_context(struct nouveau_channel *);
1011extern void nv50_fifo_destroy_context(struct nouveau_channel *);
1012extern int nv50_fifo_load_context(struct nouveau_channel *);
1013extern int nv50_fifo_unload_context(struct drm_device *);
1014
Ben Skeggs4b223ee2010-08-03 10:00:56 +10001015/* nvc0_fifo.c */
1016extern int nvc0_fifo_init(struct drm_device *);
1017extern void nvc0_fifo_takedown(struct drm_device *);
1018extern void nvc0_fifo_disable(struct drm_device *);
1019extern void nvc0_fifo_enable(struct drm_device *);
1020extern bool nvc0_fifo_reassign(struct drm_device *, bool);
Ben Skeggs4b223ee2010-08-03 10:00:56 +10001021extern bool nvc0_fifo_cache_pull(struct drm_device *, bool);
1022extern int nvc0_fifo_channel_id(struct drm_device *);
1023extern int nvc0_fifo_create_context(struct nouveau_channel *);
1024extern void nvc0_fifo_destroy_context(struct nouveau_channel *);
1025extern int nvc0_fifo_load_context(struct nouveau_channel *);
1026extern int nvc0_fifo_unload_context(struct drm_device *);
1027
Ben Skeggs6ee73862009-12-11 19:24:15 +10001028/* nv04_graph.c */
1029extern struct nouveau_pgraph_object_class nv04_graph_grclass[];
1030extern int nv04_graph_init(struct drm_device *);
1031extern void nv04_graph_takedown(struct drm_device *);
1032extern void nv04_graph_fifo_access(struct drm_device *, bool);
1033extern struct nouveau_channel *nv04_graph_channel(struct drm_device *);
1034extern int nv04_graph_create_context(struct nouveau_channel *);
1035extern void nv04_graph_destroy_context(struct nouveau_channel *);
1036extern int nv04_graph_load_context(struct nouveau_channel *);
1037extern int nv04_graph_unload_context(struct drm_device *);
1038extern void nv04_graph_context_switch(struct drm_device *);
1039
1040/* nv10_graph.c */
1041extern struct nouveau_pgraph_object_class nv10_graph_grclass[];
1042extern int nv10_graph_init(struct drm_device *);
1043extern void nv10_graph_takedown(struct drm_device *);
1044extern struct nouveau_channel *nv10_graph_channel(struct drm_device *);
1045extern int nv10_graph_create_context(struct nouveau_channel *);
1046extern void nv10_graph_destroy_context(struct nouveau_channel *);
1047extern int nv10_graph_load_context(struct nouveau_channel *);
1048extern int nv10_graph_unload_context(struct drm_device *);
1049extern void nv10_graph_context_switch(struct drm_device *);
Francisco Jerezcb00f7c2009-12-16 12:12:27 +01001050extern void nv10_graph_set_region_tiling(struct drm_device *, int, uint32_t,
1051 uint32_t, uint32_t);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001052
1053/* nv20_graph.c */
1054extern struct nouveau_pgraph_object_class nv20_graph_grclass[];
1055extern struct nouveau_pgraph_object_class nv30_graph_grclass[];
1056extern int nv20_graph_create_context(struct nouveau_channel *);
1057extern void nv20_graph_destroy_context(struct nouveau_channel *);
1058extern int nv20_graph_load_context(struct nouveau_channel *);
1059extern int nv20_graph_unload_context(struct drm_device *);
1060extern int nv20_graph_init(struct drm_device *);
1061extern void nv20_graph_takedown(struct drm_device *);
1062extern int nv30_graph_init(struct drm_device *);
Francisco Jerezcb00f7c2009-12-16 12:12:27 +01001063extern void nv20_graph_set_region_tiling(struct drm_device *, int, uint32_t,
1064 uint32_t, uint32_t);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001065
1066/* nv40_graph.c */
1067extern struct nouveau_pgraph_object_class nv40_graph_grclass[];
1068extern int nv40_graph_init(struct drm_device *);
1069extern void nv40_graph_takedown(struct drm_device *);
1070extern struct nouveau_channel *nv40_graph_channel(struct drm_device *);
1071extern int nv40_graph_create_context(struct nouveau_channel *);
1072extern void nv40_graph_destroy_context(struct nouveau_channel *);
1073extern int nv40_graph_load_context(struct nouveau_channel *);
1074extern int nv40_graph_unload_context(struct drm_device *);
Ben Skeggs054b93e2009-12-15 22:02:47 +10001075extern void nv40_grctx_init(struct nouveau_grctx *);
Francisco Jerezcb00f7c2009-12-16 12:12:27 +01001076extern void nv40_graph_set_region_tiling(struct drm_device *, int, uint32_t,
1077 uint32_t, uint32_t);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001078
1079/* nv50_graph.c */
1080extern struct nouveau_pgraph_object_class nv50_graph_grclass[];
1081extern int nv50_graph_init(struct drm_device *);
1082extern void nv50_graph_takedown(struct drm_device *);
1083extern void nv50_graph_fifo_access(struct drm_device *, bool);
1084extern struct nouveau_channel *nv50_graph_channel(struct drm_device *);
1085extern int nv50_graph_create_context(struct nouveau_channel *);
1086extern void nv50_graph_destroy_context(struct nouveau_channel *);
1087extern int nv50_graph_load_context(struct nouveau_channel *);
1088extern int nv50_graph_unload_context(struct drm_device *);
1089extern void nv50_graph_context_switch(struct drm_device *);
Marcin Kościelnickid5f3c902010-02-25 00:54:02 +00001090extern int nv50_grctx_init(struct nouveau_grctx *);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001091
Ben Skeggs4b223ee2010-08-03 10:00:56 +10001092/* nvc0_graph.c */
1093extern int nvc0_graph_init(struct drm_device *);
1094extern void nvc0_graph_takedown(struct drm_device *);
1095extern void nvc0_graph_fifo_access(struct drm_device *, bool);
1096extern struct nouveau_channel *nvc0_graph_channel(struct drm_device *);
1097extern int nvc0_graph_create_context(struct nouveau_channel *);
1098extern void nvc0_graph_destroy_context(struct nouveau_channel *);
1099extern int nvc0_graph_load_context(struct nouveau_channel *);
1100extern int nvc0_graph_unload_context(struct drm_device *);
1101
Ben Skeggs6ee73862009-12-11 19:24:15 +10001102/* nv04_instmem.c */
1103extern int nv04_instmem_init(struct drm_device *);
1104extern void nv04_instmem_takedown(struct drm_device *);
1105extern int nv04_instmem_suspend(struct drm_device *);
1106extern void nv04_instmem_resume(struct drm_device *);
1107extern int nv04_instmem_populate(struct drm_device *, struct nouveau_gpuobj *,
1108 uint32_t *size);
1109extern void nv04_instmem_clear(struct drm_device *, struct nouveau_gpuobj *);
1110extern int nv04_instmem_bind(struct drm_device *, struct nouveau_gpuobj *);
1111extern int nv04_instmem_unbind(struct drm_device *, struct nouveau_gpuobj *);
Ben Skeggsf56cb862010-07-08 11:29:10 +10001112extern void nv04_instmem_flush(struct drm_device *);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001113
1114/* nv50_instmem.c */
1115extern int nv50_instmem_init(struct drm_device *);
1116extern void nv50_instmem_takedown(struct drm_device *);
1117extern int nv50_instmem_suspend(struct drm_device *);
1118extern void nv50_instmem_resume(struct drm_device *);
1119extern int nv50_instmem_populate(struct drm_device *, struct nouveau_gpuobj *,
1120 uint32_t *size);
1121extern void nv50_instmem_clear(struct drm_device *, struct nouveau_gpuobj *);
1122extern int nv50_instmem_bind(struct drm_device *, struct nouveau_gpuobj *);
1123extern int nv50_instmem_unbind(struct drm_device *, struct nouveau_gpuobj *);
Ben Skeggsf56cb862010-07-08 11:29:10 +10001124extern void nv50_instmem_flush(struct drm_device *);
Ben Skeggs734ee832010-07-15 11:02:54 +10001125extern void nv84_instmem_flush(struct drm_device *);
Ben Skeggs63187212010-07-08 11:39:18 +10001126extern void nv50_vm_flush(struct drm_device *, int engine);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001127
Ben Skeggs4b223ee2010-08-03 10:00:56 +10001128/* nvc0_instmem.c */
1129extern int nvc0_instmem_init(struct drm_device *);
1130extern void nvc0_instmem_takedown(struct drm_device *);
1131extern int nvc0_instmem_suspend(struct drm_device *);
1132extern void nvc0_instmem_resume(struct drm_device *);
1133extern int nvc0_instmem_populate(struct drm_device *, struct nouveau_gpuobj *,
1134 uint32_t *size);
1135extern void nvc0_instmem_clear(struct drm_device *, struct nouveau_gpuobj *);
1136extern int nvc0_instmem_bind(struct drm_device *, struct nouveau_gpuobj *);
1137extern int nvc0_instmem_unbind(struct drm_device *, struct nouveau_gpuobj *);
1138extern void nvc0_instmem_flush(struct drm_device *);
1139
Ben Skeggs6ee73862009-12-11 19:24:15 +10001140/* nv04_mc.c */
1141extern int nv04_mc_init(struct drm_device *);
1142extern void nv04_mc_takedown(struct drm_device *);
1143
1144/* nv40_mc.c */
1145extern int nv40_mc_init(struct drm_device *);
1146extern void nv40_mc_takedown(struct drm_device *);
1147
1148/* nv50_mc.c */
1149extern int nv50_mc_init(struct drm_device *);
1150extern void nv50_mc_takedown(struct drm_device *);
1151
1152/* nv04_timer.c */
1153extern int nv04_timer_init(struct drm_device *);
1154extern uint64_t nv04_timer_read(struct drm_device *);
1155extern void nv04_timer_takedown(struct drm_device *);
1156
1157extern long nouveau_compat_ioctl(struct file *file, unsigned int cmd,
1158 unsigned long arg);
1159
1160/* nv04_dac.c */
Ben Skeggs8f1a6082010-06-28 14:35:50 +10001161extern int nv04_dac_create(struct drm_connector *, struct dcb_entry *);
Francisco Jerez11d6eb22009-12-17 18:52:44 +01001162extern uint32_t nv17_dac_sample_load(struct drm_encoder *encoder);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001163extern int nv04_dac_output_offset(struct drm_encoder *encoder);
1164extern void nv04_dac_update_dacclk(struct drm_encoder *encoder, bool enable);
Francisco Jerez8ccfe9e2010-07-04 16:14:42 +02001165extern bool nv04_dac_in_use(struct drm_encoder *encoder);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001166
1167/* nv04_dfp.c */
Ben Skeggs8f1a6082010-06-28 14:35:50 +10001168extern int nv04_dfp_create(struct drm_connector *, struct dcb_entry *);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001169extern int nv04_dfp_get_bound_head(struct drm_device *dev, struct dcb_entry *dcbent);
1170extern void nv04_dfp_bind_head(struct drm_device *dev, struct dcb_entry *dcbent,
1171 int head, bool dl);
1172extern void nv04_dfp_disable(struct drm_device *dev, int head);
1173extern void nv04_dfp_update_fp_control(struct drm_encoder *encoder, int mode);
1174
1175/* nv04_tv.c */
1176extern int nv04_tv_identify(struct drm_device *dev, int i2c_index);
Ben Skeggs8f1a6082010-06-28 14:35:50 +10001177extern int nv04_tv_create(struct drm_connector *, struct dcb_entry *);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001178
1179/* nv17_tv.c */
Ben Skeggs8f1a6082010-06-28 14:35:50 +10001180extern int nv17_tv_create(struct drm_connector *, struct dcb_entry *);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001181
1182/* nv04_display.c */
Francisco Jerezc88c2e02010-07-24 17:37:33 +02001183extern int nv04_display_early_init(struct drm_device *);
1184extern void nv04_display_late_takedown(struct drm_device *);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001185extern int nv04_display_create(struct drm_device *);
Francisco Jerezc88c2e02010-07-24 17:37:33 +02001186extern int nv04_display_init(struct drm_device *);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001187extern void nv04_display_destroy(struct drm_device *);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001188
1189/* nv04_crtc.c */
1190extern int nv04_crtc_create(struct drm_device *, int index);
1191
1192/* nouveau_bo.c */
1193extern struct ttm_bo_driver nouveau_bo_driver;
1194extern int nouveau_bo_new(struct drm_device *, struct nouveau_channel *,
1195 int size, int align, uint32_t flags,
1196 uint32_t tile_mode, uint32_t tile_flags,
1197 bool no_vm, bool mappable, struct nouveau_bo **);
1198extern int nouveau_bo_pin(struct nouveau_bo *, uint32_t flags);
1199extern int nouveau_bo_unpin(struct nouveau_bo *);
1200extern int nouveau_bo_map(struct nouveau_bo *);
1201extern void nouveau_bo_unmap(struct nouveau_bo *);
Francisco Jerez78ad0f72010-03-18 13:07:47 +01001202extern void nouveau_bo_placement_set(struct nouveau_bo *, uint32_t type,
1203 uint32_t busy);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001204extern u16 nouveau_bo_rd16(struct nouveau_bo *nvbo, unsigned index);
1205extern void nouveau_bo_wr16(struct nouveau_bo *nvbo, unsigned index, u16 val);
1206extern u32 nouveau_bo_rd32(struct nouveau_bo *nvbo, unsigned index);
1207extern void nouveau_bo_wr32(struct nouveau_bo *nvbo, unsigned index, u32 val);
Ben Skeggs415e6182010-07-23 09:06:52 +10001208extern int nouveau_bo_sync_gpu(struct nouveau_bo *, struct nouveau_channel *);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001209
1210/* nouveau_fence.c */
1211struct nouveau_fence;
1212extern int nouveau_fence_init(struct nouveau_channel *);
1213extern void nouveau_fence_fini(struct nouveau_channel *);
1214extern void nouveau_fence_update(struct nouveau_channel *);
1215extern int nouveau_fence_new(struct nouveau_channel *, struct nouveau_fence **,
1216 bool emit);
1217extern int nouveau_fence_emit(struct nouveau_fence *);
1218struct nouveau_channel *nouveau_fence_channel(struct nouveau_fence *);
1219extern bool nouveau_fence_signalled(void *obj, void *arg);
1220extern int nouveau_fence_wait(void *obj, void *arg, bool lazy, bool intr);
1221extern int nouveau_fence_flush(void *obj, void *arg);
1222extern void nouveau_fence_unref(void **obj);
1223extern void *nouveau_fence_ref(void *obj);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001224
1225/* nouveau_gem.c */
1226extern int nouveau_gem_new(struct drm_device *, struct nouveau_channel *,
1227 int size, int align, uint32_t flags,
1228 uint32_t tile_mode, uint32_t tile_flags,
1229 bool no_vm, bool mappable, struct nouveau_bo **);
1230extern int nouveau_gem_object_new(struct drm_gem_object *);
1231extern void nouveau_gem_object_del(struct drm_gem_object *);
1232extern int nouveau_gem_ioctl_new(struct drm_device *, void *,
1233 struct drm_file *);
1234extern int nouveau_gem_ioctl_pushbuf(struct drm_device *, void *,
1235 struct drm_file *);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001236extern int nouveau_gem_ioctl_cpu_prep(struct drm_device *, void *,
1237 struct drm_file *);
1238extern int nouveau_gem_ioctl_cpu_fini(struct drm_device *, void *,
1239 struct drm_file *);
1240extern int nouveau_gem_ioctl_info(struct drm_device *, void *,
1241 struct drm_file *);
1242
Ben Skeggsee2e0132010-07-26 09:28:25 +10001243/* nv10_gpio.c */
1244int nv10_gpio_get(struct drm_device *dev, enum dcb_gpio_tag tag);
1245int nv10_gpio_set(struct drm_device *dev, enum dcb_gpio_tag tag, int state);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001246
Ben Skeggs45284162010-04-07 12:57:35 +10001247/* nv50_gpio.c */
Ben Skeggsee2e0132010-07-26 09:28:25 +10001248int nv50_gpio_init(struct drm_device *dev);
Ben Skeggs45284162010-04-07 12:57:35 +10001249int nv50_gpio_get(struct drm_device *dev, enum dcb_gpio_tag tag);
1250int nv50_gpio_set(struct drm_device *dev, enum dcb_gpio_tag tag, int state);
Ben Skeggsd0875ed2010-07-23 11:31:08 +10001251void nv50_gpio_irq_enable(struct drm_device *, enum dcb_gpio_tag, bool on);
Ben Skeggs45284162010-04-07 12:57:35 +10001252
Ben Skeggse9ebb682010-04-28 14:07:06 +10001253/* nv50_calc. */
1254int nv50_calc_pll(struct drm_device *, struct pll_lims *, int clk,
1255 int *N1, int *M1, int *N2, int *M2, int *P);
1256int nv50_calc_pll2(struct drm_device *, struct pll_lims *,
1257 int clk, int *N, int *fN, int *M, int *P);
1258
Ben Skeggs6ee73862009-12-11 19:24:15 +10001259#ifndef ioread32_native
1260#ifdef __BIG_ENDIAN
1261#define ioread16_native ioread16be
1262#define iowrite16_native iowrite16be
1263#define ioread32_native ioread32be
1264#define iowrite32_native iowrite32be
1265#else /* def __BIG_ENDIAN */
1266#define ioread16_native ioread16
1267#define iowrite16_native iowrite16
1268#define ioread32_native ioread32
1269#define iowrite32_native iowrite32
1270#endif /* def __BIG_ENDIAN else */
1271#endif /* !ioread32_native */
1272
1273/* channel control reg access */
1274static inline u32 nvchan_rd32(struct nouveau_channel *chan, unsigned reg)
1275{
1276 return ioread32_native(chan->user + reg);
1277}
1278
1279static inline void nvchan_wr32(struct nouveau_channel *chan,
1280 unsigned reg, u32 val)
1281{
1282 iowrite32_native(val, chan->user + reg);
1283}
1284
1285/* register access */
1286static inline u32 nv_rd32(struct drm_device *dev, unsigned reg)
1287{
1288 struct drm_nouveau_private *dev_priv = dev->dev_private;
1289 return ioread32_native(dev_priv->mmio + reg);
1290}
1291
1292static inline void nv_wr32(struct drm_device *dev, unsigned reg, u32 val)
1293{
1294 struct drm_nouveau_private *dev_priv = dev->dev_private;
1295 iowrite32_native(val, dev_priv->mmio + reg);
1296}
1297
Ben Skeggs2a7fdb2b2010-08-30 16:14:51 +10001298static inline u32 nv_mask(struct drm_device *dev, u32 reg, u32 mask, u32 val)
Ben Skeggs49eed802010-07-23 11:17:57 +10001299{
1300 u32 tmp = nv_rd32(dev, reg);
Ben Skeggs2a7fdb2b2010-08-30 16:14:51 +10001301 nv_wr32(dev, reg, (tmp & ~mask) | val);
1302 return tmp;
Ben Skeggs49eed802010-07-23 11:17:57 +10001303}
1304
Ben Skeggs6ee73862009-12-11 19:24:15 +10001305static inline u8 nv_rd08(struct drm_device *dev, unsigned reg)
1306{
1307 struct drm_nouveau_private *dev_priv = dev->dev_private;
1308 return ioread8(dev_priv->mmio + reg);
1309}
1310
1311static inline void nv_wr08(struct drm_device *dev, unsigned reg, u8 val)
1312{
1313 struct drm_nouveau_private *dev_priv = dev->dev_private;
1314 iowrite8(val, dev_priv->mmio + reg);
1315}
1316
Francisco Jerez4b5c1522010-09-07 17:34:44 +02001317#define nv_wait(dev, reg, mask, val) \
Ben Skeggs6ee73862009-12-11 19:24:15 +10001318 nouveau_wait_until(dev, 2000000000ULL, (reg), (mask), (val))
1319
1320/* PRAMIN access */
1321static inline u32 nv_ri32(struct drm_device *dev, unsigned offset)
1322{
1323 struct drm_nouveau_private *dev_priv = dev->dev_private;
1324 return ioread32_native(dev_priv->ramin + offset);
1325}
1326
1327static inline void nv_wi32(struct drm_device *dev, unsigned offset, u32 val)
1328{
1329 struct drm_nouveau_private *dev_priv = dev->dev_private;
1330 iowrite32_native(val, dev_priv->ramin + offset);
1331}
1332
1333/* object access */
Ben Skeggsb3beb162010-09-01 15:24:29 +10001334extern u32 nv_ro32(struct nouveau_gpuobj *, u32 offset);
1335extern void nv_wo32(struct nouveau_gpuobj *, u32 offset, u32 val);
Ben Skeggs6ee73862009-12-11 19:24:15 +10001336
1337/*
1338 * Logging
1339 * Argument d is (struct drm_device *).
1340 */
1341#define NV_PRINTK(level, d, fmt, arg...) \
1342 printk(level "[" DRM_NAME "] " DRIVER_NAME " %s: " fmt, \
1343 pci_name(d->pdev), ##arg)
1344#ifndef NV_DEBUG_NOTRACE
1345#define NV_DEBUG(d, fmt, arg...) do { \
Maarten Maathuisef2bb502009-12-13 16:53:12 +01001346 if (drm_debug & DRM_UT_DRIVER) { \
1347 NV_PRINTK(KERN_DEBUG, d, "%s:%d - " fmt, __func__, \
1348 __LINE__, ##arg); \
1349 } \
1350} while (0)
1351#define NV_DEBUG_KMS(d, fmt, arg...) do { \
1352 if (drm_debug & DRM_UT_KMS) { \
Ben Skeggs6ee73862009-12-11 19:24:15 +10001353 NV_PRINTK(KERN_DEBUG, d, "%s:%d - " fmt, __func__, \
1354 __LINE__, ##arg); \
1355 } \
1356} while (0)
1357#else
1358#define NV_DEBUG(d, fmt, arg...) do { \
Maarten Maathuisef2bb502009-12-13 16:53:12 +01001359 if (drm_debug & DRM_UT_DRIVER) \
1360 NV_PRINTK(KERN_DEBUG, d, fmt, ##arg); \
1361} while (0)
1362#define NV_DEBUG_KMS(d, fmt, arg...) do { \
1363 if (drm_debug & DRM_UT_KMS) \
Ben Skeggs6ee73862009-12-11 19:24:15 +10001364 NV_PRINTK(KERN_DEBUG, d, fmt, ##arg); \
1365} while (0)
1366#endif
1367#define NV_ERROR(d, fmt, arg...) NV_PRINTK(KERN_ERR, d, fmt, ##arg)
1368#define NV_INFO(d, fmt, arg...) NV_PRINTK(KERN_INFO, d, fmt, ##arg)
1369#define NV_TRACEWARN(d, fmt, arg...) NV_PRINTK(KERN_NOTICE, d, fmt, ##arg)
1370#define NV_TRACE(d, fmt, arg...) NV_PRINTK(KERN_INFO, d, fmt, ##arg)
1371#define NV_WARN(d, fmt, arg...) NV_PRINTK(KERN_WARNING, d, fmt, ##arg)
1372
1373/* nouveau_reg_debug bitmask */
1374enum {
1375 NOUVEAU_REG_DEBUG_MC = 0x1,
1376 NOUVEAU_REG_DEBUG_VIDEO = 0x2,
1377 NOUVEAU_REG_DEBUG_FB = 0x4,
1378 NOUVEAU_REG_DEBUG_EXTDEV = 0x8,
1379 NOUVEAU_REG_DEBUG_CRTC = 0x10,
1380 NOUVEAU_REG_DEBUG_RAMDAC = 0x20,
1381 NOUVEAU_REG_DEBUG_VGACRTC = 0x40,
1382 NOUVEAU_REG_DEBUG_RMVIO = 0x80,
1383 NOUVEAU_REG_DEBUG_VGAATTR = 0x100,
1384 NOUVEAU_REG_DEBUG_EVO = 0x200,
1385};
1386
1387#define NV_REG_DEBUG(type, dev, fmt, arg...) do { \
1388 if (nouveau_reg_debug & NOUVEAU_REG_DEBUG_##type) \
1389 NV_PRINTK(KERN_DEBUG, dev, "%s: " fmt, __func__, ##arg); \
1390} while (0)
1391
1392static inline bool
1393nv_two_heads(struct drm_device *dev)
1394{
1395 struct drm_nouveau_private *dev_priv = dev->dev_private;
1396 const int impl = dev->pci_device & 0x0ff0;
1397
1398 if (dev_priv->card_type >= NV_10 && impl != 0x0100 &&
1399 impl != 0x0150 && impl != 0x01a0 && impl != 0x0200)
1400 return true;
1401
1402 return false;
1403}
1404
1405static inline bool
1406nv_gf4_disp_arch(struct drm_device *dev)
1407{
1408 return nv_two_heads(dev) && (dev->pci_device & 0x0ff0) != 0x0110;
1409}
1410
1411static inline bool
1412nv_two_reg_pll(struct drm_device *dev)
1413{
1414 struct drm_nouveau_private *dev_priv = dev->dev_private;
1415 const int impl = dev->pci_device & 0x0ff0;
1416
1417 if (impl == 0x0310 || impl == 0x0340 || dev_priv->card_type >= NV_40)
1418 return true;
1419 return false;
1420}
1421
Francisco Jerezacae1162010-08-15 14:31:31 +02001422static inline bool
1423nv_match_device(struct drm_device *dev, unsigned device,
1424 unsigned sub_vendor, unsigned sub_device)
1425{
1426 return dev->pdev->device == device &&
1427 dev->pdev->subsystem_vendor == sub_vendor &&
1428 dev->pdev->subsystem_device == sub_device;
1429}
1430
Francisco Jerezf03a3142009-12-26 02:42:45 +01001431#define NV_SW 0x0000506e
1432#define NV_SW_DMA_SEMAPHORE 0x00000060
1433#define NV_SW_SEMAPHORE_OFFSET 0x00000064
1434#define NV_SW_SEMAPHORE_ACQUIRE 0x00000068
1435#define NV_SW_SEMAPHORE_RELEASE 0x0000006c
1436#define NV_SW_DMA_VBLSEM 0x0000018c
1437#define NV_SW_VBLSEM_OFFSET 0x00000400
1438#define NV_SW_VBLSEM_RELEASE_VALUE 0x00000404
1439#define NV_SW_VBLSEM_RELEASE 0x00000408
Ben Skeggs6ee73862009-12-11 19:24:15 +10001440
1441#endif /* __NOUVEAU_DRV_H__ */