Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
radeon.h
Go to the documentation of this file.
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_IB_OFFSET (1 << 20)
127 #define RADEON_VA_RESERVED_SIZE (8 << 20)
128 #define RADEON_IB_VM_MAX_SIZE (64 << 10)
129 
130 /*
131  * Errata workarounds.
132  */
134  CHIP_ERRATA_R300_CG = 0x00000001,
137 };
138 
139 
140 struct radeon_device;
141 
142 
143 /*
144  * BIOS.
145  */
146 bool radeon_get_bios(struct radeon_device *rdev);
147 
148 /*
149  * Dummy page
150  */
152  struct page *page;
154 };
157 
158 
159 /*
160  * Clocks
161  */
162 struct radeon_clock {
166  struct radeon_pll spll;
167  struct radeon_pll mpll;
168  /* 10 Khz units */
174 };
175 
176 /*
177  * Power management
178  */
179 int radeon_pm_init(struct radeon_device *rdev);
180 void radeon_pm_fini(struct radeon_device *rdev);
182 void radeon_pm_suspend(struct radeon_device *rdev);
183 void radeon_pm_resume(struct radeon_device *rdev);
186 void radeon_atom_set_voltage(struct radeon_device *rdev, u16 voltage_level, u8 voltage_type);
187 void rs690_pm_info(struct radeon_device *rdev);
188 extern int rv6xx_get_temp(struct radeon_device *rdev);
189 extern int rv770_get_temp(struct radeon_device *rdev);
190 extern int evergreen_get_temp(struct radeon_device *rdev);
191 extern int sumo_get_temp(struct radeon_device *rdev);
192 extern int si_get_temp(struct radeon_device *rdev);
193 extern void evergreen_tiling_fields(unsigned tiling_flags, unsigned *bankw,
194  unsigned *bankh, unsigned *mtaspect,
195  unsigned *tile_split);
196 
197 /*
198  * Fences.
199  */
203  volatile uint32_t *cpu_addr;
204  /* sync_seq is protected by ring emission lock */
207  unsigned long last_activity;
209 };
210 
211 struct radeon_fence {
213  struct kref kref;
214  /* protected by radeon_fence.lock */
216  /* RB, DMA, etc. */
217  unsigned ring;
218 };
219 
223 int radeon_fence_emit(struct radeon_device *rdev, struct radeon_fence **fence, int ring);
224 void radeon_fence_process(struct radeon_device *rdev, int ring);
225 bool radeon_fence_signaled(struct radeon_fence *fence);
226 int radeon_fence_wait(struct radeon_fence *fence, bool interruptible);
230  struct radeon_fence **fences,
231  bool intr);
232 struct radeon_fence *radeon_fence_ref(struct radeon_fence *fence);
233 void radeon_fence_unref(struct radeon_fence **fence);
234 unsigned radeon_fence_count_emitted(struct radeon_device *rdev, int ring);
235 bool radeon_fence_need_sync(struct radeon_fence *fence, int ring);
236 void radeon_fence_note_sync(struct radeon_fence *fence, int ring);
237 static inline struct radeon_fence *radeon_fence_later(struct radeon_fence *a,
238  struct radeon_fence *b)
239 {
240  if (!a) {
241  return b;
242  }
243 
244  if (!b) {
245  return a;
246  }
247 
248  BUG_ON(a->ring != b->ring);
249 
250  if (a->seq > b->seq) {
251  return a;
252  } else {
253  return b;
254  }
255 }
256 
257 static inline bool radeon_fence_is_earlier(struct radeon_fence *a,
258  struct radeon_fence *b)
259 {
260  if (!a) {
261  return false;
262  }
263 
264  if (!b) {
265  return true;
266  }
267 
268  BUG_ON(a->ring != b->ring);
269 
270  return a->seq < b->seq;
271 }
272 
273 /*
274  * Tiling registers
275  */
277  struct radeon_bo *bo;
278 };
279 
280 #define RADEON_GEM_MAX_SURFACES 8
281 
282 /*
283  * TTM.
284  */
285 struct radeon_mman {
291 };
292 
293 /* bo virtual address in a specific vm */
294 struct radeon_bo_va {
295  /* protected by bo being reserved */
300  bool valid;
301  unsigned ref_count;
302 
303  /* protected by vm mutex */
305 
306  /* constant after initialization */
307  struct radeon_vm *vm;
308  struct radeon_bo *bo;
309 };
310 
311 struct radeon_bo {
312  /* Protected by gem.mutex */
313  struct list_head list;
314  /* Protected by tbo.reserved */
319  unsigned pin_count;
320  void *kptr;
324  /* list of all virtual address to which this bo
325  * is associated to
326  */
327  struct list_head va;
328  /* Constant after initialization */
330  struct drm_gem_object gem_base;
331 
334 };
335 #define gem_to_radeon_bo(gobj) container_of((gobj), struct radeon_bo, gem_base)
336 
339  struct radeon_bo *bo;
341  unsigned rdomain;
342  unsigned wdomain;
344 };
345 
346 /* sub-allocation manager, it has to be protected by another lock.
347  * By conception this is an helper for other part of the driver
348  * like the indirect buffer or semaphore, which both have their
349  * locking.
350  *
351  * Principe is simple, we keep a list of sub allocation in offset
352  * order (first entry has offset == 0, last entry has the highest
353  * offset).
354  *
355  * When allocating new object we first check if there is room at
356  * the end total_size - (last_object_offset + last_object_size) >=
357  * alloc_size. If so we allocate new object there.
358  *
359  * When there is not enough room at the end, we start waiting for
360  * each sub object until we reach object_offset+object_size >=
361  * alloc_size, this object then become the sub object we return.
362  *
363  * Alignment can't be bigger than page size.
364  *
365  * Hole are not considered for allocation to keep things simple.
366  * Assumption is that there won't be hole (all object on same
367  * alignment).
368  */
371  struct radeon_bo *bo;
372  struct list_head *hole;
374  struct list_head olist;
375  unsigned size;
377  void *cpu_ptr;
379 };
380 
381 struct radeon_sa_bo;
382 
383 /* sub-allocation buffer */
384 struct radeon_sa_bo {
385  struct list_head olist;
386  struct list_head flist;
388  unsigned soffset;
389  unsigned eoffset;
391 };
392 
393 /*
394  * GEM objects.
395  */
396 struct radeon_gem {
397  struct mutex mutex;
399 };
400 
401 int radeon_gem_init(struct radeon_device *rdev);
402 void radeon_gem_fini(struct radeon_device *rdev);
404  int alignment, int initial_domain,
405  bool discardable, bool kernel,
406  struct drm_gem_object **obj);
407 
408 int radeon_mode_dumb_create(struct drm_file *file_priv,
409  struct drm_device *dev,
410  struct drm_mode_create_dumb *args);
411 int radeon_mode_dumb_mmap(struct drm_file *filp,
412  struct drm_device *dev,
413  uint32_t handle, uint64_t *offset_p);
414 int radeon_mode_dumb_destroy(struct drm_file *file_priv,
415  struct drm_device *dev,
416  uint32_t handle);
417 
418 /*
419  * Semaphores.
420  */
421 /* everything here is constant */
424  signed waiters;
426 };
427 
429  struct radeon_semaphore **semaphore);
431  struct radeon_semaphore *semaphore);
433  struct radeon_semaphore *semaphore);
435  struct radeon_semaphore *semaphore,
436  int signaler, int waiter);
438  struct radeon_semaphore **semaphore,
439  struct radeon_fence *fence);
440 
441 /*
442  * GART structures, functions & helpers
443  */
444 struct radeon_mc;
445 
446 #define RADEON_GPU_PAGE_SIZE 4096
447 #define RADEON_GPU_PAGE_MASK (RADEON_GPU_PAGE_SIZE - 1)
448 #define RADEON_GPU_PAGE_SHIFT 12
449 #define RADEON_GPU_PAGE_ALIGN(a) (((a) + RADEON_GPU_PAGE_MASK) & ~RADEON_GPU_PAGE_MASK)
450 
451 struct radeon_gart {
453  struct radeon_bo *robj;
454  void *ptr;
455  unsigned num_gpu_pages;
456  unsigned num_cpu_pages;
457  unsigned table_size;
458  struct page **pages;
460  bool ready;
461 };
462 
469 int radeon_gart_init(struct radeon_device *rdev);
470 void radeon_gart_fini(struct radeon_device *rdev);
471 void radeon_gart_unbind(struct radeon_device *rdev, unsigned offset,
472  int pages);
473 int radeon_gart_bind(struct radeon_device *rdev, unsigned offset,
474  int pages, struct page **pagelist,
477 
478 
479 /*
480  * GPU MC structures, functions & helpers
481  */
482 struct radeon_mc {
486  /* for some chips with <= 32MB we need to lie
487  * about vram size near mc fb location */
495  unsigned vram_width;
501 };
502 
505 
506 /*
507  * GPU scratch registers structures, functions & helpers
508  */
510  unsigned num_reg;
512  bool free[32];
514 };
515 
518 
519 
520 /*
521  * IRQS.
522  */
523 
527  int crtc_id;
529  struct drm_pending_vblank_event *event;
532 };
533 
537 };
538 
547 };
548 
568 };
569 
574 };
575 
576 #define RADEON_MAX_HPD_PINS 6
577 #define RADEON_MAX_CRTCS 6
578 #define RADEON_MAX_AFMT_BLOCKS 6
579 
580 struct radeon_irq {
581  bool installed;
590 };
591 
600 void radeon_irq_kms_enable_hpd(struct radeon_device *rdev, unsigned hpd_mask);
601 void radeon_irq_kms_disable_hpd(struct radeon_device *rdev, unsigned hpd_mask);
602 
603 /*
604  * CP & rings.
605  */
606 
607 struct radeon_ib {
612  int ring;
614  struct radeon_vm *vm;
618 };
619 
620 struct radeon_ring {
622  volatile uint32_t *ring;
623  unsigned rptr;
624  unsigned rptr_offs;
625  unsigned rptr_reg;
626  unsigned rptr_save_reg;
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;
640  bool ready;
645 };
646 
647 /*
648  * VM
649  */
650 
651 /* maximum number of VMIDs */
652 #define RADEON_NUM_VM 16
653 
654 /* defines number of bits in page table versus page directory,
655  * a page is 4KB so we have 12 bits offset, 9 bits in the page
656  * table and the remaining 19 bits are in the page directory */
657 #define RADEON_VM_BLOCK_SIZE 9
658 
659 /* number of entries in page table */
660 #define RADEON_VM_PTE_COUNT (1 << RADEON_VM_BLOCK_SIZE)
661 
662 struct radeon_vm {
663  struct list_head list;
664  struct list_head va;
665  unsigned id;
666 
667  /* contains the page directory */
670 
671  /* array of page tables, one for each page directory entry */
673 
674  struct mutex mutex;
675  /* last fence for cs using this vm */
677  /* last flush or NULL if we still need to flush */
679 };
680 
682  struct mutex lock;
687  /* number of VMIDs */
688  unsigned nvm;
689  /* vram base address for page table entry */
691  /* is vm enabled? */
692  bool enabled;
693 };
694 
695 /*
696  * file private structure
697  */
698 struct radeon_fpriv {
699  struct radeon_vm vm;
700 };
701 
702 /*
703  * R6xx+ IH ring
704  */
705 struct r600_ih {
707  volatile uint32_t *ring;
708  unsigned rptr;
709  unsigned ring_size;
713  bool enabled;
714 };
715 
718  int w, int h, u64 gpu_addr);
720  u32 sync_type, u32 size,
721  u64 mc_addr);
723  void (*set_vtx_resource)(struct radeon_device *rdev, u64 gpu_addr);
725  int format, int w, int h, int pitch,
726  u64 gpu_addr, u32 size);
727  void (*set_scissors)(struct radeon_device *rdev, int x1, int y1,
728  int x2, int y2);
731 };
732 
733 struct r600_blit {
736  int max_dim;
743 };
744 
745 /*
746  * SI RLC stuff
747  */
748 struct si_rlc {
749  /* for power gating */
752  /* for clear state */
755 };
756 
757 int radeon_ib_get(struct radeon_device *rdev, int ring,
758  struct radeon_ib *ib, struct radeon_vm *vm,
759  unsigned size);
760 void radeon_ib_free(struct radeon_device *rdev, struct radeon_ib *ib);
761 int radeon_ib_schedule(struct radeon_device *rdev, struct radeon_ib *ib,
762  struct radeon_ib *const_ib);
766 /* Ring access between begin & end cannot sleep */
768  struct radeon_ring *ring);
769 void radeon_ring_free_size(struct radeon_device *rdev, struct radeon_ring *cp);
770 int radeon_ring_alloc(struct radeon_device *rdev, struct radeon_ring *cp, unsigned ndw);
771 int radeon_ring_lock(struct radeon_device *rdev, struct radeon_ring *cp, unsigned ndw);
772 void radeon_ring_commit(struct radeon_device *rdev, struct radeon_ring *cp);
774 void radeon_ring_undo(struct radeon_ring *ring);
776 int radeon_ring_test(struct radeon_device *rdev, struct radeon_ring *cp);
780 unsigned radeon_ring_backup(struct radeon_device *rdev, struct radeon_ring *ring,
781  uint32_t **data);
783  unsigned size, uint32_t *data);
784 int radeon_ring_init(struct radeon_device *rdev, struct radeon_ring *cp, unsigned ring_size,
785  unsigned rptr_offs, unsigned rptr_reg, unsigned wptr_reg,
786  u32 ptr_reg_shift, u32 ptr_reg_mask, u32 nop);
787 void radeon_ring_fini(struct radeon_device *rdev, struct radeon_ring *cp);
788 
789 
790 /*
791  * CS.
792  */
794  struct drm_gem_object *gobj;
795  struct radeon_bo *robj;
799 };
800 
804  int kpage_idx[2];
810 };
811 
813  struct device *dev;
815  struct drm_file *filp;
816  /* chunks */
817  unsigned nchunks;
820  /* IB */
821  unsigned idx;
822  /* relocations */
823  unsigned nrelocs;
827  /* indices of various chunks */
832  struct radeon_ib ib;
834  void *track;
835  unsigned family;
840 };
841 
842 extern int radeon_cs_finish_pages(struct radeon_cs_parser *p);
843 extern u32 radeon_get_ib_value(struct radeon_cs_parser *p, int idx);
844 
846  unsigned idx;
847  unsigned type;
848  unsigned reg;
849  unsigned opcode;
850  int count;
851  unsigned one_reg_wr;
852 };
853 
855  struct radeon_cs_packet *pkt,
856  unsigned idx, unsigned reg);
858  struct radeon_cs_packet *pkt);
859 
860 
861 /*
862  * AGP
863  */
864 int radeon_agp_init(struct radeon_device *rdev);
865 void radeon_agp_resume(struct radeon_device *rdev);
867 void radeon_agp_fini(struct radeon_device *rdev);
868 
869 
870 /*
871  * Writeback
872  */
873 struct radeon_wb {
874  struct radeon_bo *wb_obj;
875  volatile uint32_t *wb;
877  bool enabled;
878  bool use_event;
879 };
880 
881 #define RADEON_WB_SCRATCH_OFFSET 0
882 #define RADEON_WB_RING0_NEXT_RPTR 256
883 #define RADEON_WB_CP_RPTR_OFFSET 1024
884 #define RADEON_WB_CP1_RPTR_OFFSET 1280
885 #define RADEON_WB_CP2_RPTR_OFFSET 1536
886 #define R600_WB_IH_WPTR_OFFSET 2048
887 #define R600_WB_EVENT_OFFSET 3072
888 
912 };
913 
920 };
927 };
928 
934 };
935 
942 };
943 
950 };
951 
952 #define PM_PROFILE_DEFAULT_IDX 0
953 #define PM_PROFILE_LOW_SH_IDX 1
954 #define PM_PROFILE_MID_SH_IDX 2
955 #define PM_PROFILE_HIGH_SH_IDX 3
956 #define PM_PROFILE_LOW_MH_IDX 4
957 #define PM_PROFILE_MID_MH_IDX 5
958 #define PM_PROFILE_HIGH_MH_IDX 6
959 #define PM_PROFILE_MAX 7
960 
966 };
967 
976 };
977 
980  /* gpio voltage */
982  u32 delay; /* delay in usec from voltage drop to sclk change */
983  bool active_high; /* voltage drop is active when bit is high */
984  /* VDDC voltage */
985  u8 vddc_id; /* index into vddc voltage table */
986  u8 vddci_id; /* index into vddci voltage table */
988  /* r6xx+ sw */
990  /* evergreen+ vddci */
992 };
993 
994 /* clock mode flags */
995 #define RADEON_PM_MODE_NO_DISPLAY (1 << 0)
996 
998  /* memory clock */
1000  /* engine clock */
1002  /* voltage info */
1004  /* standardized clock flags */
1006 };
1007 
1008 /* state flags */
1009 #define RADEON_PM_STATE_SINGLE_DISPLAY_ONLY (1 << 0)
1010 
1014  /* number of valid clock modes in this power state */
1017  /* standardized state flags */
1019  u32 misc; /* vbios specific flags */
1020  u32 misc2; /* vbios specific flags */
1021  int pcie_lanes; /* pcie lanes */
1022 };
1023 
1024 /*
1025  * Some modes are overclocked by very low value, accept them
1026  */
1027 #define RADEON_MODE_OVERCLOCK_MARGIN 500 /* 5 MHz */
1028 
1029 struct radeon_pm {
1030  struct mutex mutex;
1031  /* write locked while reprogramming mclk */
1050  /* number of valid power states */
1066  /* selected pm method */
1068  /* dynpm power management */
1072  unsigned long dynpm_action_timeout;
1075  /* profile-based power management */
1079  /* internal thermal controller on rv6xx+ */
1082 };
1083 
1085  enum radeon_pm_state_type ps_type,
1086  int instance);
1087 
1088 struct r600_audio {
1090  int rate;
1094 };
1095 
1096 /*
1097  * Benchmarking
1098  */
1099 void radeon_benchmark(struct radeon_device *rdev, int test_number);
1100 
1101 
1102 /*
1103  * Testing
1104  */
1105 void radeon_test_moves(struct radeon_device *rdev);
1107  struct radeon_ring *cpA,
1108  struct radeon_ring *cpB);
1109 void radeon_test_syncing(struct radeon_device *rdev);
1110 
1111 
1112 /*
1113  * Debugfs
1114  */
1116  struct drm_info_list *files;
1117  unsigned num_files;
1118 };
1119 
1121  struct drm_info_list *files,
1122  unsigned nfiles);
1124 
1125 
1126 /*
1127  * ASIC specific functions.
1128  */
1129 struct radeon_asic {
1136  /* ioctl hw specific callback. Some hw might want to perform special
1137  * operation on specific ioctl. For instance on wait idle some hw
1138  * might want to perform and HDP flush through MMIO as it seems that
1139  * some R6XX/R7XX hw doesn't take HDP flush into account if programmed
1140  * through ring.
1141  */
1143  /* check if 3D engine is idle */
1145  /* wait for mc_idle */
1147  /* gart */
1148  struct {
1151  } gart;
1152  struct {
1153  int (*init)(struct radeon_device *rdev);
1154  void (*fini)(struct radeon_device *rdev);
1155 
1158  uint64_t addr, unsigned count,
1159  uint32_t incr, uint32_t flags);
1160  } vm;
1161  /* ring specific callbacks */
1162  struct {
1163  void (*ib_execute)(struct radeon_device *rdev, struct radeon_ib *ib);
1164  int (*ib_parse)(struct radeon_device *rdev, struct radeon_ib *ib);
1165  void (*emit_fence)(struct radeon_device *rdev, struct radeon_fence *fence);
1167  struct radeon_semaphore *semaphore, bool emit_wait);
1171  int (*ib_test)(struct radeon_device *rdev, struct radeon_ring *cp);
1173  void (*vm_flush)(struct radeon_device *rdev, int ridx, struct radeon_vm *vm);
1175  /* irqs */
1176  struct {
1177  int (*set)(struct radeon_device *rdev);
1179  } irq;
1180  /* displays */
1181  struct {
1182  /* display watermarks */
1184  /* get frame count */
1186  /* wait for vblank */
1188  /* set backlight level */
1190  /* get backlight level */
1192  } display;
1193  /* copy functions for bo handling */
1194  struct {
1196  uint64_t src_offset,
1197  uint64_t dst_offset,
1198  unsigned num_gpu_pages,
1199  struct radeon_fence **fence);
1202  uint64_t src_offset,
1203  uint64_t dst_offset,
1204  unsigned num_gpu_pages,
1205  struct radeon_fence **fence);
1207  /* method used for bo copy */
1209  uint64_t src_offset,
1210  uint64_t dst_offset,
1211  unsigned num_gpu_pages,
1212  struct radeon_fence **fence);
1213  /* ring used for bo copies */
1215  } copy;
1216  /* surfaces */
1217  struct {
1218  int (*set_reg)(struct radeon_device *rdev, int reg,
1219  uint32_t tiling_flags, uint32_t pitch,
1220  uint32_t offset, uint32_t obj_size);
1222  } surface;
1223  /* hotplug detect */
1224  struct {
1226  void (*fini)(struct radeon_device *rdev);
1229  } hpd;
1230  /* power management */
1231  struct {
1244  } pm;
1245  /* pageflipping */
1246  struct {
1248  u32 (*page_flip)(struct radeon_device *rdev, int crtc, u64 crtc_base);
1250  } pflip;
1251 };
1252 
1253 /*
1254  * Asic structures
1255  */
1256 struct r100_asic {
1257  const unsigned *reg_safe_bm;
1260 };
1261 
1262 struct r300_asic {
1263  const unsigned *reg_safe_bm;
1267 };
1268 
1269 struct r600_asic {
1270  unsigned max_pipes;
1271  unsigned max_tile_pipes;
1272  unsigned max_simds;
1273  unsigned max_backends;
1274  unsigned max_gprs;
1275  unsigned max_threads;
1278  unsigned max_gs_threads;
1283  unsigned tiling_nbanks;
1284  unsigned tiling_npipes;
1286  unsigned tile_config;
1287  unsigned backend_map;
1288 };
1289 
1290 struct rv770_asic {
1291  unsigned max_pipes;
1292  unsigned max_tile_pipes;
1293  unsigned max_simds;
1294  unsigned max_backends;
1295  unsigned max_gprs;
1296  unsigned max_threads;
1299  unsigned max_gs_threads;
1304  unsigned sx_num_of_sets;
1308  unsigned tiling_nbanks;
1309  unsigned tiling_npipes;
1311  unsigned tile_config;
1312  unsigned backend_map;
1313 };
1314 
1316  unsigned num_ses;
1317  unsigned max_pipes;
1318  unsigned max_tile_pipes;
1319  unsigned max_simds;
1320  unsigned max_backends;
1321  unsigned max_gprs;
1322  unsigned max_threads;
1325  unsigned max_gs_threads;
1330  unsigned sx_num_of_sets;
1334  unsigned tiling_nbanks;
1335  unsigned tiling_npipes;
1337  unsigned tile_config;
1338  unsigned backend_map;
1339 };
1340 
1341 struct cayman_asic {
1344  unsigned max_tile_pipes;
1348  unsigned max_gprs;
1349  unsigned max_threads;
1350  unsigned max_gs_threads;
1352  unsigned sx_num_of_sets;
1361 
1364  unsigned num_tile_pipes;
1368  unsigned backend_map;
1373  unsigned num_gpus;
1375 
1376  unsigned tile_config;
1377 };
1378 
1379 struct si_asic {
1381  unsigned max_tile_pipes;
1382  unsigned max_cu_per_sh;
1383  unsigned max_sh_per_se;
1386  unsigned max_gprs;
1387  unsigned max_gs_threads;
1393 
1394  unsigned num_tile_pipes;
1397  unsigned backend_map;
1402  unsigned num_gpus;
1404 
1405  unsigned tile_config;
1406 };
1407 
1409  struct r300_asic r300;
1410  struct r100_asic r100;
1411  struct r600_asic r600;
1415  struct si_asic si;
1416 };
1417 
1418 /*
1419  * asic initizalization from radeon_asic.c
1420  */
1421 void radeon_agp_disable(struct radeon_device *rdev);
1422 int radeon_asic_init(struct radeon_device *rdev);
1423 
1424 
1425 /*
1426  * IOCTL.
1427  */
1428 int radeon_gem_info_ioctl(struct drm_device *dev, void *data,
1429  struct drm_file *filp);
1430 int radeon_gem_create_ioctl(struct drm_device *dev, void *data,
1431  struct drm_file *filp);
1432 int radeon_gem_pin_ioctl(struct drm_device *dev, void *data,
1433  struct drm_file *file_priv);
1434 int radeon_gem_unpin_ioctl(struct drm_device *dev, void *data,
1435  struct drm_file *file_priv);
1436 int radeon_gem_pwrite_ioctl(struct drm_device *dev, void *data,
1437  struct drm_file *file_priv);
1438 int radeon_gem_pread_ioctl(struct drm_device *dev, void *data,
1439  struct drm_file *file_priv);
1440 int radeon_gem_set_domain_ioctl(struct drm_device *dev, void *data,
1441  struct drm_file *filp);
1442 int radeon_gem_mmap_ioctl(struct drm_device *dev, void *data,
1443  struct drm_file *filp);
1444 int radeon_gem_busy_ioctl(struct drm_device *dev, void *data,
1445  struct drm_file *filp);
1446 int radeon_gem_wait_idle_ioctl(struct drm_device *dev, void *data,
1447  struct drm_file *filp);
1448 int radeon_gem_va_ioctl(struct drm_device *dev, void *data,
1449  struct drm_file *filp);
1450 int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
1451 int radeon_gem_set_tiling_ioctl(struct drm_device *dev, void *data,
1452  struct drm_file *filp);
1453 int radeon_gem_get_tiling_ioctl(struct drm_device *dev, void *data,
1454  struct drm_file *filp);
1455 
1456 /* VRAM scratch page for HDP bug, default vram page */
1458  struct radeon_bo *robj;
1459  volatile uint32_t *ptr;
1461 };
1462 
1463 /*
1464  * ACPI
1465  */
1467  bool enabled;
1469 };
1470 
1481 };
1482 
1494 };
1495 
1496 struct radeon_atif {
1501 };
1502 
1508 };
1509 
1510 struct radeon_atcs {
1512 };
1513 
1514 /*
1515  * Core structure, functions and helpers.
1516  */
1519 
1521  struct device *dev;
1522  struct drm_device *ddev;
1523  struct pci_dev *pdev;
1525  /* ASIC */
1528  unsigned long flags;
1534  /* BIOS */
1539  /* Register mmio */
1547  uint32_t pcie_reg_mask;
1550  /* io port */
1554  struct radeon_mc mc;
1565  struct radeon_irq irq;
1567  struct radeon_gem gem;
1568  struct radeon_pm pm;
1570  struct radeon_wb wb;
1572  bool shutdown;
1573  bool suspend;
1577  const struct firmware *me_fw; /* all family ME firmware */
1578  const struct firmware *pfp_fw; /* r6/700 PFP firmware */
1579  const struct firmware *rlc_fw; /* r6/700 RLC firmware */
1580  const struct firmware *mc_fw; /* NI MC firmware */
1581  const struct firmware *ce_fw; /* SI CE firmware */
1584  int msi_enabled; /* msi enabled */
1585  struct r600_ih ih; /* r6/700 interrupt ring */
1586  struct si_rlc rlc;
1589  int num_crtc; /* number of crtcs */
1590  struct mutex dc_hw_i2c_mutex; /* display controller hw i2c mutex */
1592  struct r600_audio audio_status; /* audio stuff */
1594  /* only one userspace can use Hyperz features or CMASK at a time */
1595  struct drm_file *hyperz_filp;
1596  struct drm_file *cmask_filp;
1597  /* i2c buses */
1599  /* debugfs */
1601  unsigned debugfs_count;
1602  /* virtual memory */
1605  /* ACPI interface */
1608 };
1609 
1611  struct drm_device *ddev,
1612  struct pci_dev *pdev,
1613  uint32_t flags);
1614 void radeon_device_fini(struct radeon_device *rdev);
1616 
1617 uint32_t r100_mm_rreg(struct radeon_device *rdev, uint32_t reg);
1618 void r100_mm_wreg(struct radeon_device *rdev, uint32_t reg, uint32_t v);
1620 void r100_io_wreg(struct radeon_device *rdev, u32 reg, u32 v);
1621 
1622 /*
1623  * Cast helper
1624  */
1625 #define to_radeon_fence(p) ((struct radeon_fence *)(p))
1626 
1627 /*
1628  * Registers read & write functions.
1629  */
1630 #define RREG8(reg) readb((rdev->rmmio) + (reg))
1631 #define WREG8(reg, v) writeb(v, (rdev->rmmio) + (reg))
1632 #define RREG16(reg) readw((rdev->rmmio) + (reg))
1633 #define WREG16(reg, v) writew(v, (rdev->rmmio) + (reg))
1634 #define RREG32(reg) r100_mm_rreg(rdev, (reg))
1635 #define DREG32(reg) printk(KERN_INFO "REGISTER: " #reg " : 0x%08X\n", r100_mm_rreg(rdev, (reg)))
1636 #define WREG32(reg, v) r100_mm_wreg(rdev, (reg), (v))
1637 #define REG_SET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
1638 #define REG_GET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
1639 #define RREG32_PLL(reg) rdev->pll_rreg(rdev, (reg))
1640 #define WREG32_PLL(reg, v) rdev->pll_wreg(rdev, (reg), (v))
1641 #define RREG32_MC(reg) rdev->mc_rreg(rdev, (reg))
1642 #define WREG32_MC(reg, v) rdev->mc_wreg(rdev, (reg), (v))
1643 #define RREG32_PCIE(reg) rv370_pcie_rreg(rdev, (reg))
1644 #define WREG32_PCIE(reg, v) rv370_pcie_wreg(rdev, (reg), (v))
1645 #define RREG32_PCIE_P(reg) rdev->pciep_rreg(rdev, (reg))
1646 #define WREG32_PCIE_P(reg, v) rdev->pciep_wreg(rdev, (reg), (v))
1647 #define WREG32_P(reg, val, mask) \
1648  do { \
1649  uint32_t tmp_ = RREG32(reg); \
1650  tmp_ &= (mask); \
1651  tmp_ |= ((val) & ~(mask)); \
1652  WREG32(reg, tmp_); \
1653  } while (0)
1654 #define WREG32_PLL_P(reg, val, mask) \
1655  do { \
1656  uint32_t tmp_ = RREG32_PLL(reg); \
1657  tmp_ &= (mask); \
1658  tmp_ |= ((val) & ~(mask)); \
1659  WREG32_PLL(reg, tmp_); \
1660  } while (0)
1661 #define DREG32_SYS(sqf, rdev, reg) seq_printf((sqf), #reg " : 0x%08X\n", r100_mm_rreg((rdev), (reg)))
1662 #define RREG32_IO(reg) r100_io_rreg(rdev, (reg))
1663 #define WREG32_IO(reg, v) r100_io_wreg(rdev, (reg), (v))
1664 
1665 /*
1666  * Indirect registers accessor
1667  */
1668 static inline uint32_t rv370_pcie_rreg(struct radeon_device *rdev, uint32_t reg)
1669 {
1670  uint32_t r;
1671 
1672  WREG32(RADEON_PCIE_INDEX, ((reg) & rdev->pcie_reg_mask));
1673  r = RREG32(RADEON_PCIE_DATA);
1674  return r;
1675 }
1676 
1677 static inline void rv370_pcie_wreg(struct radeon_device *rdev, uint32_t reg, uint32_t v)
1678 {
1679  WREG32(RADEON_PCIE_INDEX, ((reg) & rdev->pcie_reg_mask));
1680  WREG32(RADEON_PCIE_DATA, (v));
1681 }
1682 
1683 void r100_pll_errata_after_index(struct radeon_device *rdev);
1684 
1685 
1686 /*
1687  * ASICs helpers.
1688  */
1689 #define ASIC_IS_RN50(rdev) ((rdev->pdev->device == 0x515e) || \
1690  (rdev->pdev->device == 0x5969))
1691 #define ASIC_IS_RV100(rdev) ((rdev->family == CHIP_RV100) || \
1692  (rdev->family == CHIP_RV200) || \
1693  (rdev->family == CHIP_RS100) || \
1694  (rdev->family == CHIP_RS200) || \
1695  (rdev->family == CHIP_RV250) || \
1696  (rdev->family == CHIP_RV280) || \
1697  (rdev->family == CHIP_RS300))
1698 #define ASIC_IS_R300(rdev) ((rdev->family == CHIP_R300) || \
1699  (rdev->family == CHIP_RV350) || \
1700  (rdev->family == CHIP_R350) || \
1701  (rdev->family == CHIP_RV380) || \
1702  (rdev->family == CHIP_R420) || \
1703  (rdev->family == CHIP_R423) || \
1704  (rdev->family == CHIP_RV410) || \
1705  (rdev->family == CHIP_RS400) || \
1706  (rdev->family == CHIP_RS480))
1707 #define ASIC_IS_X2(rdev) ((rdev->ddev->pdev->device == 0x9441) || \
1708  (rdev->ddev->pdev->device == 0x9443) || \
1709  (rdev->ddev->pdev->device == 0x944B) || \
1710  (rdev->ddev->pdev->device == 0x9506) || \
1711  (rdev->ddev->pdev->device == 0x9509) || \
1712  (rdev->ddev->pdev->device == 0x950F) || \
1713  (rdev->ddev->pdev->device == 0x689C) || \
1714  (rdev->ddev->pdev->device == 0x689D))
1715 #define ASIC_IS_AVIVO(rdev) ((rdev->family >= CHIP_RS600))
1716 #define ASIC_IS_DCE2(rdev) ((rdev->family == CHIP_RS600) || \
1717  (rdev->family == CHIP_RS690) || \
1718  (rdev->family == CHIP_RS740) || \
1719  (rdev->family >= CHIP_R600))
1720 #define ASIC_IS_DCE3(rdev) ((rdev->family >= CHIP_RV620))
1721 #define ASIC_IS_DCE32(rdev) ((rdev->family >= CHIP_RV730))
1722 #define ASIC_IS_DCE4(rdev) ((rdev->family >= CHIP_CEDAR))
1723 #define ASIC_IS_DCE41(rdev) ((rdev->family >= CHIP_PALM) && \
1724  (rdev->flags & RADEON_IS_IGP))
1725 #define ASIC_IS_DCE5(rdev) ((rdev->family >= CHIP_BARTS))
1726 #define ASIC_IS_DCE6(rdev) ((rdev->family >= CHIP_ARUBA))
1727 #define ASIC_IS_DCE61(rdev) ((rdev->family >= CHIP_ARUBA) && \
1728  (rdev->flags & RADEON_IS_IGP))
1729 
1730 /*
1731  * BIOS helpers.
1732  */
1733 #define RBIOS8(i) (rdev->bios[i])
1734 #define RBIOS16(i) (RBIOS8(i) | (RBIOS8((i)+1) << 8))
1735 #define RBIOS32(i) ((RBIOS16(i)) | (RBIOS16((i)+2) << 16))
1736 
1737 int radeon_combios_init(struct radeon_device *rdev);
1738 void radeon_combios_fini(struct radeon_device *rdev);
1739 int radeon_atombios_init(struct radeon_device *rdev);
1740 void radeon_atombios_fini(struct radeon_device *rdev);
1741 
1742 
1743 /*
1744  * RING helpers.
1745  */
1746 #if DRM_DEBUG_CODE == 0
1747 static inline void radeon_ring_write(struct radeon_ring *ring, uint32_t v)
1748 {
1749  ring->ring[ring->wptr++] = v;
1750  ring->wptr &= ring->ptr_mask;
1751  ring->count_dw--;
1752  ring->ring_free_dw--;
1753 }
1754 #else
1755 /* With debugging this is just too big to inline */
1756 void radeon_ring_write(struct radeon_ring *ring, uint32_t v);
1757 #endif
1758 
1759 /*
1760  * ASICs macro.
1761  */
1762 #define radeon_init(rdev) (rdev)->asic->init((rdev))
1763 #define radeon_fini(rdev) (rdev)->asic->fini((rdev))
1764 #define radeon_resume(rdev) (rdev)->asic->resume((rdev))
1765 #define radeon_suspend(rdev) (rdev)->asic->suspend((rdev))
1766 #define radeon_cs_parse(rdev, r, p) (rdev)->asic->ring[(r)].cs_parse((p))
1767 #define radeon_vga_set_state(rdev, state) (rdev)->asic->vga_set_state((rdev), (state))
1768 #define radeon_asic_reset(rdev) (rdev)->asic->asic_reset((rdev))
1769 #define radeon_gart_tlb_flush(rdev) (rdev)->asic->gart.tlb_flush((rdev))
1770 #define radeon_gart_set_page(rdev, i, p) (rdev)->asic->gart.set_page((rdev), (i), (p))
1771 #define radeon_asic_vm_init(rdev) (rdev)->asic->vm.init((rdev))
1772 #define radeon_asic_vm_fini(rdev) (rdev)->asic->vm.fini((rdev))
1773 #define radeon_asic_vm_set_page(rdev, pe, addr, count, incr, flags) ((rdev)->asic->vm.set_page((rdev), (pe), (addr), (count), (incr), (flags)))
1774 #define radeon_ring_start(rdev, r, cp) (rdev)->asic->ring[(r)].ring_start((rdev), (cp))
1775 #define radeon_ring_test(rdev, r, cp) (rdev)->asic->ring[(r)].ring_test((rdev), (cp))
1776 #define radeon_ib_test(rdev, r, cp) (rdev)->asic->ring[(r)].ib_test((rdev), (cp))
1777 #define radeon_ring_ib_execute(rdev, r, ib) (rdev)->asic->ring[(r)].ib_execute((rdev), (ib))
1778 #define radeon_ring_ib_parse(rdev, r, ib) (rdev)->asic->ring[(r)].ib_parse((rdev), (ib))
1779 #define radeon_ring_is_lockup(rdev, r, cp) (rdev)->asic->ring[(r)].is_lockup((rdev), (cp))
1780 #define radeon_ring_vm_flush(rdev, r, vm) (rdev)->asic->ring[(r)].vm_flush((rdev), (r), (vm))
1781 #define radeon_irq_set(rdev) (rdev)->asic->irq.set((rdev))
1782 #define radeon_irq_process(rdev) (rdev)->asic->irq.process((rdev))
1783 #define radeon_get_vblank_counter(rdev, crtc) (rdev)->asic->display.get_vblank_counter((rdev), (crtc))
1784 #define radeon_set_backlight_level(rdev, e, l) (rdev)->asic->display.set_backlight_level((e), (l))
1785 #define radeon_get_backlight_level(rdev, e) (rdev)->asic->display.get_backlight_level((e))
1786 #define radeon_fence_ring_emit(rdev, r, fence) (rdev)->asic->ring[(r)].emit_fence((rdev), (fence))
1787 #define radeon_semaphore_ring_emit(rdev, r, cp, semaphore, emit_wait) (rdev)->asic->ring[(r)].emit_semaphore((rdev), (cp), (semaphore), (emit_wait))
1788 #define radeon_copy_blit(rdev, s, d, np, f) (rdev)->asic->copy.blit((rdev), (s), (d), (np), (f))
1789 #define radeon_copy_dma(rdev, s, d, np, f) (rdev)->asic->copy.dma((rdev), (s), (d), (np), (f))
1790 #define radeon_copy(rdev, s, d, np, f) (rdev)->asic->copy.copy((rdev), (s), (d), (np), (f))
1791 #define radeon_copy_blit_ring_index(rdev) (rdev)->asic->copy.blit_ring_index
1792 #define radeon_copy_dma_ring_index(rdev) (rdev)->asic->copy.dma_ring_index
1793 #define radeon_copy_ring_index(rdev) (rdev)->asic->copy.copy_ring_index
1794 #define radeon_get_engine_clock(rdev) (rdev)->asic->pm.get_engine_clock((rdev))
1795 #define radeon_set_engine_clock(rdev, e) (rdev)->asic->pm.set_engine_clock((rdev), (e))
1796 #define radeon_get_memory_clock(rdev) (rdev)->asic->pm.get_memory_clock((rdev))
1797 #define radeon_set_memory_clock(rdev, e) (rdev)->asic->pm.set_memory_clock((rdev), (e))
1798 #define radeon_get_pcie_lanes(rdev) (rdev)->asic->pm.get_pcie_lanes((rdev))
1799 #define radeon_set_pcie_lanes(rdev, l) (rdev)->asic->pm.set_pcie_lanes((rdev), (l))
1800 #define radeon_set_clock_gating(rdev, e) (rdev)->asic->pm.set_clock_gating((rdev), (e))
1801 #define radeon_set_surface_reg(rdev, r, f, p, o, s) ((rdev)->asic->surface.set_reg((rdev), (r), (f), (p), (o), (s)))
1802 #define radeon_clear_surface_reg(rdev, r) ((rdev)->asic->surface.clear_reg((rdev), (r)))
1803 #define radeon_bandwidth_update(rdev) (rdev)->asic->display.bandwidth_update((rdev))
1804 #define radeon_hpd_init(rdev) (rdev)->asic->hpd.init((rdev))
1805 #define radeon_hpd_fini(rdev) (rdev)->asic->hpd.fini((rdev))
1806 #define radeon_hpd_sense(rdev, h) (rdev)->asic->hpd.sense((rdev), (h))
1807 #define radeon_hpd_set_polarity(rdev, h) (rdev)->asic->hpd.set_polarity((rdev), (h))
1808 #define radeon_gui_idle(rdev) (rdev)->asic->gui_idle((rdev))
1809 #define radeon_pm_misc(rdev) (rdev)->asic->pm.misc((rdev))
1810 #define radeon_pm_prepare(rdev) (rdev)->asic->pm.prepare((rdev))
1811 #define radeon_pm_finish(rdev) (rdev)->asic->pm.finish((rdev))
1812 #define radeon_pm_init_profile(rdev) (rdev)->asic->pm.init_profile((rdev))
1813 #define radeon_pm_get_dynpm_state(rdev) (rdev)->asic->pm.get_dynpm_state((rdev))
1814 #define radeon_pre_page_flip(rdev, crtc) (rdev)->asic->pflip.pre_page_flip((rdev), (crtc))
1815 #define radeon_page_flip(rdev, crtc, base) (rdev)->asic->pflip.page_flip((rdev), (crtc), (base))
1816 #define radeon_post_page_flip(rdev, crtc) (rdev)->asic->pflip.post_page_flip((rdev), (crtc))
1817 #define radeon_wait_for_vblank(rdev, crtc) (rdev)->asic->display.wait_for_vblank((rdev), (crtc))
1818 #define radeon_mc_wait_for_idle(rdev) (rdev)->asic->mc_wait_for_idle((rdev))
1819 
1820 /* Common functions */
1821 /* AGP */
1822 extern int radeon_gpu_reset(struct radeon_device *rdev);
1823 extern void radeon_agp_disable(struct radeon_device *rdev);
1824 extern int radeon_modeset_init(struct radeon_device *rdev);
1825 extern void radeon_modeset_fini(struct radeon_device *rdev);
1826 extern bool radeon_card_posted(struct radeon_device *rdev);
1827 extern void radeon_update_bandwidth_info(struct radeon_device *rdev);
1828 extern void radeon_update_display_priority(struct radeon_device *rdev);
1829 extern bool radeon_boot_test_post_card(struct radeon_device *rdev);
1830 extern void radeon_scratch_init(struct radeon_device *rdev);
1831 extern void radeon_wb_fini(struct radeon_device *rdev);
1832 extern int radeon_wb_init(struct radeon_device *rdev);
1833 extern void radeon_wb_disable(struct radeon_device *rdev);
1834 extern void radeon_surface_init(struct radeon_device *rdev);
1835 extern int radeon_cs_parser_init(struct radeon_cs_parser *p, void *data);
1836 extern void radeon_legacy_set_clock_gating(struct radeon_device *rdev, int enable);
1837 extern void radeon_atom_set_clock_gating(struct radeon_device *rdev, int enable);
1838 extern void radeon_ttm_placement_from_domain(struct radeon_bo *rbo, u32 domain);
1839 extern bool radeon_ttm_bo_is_radeon_bo(struct ttm_buffer_object *bo);
1840 extern void radeon_vram_location(struct radeon_device *rdev, struct radeon_mc *mc, u64 base);
1841 extern void radeon_gtt_location(struct radeon_device *rdev, struct radeon_mc *mc);
1842 extern int radeon_resume_kms(struct drm_device *dev);
1843 extern int radeon_suspend_kms(struct drm_device *dev, pm_message_t state);
1844 extern void radeon_ttm_set_active_vram_size(struct radeon_device *rdev, u64 size);
1845 
1846 /*
1847  * vm
1848  */
1849 int radeon_vm_manager_init(struct radeon_device *rdev);
1850 void radeon_vm_manager_fini(struct radeon_device *rdev);
1851 void radeon_vm_init(struct radeon_device *rdev, struct radeon_vm *vm);
1852 void radeon_vm_fini(struct radeon_device *rdev, struct radeon_vm *vm);
1853 int radeon_vm_alloc_pt(struct radeon_device *rdev, struct radeon_vm *vm);
1854 void radeon_vm_add_to_lru(struct radeon_device *rdev, struct radeon_vm *vm);
1855 struct radeon_fence *radeon_vm_grab_id(struct radeon_device *rdev,
1856  struct radeon_vm *vm, int ring);
1857 void radeon_vm_fence(struct radeon_device *rdev,
1858  struct radeon_vm *vm,
1859  struct radeon_fence *fence);
1861 int radeon_vm_bo_update_pte(struct radeon_device *rdev,
1862  struct radeon_vm *vm,
1863  struct radeon_bo *bo,
1864  struct ttm_mem_reg *mem);
1865 void radeon_vm_bo_invalidate(struct radeon_device *rdev,
1866  struct radeon_bo *bo);
1867 struct radeon_bo_va *radeon_vm_bo_find(struct radeon_vm *vm,
1868  struct radeon_bo *bo);
1869 struct radeon_bo_va *radeon_vm_bo_add(struct radeon_device *rdev,
1870  struct radeon_vm *vm,
1871  struct radeon_bo *bo);
1872 int radeon_vm_bo_set_addr(struct radeon_device *rdev,
1873  struct radeon_bo_va *bo_va,
1874  uint64_t offset,
1875  uint32_t flags);
1876 int radeon_vm_bo_rmv(struct radeon_device *rdev,
1877  struct radeon_bo_va *bo_va);
1878 
1879 /* audio */
1881 
1882 /*
1883  * R600 vram scratch functions
1884  */
1885 int r600_vram_scratch_init(struct radeon_device *rdev);
1886 void r600_vram_scratch_fini(struct radeon_device *rdev);
1887 
1888 /*
1889  * r600 cs checking helper
1890  */
1891 unsigned r600_mip_minify(unsigned size, unsigned level);
1897 
1898 /*
1899  * r600 functions used by radeon_encoder.c
1900  */
1903 
1904  int n_32khz;
1906 
1909 
1910  int n_48khz;
1912 
1913 };
1914 
1915 extern struct radeon_hdmi_acr r600_hdmi_acr(uint32_t clock);
1916 
1917 extern void r600_hdmi_enable(struct drm_encoder *encoder);
1918 extern void r600_hdmi_disable(struct drm_encoder *encoder);
1919 extern void r600_hdmi_setmode(struct drm_encoder *encoder, struct drm_display_mode *mode);
1920 extern u32 r6xx_remap_render_backend(struct radeon_device *rdev,
1921  u32 tiling_pipe_num,
1922  u32 max_rb_num,
1923  u32 total_max_rb_num,
1924  u32 enabled_rb_mask);
1925 
1926 /*
1927  * evergreen functions used by radeon_encoder.c
1928  */
1929 
1930 extern void evergreen_hdmi_setmode(struct drm_encoder *encoder, struct drm_display_mode *mode);
1931 
1932 extern int ni_init_microcode(struct radeon_device *rdev);
1933 extern int ni_mc_load_microcode(struct radeon_device *rdev);
1934 
1935 /* radeon_acpi.c */
1936 #if defined(CONFIG_ACPI)
1937 extern int radeon_acpi_init(struct radeon_device *rdev);
1938 extern void radeon_acpi_fini(struct radeon_device *rdev);
1939 #else
1940 static inline int radeon_acpi_init(struct radeon_device *rdev) { return 0; }
1941 static inline void radeon_acpi_fini(struct radeon_device *rdev) { }
1942 #endif
1943 
1944 #include "radeon_object.h"
1945 
1946 #endif