OSDN Git Service

2081972557f578def9c5001597ce193842ad83f6
[android-x86/kernel.git] / drivers / gpu / drm / radeon / radeon.h
1 /*
2  * Copyright 2008 Advanced Micro Devices, Inc.
3  * Copyright 2008 Red Hat Inc.
4  * Copyright 2009 Jerome Glisse.
5  *
6  * Permission is hereby granted, free of charge, to any person obtaining a
7  * copy of this software and associated documentation files (the "Software"),
8  * to deal in the Software without restriction, including without limitation
9  * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10  * and/or sell copies of the Software, and to permit persons to whom the
11  * Software is furnished to do so, subject to the following conditions:
12  *
13  * The above copyright notice and this permission notice shall be included in
14  * all copies or substantial portions of the 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  * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) 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  * Authors: Dave Airlie
25  *          Alex Deucher
26  *          Jerome Glisse
27  */
28 #ifndef __RADEON_H__
29 #define __RADEON_H__
30
31 /* TODO: Here are things that needs to be done :
32  *      - surface allocator & initializer : (bit like scratch reg) should
33  *        initialize HDP_ stuff on RS600, R600, R700 hw, well anythings
34  *        related to surface
35  *      - WB : write back stuff (do it bit like scratch reg things)
36  *      - Vblank : look at Jesse's rework and what we should do
37  *      - r600/r700: gart & cp
38  *      - cs : clean cs ioctl use bitmap & things like that.
39  *      - power management stuff
40  *      - Barrier in gart code
41  *      - Unmappabled vram ?
42  *      - TESTING, TESTING, TESTING
43  */
44
45 /* Initialization path:
46  *  We expect that acceleration initialization might fail for various
47  *  reasons even thought we work hard to make it works on most
48  *  configurations. In order to still have a working userspace in such
49  *  situation the init path must succeed up to the memory controller
50  *  initialization point. Failure before this point are considered as
51  *  fatal error. Here is the init callchain :
52  *      radeon_device_init  perform common structure, mutex initialization
53  *      asic_init           setup the GPU memory layout and perform all
54  *                          one time initialization (failure in this
55  *                          function are considered fatal)
56  *      asic_startup        setup the GPU acceleration, in order to
57  *                          follow guideline the first thing this
58  *                          function should do is setting the GPU
59  *                          memory controller (only MC setup failure
60  *                          are considered as fatal)
61  */
62
63 #include <linux/atomic.h>
64 #include <linux/wait.h>
65 #include <linux/list.h>
66 #include <linux/kref.h>
67
68 #include <ttm/ttm_bo_api.h>
69 #include <ttm/ttm_bo_driver.h>
70 #include <ttm/ttm_placement.h>
71 #include <ttm/ttm_module.h>
72 #include <ttm/ttm_execbuf_util.h>
73
74 #include "radeon_family.h"
75 #include "radeon_mode.h"
76 #include "radeon_reg.h"
77
78 /*
79  * Modules parameters.
80  */
81 extern int radeon_no_wb;
82 extern int radeon_modeset;
83 extern int radeon_dynclks;
84 extern int radeon_r4xx_atom;
85 extern int radeon_agpmode;
86 extern int radeon_vram_limit;
87 extern int radeon_gart_size;
88 extern int radeon_benchmarking;
89 extern int radeon_testing;
90 extern int radeon_connector_table;
91 extern int radeon_tv;
92 extern int radeon_audio;
93 extern int radeon_disp_priority;
94 extern int radeon_hw_i2c;
95 extern int radeon_pcie_gen2;
96 extern int radeon_msi;
97
98 /*
99  * Copy from radeon_drv.h so we don't have to include both and have conflicting
100  * symbol;
101  */
102 #define RADEON_MAX_USEC_TIMEOUT         100000  /* 100 ms */
103 #define RADEON_FENCE_JIFFIES_TIMEOUT    (HZ / 2)
104 /* RADEON_IB_POOL_SIZE must be a power of 2 */
105 #define RADEON_IB_POOL_SIZE             16
106 #define RADEON_DEBUGFS_MAX_COMPONENTS   32
107 #define RADEONFB_CONN_LIMIT             4
108 #define RADEON_BIOS_NUM_SCRATCH         8
109
110 /* max number of rings */
111 #define RADEON_NUM_RINGS 3
112
113 /* internal ring indices */
114 /* r1xx+ has gfx CP ring */
115 #define RADEON_RING_TYPE_GFX_INDEX  0
116
117 /* cayman has 2 compute CP rings */
118 #define CAYMAN_RING_TYPE_CP1_INDEX 1
119 #define CAYMAN_RING_TYPE_CP2_INDEX 2
120
121 /* hardcode those limit for now */
122 #define RADEON_VA_RESERVED_SIZE         (8 << 20)
123 #define RADEON_IB_VM_MAX_SIZE           (64 << 10)
124
125 /*
126  * Errata workarounds.
127  */
128 enum radeon_pll_errata {
129         CHIP_ERRATA_R300_CG             = 0x00000001,
130         CHIP_ERRATA_PLL_DUMMYREADS      = 0x00000002,
131         CHIP_ERRATA_PLL_DELAY           = 0x00000004
132 };
133
134
135 struct radeon_device;
136
137
138 /*
139  * BIOS.
140  */
141 #define ATRM_BIOS_PAGE 4096
142
143 #if defined(CONFIG_VGA_SWITCHEROO)
144 bool radeon_atrm_supported(struct pci_dev *pdev);
145 int radeon_atrm_get_bios_chunk(uint8_t *bios, int offset, int len);
146 #else
147 static inline bool radeon_atrm_supported(struct pci_dev *pdev)
148 {
149         return false;
150 }
151
152 static inline int radeon_atrm_get_bios_chunk(uint8_t *bios, int offset, int len){
153         return -EINVAL;
154 }
155 #endif
156 bool radeon_get_bios(struct radeon_device *rdev);
157
158
159 /*
160  * Mutex which allows recursive locking from the same process.
161  */
162 struct radeon_mutex {
163         struct mutex            mutex;
164         struct task_struct      *owner;
165         int                     level;
166 };
167
168 static inline void radeon_mutex_init(struct radeon_mutex *mutex)
169 {
170         mutex_init(&mutex->mutex);
171         mutex->owner = NULL;
172         mutex->level = 0;
173 }
174
175 static inline void radeon_mutex_lock(struct radeon_mutex *mutex)
176 {
177         if (mutex_trylock(&mutex->mutex)) {
178                 /* The mutex was unlocked before, so it's ours now */
179                 mutex->owner = current;
180         } else if (mutex->owner != current) {
181                 /* Another process locked the mutex, take it */
182                 mutex_lock(&mutex->mutex);
183                 mutex->owner = current;
184         }
185         /* Otherwise the mutex was already locked by this process */
186
187         mutex->level++;
188 }
189
190 static inline void radeon_mutex_unlock(struct radeon_mutex *mutex)
191 {
192         if (--mutex->level > 0)
193                 return;
194
195         mutex->owner = NULL;
196         mutex_unlock(&mutex->mutex);
197 }
198
199
200 /*
201  * Dummy page
202  */
203 struct radeon_dummy_page {
204         struct page     *page;
205         dma_addr_t      addr;
206 };
207 int radeon_dummy_page_init(struct radeon_device *rdev);
208 void radeon_dummy_page_fini(struct radeon_device *rdev);
209
210
211 /*
212  * Clocks
213  */
214 struct radeon_clock {
215         struct radeon_pll p1pll;
216         struct radeon_pll p2pll;
217         struct radeon_pll dcpll;
218         struct radeon_pll spll;
219         struct radeon_pll mpll;
220         /* 10 Khz units */
221         uint32_t default_mclk;
222         uint32_t default_sclk;
223         uint32_t default_dispclk;
224         uint32_t dp_extclk;
225         uint32_t max_pixel_clock;
226 };
227
228 /*
229  * Power management
230  */
231 int radeon_pm_init(struct radeon_device *rdev);
232 void radeon_pm_fini(struct radeon_device *rdev);
233 void radeon_pm_compute_clocks(struct radeon_device *rdev);
234 void radeon_pm_suspend(struct radeon_device *rdev);
235 void radeon_pm_resume(struct radeon_device *rdev);
236 void radeon_combios_get_power_modes(struct radeon_device *rdev);
237 void radeon_atombios_get_power_modes(struct radeon_device *rdev);
238 void radeon_atom_set_voltage(struct radeon_device *rdev, u16 voltage_level, u8 voltage_type);
239 int radeon_atom_get_max_vddc(struct radeon_device *rdev, u16 *voltage);
240 void rs690_pm_info(struct radeon_device *rdev);
241 extern int rv6xx_get_temp(struct radeon_device *rdev);
242 extern int rv770_get_temp(struct radeon_device *rdev);
243 extern int evergreen_get_temp(struct radeon_device *rdev);
244 extern int sumo_get_temp(struct radeon_device *rdev);
245 extern void evergreen_tiling_fields(unsigned tiling_flags, unsigned *bankw,
246                                     unsigned *bankh, unsigned *mtaspect,
247                                     unsigned *tile_split);
248
249 /*
250  * Fences.
251  */
252 struct radeon_fence_driver {
253         uint32_t                        scratch_reg;
254         uint64_t                        gpu_addr;
255         volatile uint32_t               *cpu_addr;
256         atomic_t                        seq;
257         uint32_t                        last_seq;
258         unsigned long                   last_jiffies;
259         unsigned long                   last_timeout;
260         wait_queue_head_t               queue;
261         struct list_head                created;
262         struct list_head                emitted;
263         struct list_head                signaled;
264         bool                            initialized;
265 };
266
267 struct radeon_fence {
268         struct radeon_device            *rdev;
269         struct kref                     kref;
270         struct list_head                list;
271         /* protected by radeon_fence.lock */
272         uint32_t                        seq;
273         bool                            emitted;
274         bool                            signaled;
275         /* RB, DMA, etc. */
276         int                             ring;
277         struct radeon_semaphore         *semaphore;
278 };
279
280 int radeon_fence_driver_start_ring(struct radeon_device *rdev, int ring);
281 int radeon_fence_driver_init(struct radeon_device *rdev);
282 void radeon_fence_driver_fini(struct radeon_device *rdev);
283 int radeon_fence_create(struct radeon_device *rdev, struct radeon_fence **fence, int ring);
284 int radeon_fence_emit(struct radeon_device *rdev, struct radeon_fence *fence);
285 void radeon_fence_process(struct radeon_device *rdev, int ring);
286 bool radeon_fence_signaled(struct radeon_fence *fence);
287 int radeon_fence_wait(struct radeon_fence *fence, bool interruptible);
288 int radeon_fence_wait_next(struct radeon_device *rdev, int ring);
289 int radeon_fence_wait_last(struct radeon_device *rdev, int ring);
290 struct radeon_fence *radeon_fence_ref(struct radeon_fence *fence);
291 void radeon_fence_unref(struct radeon_fence **fence);
292 int radeon_fence_count_emitted(struct radeon_device *rdev, int ring);
293
294 /*
295  * Tiling registers
296  */
297 struct radeon_surface_reg {
298         struct radeon_bo *bo;
299 };
300
301 #define RADEON_GEM_MAX_SURFACES 8
302
303 /*
304  * TTM.
305  */
306 struct radeon_mman {
307         struct ttm_bo_global_ref        bo_global_ref;
308         struct drm_global_reference     mem_global_ref;
309         struct ttm_bo_device            bdev;
310         bool                            mem_global_referenced;
311         bool                            initialized;
312 };
313
314 /* bo virtual address in a specific vm */
315 struct radeon_bo_va {
316         /* bo list is protected by bo being reserved */
317         struct list_head                bo_list;
318         /* vm list is protected by vm mutex */
319         struct list_head                vm_list;
320         /* constant after initialization */
321         struct radeon_vm                *vm;
322         struct radeon_bo                *bo;
323         uint64_t                        soffset;
324         uint64_t                        eoffset;
325         uint32_t                        flags;
326         bool                            valid;
327 };
328
329 struct radeon_bo {
330         /* Protected by gem.mutex */
331         struct list_head                list;
332         /* Protected by tbo.reserved */
333         u32                             placements[3];
334         struct ttm_placement            placement;
335         struct ttm_buffer_object        tbo;
336         struct ttm_bo_kmap_obj          kmap;
337         unsigned                        pin_count;
338         void                            *kptr;
339         u32                             tiling_flags;
340         u32                             pitch;
341         int                             surface_reg;
342         /* list of all virtual address to which this bo
343          * is associated to
344          */
345         struct list_head                va;
346         /* Constant after initialization */
347         struct radeon_device            *rdev;
348         struct drm_gem_object           gem_base;
349 };
350 #define gem_to_radeon_bo(gobj) container_of((gobj), struct radeon_bo, gem_base)
351
352 struct radeon_bo_list {
353         struct ttm_validate_buffer tv;
354         struct radeon_bo        *bo;
355         uint64_t                gpu_offset;
356         unsigned                rdomain;
357         unsigned                wdomain;
358         u32                     tiling_flags;
359 };
360
361 /* sub-allocation manager, it has to be protected by another lock.
362  * By conception this is an helper for other part of the driver
363  * like the indirect buffer or semaphore, which both have their
364  * locking.
365  *
366  * Principe is simple, we keep a list of sub allocation in offset
367  * order (first entry has offset == 0, last entry has the highest
368  * offset).
369  *
370  * When allocating new object we first check if there is room at
371  * the end total_size - (last_object_offset + last_object_size) >=
372  * alloc_size. If so we allocate new object there.
373  *
374  * When there is not enough room at the end, we start waiting for
375  * each sub object until we reach object_offset+object_size >=
376  * alloc_size, this object then become the sub object we return.
377  *
378  * Alignment can't be bigger than page size.
379  *
380  * Hole are not considered for allocation to keep things simple.
381  * Assumption is that there won't be hole (all object on same
382  * alignment).
383  */
384 struct radeon_sa_manager {
385         struct radeon_bo        *bo;
386         struct list_head        sa_bo;
387         unsigned                size;
388         uint64_t                gpu_addr;
389         void                    *cpu_ptr;
390         uint32_t                domain;
391 };
392
393 struct radeon_sa_bo;
394
395 /* sub-allocation buffer */
396 struct radeon_sa_bo {
397         struct list_head                list;
398         struct radeon_sa_manager        *manager;
399         unsigned                        offset;
400         unsigned                        size;
401 };
402
403 /*
404  * GEM objects.
405  */
406 struct radeon_gem {
407         struct mutex            mutex;
408         struct list_head        objects;
409 };
410
411 int radeon_gem_init(struct radeon_device *rdev);
412 void radeon_gem_fini(struct radeon_device *rdev);
413 int radeon_gem_object_create(struct radeon_device *rdev, int size,
414                                 int alignment, int initial_domain,
415                                 bool discardable, bool kernel,
416                                 struct drm_gem_object **obj);
417
418 int radeon_mode_dumb_create(struct drm_file *file_priv,
419                             struct drm_device *dev,
420                             struct drm_mode_create_dumb *args);
421 int radeon_mode_dumb_mmap(struct drm_file *filp,
422                           struct drm_device *dev,
423                           uint32_t handle, uint64_t *offset_p);
424 int radeon_mode_dumb_destroy(struct drm_file *file_priv,
425                              struct drm_device *dev,
426                              uint32_t handle);
427
428 /*
429  * Semaphores.
430  */
431 struct radeon_ring;
432
433 #define RADEON_SEMAPHORE_BO_SIZE        256
434
435 struct radeon_semaphore_driver {
436         rwlock_t                        lock;
437         struct list_head                bo;
438 };
439
440 struct radeon_semaphore_bo;
441
442 /* everything here is constant */
443 struct radeon_semaphore {
444         struct list_head                list;
445         uint64_t                        gpu_addr;
446         uint32_t                        *cpu_ptr;
447         struct radeon_semaphore_bo      *bo;
448 };
449
450 struct radeon_semaphore_bo {
451         struct list_head                list;
452         struct radeon_ib                *ib;
453         struct list_head                free;
454         struct radeon_semaphore         semaphores[RADEON_SEMAPHORE_BO_SIZE/8];
455         unsigned                        nused;
456 };
457
458 void radeon_semaphore_driver_fini(struct radeon_device *rdev);
459 int radeon_semaphore_create(struct radeon_device *rdev,
460                             struct radeon_semaphore **semaphore);
461 void radeon_semaphore_emit_signal(struct radeon_device *rdev, int ring,
462                                   struct radeon_semaphore *semaphore);
463 void radeon_semaphore_emit_wait(struct radeon_device *rdev, int ring,
464                                 struct radeon_semaphore *semaphore);
465 void radeon_semaphore_free(struct radeon_device *rdev,
466                            struct radeon_semaphore *semaphore);
467
468 /*
469  * GART structures, functions & helpers
470  */
471 struct radeon_mc;
472
473 #define RADEON_GPU_PAGE_SIZE 4096
474 #define RADEON_GPU_PAGE_MASK (RADEON_GPU_PAGE_SIZE - 1)
475 #define RADEON_GPU_PAGE_SHIFT 12
476 #define RADEON_GPU_PAGE_ALIGN(a) (((a) + RADEON_GPU_PAGE_MASK) & ~RADEON_GPU_PAGE_MASK)
477
478 struct radeon_gart {
479         dma_addr_t                      table_addr;
480         struct radeon_bo                *robj;
481         void                            *ptr;
482         unsigned                        num_gpu_pages;
483         unsigned                        num_cpu_pages;
484         unsigned                        table_size;
485         struct page                     **pages;
486         dma_addr_t                      *pages_addr;
487         bool                            ready;
488 };
489
490 int radeon_gart_table_ram_alloc(struct radeon_device *rdev);
491 void radeon_gart_table_ram_free(struct radeon_device *rdev);
492 int radeon_gart_table_vram_alloc(struct radeon_device *rdev);
493 void radeon_gart_table_vram_free(struct radeon_device *rdev);
494 int radeon_gart_table_vram_pin(struct radeon_device *rdev);
495 void radeon_gart_table_vram_unpin(struct radeon_device *rdev);
496 int radeon_gart_init(struct radeon_device *rdev);
497 void radeon_gart_fini(struct radeon_device *rdev);
498 void radeon_gart_unbind(struct radeon_device *rdev, unsigned offset,
499                         int pages);
500 int radeon_gart_bind(struct radeon_device *rdev, unsigned offset,
501                      int pages, struct page **pagelist,
502                      dma_addr_t *dma_addr);
503 void radeon_gart_restore(struct radeon_device *rdev);
504
505
506 /*
507  * GPU MC structures, functions & helpers
508  */
509 struct radeon_mc {
510         resource_size_t         aper_size;
511         resource_size_t         aper_base;
512         resource_size_t         agp_base;
513         /* for some chips with <= 32MB we need to lie
514          * about vram size near mc fb location */
515         u64                     mc_vram_size;
516         u64                     visible_vram_size;
517         u64                     gtt_size;
518         u64                     gtt_start;
519         u64                     gtt_end;
520         u64                     vram_start;
521         u64                     vram_end;
522         unsigned                vram_width;
523         u64                     real_vram_size;
524         int                     vram_mtrr;
525         bool                    vram_is_ddr;
526         bool                    igp_sideport_enabled;
527         u64                     gtt_base_align;
528 };
529
530 bool radeon_combios_sideport_present(struct radeon_device *rdev);
531 bool radeon_atombios_sideport_present(struct radeon_device *rdev);
532
533 /*
534  * GPU scratch registers structures, functions & helpers
535  */
536 struct radeon_scratch {
537         unsigned                num_reg;
538         uint32_t                reg_base;
539         bool                    free[32];
540         uint32_t                reg[32];
541 };
542
543 int radeon_scratch_get(struct radeon_device *rdev, uint32_t *reg);
544 void radeon_scratch_free(struct radeon_device *rdev, uint32_t reg);
545
546
547 /*
548  * IRQS.
549  */
550
551 struct radeon_unpin_work {
552         struct work_struct work;
553         struct radeon_device *rdev;
554         int crtc_id;
555         struct radeon_fence *fence;
556         struct drm_pending_vblank_event *event;
557         struct radeon_bo *old_rbo;
558         u64 new_crtc_base;
559 };
560
561 struct r500_irq_stat_regs {
562         u32 disp_int;
563 };
564
565 struct r600_irq_stat_regs {
566         u32 disp_int;
567         u32 disp_int_cont;
568         u32 disp_int_cont2;
569         u32 d1grph_int;
570         u32 d2grph_int;
571 };
572
573 struct evergreen_irq_stat_regs {
574         u32 disp_int;
575         u32 disp_int_cont;
576         u32 disp_int_cont2;
577         u32 disp_int_cont3;
578         u32 disp_int_cont4;
579         u32 disp_int_cont5;
580         u32 d1grph_int;
581         u32 d2grph_int;
582         u32 d3grph_int;
583         u32 d4grph_int;
584         u32 d5grph_int;
585         u32 d6grph_int;
586 };
587
588 union radeon_irq_stat_regs {
589         struct r500_irq_stat_regs r500;
590         struct r600_irq_stat_regs r600;
591         struct evergreen_irq_stat_regs evergreen;
592 };
593
594 #define RADEON_MAX_HPD_PINS 6
595 #define RADEON_MAX_CRTCS 6
596 #define RADEON_MAX_HDMI_BLOCKS 2
597
598 struct radeon_irq {
599         bool            installed;
600         bool            sw_int[RADEON_NUM_RINGS];
601         bool            crtc_vblank_int[RADEON_MAX_CRTCS];
602         bool            pflip[RADEON_MAX_CRTCS];
603         wait_queue_head_t       vblank_queue;
604         bool            hpd[RADEON_MAX_HPD_PINS];
605         bool            gui_idle;
606         bool            gui_idle_acked;
607         wait_queue_head_t       idle_queue;
608         bool            hdmi[RADEON_MAX_HDMI_BLOCKS];
609         spinlock_t sw_lock;
610         int sw_refcount[RADEON_NUM_RINGS];
611         union radeon_irq_stat_regs stat_regs;
612         spinlock_t pflip_lock[RADEON_MAX_CRTCS];
613         int pflip_refcount[RADEON_MAX_CRTCS];
614 };
615
616 int radeon_irq_kms_init(struct radeon_device *rdev);
617 void radeon_irq_kms_fini(struct radeon_device *rdev);
618 void radeon_irq_kms_sw_irq_get(struct radeon_device *rdev, int ring);
619 void radeon_irq_kms_sw_irq_put(struct radeon_device *rdev, int ring);
620 void radeon_irq_kms_pflip_irq_get(struct radeon_device *rdev, int crtc);
621 void radeon_irq_kms_pflip_irq_put(struct radeon_device *rdev, int crtc);
622
623 /*
624  * CP & rings.
625  */
626
627 struct radeon_ib {
628         struct radeon_sa_bo     sa_bo;
629         unsigned                idx;
630         uint32_t                length_dw;
631         uint64_t                gpu_addr;
632         uint32_t                *ptr;
633         struct radeon_fence     *fence;
634         unsigned                vm_id;
635 };
636
637 /*
638  * locking -
639  * mutex protects scheduled_ibs, ready, alloc_bm
640  */
641 struct radeon_ib_pool {
642         struct radeon_mutex             mutex;
643         struct radeon_sa_manager        sa_manager;
644         struct radeon_ib                ibs[RADEON_IB_POOL_SIZE];
645         bool                            ready;
646         unsigned                        head_id;
647 };
648
649 struct radeon_ring {
650         struct radeon_bo        *ring_obj;
651         volatile uint32_t       *ring;
652         unsigned                rptr;
653         unsigned                rptr_offs;
654         unsigned                rptr_reg;
655         unsigned                wptr;
656         unsigned                wptr_old;
657         unsigned                wptr_reg;
658         unsigned                ring_size;
659         unsigned                ring_free_dw;
660         int                     count_dw;
661         uint64_t                gpu_addr;
662         uint32_t                align_mask;
663         uint32_t                ptr_mask;
664         struct mutex            mutex;
665         bool                    ready;
666         u32                     ptr_reg_shift;
667         u32                     ptr_reg_mask;
668         u32                     nop;
669 };
670
671 /*
672  * VM
673  */
674 struct radeon_vm {
675         struct list_head                list;
676         struct list_head                va;
677         int                             id;
678         unsigned                        last_pfn;
679         u64                             pt_gpu_addr;
680         u64                             *pt;
681         struct radeon_sa_bo             sa_bo;
682         struct mutex                    mutex;
683         /* last fence for cs using this vm */
684         struct radeon_fence             *fence;
685 };
686
687 struct radeon_vm_funcs {
688         int (*init)(struct radeon_device *rdev);
689         void (*fini)(struct radeon_device *rdev);
690         /* cs mutex must be lock for schedule_ib */
691         int (*bind)(struct radeon_device *rdev, struct radeon_vm *vm, int id);
692         void (*unbind)(struct radeon_device *rdev, struct radeon_vm *vm);
693         void (*tlb_flush)(struct radeon_device *rdev, struct radeon_vm *vm);
694         uint32_t (*page_flags)(struct radeon_device *rdev,
695                                struct radeon_vm *vm,
696                                uint32_t flags);
697         void (*set_page)(struct radeon_device *rdev, struct radeon_vm *vm,
698                         unsigned pfn, uint64_t addr, uint32_t flags);
699 };
700
701 struct radeon_vm_manager {
702         struct list_head                lru_vm;
703         uint32_t                        use_bitmap;
704         struct radeon_sa_manager        sa_manager;
705         uint32_t                        max_pfn;
706         /* fields constant after init */
707         const struct radeon_vm_funcs    *funcs;
708         /* number of VMIDs */
709         unsigned                        nvm;
710         /* vram base address for page table entry  */
711         u64                             vram_base_offset;
712         /* is vm enabled? */
713         bool                            enabled;
714 };
715
716 /*
717  * file private structure
718  */
719 struct radeon_fpriv {
720         struct radeon_vm                vm;
721 };
722
723 /*
724  * R6xx+ IH ring
725  */
726 struct r600_ih {
727         struct radeon_bo        *ring_obj;
728         volatile uint32_t       *ring;
729         unsigned                rptr;
730         unsigned                rptr_offs;
731         unsigned                wptr;
732         unsigned                wptr_old;
733         unsigned                ring_size;
734         uint64_t                gpu_addr;
735         uint32_t                ptr_mask;
736         spinlock_t              lock;
737         bool                    enabled;
738 };
739
740 struct r600_blit_cp_primitives {
741         void (*set_render_target)(struct radeon_device *rdev, int format,
742                                   int w, int h, u64 gpu_addr);
743         void (*cp_set_surface_sync)(struct radeon_device *rdev,
744                                     u32 sync_type, u32 size,
745                                     u64 mc_addr);
746         void (*set_shaders)(struct radeon_device *rdev);
747         void (*set_vtx_resource)(struct radeon_device *rdev, u64 gpu_addr);
748         void (*set_tex_resource)(struct radeon_device *rdev,
749                                  int format, int w, int h, int pitch,
750                                  u64 gpu_addr, u32 size);
751         void (*set_scissors)(struct radeon_device *rdev, int x1, int y1,
752                              int x2, int y2);
753         void (*draw_auto)(struct radeon_device *rdev);
754         void (*set_default_state)(struct radeon_device *rdev);
755 };
756
757 struct r600_blit {
758         struct mutex            mutex;
759         struct radeon_bo        *shader_obj;
760         struct r600_blit_cp_primitives primitives;
761         int max_dim;
762         int ring_size_common;
763         int ring_size_per_loop;
764         u64 shader_gpu_addr;
765         u32 vs_offset, ps_offset;
766         u32 state_offset;
767         u32 state_len;
768         u32 vb_used, vb_total;
769         struct radeon_ib *vb_ib;
770 };
771
772 void r600_blit_suspend(struct radeon_device *rdev);
773
774 int radeon_ib_get(struct radeon_device *rdev, int ring,
775                   struct radeon_ib **ib, unsigned size);
776 void radeon_ib_free(struct radeon_device *rdev, struct radeon_ib **ib);
777 bool radeon_ib_try_free(struct radeon_device *rdev, struct radeon_ib *ib);
778 int radeon_ib_schedule(struct radeon_device *rdev, struct radeon_ib *ib);
779 int radeon_ib_pool_init(struct radeon_device *rdev);
780 void radeon_ib_pool_fini(struct radeon_device *rdev);
781 int radeon_ib_pool_start(struct radeon_device *rdev);
782 int radeon_ib_pool_suspend(struct radeon_device *rdev);
783 /* Ring access between begin & end cannot sleep */
784 int radeon_ring_index(struct radeon_device *rdev, struct radeon_ring *cp);
785 void radeon_ring_free_size(struct radeon_device *rdev, struct radeon_ring *cp);
786 int radeon_ring_alloc(struct radeon_device *rdev, struct radeon_ring *cp, unsigned ndw);
787 int radeon_ring_lock(struct radeon_device *rdev, struct radeon_ring *cp, unsigned ndw);
788 void radeon_ring_commit(struct radeon_device *rdev, struct radeon_ring *cp);
789 void radeon_ring_unlock_commit(struct radeon_device *rdev, struct radeon_ring *cp);
790 void radeon_ring_unlock_undo(struct radeon_device *rdev, struct radeon_ring *cp);
791 int radeon_ring_test(struct radeon_device *rdev, struct radeon_ring *cp);
792 int radeon_ring_init(struct radeon_device *rdev, struct radeon_ring *cp, unsigned ring_size,
793                      unsigned rptr_offs, unsigned rptr_reg, unsigned wptr_reg,
794                      u32 ptr_reg_shift, u32 ptr_reg_mask, u32 nop);
795 void radeon_ring_fini(struct radeon_device *rdev, struct radeon_ring *cp);
796
797
798 /*
799  * CS.
800  */
801 struct radeon_cs_reloc {
802         struct drm_gem_object           *gobj;
803         struct radeon_bo                *robj;
804         struct radeon_bo_list           lobj;
805         uint32_t                        handle;
806         uint32_t                        flags;
807 };
808
809 struct radeon_cs_chunk {
810         uint32_t                chunk_id;
811         uint32_t                length_dw;
812         int                     kpage_idx[2];
813         uint32_t                *kpage[2];
814         uint32_t                *kdata;
815         void __user             *user_ptr;
816         int                     last_copied_page;
817         int                     last_page_index;
818 };
819
820 struct radeon_cs_parser {
821         struct device           *dev;
822         struct radeon_device    *rdev;
823         struct drm_file         *filp;
824         /* chunks */
825         unsigned                nchunks;
826         struct radeon_cs_chunk  *chunks;
827         uint64_t                *chunks_array;
828         /* IB */
829         unsigned                idx;
830         /* relocations */
831         unsigned                nrelocs;
832         struct radeon_cs_reloc  *relocs;
833         struct radeon_cs_reloc  **relocs_ptr;
834         struct list_head        validated;
835         /* indices of various chunks */
836         int                     chunk_ib_idx;
837         int                     chunk_relocs_idx;
838         int                     chunk_flags_idx;
839         struct radeon_ib        *ib;
840         void                    *track;
841         unsigned                family;
842         int                     parser_error;
843         u32                     cs_flags;
844         u32                     ring;
845         s32                     priority;
846 };
847
848 extern int radeon_cs_update_pages(struct radeon_cs_parser *p, int pg_idx);
849 extern int radeon_cs_finish_pages(struct radeon_cs_parser *p);
850 extern u32 radeon_get_ib_value(struct radeon_cs_parser *p, int idx);
851
852 struct radeon_cs_packet {
853         unsigned        idx;
854         unsigned        type;
855         unsigned        reg;
856         unsigned        opcode;
857         int             count;
858         unsigned        one_reg_wr;
859 };
860
861 typedef int (*radeon_packet0_check_t)(struct radeon_cs_parser *p,
862                                       struct radeon_cs_packet *pkt,
863                                       unsigned idx, unsigned reg);
864 typedef int (*radeon_packet3_check_t)(struct radeon_cs_parser *p,
865                                       struct radeon_cs_packet *pkt);
866
867
868 /*
869  * AGP
870  */
871 int radeon_agp_init(struct radeon_device *rdev);
872 void radeon_agp_resume(struct radeon_device *rdev);
873 void radeon_agp_suspend(struct radeon_device *rdev);
874 void radeon_agp_fini(struct radeon_device *rdev);
875
876
877 /*
878  * Writeback
879  */
880 struct radeon_wb {
881         struct radeon_bo        *wb_obj;
882         volatile uint32_t       *wb;
883         uint64_t                gpu_addr;
884         bool                    enabled;
885         bool                    use_event;
886 };
887
888 #define RADEON_WB_SCRATCH_OFFSET 0
889 #define RADEON_WB_CP_RPTR_OFFSET 1024
890 #define RADEON_WB_CP1_RPTR_OFFSET 1280
891 #define RADEON_WB_CP2_RPTR_OFFSET 1536
892 #define R600_WB_IH_WPTR_OFFSET   2048
893 #define R600_WB_EVENT_OFFSET     3072
894
895 /**
896  * struct radeon_pm - power management datas
897  * @max_bandwidth:      maximum bandwidth the gpu has (MByte/s)
898  * @igp_sideport_mclk:  sideport memory clock Mhz (rs690,rs740,rs780,rs880)
899  * @igp_system_mclk:    system clock Mhz (rs690,rs740,rs780,rs880)
900  * @igp_ht_link_clk:    ht link clock Mhz (rs690,rs740,rs780,rs880)
901  * @igp_ht_link_width:  ht link width in bits (rs690,rs740,rs780,rs880)
902  * @k8_bandwidth:       k8 bandwidth the gpu has (MByte/s) (IGP)
903  * @sideport_bandwidth: sideport bandwidth the gpu has (MByte/s) (IGP)
904  * @ht_bandwidth:       ht bandwidth the gpu has (MByte/s) (IGP)
905  * @core_bandwidth:     core GPU bandwidth the gpu has (MByte/s) (IGP)
906  * @sclk:               GPU clock Mhz (core bandwidth depends of this clock)
907  * @needed_bandwidth:   current bandwidth needs
908  *
909  * It keeps track of various data needed to take powermanagement decision.
910  * Bandwidth need is used to determine minimun clock of the GPU and memory.
911  * Equation between gpu/memory clock and available bandwidth is hw dependent
912  * (type of memory, bus size, efficiency, ...)
913  */
914
915 enum radeon_pm_method {
916         PM_METHOD_PROFILE,
917         PM_METHOD_DYNPM,
918 };
919
920 enum radeon_dynpm_state {
921         DYNPM_STATE_DISABLED,
922         DYNPM_STATE_MINIMUM,
923         DYNPM_STATE_PAUSED,
924         DYNPM_STATE_ACTIVE,
925         DYNPM_STATE_SUSPENDED,
926 };
927 enum radeon_dynpm_action {
928         DYNPM_ACTION_NONE,
929         DYNPM_ACTION_MINIMUM,
930         DYNPM_ACTION_DOWNCLOCK,
931         DYNPM_ACTION_UPCLOCK,
932         DYNPM_ACTION_DEFAULT
933 };
934
935 enum radeon_voltage_type {
936         VOLTAGE_NONE = 0,
937         VOLTAGE_GPIO,
938         VOLTAGE_VDDC,
939         VOLTAGE_SW
940 };
941
942 enum radeon_pm_state_type {
943         POWER_STATE_TYPE_DEFAULT,
944         POWER_STATE_TYPE_POWERSAVE,
945         POWER_STATE_TYPE_BATTERY,
946         POWER_STATE_TYPE_BALANCED,
947         POWER_STATE_TYPE_PERFORMANCE,
948 };
949
950 enum radeon_pm_profile_type {
951         PM_PROFILE_DEFAULT,
952         PM_PROFILE_AUTO,
953         PM_PROFILE_LOW,
954         PM_PROFILE_MID,
955         PM_PROFILE_HIGH,
956 };
957
958 #define PM_PROFILE_DEFAULT_IDX 0
959 #define PM_PROFILE_LOW_SH_IDX  1
960 #define PM_PROFILE_MID_SH_IDX  2
961 #define PM_PROFILE_HIGH_SH_IDX 3
962 #define PM_PROFILE_LOW_MH_IDX  4
963 #define PM_PROFILE_MID_MH_IDX  5
964 #define PM_PROFILE_HIGH_MH_IDX 6
965 #define PM_PROFILE_MAX         7
966
967 struct radeon_pm_profile {
968         int dpms_off_ps_idx;
969         int dpms_on_ps_idx;
970         int dpms_off_cm_idx;
971         int dpms_on_cm_idx;
972 };
973
974 enum radeon_int_thermal_type {
975         THERMAL_TYPE_NONE,
976         THERMAL_TYPE_RV6XX,
977         THERMAL_TYPE_RV770,
978         THERMAL_TYPE_EVERGREEN,
979         THERMAL_TYPE_SUMO,
980         THERMAL_TYPE_NI,
981 };
982
983 struct radeon_voltage {
984         enum radeon_voltage_type type;
985         /* gpio voltage */
986         struct radeon_gpio_rec gpio;
987         u32 delay; /* delay in usec from voltage drop to sclk change */
988         bool active_high; /* voltage drop is active when bit is high */
989         /* VDDC voltage */
990         u8 vddc_id; /* index into vddc voltage table */
991         u8 vddci_id; /* index into vddci voltage table */
992         bool vddci_enabled;
993         /* r6xx+ sw */
994         u16 voltage;
995         /* evergreen+ vddci */
996         u16 vddci;
997 };
998
999 /* clock mode flags */
1000 #define RADEON_PM_MODE_NO_DISPLAY          (1 << 0)
1001
1002 struct radeon_pm_clock_info {
1003         /* memory clock */
1004         u32 mclk;
1005         /* engine clock */
1006         u32 sclk;
1007         /* voltage info */
1008         struct radeon_voltage voltage;
1009         /* standardized clock flags */
1010         u32 flags;
1011 };
1012
1013 /* state flags */
1014 #define RADEON_PM_STATE_SINGLE_DISPLAY_ONLY (1 << 0)
1015
1016 struct radeon_power_state {
1017         enum radeon_pm_state_type type;
1018         struct radeon_pm_clock_info *clock_info;
1019         /* number of valid clock modes in this power state */
1020         int num_clock_modes;
1021         struct radeon_pm_clock_info *default_clock_mode;
1022         /* standardized state flags */
1023         u32 flags;
1024         u32 misc; /* vbios specific flags */
1025         u32 misc2; /* vbios specific flags */
1026         int pcie_lanes; /* pcie lanes */
1027 };
1028
1029 /*
1030  * Some modes are overclocked by very low value, accept them
1031  */
1032 #define RADEON_MODE_OVERCLOCK_MARGIN 500 /* 5 MHz */
1033
1034 struct radeon_pm {
1035         struct mutex            mutex;
1036         u32                     active_crtcs;
1037         int                     active_crtc_count;
1038         int                     req_vblank;
1039         bool                    vblank_sync;
1040         bool                    gui_idle;
1041         fixed20_12              max_bandwidth;
1042         fixed20_12              igp_sideport_mclk;
1043         fixed20_12              igp_system_mclk;
1044         fixed20_12              igp_ht_link_clk;
1045         fixed20_12              igp_ht_link_width;
1046         fixed20_12              k8_bandwidth;
1047         fixed20_12              sideport_bandwidth;
1048         fixed20_12              ht_bandwidth;
1049         fixed20_12              core_bandwidth;
1050         fixed20_12              sclk;
1051         fixed20_12              mclk;
1052         fixed20_12              needed_bandwidth;
1053         struct radeon_power_state *power_state;
1054         /* number of valid power states */
1055         int                     num_power_states;
1056         int                     current_power_state_index;
1057         int                     current_clock_mode_index;
1058         int                     requested_power_state_index;
1059         int                     requested_clock_mode_index;
1060         int                     default_power_state_index;
1061         u32                     current_sclk;
1062         u32                     current_mclk;
1063         u16                     current_vddc;
1064         u16                     current_vddci;
1065         u32                     default_sclk;
1066         u32                     default_mclk;
1067         u16                     default_vddc;
1068         u16                     default_vddci;
1069         struct radeon_i2c_chan *i2c_bus;
1070         /* selected pm method */
1071         enum radeon_pm_method     pm_method;
1072         /* dynpm power management */
1073         struct delayed_work     dynpm_idle_work;
1074         enum radeon_dynpm_state dynpm_state;
1075         enum radeon_dynpm_action        dynpm_planned_action;
1076         unsigned long           dynpm_action_timeout;
1077         bool                    dynpm_can_upclock;
1078         bool                    dynpm_can_downclock;
1079         /* profile-based power management */
1080         enum radeon_pm_profile_type profile;
1081         int                     profile_index;
1082         struct radeon_pm_profile profiles[PM_PROFILE_MAX];
1083         /* internal thermal controller on rv6xx+ */
1084         enum radeon_int_thermal_type int_thermal_type;
1085         struct device           *int_hwmon_dev;
1086 };
1087
1088 int radeon_pm_get_type_index(struct radeon_device *rdev,
1089                              enum radeon_pm_state_type ps_type,
1090                              int instance);
1091
1092 /*
1093  * Benchmarking
1094  */
1095 void radeon_benchmark(struct radeon_device *rdev, int test_number);
1096
1097
1098 /*
1099  * Testing
1100  */
1101 void radeon_test_moves(struct radeon_device *rdev);
1102 void radeon_test_ring_sync(struct radeon_device *rdev,
1103                            struct radeon_ring *cpA,
1104                            struct radeon_ring *cpB);
1105 void radeon_test_syncing(struct radeon_device *rdev);
1106
1107
1108 /*
1109  * Debugfs
1110  */
1111 struct radeon_debugfs {
1112         struct drm_info_list    *files;
1113         unsigned                num_files;
1114 };
1115
1116 int radeon_debugfs_add_files(struct radeon_device *rdev,
1117                              struct drm_info_list *files,
1118                              unsigned nfiles);
1119 int radeon_debugfs_fence_init(struct radeon_device *rdev);
1120
1121
1122 /*
1123  * ASIC specific functions.
1124  */
1125 struct radeon_asic {
1126         int (*init)(struct radeon_device *rdev);
1127         void (*fini)(struct radeon_device *rdev);
1128         int (*resume)(struct radeon_device *rdev);
1129         int (*suspend)(struct radeon_device *rdev);
1130         void (*vga_set_state)(struct radeon_device *rdev, bool state);
1131         bool (*gpu_is_lockup)(struct radeon_device *rdev, struct radeon_ring *cp);
1132         int (*asic_reset)(struct radeon_device *rdev);
1133         /* ioctl hw specific callback. Some hw might want to perform special
1134          * operation on specific ioctl. For instance on wait idle some hw
1135          * might want to perform and HDP flush through MMIO as it seems that
1136          * some R6XX/R7XX hw doesn't take HDP flush into account if programmed
1137          * through ring.
1138          */
1139         void (*ioctl_wait_idle)(struct radeon_device *rdev, struct radeon_bo *bo);
1140         /* check if 3D engine is idle */
1141         bool (*gui_idle)(struct radeon_device *rdev);
1142         /* wait for mc_idle */
1143         int (*mc_wait_for_idle)(struct radeon_device *rdev);
1144         /* gart */
1145         struct {
1146                 void (*tlb_flush)(struct radeon_device *rdev);
1147                 int (*set_page)(struct radeon_device *rdev, int i, uint64_t addr);
1148         } gart;
1149         /* ring specific callbacks */
1150         struct {
1151                 void (*ib_execute)(struct radeon_device *rdev, struct radeon_ib *ib);
1152                 int (*ib_parse)(struct radeon_device *rdev, struct radeon_ib *ib);
1153                 void (*emit_fence)(struct radeon_device *rdev, struct radeon_fence *fence);
1154                 void (*emit_semaphore)(struct radeon_device *rdev, struct radeon_ring *cp,
1155                                        struct radeon_semaphore *semaphore, bool emit_wait);
1156                 int (*cs_parse)(struct radeon_cs_parser *p);
1157                 void (*ring_start)(struct radeon_device *rdev, struct radeon_ring *cp);
1158                 int (*ring_test)(struct radeon_device *rdev, struct radeon_ring *cp);
1159                 int (*ib_test)(struct radeon_device *rdev, struct radeon_ring *cp);
1160         } ring[RADEON_NUM_RINGS];
1161         /* irqs */
1162         struct {
1163                 int (*set)(struct radeon_device *rdev);
1164                 int (*process)(struct radeon_device *rdev);
1165         } irq;
1166         /* displays */
1167         struct {
1168                 /* display watermarks */
1169                 void (*bandwidth_update)(struct radeon_device *rdev);
1170                 /* get frame count */
1171                 u32 (*get_vblank_counter)(struct radeon_device *rdev, int crtc);
1172                 /* wait for vblank */
1173                 void (*wait_for_vblank)(struct radeon_device *rdev, int crtc);
1174         } display;
1175         /* copy functions for bo handling */
1176         struct {
1177                 int (*blit)(struct radeon_device *rdev,
1178                             uint64_t src_offset,
1179                             uint64_t dst_offset,
1180                             unsigned num_gpu_pages,
1181                             struct radeon_fence *fence);
1182                 u32 blit_ring_index;
1183                 int (*dma)(struct radeon_device *rdev,
1184                            uint64_t src_offset,
1185                            uint64_t dst_offset,
1186                            unsigned num_gpu_pages,
1187                            struct radeon_fence *fence);
1188                 u32 dma_ring_index;
1189                 /* method used for bo copy */
1190                 int (*copy)(struct radeon_device *rdev,
1191                             uint64_t src_offset,
1192                             uint64_t dst_offset,
1193                             unsigned num_gpu_pages,
1194                             struct radeon_fence *fence);
1195                 /* ring used for bo copies */
1196                 u32 copy_ring_index;
1197         } copy;
1198         /* surfaces */
1199         struct {
1200                 int (*set_reg)(struct radeon_device *rdev, int reg,
1201                                        uint32_t tiling_flags, uint32_t pitch,
1202                                        uint32_t offset, uint32_t obj_size);
1203                 void (*clear_reg)(struct radeon_device *rdev, int reg);
1204         } surface;
1205         /* hotplug detect */
1206         struct {
1207                 void (*init)(struct radeon_device *rdev);
1208                 void (*fini)(struct radeon_device *rdev);
1209                 bool (*sense)(struct radeon_device *rdev, enum radeon_hpd_id hpd);
1210                 void (*set_polarity)(struct radeon_device *rdev, enum radeon_hpd_id hpd);
1211         } hpd;
1212         /* power management */
1213         struct {
1214                 void (*misc)(struct radeon_device *rdev);
1215                 void (*prepare)(struct radeon_device *rdev);
1216                 void (*finish)(struct radeon_device *rdev);
1217                 void (*init_profile)(struct radeon_device *rdev);
1218                 void (*get_dynpm_state)(struct radeon_device *rdev);
1219                 uint32_t (*get_engine_clock)(struct radeon_device *rdev);
1220                 void (*set_engine_clock)(struct radeon_device *rdev, uint32_t eng_clock);
1221                 uint32_t (*get_memory_clock)(struct radeon_device *rdev);
1222                 void (*set_memory_clock)(struct radeon_device *rdev, uint32_t mem_clock);
1223                 int (*get_pcie_lanes)(struct radeon_device *rdev);
1224                 void (*set_pcie_lanes)(struct radeon_device *rdev, int lanes);
1225                 void (*set_clock_gating)(struct radeon_device *rdev, int enable);
1226         } pm;
1227         /* pageflipping */
1228         struct {
1229                 void (*pre_page_flip)(struct radeon_device *rdev, int crtc);
1230                 u32 (*page_flip)(struct radeon_device *rdev, int crtc, u64 crtc_base);
1231                 void (*post_page_flip)(struct radeon_device *rdev, int crtc);
1232         } pflip;
1233 };
1234
1235 /*
1236  * Asic structures
1237  */
1238 struct r100_gpu_lockup {
1239         unsigned long   last_jiffies;
1240         u32             last_cp_rptr;
1241 };
1242
1243 struct r100_asic {
1244         const unsigned          *reg_safe_bm;
1245         unsigned                reg_safe_bm_size;
1246         u32                     hdp_cntl;
1247         struct r100_gpu_lockup  lockup;
1248 };
1249
1250 struct r300_asic {
1251         const unsigned          *reg_safe_bm;
1252         unsigned                reg_safe_bm_size;
1253         u32                     resync_scratch;
1254         u32                     hdp_cntl;
1255         struct r100_gpu_lockup  lockup;
1256 };
1257
1258 struct r600_asic {
1259         unsigned                max_pipes;
1260         unsigned                max_tile_pipes;
1261         unsigned                max_simds;
1262         unsigned                max_backends;
1263         unsigned                max_gprs;
1264         unsigned                max_threads;
1265         unsigned                max_stack_entries;
1266         unsigned                max_hw_contexts;
1267         unsigned                max_gs_threads;
1268         unsigned                sx_max_export_size;
1269         unsigned                sx_max_export_pos_size;
1270         unsigned                sx_max_export_smx_size;
1271         unsigned                sq_num_cf_insts;
1272         unsigned                tiling_nbanks;
1273         unsigned                tiling_npipes;
1274         unsigned                tiling_group_size;
1275         unsigned                tile_config;
1276         unsigned                backend_map;
1277         struct r100_gpu_lockup  lockup;
1278 };
1279
1280 struct rv770_asic {
1281         unsigned                max_pipes;
1282         unsigned                max_tile_pipes;
1283         unsigned                max_simds;
1284         unsigned                max_backends;
1285         unsigned                max_gprs;
1286         unsigned                max_threads;
1287         unsigned                max_stack_entries;
1288         unsigned                max_hw_contexts;
1289         unsigned                max_gs_threads;
1290         unsigned                sx_max_export_size;
1291         unsigned                sx_max_export_pos_size;
1292         unsigned                sx_max_export_smx_size;
1293         unsigned                sq_num_cf_insts;
1294         unsigned                sx_num_of_sets;
1295         unsigned                sc_prim_fifo_size;
1296         unsigned                sc_hiz_tile_fifo_size;
1297         unsigned                sc_earlyz_tile_fifo_fize;
1298         unsigned                tiling_nbanks;
1299         unsigned                tiling_npipes;
1300         unsigned                tiling_group_size;
1301         unsigned                tile_config;
1302         unsigned                backend_map;
1303         struct r100_gpu_lockup  lockup;
1304 };
1305
1306 struct evergreen_asic {
1307         unsigned num_ses;
1308         unsigned max_pipes;
1309         unsigned max_tile_pipes;
1310         unsigned max_simds;
1311         unsigned max_backends;
1312         unsigned max_gprs;
1313         unsigned max_threads;
1314         unsigned max_stack_entries;
1315         unsigned max_hw_contexts;
1316         unsigned max_gs_threads;
1317         unsigned sx_max_export_size;
1318         unsigned sx_max_export_pos_size;
1319         unsigned sx_max_export_smx_size;
1320         unsigned sq_num_cf_insts;
1321         unsigned sx_num_of_sets;
1322         unsigned sc_prim_fifo_size;
1323         unsigned sc_hiz_tile_fifo_size;
1324         unsigned sc_earlyz_tile_fifo_size;
1325         unsigned tiling_nbanks;
1326         unsigned tiling_npipes;
1327         unsigned tiling_group_size;
1328         unsigned tile_config;
1329         unsigned backend_map;
1330         struct r100_gpu_lockup  lockup;
1331 };
1332
1333 struct cayman_asic {
1334         unsigned max_shader_engines;
1335         unsigned max_pipes_per_simd;
1336         unsigned max_tile_pipes;
1337         unsigned max_simds_per_se;
1338         unsigned max_backends_per_se;
1339         unsigned max_texture_channel_caches;
1340         unsigned max_gprs;
1341         unsigned max_threads;
1342         unsigned max_gs_threads;
1343         unsigned max_stack_entries;
1344         unsigned sx_num_of_sets;
1345         unsigned sx_max_export_size;
1346         unsigned sx_max_export_pos_size;
1347         unsigned sx_max_export_smx_size;
1348         unsigned max_hw_contexts;
1349         unsigned sq_num_cf_insts;
1350         unsigned sc_prim_fifo_size;
1351         unsigned sc_hiz_tile_fifo_size;
1352         unsigned sc_earlyz_tile_fifo_size;
1353
1354         unsigned num_shader_engines;
1355         unsigned num_shader_pipes_per_simd;
1356         unsigned num_tile_pipes;
1357         unsigned num_simds_per_se;
1358         unsigned num_backends_per_se;
1359         unsigned backend_disable_mask_per_asic;
1360         unsigned backend_map;
1361         unsigned num_texture_channel_caches;
1362         unsigned mem_max_burst_length_bytes;
1363         unsigned mem_row_size_in_kb;
1364         unsigned shader_engine_tile_size;
1365         unsigned num_gpus;
1366         unsigned multi_gpu_tile_size;
1367
1368         unsigned tile_config;
1369         struct r100_gpu_lockup  lockup;
1370 };
1371
1372 union radeon_asic_config {
1373         struct r300_asic        r300;
1374         struct r100_asic        r100;
1375         struct r600_asic        r600;
1376         struct rv770_asic       rv770;
1377         struct evergreen_asic   evergreen;
1378         struct cayman_asic      cayman;
1379 };
1380
1381 /*
1382  * asic initizalization from radeon_asic.c
1383  */
1384 void radeon_agp_disable(struct radeon_device *rdev);
1385 int radeon_asic_init(struct radeon_device *rdev);
1386
1387
1388 /*
1389  * IOCTL.
1390  */
1391 int radeon_gem_info_ioctl(struct drm_device *dev, void *data,
1392                           struct drm_file *filp);
1393 int radeon_gem_create_ioctl(struct drm_device *dev, void *data,
1394                             struct drm_file *filp);
1395 int radeon_gem_pin_ioctl(struct drm_device *dev, void *data,
1396                          struct drm_file *file_priv);
1397 int radeon_gem_unpin_ioctl(struct drm_device *dev, void *data,
1398                            struct drm_file *file_priv);
1399 int radeon_gem_pwrite_ioctl(struct drm_device *dev, void *data,
1400                             struct drm_file *file_priv);
1401 int radeon_gem_pread_ioctl(struct drm_device *dev, void *data,
1402                            struct drm_file *file_priv);
1403 int radeon_gem_set_domain_ioctl(struct drm_device *dev, void *data,
1404                                 struct drm_file *filp);
1405 int radeon_gem_mmap_ioctl(struct drm_device *dev, void *data,
1406                           struct drm_file *filp);
1407 int radeon_gem_busy_ioctl(struct drm_device *dev, void *data,
1408                           struct drm_file *filp);
1409 int radeon_gem_wait_idle_ioctl(struct drm_device *dev, void *data,
1410                               struct drm_file *filp);
1411 int radeon_gem_va_ioctl(struct drm_device *dev, void *data,
1412                           struct drm_file *filp);
1413 int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
1414 int radeon_gem_set_tiling_ioctl(struct drm_device *dev, void *data,
1415                                 struct drm_file *filp);
1416 int radeon_gem_get_tiling_ioctl(struct drm_device *dev, void *data,
1417                                 struct drm_file *filp);
1418
1419 /* VRAM scratch page for HDP bug, default vram page */
1420 struct r600_vram_scratch {
1421         struct radeon_bo                *robj;
1422         volatile uint32_t               *ptr;
1423         u64                             gpu_addr;
1424 };
1425
1426
1427 /*
1428  * Core structure, functions and helpers.
1429  */
1430 typedef uint32_t (*radeon_rreg_t)(struct radeon_device*, uint32_t);
1431 typedef void (*radeon_wreg_t)(struct radeon_device*, uint32_t, uint32_t);
1432
1433 struct radeon_device {
1434         struct device                   *dev;
1435         struct drm_device               *ddev;
1436         struct pci_dev                  *pdev;
1437         /* ASIC */
1438         union radeon_asic_config        config;
1439         enum radeon_family              family;
1440         unsigned long                   flags;
1441         int                             usec_timeout;
1442         enum radeon_pll_errata          pll_errata;
1443         int                             num_gb_pipes;
1444         int                             num_z_pipes;
1445         int                             disp_priority;
1446         /* BIOS */
1447         uint8_t                         *bios;
1448         bool                            is_atom_bios;
1449         uint16_t                        bios_header_start;
1450         struct radeon_bo                *stollen_vga_memory;
1451         /* Register mmio */
1452         resource_size_t                 rmmio_base;
1453         resource_size_t                 rmmio_size;
1454         void __iomem                    *rmmio;
1455         radeon_rreg_t                   mc_rreg;
1456         radeon_wreg_t                   mc_wreg;
1457         radeon_rreg_t                   pll_rreg;
1458         radeon_wreg_t                   pll_wreg;
1459         uint32_t                        pcie_reg_mask;
1460         radeon_rreg_t                   pciep_rreg;
1461         radeon_wreg_t                   pciep_wreg;
1462         /* io port */
1463         void __iomem                    *rio_mem;
1464         resource_size_t                 rio_mem_size;
1465         struct radeon_clock             clock;
1466         struct radeon_mc                mc;
1467         struct radeon_gart              gart;
1468         struct radeon_mode_info         mode_info;
1469         struct radeon_scratch           scratch;
1470         struct radeon_mman              mman;
1471         rwlock_t                        fence_lock;
1472         struct radeon_fence_driver      fence_drv[RADEON_NUM_RINGS];
1473         struct radeon_semaphore_driver  semaphore_drv;
1474         struct radeon_ring              ring[RADEON_NUM_RINGS];
1475         struct radeon_ib_pool           ib_pool;
1476         struct radeon_irq               irq;
1477         struct radeon_asic              *asic;
1478         struct radeon_gem               gem;
1479         struct radeon_pm                pm;
1480         uint32_t                        bios_scratch[RADEON_BIOS_NUM_SCRATCH];
1481         struct radeon_mutex             cs_mutex;
1482         struct radeon_wb                wb;
1483         struct radeon_dummy_page        dummy_page;
1484         bool                            gpu_lockup;
1485         bool                            shutdown;
1486         bool                            suspend;
1487         bool                            need_dma32;
1488         bool                            accel_working;
1489         struct radeon_surface_reg surface_regs[RADEON_GEM_MAX_SURFACES];
1490         const struct firmware *me_fw;   /* all family ME firmware */
1491         const struct firmware *pfp_fw;  /* r6/700 PFP firmware */
1492         const struct firmware *rlc_fw;  /* r6/700 RLC firmware */
1493         const struct firmware *mc_fw;   /* NI MC firmware */
1494         struct r600_blit r600_blit;
1495         struct r600_vram_scratch vram_scratch;
1496         int msi_enabled; /* msi enabled */
1497         struct r600_ih ih; /* r6/700 interrupt ring */
1498         struct work_struct hotplug_work;
1499         int num_crtc; /* number of crtcs */
1500         struct mutex dc_hw_i2c_mutex; /* display controller hw i2c mutex */
1501         struct mutex vram_mutex;
1502
1503         /* audio stuff */
1504         bool                    audio_enabled;
1505         struct timer_list       audio_timer;
1506         int                     audio_channels;
1507         int                     audio_rate;
1508         int                     audio_bits_per_sample;
1509         uint8_t                 audio_status_bits;
1510         uint8_t                 audio_category_code;
1511
1512         struct notifier_block acpi_nb;
1513         /* only one userspace can use Hyperz features or CMASK at a time */
1514         struct drm_file *hyperz_filp;
1515         struct drm_file *cmask_filp;
1516         /* i2c buses */
1517         struct radeon_i2c_chan *i2c_bus[RADEON_MAX_I2C_BUS];
1518         /* debugfs */
1519         struct radeon_debugfs   debugfs[RADEON_DEBUGFS_MAX_COMPONENTS];
1520         unsigned                debugfs_count;
1521         /* virtual memory */
1522         struct radeon_vm_manager        vm_manager;
1523 };
1524
1525 int radeon_device_init(struct radeon_device *rdev,
1526                        struct drm_device *ddev,
1527                        struct pci_dev *pdev,
1528                        uint32_t flags);
1529 void radeon_device_fini(struct radeon_device *rdev);
1530 int radeon_gpu_wait_for_idle(struct radeon_device *rdev);
1531
1532 uint32_t r100_mm_rreg(struct radeon_device *rdev, uint32_t reg);
1533 void r100_mm_wreg(struct radeon_device *rdev, uint32_t reg, uint32_t v);
1534 u32 r100_io_rreg(struct radeon_device *rdev, u32 reg);
1535 void r100_io_wreg(struct radeon_device *rdev, u32 reg, u32 v);
1536
1537 /*
1538  * Cast helper
1539  */
1540 #define to_radeon_fence(p) ((struct radeon_fence *)(p))
1541
1542 /*
1543  * Registers read & write functions.
1544  */
1545 #define RREG8(reg) readb((rdev->rmmio) + (reg))
1546 #define WREG8(reg, v) writeb(v, (rdev->rmmio) + (reg))
1547 #define RREG16(reg) readw((rdev->rmmio) + (reg))
1548 #define WREG16(reg, v) writew(v, (rdev->rmmio) + (reg))
1549 #define RREG32(reg) r100_mm_rreg(rdev, (reg))
1550 #define DREG32(reg) printk(KERN_INFO "REGISTER: " #reg " : 0x%08X\n", r100_mm_rreg(rdev, (reg)))
1551 #define WREG32(reg, v) r100_mm_wreg(rdev, (reg), (v))
1552 #define REG_SET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
1553 #define REG_GET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
1554 #define RREG32_PLL(reg) rdev->pll_rreg(rdev, (reg))
1555 #define WREG32_PLL(reg, v) rdev->pll_wreg(rdev, (reg), (v))
1556 #define RREG32_MC(reg) rdev->mc_rreg(rdev, (reg))
1557 #define WREG32_MC(reg, v) rdev->mc_wreg(rdev, (reg), (v))
1558 #define RREG32_PCIE(reg) rv370_pcie_rreg(rdev, (reg))
1559 #define WREG32_PCIE(reg, v) rv370_pcie_wreg(rdev, (reg), (v))
1560 #define RREG32_PCIE_P(reg) rdev->pciep_rreg(rdev, (reg))
1561 #define WREG32_PCIE_P(reg, v) rdev->pciep_wreg(rdev, (reg), (v))
1562 #define WREG32_P(reg, val, mask)                                \
1563         do {                                                    \
1564                 uint32_t tmp_ = RREG32(reg);                    \
1565                 tmp_ &= (mask);                                 \
1566                 tmp_ |= ((val) & ~(mask));                      \
1567                 WREG32(reg, tmp_);                              \
1568         } while (0)
1569 #define WREG32_PLL_P(reg, val, mask)                            \
1570         do {                                                    \
1571                 uint32_t tmp_ = RREG32_PLL(reg);                \
1572                 tmp_ &= (mask);                                 \
1573                 tmp_ |= ((val) & ~(mask));                      \
1574                 WREG32_PLL(reg, tmp_);                          \
1575         } while (0)
1576 #define DREG32_SYS(sqf, rdev, reg) seq_printf((sqf), #reg " : 0x%08X\n", r100_mm_rreg((rdev), (reg)))
1577 #define RREG32_IO(reg) r100_io_rreg(rdev, (reg))
1578 #define WREG32_IO(reg, v) r100_io_wreg(rdev, (reg), (v))
1579
1580 /*
1581  * Indirect registers accessor
1582  */
1583 static inline uint32_t rv370_pcie_rreg(struct radeon_device *rdev, uint32_t reg)
1584 {
1585         uint32_t r;
1586
1587         WREG32(RADEON_PCIE_INDEX, ((reg) & rdev->pcie_reg_mask));
1588         r = RREG32(RADEON_PCIE_DATA);
1589         return r;
1590 }
1591
1592 static inline void rv370_pcie_wreg(struct radeon_device *rdev, uint32_t reg, uint32_t v)
1593 {
1594         WREG32(RADEON_PCIE_INDEX, ((reg) & rdev->pcie_reg_mask));
1595         WREG32(RADEON_PCIE_DATA, (v));
1596 }
1597
1598 void r100_pll_errata_after_index(struct radeon_device *rdev);
1599
1600
1601 /*
1602  * ASICs helpers.
1603  */
1604 #define ASIC_IS_RN50(rdev) ((rdev->pdev->device == 0x515e) || \
1605                             (rdev->pdev->device == 0x5969))
1606 #define ASIC_IS_RV100(rdev) ((rdev->family == CHIP_RV100) || \
1607                 (rdev->family == CHIP_RV200) || \
1608                 (rdev->family == CHIP_RS100) || \
1609                 (rdev->family == CHIP_RS200) || \
1610                 (rdev->family == CHIP_RV250) || \
1611                 (rdev->family == CHIP_RV280) || \
1612                 (rdev->family == CHIP_RS300))
1613 #define ASIC_IS_R300(rdev) ((rdev->family == CHIP_R300)  ||     \
1614                 (rdev->family == CHIP_RV350) ||                 \
1615                 (rdev->family == CHIP_R350)  ||                 \
1616                 (rdev->family == CHIP_RV380) ||                 \
1617                 (rdev->family == CHIP_R420)  ||                 \
1618                 (rdev->family == CHIP_R423)  ||                 \
1619                 (rdev->family == CHIP_RV410) ||                 \
1620                 (rdev->family == CHIP_RS400) ||                 \
1621                 (rdev->family == CHIP_RS480))
1622 #define ASIC_IS_X2(rdev) ((rdev->ddev->pdev->device == 0x9441) || \
1623                 (rdev->ddev->pdev->device == 0x9443) || \
1624                 (rdev->ddev->pdev->device == 0x944B) || \
1625                 (rdev->ddev->pdev->device == 0x9506) || \
1626                 (rdev->ddev->pdev->device == 0x9509) || \
1627                 (rdev->ddev->pdev->device == 0x950F) || \
1628                 (rdev->ddev->pdev->device == 0x689C) || \
1629                 (rdev->ddev->pdev->device == 0x689D))
1630 #define ASIC_IS_AVIVO(rdev) ((rdev->family >= CHIP_RS600))
1631 #define ASIC_IS_DCE2(rdev) ((rdev->family == CHIP_RS600)  ||    \
1632                             (rdev->family == CHIP_RS690)  ||    \
1633                             (rdev->family == CHIP_RS740)  ||    \
1634                             (rdev->family >= CHIP_R600))
1635 #define ASIC_IS_DCE3(rdev) ((rdev->family >= CHIP_RV620))
1636 #define ASIC_IS_DCE32(rdev) ((rdev->family >= CHIP_RV730))
1637 #define ASIC_IS_DCE4(rdev) ((rdev->family >= CHIP_CEDAR))
1638 #define ASIC_IS_DCE41(rdev) ((rdev->family >= CHIP_PALM) && \
1639                              (rdev->flags & RADEON_IS_IGP))
1640 #define ASIC_IS_DCE5(rdev) ((rdev->family >= CHIP_BARTS))
1641 #define ASIC_IS_DCE6(rdev) ((rdev->family >= CHIP_TAHITI))
1642
1643 /*
1644  * BIOS helpers.
1645  */
1646 #define RBIOS8(i) (rdev->bios[i])
1647 #define RBIOS16(i) (RBIOS8(i) | (RBIOS8((i)+1) << 8))
1648 #define RBIOS32(i) ((RBIOS16(i)) | (RBIOS16((i)+2) << 16))
1649
1650 int radeon_combios_init(struct radeon_device *rdev);
1651 void radeon_combios_fini(struct radeon_device *rdev);
1652 int radeon_atombios_init(struct radeon_device *rdev);
1653 void radeon_atombios_fini(struct radeon_device *rdev);
1654
1655
1656 /*
1657  * RING helpers.
1658  */
1659 #if DRM_DEBUG_CODE == 0
1660 static inline void radeon_ring_write(struct radeon_ring *ring, uint32_t v)
1661 {
1662         ring->ring[ring->wptr++] = v;
1663         ring->wptr &= ring->ptr_mask;
1664         ring->count_dw--;
1665         ring->ring_free_dw--;
1666 }
1667 #else
1668 /* With debugging this is just too big to inline */
1669 void radeon_ring_write(struct radeon_ring *ring, uint32_t v);
1670 #endif
1671
1672 /*
1673  * ASICs macro.
1674  */
1675 #define radeon_init(rdev) (rdev)->asic->init((rdev))
1676 #define radeon_fini(rdev) (rdev)->asic->fini((rdev))
1677 #define radeon_resume(rdev) (rdev)->asic->resume((rdev))
1678 #define radeon_suspend(rdev) (rdev)->asic->suspend((rdev))
1679 #define radeon_cs_parse(rdev, r, p) (rdev)->asic->ring[(r)].cs_parse((p))
1680 #define radeon_vga_set_state(rdev, state) (rdev)->asic->vga_set_state((rdev), (state))
1681 #define radeon_gpu_is_lockup(rdev, cp) (rdev)->asic->gpu_is_lockup((rdev), (cp))
1682 #define radeon_asic_reset(rdev) (rdev)->asic->asic_reset((rdev))
1683 #define radeon_gart_tlb_flush(rdev) (rdev)->asic->gart.tlb_flush((rdev))
1684 #define radeon_gart_set_page(rdev, i, p) (rdev)->asic->gart.set_page((rdev), (i), (p))
1685 #define radeon_ring_start(rdev, r, cp) (rdev)->asic->ring[(r)].ring_start((rdev), (cp))
1686 #define radeon_ring_test(rdev, r, cp) (rdev)->asic->ring[(r)].ring_test((rdev), (cp))
1687 #define radeon_ib_test(rdev, r, cp) (rdev)->asic->ring[(r)].ib_test((rdev), (cp))
1688 #define radeon_ring_ib_execute(rdev, r, ib) (rdev)->asic->ring[(r)].ib_execute((rdev), (ib))
1689 #define radeon_ring_ib_parse(rdev, r, ib) (rdev)->asic->ring[(r)].ib_parse((rdev), (ib))
1690 #define radeon_irq_set(rdev) (rdev)->asic->irq.set((rdev))
1691 #define radeon_irq_process(rdev) (rdev)->asic->irq.process((rdev))
1692 #define radeon_get_vblank_counter(rdev, crtc) (rdev)->asic->display.get_vblank_counter((rdev), (crtc))
1693 #define radeon_fence_ring_emit(rdev, r, fence) (rdev)->asic->ring[(r)].emit_fence((rdev), (fence))
1694 #define radeon_semaphore_ring_emit(rdev, r, cp, semaphore, emit_wait) (rdev)->asic->ring[(r)].emit_semaphore((rdev), (cp), (semaphore), (emit_wait))
1695 #define radeon_copy_blit(rdev, s, d, np, f) (rdev)->asic->copy.blit((rdev), (s), (d), (np), (f))
1696 #define radeon_copy_dma(rdev, s, d, np, f) (rdev)->asic->copy.dma((rdev), (s), (d), (np), (f))
1697 #define radeon_copy(rdev, s, d, np, f) (rdev)->asic->copy.copy((rdev), (s), (d), (np), (f))
1698 #define radeon_copy_blit_ring_index(rdev) (rdev)->asic->copy.blit_ring_index
1699 #define radeon_copy_dma_ring_index(rdev) (rdev)->asic->copy.dma_ring_index
1700 #define radeon_copy_ring_index(rdev) (rdev)->asic->copy.copy_ring_index
1701 #define radeon_get_engine_clock(rdev) (rdev)->asic->pm.get_engine_clock((rdev))
1702 #define radeon_set_engine_clock(rdev, e) (rdev)->asic->pm.set_engine_clock((rdev), (e))
1703 #define radeon_get_memory_clock(rdev) (rdev)->asic->pm.get_memory_clock((rdev))
1704 #define radeon_set_memory_clock(rdev, e) (rdev)->asic->pm.set_memory_clock((rdev), (e))
1705 #define radeon_get_pcie_lanes(rdev) (rdev)->asic->pm.get_pcie_lanes((rdev))
1706 #define radeon_set_pcie_lanes(rdev, l) (rdev)->asic->pm.set_pcie_lanes((rdev), (l))
1707 #define radeon_set_clock_gating(rdev, e) (rdev)->asic->pm.set_clock_gating((rdev), (e))
1708 #define radeon_set_surface_reg(rdev, r, f, p, o, s) ((rdev)->asic->surface.set_reg((rdev), (r), (f), (p), (o), (s)))
1709 #define radeon_clear_surface_reg(rdev, r) ((rdev)->asic->surface.clear_reg((rdev), (r)))
1710 #define radeon_bandwidth_update(rdev) (rdev)->asic->display.bandwidth_update((rdev))
1711 #define radeon_hpd_init(rdev) (rdev)->asic->hpd.init((rdev))
1712 #define radeon_hpd_fini(rdev) (rdev)->asic->hpd.fini((rdev))
1713 #define radeon_hpd_sense(rdev, h) (rdev)->asic->hpd.sense((rdev), (h))
1714 #define radeon_hpd_set_polarity(rdev, h) (rdev)->asic->hpd.set_polarity((rdev), (h))
1715 #define radeon_gui_idle(rdev) (rdev)->asic->gui_idle((rdev))
1716 #define radeon_pm_misc(rdev) (rdev)->asic->pm.misc((rdev))
1717 #define radeon_pm_prepare(rdev) (rdev)->asic->pm.prepare((rdev))
1718 #define radeon_pm_finish(rdev) (rdev)->asic->pm.finish((rdev))
1719 #define radeon_pm_init_profile(rdev) (rdev)->asic->pm.init_profile((rdev))
1720 #define radeon_pm_get_dynpm_state(rdev) (rdev)->asic->pm.get_dynpm_state((rdev))
1721 #define radeon_pre_page_flip(rdev, crtc) rdev->asic->pflip.pre_page_flip((rdev), (crtc))
1722 #define radeon_page_flip(rdev, crtc, base) rdev->asic->pflip.page_flip((rdev), (crtc), (base))
1723 #define radeon_post_page_flip(rdev, crtc) rdev->asic->pflip.post_page_flip((rdev), (crtc))
1724 #define radeon_wait_for_vblank(rdev, crtc) rdev->asic->display.wait_for_vblank((rdev), (crtc))
1725 #define radeon_mc_wait_for_idle(rdev) rdev->asic->mc_wait_for_idle((rdev))
1726
1727 /* Common functions */
1728 /* AGP */
1729 extern int radeon_gpu_reset(struct radeon_device *rdev);
1730 extern void radeon_agp_disable(struct radeon_device *rdev);
1731 extern int radeon_modeset_init(struct radeon_device *rdev);
1732 extern void radeon_modeset_fini(struct radeon_device *rdev);
1733 extern bool radeon_card_posted(struct radeon_device *rdev);
1734 extern void radeon_update_bandwidth_info(struct radeon_device *rdev);
1735 extern void radeon_update_display_priority(struct radeon_device *rdev);
1736 extern bool radeon_boot_test_post_card(struct radeon_device *rdev);
1737 extern void radeon_scratch_init(struct radeon_device *rdev);
1738 extern void radeon_wb_fini(struct radeon_device *rdev);
1739 extern int radeon_wb_init(struct radeon_device *rdev);
1740 extern void radeon_wb_disable(struct radeon_device *rdev);
1741 extern void radeon_surface_init(struct radeon_device *rdev);
1742 extern int radeon_cs_parser_init(struct radeon_cs_parser *p, void *data);
1743 extern void radeon_legacy_set_clock_gating(struct radeon_device *rdev, int enable);
1744 extern void radeon_atom_set_clock_gating(struct radeon_device *rdev, int enable);
1745 extern void radeon_ttm_placement_from_domain(struct radeon_bo *rbo, u32 domain);
1746 extern bool radeon_ttm_bo_is_radeon_bo(struct ttm_buffer_object *bo);
1747 extern void radeon_vram_location(struct radeon_device *rdev, struct radeon_mc *mc, u64 base);
1748 extern void radeon_gtt_location(struct radeon_device *rdev, struct radeon_mc *mc);
1749 extern int radeon_resume_kms(struct drm_device *dev);
1750 extern int radeon_suspend_kms(struct drm_device *dev, pm_message_t state);
1751 extern void radeon_ttm_set_active_vram_size(struct radeon_device *rdev, u64 size);
1752
1753 /*
1754  * vm
1755  */
1756 int radeon_vm_manager_init(struct radeon_device *rdev);
1757 void radeon_vm_manager_fini(struct radeon_device *rdev);
1758 int radeon_vm_manager_start(struct radeon_device *rdev);
1759 int radeon_vm_manager_suspend(struct radeon_device *rdev);
1760 int radeon_vm_init(struct radeon_device *rdev, struct radeon_vm *vm);
1761 void radeon_vm_fini(struct radeon_device *rdev, struct radeon_vm *vm);
1762 int radeon_vm_bind(struct radeon_device *rdev, struct radeon_vm *vm);
1763 void radeon_vm_unbind(struct radeon_device *rdev, struct radeon_vm *vm);
1764 int radeon_vm_bo_update_pte(struct radeon_device *rdev,
1765                             struct radeon_vm *vm,
1766                             struct radeon_bo *bo,
1767                             struct ttm_mem_reg *mem);
1768 void radeon_vm_bo_invalidate(struct radeon_device *rdev,
1769                              struct radeon_bo *bo);
1770 int radeon_vm_bo_add(struct radeon_device *rdev,
1771                      struct radeon_vm *vm,
1772                      struct radeon_bo *bo,
1773                      uint64_t offset,
1774                      uint32_t flags);
1775 int radeon_vm_bo_rmv(struct radeon_device *rdev,
1776                      struct radeon_vm *vm,
1777                      struct radeon_bo *bo);
1778
1779
1780 /*
1781  * R600 vram scratch functions
1782  */
1783 int r600_vram_scratch_init(struct radeon_device *rdev);
1784 void r600_vram_scratch_fini(struct radeon_device *rdev);
1785
1786 /*
1787  * r600 cs checking helper
1788  */
1789 unsigned r600_mip_minify(unsigned size, unsigned level);
1790 bool r600_fmt_is_valid_color(u32 format);
1791 bool r600_fmt_is_valid_texture(u32 format, enum radeon_family family);
1792 int r600_fmt_get_blocksize(u32 format);
1793 int r600_fmt_get_nblocksx(u32 format, u32 w);
1794 int r600_fmt_get_nblocksy(u32 format, u32 h);
1795
1796 /*
1797  * r600 functions used by radeon_encoder.c
1798  */
1799 extern void r600_hdmi_enable(struct drm_encoder *encoder);
1800 extern void r600_hdmi_disable(struct drm_encoder *encoder);
1801 extern void r600_hdmi_setmode(struct drm_encoder *encoder, struct drm_display_mode *mode);
1802
1803 extern int ni_init_microcode(struct radeon_device *rdev);
1804 extern int ni_mc_load_microcode(struct radeon_device *rdev);
1805
1806 /* radeon_acpi.c */ 
1807 #if defined(CONFIG_ACPI) 
1808 extern int radeon_acpi_init(struct radeon_device *rdev); 
1809 #else 
1810 static inline int radeon_acpi_init(struct radeon_device *rdev) { return 0; } 
1811 #endif 
1812
1813 #include "radeon_object.h"
1814
1815 #endif