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