Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/bluetooth...
[deliverable/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 extern int radeon_fastfb;
99 extern int radeon_dpm;
100
101 /*
102 * Copy from radeon_drv.h so we don't have to include both and have conflicting
103 * symbol;
104 */
105 #define RADEON_MAX_USEC_TIMEOUT 100000 /* 100 ms */
106 #define RADEON_FENCE_JIFFIES_TIMEOUT (HZ / 2)
107 /* RADEON_IB_POOL_SIZE must be a power of 2 */
108 #define RADEON_IB_POOL_SIZE 16
109 #define RADEON_DEBUGFS_MAX_COMPONENTS 32
110 #define RADEONFB_CONN_LIMIT 4
111 #define RADEON_BIOS_NUM_SCRATCH 8
112
113 /* max number of rings */
114 #define RADEON_NUM_RINGS 6
115
116 /* fence seq are set to this number when signaled */
117 #define RADEON_FENCE_SIGNALED_SEQ 0LL
118
119 /* internal ring indices */
120 /* r1xx+ has gfx CP ring */
121 #define RADEON_RING_TYPE_GFX_INDEX 0
122
123 /* cayman has 2 compute CP rings */
124 #define CAYMAN_RING_TYPE_CP1_INDEX 1
125 #define CAYMAN_RING_TYPE_CP2_INDEX 2
126
127 /* R600+ has an async dma ring */
128 #define R600_RING_TYPE_DMA_INDEX 3
129 /* cayman add a second async dma ring */
130 #define CAYMAN_RING_TYPE_DMA1_INDEX 4
131
132 /* R600+ */
133 #define R600_RING_TYPE_UVD_INDEX 5
134
135 /* hardcode those limit for now */
136 #define RADEON_VA_IB_OFFSET (1 << 20)
137 #define RADEON_VA_RESERVED_SIZE (8 << 20)
138 #define RADEON_IB_VM_MAX_SIZE (64 << 10)
139
140 /* reset flags */
141 #define RADEON_RESET_GFX (1 << 0)
142 #define RADEON_RESET_COMPUTE (1 << 1)
143 #define RADEON_RESET_DMA (1 << 2)
144 #define RADEON_RESET_CP (1 << 3)
145 #define RADEON_RESET_GRBM (1 << 4)
146 #define RADEON_RESET_DMA1 (1 << 5)
147 #define RADEON_RESET_RLC (1 << 6)
148 #define RADEON_RESET_SEM (1 << 7)
149 #define RADEON_RESET_IH (1 << 8)
150 #define RADEON_RESET_VMC (1 << 9)
151 #define RADEON_RESET_MC (1 << 10)
152 #define RADEON_RESET_DISPLAY (1 << 11)
153
154 /* max cursor sizes (in pixels) */
155 #define CURSOR_WIDTH 64
156 #define CURSOR_HEIGHT 64
157
158 #define CIK_CURSOR_WIDTH 128
159 #define CIK_CURSOR_HEIGHT 128
160
161 /*
162 * Errata workarounds.
163 */
164 enum radeon_pll_errata {
165 CHIP_ERRATA_R300_CG = 0x00000001,
166 CHIP_ERRATA_PLL_DUMMYREADS = 0x00000002,
167 CHIP_ERRATA_PLL_DELAY = 0x00000004
168 };
169
170
171 struct radeon_device;
172
173
174 /*
175 * BIOS.
176 */
177 bool radeon_get_bios(struct radeon_device *rdev);
178
179 /*
180 * Dummy page
181 */
182 struct radeon_dummy_page {
183 struct page *page;
184 dma_addr_t addr;
185 };
186 int radeon_dummy_page_init(struct radeon_device *rdev);
187 void radeon_dummy_page_fini(struct radeon_device *rdev);
188
189
190 /*
191 * Clocks
192 */
193 struct radeon_clock {
194 struct radeon_pll p1pll;
195 struct radeon_pll p2pll;
196 struct radeon_pll dcpll;
197 struct radeon_pll spll;
198 struct radeon_pll mpll;
199 /* 10 Khz units */
200 uint32_t default_mclk;
201 uint32_t default_sclk;
202 uint32_t default_dispclk;
203 uint32_t current_dispclk;
204 uint32_t dp_extclk;
205 uint32_t max_pixel_clock;
206 };
207
208 /*
209 * Power management
210 */
211 int radeon_pm_init(struct radeon_device *rdev);
212 void radeon_pm_fini(struct radeon_device *rdev);
213 void radeon_pm_compute_clocks(struct radeon_device *rdev);
214 void radeon_pm_suspend(struct radeon_device *rdev);
215 void radeon_pm_resume(struct radeon_device *rdev);
216 void radeon_combios_get_power_modes(struct radeon_device *rdev);
217 void radeon_atombios_get_power_modes(struct radeon_device *rdev);
218 int radeon_atom_get_clock_dividers(struct radeon_device *rdev,
219 u8 clock_type,
220 u32 clock,
221 bool strobe_mode,
222 struct atom_clock_dividers *dividers);
223 int radeon_atom_get_memory_pll_dividers(struct radeon_device *rdev,
224 u32 clock,
225 bool strobe_mode,
226 struct atom_mpll_param *mpll_param);
227 void radeon_atom_set_voltage(struct radeon_device *rdev, u16 voltage_level, u8 voltage_type);
228 int radeon_atom_get_voltage_gpio_settings(struct radeon_device *rdev,
229 u16 voltage_level, u8 voltage_type,
230 u32 *gpio_value, u32 *gpio_mask);
231 void radeon_atom_set_engine_dram_timings(struct radeon_device *rdev,
232 u32 eng_clock, u32 mem_clock);
233 int radeon_atom_get_voltage_step(struct radeon_device *rdev,
234 u8 voltage_type, u16 *voltage_step);
235 int radeon_atom_get_max_vddc(struct radeon_device *rdev, u8 voltage_type,
236 u16 voltage_id, u16 *voltage);
237 int radeon_atom_get_leakage_vddc_based_on_leakage_idx(struct radeon_device *rdev,
238 u16 *voltage,
239 u16 leakage_idx);
240 int radeon_atom_round_to_true_voltage(struct radeon_device *rdev,
241 u8 voltage_type,
242 u16 nominal_voltage,
243 u16 *true_voltage);
244 int radeon_atom_get_min_voltage(struct radeon_device *rdev,
245 u8 voltage_type, u16 *min_voltage);
246 int radeon_atom_get_max_voltage(struct radeon_device *rdev,
247 u8 voltage_type, u16 *max_voltage);
248 int radeon_atom_get_voltage_table(struct radeon_device *rdev,
249 u8 voltage_type, u8 voltage_mode,
250 struct atom_voltage_table *voltage_table);
251 bool radeon_atom_is_voltage_gpio(struct radeon_device *rdev,
252 u8 voltage_type, u8 voltage_mode);
253 void radeon_atom_update_memory_dll(struct radeon_device *rdev,
254 u32 mem_clock);
255 void radeon_atom_set_ac_timing(struct radeon_device *rdev,
256 u32 mem_clock);
257 int radeon_atom_init_mc_reg_table(struct radeon_device *rdev,
258 u8 module_index,
259 struct atom_mc_reg_table *reg_table);
260 int radeon_atom_get_memory_info(struct radeon_device *rdev,
261 u8 module_index, struct atom_memory_info *mem_info);
262 int radeon_atom_get_mclk_range_table(struct radeon_device *rdev,
263 bool gddr5, u8 module_index,
264 struct atom_memory_clock_range_table *mclk_range_table);
265 int radeon_atom_get_max_vddc(struct radeon_device *rdev, u8 voltage_type,
266 u16 voltage_id, u16 *voltage);
267 void rs690_pm_info(struct radeon_device *rdev);
268 extern void evergreen_tiling_fields(unsigned tiling_flags, unsigned *bankw,
269 unsigned *bankh, unsigned *mtaspect,
270 unsigned *tile_split);
271
272 /*
273 * Fences.
274 */
275 struct radeon_fence_driver {
276 uint32_t scratch_reg;
277 uint64_t gpu_addr;
278 volatile uint32_t *cpu_addr;
279 /* sync_seq is protected by ring emission lock */
280 uint64_t sync_seq[RADEON_NUM_RINGS];
281 atomic64_t last_seq;
282 unsigned long last_activity;
283 bool initialized;
284 };
285
286 struct radeon_fence {
287 struct radeon_device *rdev;
288 struct kref kref;
289 /* protected by radeon_fence.lock */
290 uint64_t seq;
291 /* RB, DMA, etc. */
292 unsigned ring;
293 };
294
295 int radeon_fence_driver_start_ring(struct radeon_device *rdev, int ring);
296 int radeon_fence_driver_init(struct radeon_device *rdev);
297 void radeon_fence_driver_fini(struct radeon_device *rdev);
298 void radeon_fence_driver_force_completion(struct radeon_device *rdev);
299 int radeon_fence_emit(struct radeon_device *rdev, struct radeon_fence **fence, int ring);
300 void radeon_fence_process(struct radeon_device *rdev, int ring);
301 bool radeon_fence_signaled(struct radeon_fence *fence);
302 int radeon_fence_wait(struct radeon_fence *fence, bool interruptible);
303 int radeon_fence_wait_next_locked(struct radeon_device *rdev, int ring);
304 int radeon_fence_wait_empty_locked(struct radeon_device *rdev, int ring);
305 int radeon_fence_wait_any(struct radeon_device *rdev,
306 struct radeon_fence **fences,
307 bool intr);
308 struct radeon_fence *radeon_fence_ref(struct radeon_fence *fence);
309 void radeon_fence_unref(struct radeon_fence **fence);
310 unsigned radeon_fence_count_emitted(struct radeon_device *rdev, int ring);
311 bool radeon_fence_need_sync(struct radeon_fence *fence, int ring);
312 void radeon_fence_note_sync(struct radeon_fence *fence, int ring);
313 static inline struct radeon_fence *radeon_fence_later(struct radeon_fence *a,
314 struct radeon_fence *b)
315 {
316 if (!a) {
317 return b;
318 }
319
320 if (!b) {
321 return a;
322 }
323
324 BUG_ON(a->ring != b->ring);
325
326 if (a->seq > b->seq) {
327 return a;
328 } else {
329 return b;
330 }
331 }
332
333 static inline bool radeon_fence_is_earlier(struct radeon_fence *a,
334 struct radeon_fence *b)
335 {
336 if (!a) {
337 return false;
338 }
339
340 if (!b) {
341 return true;
342 }
343
344 BUG_ON(a->ring != b->ring);
345
346 return a->seq < b->seq;
347 }
348
349 /*
350 * Tiling registers
351 */
352 struct radeon_surface_reg {
353 struct radeon_bo *bo;
354 };
355
356 #define RADEON_GEM_MAX_SURFACES 8
357
358 /*
359 * TTM.
360 */
361 struct radeon_mman {
362 struct ttm_bo_global_ref bo_global_ref;
363 struct drm_global_reference mem_global_ref;
364 struct ttm_bo_device bdev;
365 bool mem_global_referenced;
366 bool initialized;
367 };
368
369 /* bo virtual address in a specific vm */
370 struct radeon_bo_va {
371 /* protected by bo being reserved */
372 struct list_head bo_list;
373 uint64_t soffset;
374 uint64_t eoffset;
375 uint32_t flags;
376 bool valid;
377 unsigned ref_count;
378
379 /* protected by vm mutex */
380 struct list_head vm_list;
381
382 /* constant after initialization */
383 struct radeon_vm *vm;
384 struct radeon_bo *bo;
385 };
386
387 struct radeon_bo {
388 /* Protected by gem.mutex */
389 struct list_head list;
390 /* Protected by tbo.reserved */
391 u32 placements[3];
392 struct ttm_placement placement;
393 struct ttm_buffer_object tbo;
394 struct ttm_bo_kmap_obj kmap;
395 unsigned pin_count;
396 void *kptr;
397 u32 tiling_flags;
398 u32 pitch;
399 int surface_reg;
400 /* list of all virtual address to which this bo
401 * is associated to
402 */
403 struct list_head va;
404 /* Constant after initialization */
405 struct radeon_device *rdev;
406 struct drm_gem_object gem_base;
407
408 struct ttm_bo_kmap_obj dma_buf_vmap;
409 pid_t pid;
410 };
411 #define gem_to_radeon_bo(gobj) container_of((gobj), struct radeon_bo, gem_base)
412
413 struct radeon_bo_list {
414 struct ttm_validate_buffer tv;
415 struct radeon_bo *bo;
416 uint64_t gpu_offset;
417 bool written;
418 unsigned domain;
419 unsigned alt_domain;
420 u32 tiling_flags;
421 };
422
423 int radeon_gem_debugfs_init(struct radeon_device *rdev);
424
425 /* sub-allocation manager, it has to be protected by another lock.
426 * By conception this is an helper for other part of the driver
427 * like the indirect buffer or semaphore, which both have their
428 * locking.
429 *
430 * Principe is simple, we keep a list of sub allocation in offset
431 * order (first entry has offset == 0, last entry has the highest
432 * offset).
433 *
434 * When allocating new object we first check if there is room at
435 * the end total_size - (last_object_offset + last_object_size) >=
436 * alloc_size. If so we allocate new object there.
437 *
438 * When there is not enough room at the end, we start waiting for
439 * each sub object until we reach object_offset+object_size >=
440 * alloc_size, this object then become the sub object we return.
441 *
442 * Alignment can't be bigger than page size.
443 *
444 * Hole are not considered for allocation to keep things simple.
445 * Assumption is that there won't be hole (all object on same
446 * alignment).
447 */
448 struct radeon_sa_manager {
449 wait_queue_head_t wq;
450 struct radeon_bo *bo;
451 struct list_head *hole;
452 struct list_head flist[RADEON_NUM_RINGS];
453 struct list_head olist;
454 unsigned size;
455 uint64_t gpu_addr;
456 void *cpu_ptr;
457 uint32_t domain;
458 };
459
460 struct radeon_sa_bo;
461
462 /* sub-allocation buffer */
463 struct radeon_sa_bo {
464 struct list_head olist;
465 struct list_head flist;
466 struct radeon_sa_manager *manager;
467 unsigned soffset;
468 unsigned eoffset;
469 struct radeon_fence *fence;
470 };
471
472 /*
473 * GEM objects.
474 */
475 struct radeon_gem {
476 struct mutex mutex;
477 struct list_head objects;
478 };
479
480 int radeon_gem_init(struct radeon_device *rdev);
481 void radeon_gem_fini(struct radeon_device *rdev);
482 int radeon_gem_object_create(struct radeon_device *rdev, int size,
483 int alignment, int initial_domain,
484 bool discardable, bool kernel,
485 struct drm_gem_object **obj);
486
487 int radeon_mode_dumb_create(struct drm_file *file_priv,
488 struct drm_device *dev,
489 struct drm_mode_create_dumb *args);
490 int radeon_mode_dumb_mmap(struct drm_file *filp,
491 struct drm_device *dev,
492 uint32_t handle, uint64_t *offset_p);
493 int radeon_mode_dumb_destroy(struct drm_file *file_priv,
494 struct drm_device *dev,
495 uint32_t handle);
496
497 /*
498 * Semaphores.
499 */
500 /* everything here is constant */
501 struct radeon_semaphore {
502 struct radeon_sa_bo *sa_bo;
503 signed waiters;
504 uint64_t gpu_addr;
505 };
506
507 int radeon_semaphore_create(struct radeon_device *rdev,
508 struct radeon_semaphore **semaphore);
509 void radeon_semaphore_emit_signal(struct radeon_device *rdev, int ring,
510 struct radeon_semaphore *semaphore);
511 void radeon_semaphore_emit_wait(struct radeon_device *rdev, int ring,
512 struct radeon_semaphore *semaphore);
513 int radeon_semaphore_sync_rings(struct radeon_device *rdev,
514 struct radeon_semaphore *semaphore,
515 int signaler, int waiter);
516 void radeon_semaphore_free(struct radeon_device *rdev,
517 struct radeon_semaphore **semaphore,
518 struct radeon_fence *fence);
519
520 /*
521 * GART structures, functions & helpers
522 */
523 struct radeon_mc;
524
525 #define RADEON_GPU_PAGE_SIZE 4096
526 #define RADEON_GPU_PAGE_MASK (RADEON_GPU_PAGE_SIZE - 1)
527 #define RADEON_GPU_PAGE_SHIFT 12
528 #define RADEON_GPU_PAGE_ALIGN(a) (((a) + RADEON_GPU_PAGE_MASK) & ~RADEON_GPU_PAGE_MASK)
529
530 struct radeon_gart {
531 dma_addr_t table_addr;
532 struct radeon_bo *robj;
533 void *ptr;
534 unsigned num_gpu_pages;
535 unsigned num_cpu_pages;
536 unsigned table_size;
537 struct page **pages;
538 dma_addr_t *pages_addr;
539 bool ready;
540 };
541
542 int radeon_gart_table_ram_alloc(struct radeon_device *rdev);
543 void radeon_gart_table_ram_free(struct radeon_device *rdev);
544 int radeon_gart_table_vram_alloc(struct radeon_device *rdev);
545 void radeon_gart_table_vram_free(struct radeon_device *rdev);
546 int radeon_gart_table_vram_pin(struct radeon_device *rdev);
547 void radeon_gart_table_vram_unpin(struct radeon_device *rdev);
548 int radeon_gart_init(struct radeon_device *rdev);
549 void radeon_gart_fini(struct radeon_device *rdev);
550 void radeon_gart_unbind(struct radeon_device *rdev, unsigned offset,
551 int pages);
552 int radeon_gart_bind(struct radeon_device *rdev, unsigned offset,
553 int pages, struct page **pagelist,
554 dma_addr_t *dma_addr);
555 void radeon_gart_restore(struct radeon_device *rdev);
556
557
558 /*
559 * GPU MC structures, functions & helpers
560 */
561 struct radeon_mc {
562 resource_size_t aper_size;
563 resource_size_t aper_base;
564 resource_size_t agp_base;
565 /* for some chips with <= 32MB we need to lie
566 * about vram size near mc fb location */
567 u64 mc_vram_size;
568 u64 visible_vram_size;
569 u64 gtt_size;
570 u64 gtt_start;
571 u64 gtt_end;
572 u64 vram_start;
573 u64 vram_end;
574 unsigned vram_width;
575 u64 real_vram_size;
576 int vram_mtrr;
577 bool vram_is_ddr;
578 bool igp_sideport_enabled;
579 u64 gtt_base_align;
580 u64 mc_mask;
581 };
582
583 bool radeon_combios_sideport_present(struct radeon_device *rdev);
584 bool radeon_atombios_sideport_present(struct radeon_device *rdev);
585
586 /*
587 * GPU scratch registers structures, functions & helpers
588 */
589 struct radeon_scratch {
590 unsigned num_reg;
591 uint32_t reg_base;
592 bool free[32];
593 uint32_t reg[32];
594 };
595
596 int radeon_scratch_get(struct radeon_device *rdev, uint32_t *reg);
597 void radeon_scratch_free(struct radeon_device *rdev, uint32_t reg);
598
599 /*
600 * GPU doorbell structures, functions & helpers
601 */
602 struct radeon_doorbell {
603 u32 num_pages;
604 bool free[1024];
605 /* doorbell mmio */
606 resource_size_t base;
607 resource_size_t size;
608 void __iomem *ptr;
609 };
610
611 int radeon_doorbell_get(struct radeon_device *rdev, u32 *page);
612 void radeon_doorbell_free(struct radeon_device *rdev, u32 doorbell);
613
614 /*
615 * IRQS.
616 */
617
618 struct radeon_unpin_work {
619 struct work_struct work;
620 struct radeon_device *rdev;
621 int crtc_id;
622 struct radeon_fence *fence;
623 struct drm_pending_vblank_event *event;
624 struct radeon_bo *old_rbo;
625 u64 new_crtc_base;
626 };
627
628 struct r500_irq_stat_regs {
629 u32 disp_int;
630 u32 hdmi0_status;
631 };
632
633 struct r600_irq_stat_regs {
634 u32 disp_int;
635 u32 disp_int_cont;
636 u32 disp_int_cont2;
637 u32 d1grph_int;
638 u32 d2grph_int;
639 u32 hdmi0_status;
640 u32 hdmi1_status;
641 };
642
643 struct evergreen_irq_stat_regs {
644 u32 disp_int;
645 u32 disp_int_cont;
646 u32 disp_int_cont2;
647 u32 disp_int_cont3;
648 u32 disp_int_cont4;
649 u32 disp_int_cont5;
650 u32 d1grph_int;
651 u32 d2grph_int;
652 u32 d3grph_int;
653 u32 d4grph_int;
654 u32 d5grph_int;
655 u32 d6grph_int;
656 u32 afmt_status1;
657 u32 afmt_status2;
658 u32 afmt_status3;
659 u32 afmt_status4;
660 u32 afmt_status5;
661 u32 afmt_status6;
662 };
663
664 struct cik_irq_stat_regs {
665 u32 disp_int;
666 u32 disp_int_cont;
667 u32 disp_int_cont2;
668 u32 disp_int_cont3;
669 u32 disp_int_cont4;
670 u32 disp_int_cont5;
671 u32 disp_int_cont6;
672 };
673
674 union radeon_irq_stat_regs {
675 struct r500_irq_stat_regs r500;
676 struct r600_irq_stat_regs r600;
677 struct evergreen_irq_stat_regs evergreen;
678 struct cik_irq_stat_regs cik;
679 };
680
681 #define RADEON_MAX_HPD_PINS 6
682 #define RADEON_MAX_CRTCS 6
683 #define RADEON_MAX_AFMT_BLOCKS 6
684
685 struct radeon_irq {
686 bool installed;
687 spinlock_t lock;
688 atomic_t ring_int[RADEON_NUM_RINGS];
689 bool crtc_vblank_int[RADEON_MAX_CRTCS];
690 atomic_t pflip[RADEON_MAX_CRTCS];
691 wait_queue_head_t vblank_queue;
692 bool hpd[RADEON_MAX_HPD_PINS];
693 bool afmt[RADEON_MAX_AFMT_BLOCKS];
694 union radeon_irq_stat_regs stat_regs;
695 bool dpm_thermal;
696 };
697
698 int radeon_irq_kms_init(struct radeon_device *rdev);
699 void radeon_irq_kms_fini(struct radeon_device *rdev);
700 void radeon_irq_kms_sw_irq_get(struct radeon_device *rdev, int ring);
701 void radeon_irq_kms_sw_irq_put(struct radeon_device *rdev, int ring);
702 void radeon_irq_kms_pflip_irq_get(struct radeon_device *rdev, int crtc);
703 void radeon_irq_kms_pflip_irq_put(struct radeon_device *rdev, int crtc);
704 void radeon_irq_kms_enable_afmt(struct radeon_device *rdev, int block);
705 void radeon_irq_kms_disable_afmt(struct radeon_device *rdev, int block);
706 void radeon_irq_kms_enable_hpd(struct radeon_device *rdev, unsigned hpd_mask);
707 void radeon_irq_kms_disable_hpd(struct radeon_device *rdev, unsigned hpd_mask);
708
709 /*
710 * CP & rings.
711 */
712
713 struct radeon_ib {
714 struct radeon_sa_bo *sa_bo;
715 uint32_t length_dw;
716 uint64_t gpu_addr;
717 uint32_t *ptr;
718 int ring;
719 struct radeon_fence *fence;
720 struct radeon_vm *vm;
721 bool is_const_ib;
722 struct radeon_fence *sync_to[RADEON_NUM_RINGS];
723 struct radeon_semaphore *semaphore;
724 };
725
726 struct radeon_ring {
727 struct radeon_bo *ring_obj;
728 volatile uint32_t *ring;
729 unsigned rptr;
730 unsigned rptr_offs;
731 unsigned rptr_reg;
732 unsigned rptr_save_reg;
733 u64 next_rptr_gpu_addr;
734 volatile u32 *next_rptr_cpu_addr;
735 unsigned wptr;
736 unsigned wptr_old;
737 unsigned wptr_reg;
738 unsigned ring_size;
739 unsigned ring_free_dw;
740 int count_dw;
741 unsigned long last_activity;
742 unsigned last_rptr;
743 uint64_t gpu_addr;
744 uint32_t align_mask;
745 uint32_t ptr_mask;
746 bool ready;
747 u32 ptr_reg_shift;
748 u32 ptr_reg_mask;
749 u32 nop;
750 u32 idx;
751 u64 last_semaphore_signal_addr;
752 u64 last_semaphore_wait_addr;
753 /* for CIK queues */
754 u32 me;
755 u32 pipe;
756 u32 queue;
757 struct radeon_bo *mqd_obj;
758 u32 doorbell_page_num;
759 u32 doorbell_offset;
760 unsigned wptr_offs;
761 };
762
763 struct radeon_mec {
764 struct radeon_bo *hpd_eop_obj;
765 u64 hpd_eop_gpu_addr;
766 u32 num_pipe;
767 u32 num_mec;
768 u32 num_queue;
769 };
770
771 /*
772 * VM
773 */
774
775 /* maximum number of VMIDs */
776 #define RADEON_NUM_VM 16
777
778 /* defines number of bits in page table versus page directory,
779 * a page is 4KB so we have 12 bits offset, 9 bits in the page
780 * table and the remaining 19 bits are in the page directory */
781 #define RADEON_VM_BLOCK_SIZE 9
782
783 /* number of entries in page table */
784 #define RADEON_VM_PTE_COUNT (1 << RADEON_VM_BLOCK_SIZE)
785
786 struct radeon_vm {
787 struct list_head list;
788 struct list_head va;
789 unsigned id;
790
791 /* contains the page directory */
792 struct radeon_sa_bo *page_directory;
793 uint64_t pd_gpu_addr;
794
795 /* array of page tables, one for each page directory entry */
796 struct radeon_sa_bo **page_tables;
797
798 struct mutex mutex;
799 /* last fence for cs using this vm */
800 struct radeon_fence *fence;
801 /* last flush or NULL if we still need to flush */
802 struct radeon_fence *last_flush;
803 };
804
805 struct radeon_vm_manager {
806 struct mutex lock;
807 struct list_head lru_vm;
808 struct radeon_fence *active[RADEON_NUM_VM];
809 struct radeon_sa_manager sa_manager;
810 uint32_t max_pfn;
811 /* number of VMIDs */
812 unsigned nvm;
813 /* vram base address for page table entry */
814 u64 vram_base_offset;
815 /* is vm enabled? */
816 bool enabled;
817 };
818
819 /*
820 * file private structure
821 */
822 struct radeon_fpriv {
823 struct radeon_vm vm;
824 };
825
826 /*
827 * R6xx+ IH ring
828 */
829 struct r600_ih {
830 struct radeon_bo *ring_obj;
831 volatile uint32_t *ring;
832 unsigned rptr;
833 unsigned ring_size;
834 uint64_t gpu_addr;
835 uint32_t ptr_mask;
836 atomic_t lock;
837 bool enabled;
838 };
839
840 struct r600_blit_cp_primitives {
841 void (*set_render_target)(struct radeon_device *rdev, int format,
842 int w, int h, u64 gpu_addr);
843 void (*cp_set_surface_sync)(struct radeon_device *rdev,
844 u32 sync_type, u32 size,
845 u64 mc_addr);
846 void (*set_shaders)(struct radeon_device *rdev);
847 void (*set_vtx_resource)(struct radeon_device *rdev, u64 gpu_addr);
848 void (*set_tex_resource)(struct radeon_device *rdev,
849 int format, int w, int h, int pitch,
850 u64 gpu_addr, u32 size);
851 void (*set_scissors)(struct radeon_device *rdev, int x1, int y1,
852 int x2, int y2);
853 void (*draw_auto)(struct radeon_device *rdev);
854 void (*set_default_state)(struct radeon_device *rdev);
855 };
856
857 struct r600_blit {
858 struct radeon_bo *shader_obj;
859 struct r600_blit_cp_primitives primitives;
860 int max_dim;
861 int ring_size_common;
862 int ring_size_per_loop;
863 u64 shader_gpu_addr;
864 u32 vs_offset, ps_offset;
865 u32 state_offset;
866 u32 state_len;
867 };
868
869 /*
870 * RLC stuff
871 */
872 #include "clearstate_defs.h"
873
874 struct radeon_rlc {
875 /* for power gating */
876 struct radeon_bo *save_restore_obj;
877 uint64_t save_restore_gpu_addr;
878 volatile uint32_t *sr_ptr;
879 u32 *reg_list;
880 u32 reg_list_size;
881 /* for clear state */
882 struct radeon_bo *clear_state_obj;
883 uint64_t clear_state_gpu_addr;
884 volatile uint32_t *cs_ptr;
885 struct cs_section_def *cs_data;
886 };
887
888 int radeon_ib_get(struct radeon_device *rdev, int ring,
889 struct radeon_ib *ib, struct radeon_vm *vm,
890 unsigned size);
891 void radeon_ib_free(struct radeon_device *rdev, struct radeon_ib *ib);
892 void radeon_ib_sync_to(struct radeon_ib *ib, struct radeon_fence *fence);
893 int radeon_ib_schedule(struct radeon_device *rdev, struct radeon_ib *ib,
894 struct radeon_ib *const_ib);
895 int radeon_ib_pool_init(struct radeon_device *rdev);
896 void radeon_ib_pool_fini(struct radeon_device *rdev);
897 int radeon_ib_ring_tests(struct radeon_device *rdev);
898 /* Ring access between begin & end cannot sleep */
899 bool radeon_ring_supports_scratch_reg(struct radeon_device *rdev,
900 struct radeon_ring *ring);
901 void radeon_ring_free_size(struct radeon_device *rdev, struct radeon_ring *cp);
902 int radeon_ring_alloc(struct radeon_device *rdev, struct radeon_ring *cp, unsigned ndw);
903 int radeon_ring_lock(struct radeon_device *rdev, struct radeon_ring *cp, unsigned ndw);
904 void radeon_ring_commit(struct radeon_device *rdev, struct radeon_ring *cp);
905 void radeon_ring_unlock_commit(struct radeon_device *rdev, struct radeon_ring *cp);
906 void radeon_ring_undo(struct radeon_ring *ring);
907 void radeon_ring_unlock_undo(struct radeon_device *rdev, struct radeon_ring *cp);
908 int radeon_ring_test(struct radeon_device *rdev, struct radeon_ring *cp);
909 void radeon_ring_force_activity(struct radeon_device *rdev, struct radeon_ring *ring);
910 void radeon_ring_lockup_update(struct radeon_ring *ring);
911 bool radeon_ring_test_lockup(struct radeon_device *rdev, struct radeon_ring *ring);
912 unsigned radeon_ring_backup(struct radeon_device *rdev, struct radeon_ring *ring,
913 uint32_t **data);
914 int radeon_ring_restore(struct radeon_device *rdev, struct radeon_ring *ring,
915 unsigned size, uint32_t *data);
916 int radeon_ring_init(struct radeon_device *rdev, struct radeon_ring *cp, unsigned ring_size,
917 unsigned rptr_offs, unsigned rptr_reg, unsigned wptr_reg,
918 u32 ptr_reg_shift, u32 ptr_reg_mask, u32 nop);
919 void radeon_ring_fini(struct radeon_device *rdev, struct radeon_ring *cp);
920
921
922 /* r600 async dma */
923 void r600_dma_stop(struct radeon_device *rdev);
924 int r600_dma_resume(struct radeon_device *rdev);
925 void r600_dma_fini(struct radeon_device *rdev);
926
927 void cayman_dma_stop(struct radeon_device *rdev);
928 int cayman_dma_resume(struct radeon_device *rdev);
929 void cayman_dma_fini(struct radeon_device *rdev);
930
931 /*
932 * CS.
933 */
934 struct radeon_cs_reloc {
935 struct drm_gem_object *gobj;
936 struct radeon_bo *robj;
937 struct radeon_bo_list lobj;
938 uint32_t handle;
939 uint32_t flags;
940 };
941
942 struct radeon_cs_chunk {
943 uint32_t chunk_id;
944 uint32_t length_dw;
945 int kpage_idx[2];
946 uint32_t *kpage[2];
947 uint32_t *kdata;
948 void __user *user_ptr;
949 int last_copied_page;
950 int last_page_index;
951 };
952
953 struct radeon_cs_parser {
954 struct device *dev;
955 struct radeon_device *rdev;
956 struct drm_file *filp;
957 /* chunks */
958 unsigned nchunks;
959 struct radeon_cs_chunk *chunks;
960 uint64_t *chunks_array;
961 /* IB */
962 unsigned idx;
963 /* relocations */
964 unsigned nrelocs;
965 struct radeon_cs_reloc *relocs;
966 struct radeon_cs_reloc **relocs_ptr;
967 struct list_head validated;
968 unsigned dma_reloc_idx;
969 /* indices of various chunks */
970 int chunk_ib_idx;
971 int chunk_relocs_idx;
972 int chunk_flags_idx;
973 int chunk_const_ib_idx;
974 struct radeon_ib ib;
975 struct radeon_ib const_ib;
976 void *track;
977 unsigned family;
978 int parser_error;
979 u32 cs_flags;
980 u32 ring;
981 s32 priority;
982 struct ww_acquire_ctx ticket;
983 };
984
985 extern int radeon_cs_finish_pages(struct radeon_cs_parser *p);
986 extern u32 radeon_get_ib_value(struct radeon_cs_parser *p, int idx);
987
988 struct radeon_cs_packet {
989 unsigned idx;
990 unsigned type;
991 unsigned reg;
992 unsigned opcode;
993 int count;
994 unsigned one_reg_wr;
995 };
996
997 typedef int (*radeon_packet0_check_t)(struct radeon_cs_parser *p,
998 struct radeon_cs_packet *pkt,
999 unsigned idx, unsigned reg);
1000 typedef int (*radeon_packet3_check_t)(struct radeon_cs_parser *p,
1001 struct radeon_cs_packet *pkt);
1002
1003
1004 /*
1005 * AGP
1006 */
1007 int radeon_agp_init(struct radeon_device *rdev);
1008 void radeon_agp_resume(struct radeon_device *rdev);
1009 void radeon_agp_suspend(struct radeon_device *rdev);
1010 void radeon_agp_fini(struct radeon_device *rdev);
1011
1012
1013 /*
1014 * Writeback
1015 */
1016 struct radeon_wb {
1017 struct radeon_bo *wb_obj;
1018 volatile uint32_t *wb;
1019 uint64_t gpu_addr;
1020 bool enabled;
1021 bool use_event;
1022 };
1023
1024 #define RADEON_WB_SCRATCH_OFFSET 0
1025 #define RADEON_WB_RING0_NEXT_RPTR 256
1026 #define RADEON_WB_CP_RPTR_OFFSET 1024
1027 #define RADEON_WB_CP1_RPTR_OFFSET 1280
1028 #define RADEON_WB_CP2_RPTR_OFFSET 1536
1029 #define R600_WB_DMA_RPTR_OFFSET 1792
1030 #define R600_WB_IH_WPTR_OFFSET 2048
1031 #define CAYMAN_WB_DMA1_RPTR_OFFSET 2304
1032 #define R600_WB_UVD_RPTR_OFFSET 2560
1033 #define R600_WB_EVENT_OFFSET 3072
1034 #define CIK_WB_CP1_WPTR_OFFSET 3328
1035 #define CIK_WB_CP2_WPTR_OFFSET 3584
1036
1037 /**
1038 * struct radeon_pm - power management datas
1039 * @max_bandwidth: maximum bandwidth the gpu has (MByte/s)
1040 * @igp_sideport_mclk: sideport memory clock Mhz (rs690,rs740,rs780,rs880)
1041 * @igp_system_mclk: system clock Mhz (rs690,rs740,rs780,rs880)
1042 * @igp_ht_link_clk: ht link clock Mhz (rs690,rs740,rs780,rs880)
1043 * @igp_ht_link_width: ht link width in bits (rs690,rs740,rs780,rs880)
1044 * @k8_bandwidth: k8 bandwidth the gpu has (MByte/s) (IGP)
1045 * @sideport_bandwidth: sideport bandwidth the gpu has (MByte/s) (IGP)
1046 * @ht_bandwidth: ht bandwidth the gpu has (MByte/s) (IGP)
1047 * @core_bandwidth: core GPU bandwidth the gpu has (MByte/s) (IGP)
1048 * @sclk: GPU clock Mhz (core bandwidth depends of this clock)
1049 * @needed_bandwidth: current bandwidth needs
1050 *
1051 * It keeps track of various data needed to take powermanagement decision.
1052 * Bandwidth need is used to determine minimun clock of the GPU and memory.
1053 * Equation between gpu/memory clock and available bandwidth is hw dependent
1054 * (type of memory, bus size, efficiency, ...)
1055 */
1056
1057 enum radeon_pm_method {
1058 PM_METHOD_PROFILE,
1059 PM_METHOD_DYNPM,
1060 PM_METHOD_DPM,
1061 };
1062
1063 enum radeon_dynpm_state {
1064 DYNPM_STATE_DISABLED,
1065 DYNPM_STATE_MINIMUM,
1066 DYNPM_STATE_PAUSED,
1067 DYNPM_STATE_ACTIVE,
1068 DYNPM_STATE_SUSPENDED,
1069 };
1070 enum radeon_dynpm_action {
1071 DYNPM_ACTION_NONE,
1072 DYNPM_ACTION_MINIMUM,
1073 DYNPM_ACTION_DOWNCLOCK,
1074 DYNPM_ACTION_UPCLOCK,
1075 DYNPM_ACTION_DEFAULT
1076 };
1077
1078 enum radeon_voltage_type {
1079 VOLTAGE_NONE = 0,
1080 VOLTAGE_GPIO,
1081 VOLTAGE_VDDC,
1082 VOLTAGE_SW
1083 };
1084
1085 enum radeon_pm_state_type {
1086 /* not used for dpm */
1087 POWER_STATE_TYPE_DEFAULT,
1088 POWER_STATE_TYPE_POWERSAVE,
1089 /* user selectable states */
1090 POWER_STATE_TYPE_BATTERY,
1091 POWER_STATE_TYPE_BALANCED,
1092 POWER_STATE_TYPE_PERFORMANCE,
1093 /* internal states */
1094 POWER_STATE_TYPE_INTERNAL_UVD,
1095 POWER_STATE_TYPE_INTERNAL_UVD_SD,
1096 POWER_STATE_TYPE_INTERNAL_UVD_HD,
1097 POWER_STATE_TYPE_INTERNAL_UVD_HD2,
1098 POWER_STATE_TYPE_INTERNAL_UVD_MVC,
1099 POWER_STATE_TYPE_INTERNAL_BOOT,
1100 POWER_STATE_TYPE_INTERNAL_THERMAL,
1101 POWER_STATE_TYPE_INTERNAL_ACPI,
1102 POWER_STATE_TYPE_INTERNAL_ULV,
1103 POWER_STATE_TYPE_INTERNAL_3DPERF,
1104 };
1105
1106 enum radeon_pm_profile_type {
1107 PM_PROFILE_DEFAULT,
1108 PM_PROFILE_AUTO,
1109 PM_PROFILE_LOW,
1110 PM_PROFILE_MID,
1111 PM_PROFILE_HIGH,
1112 };
1113
1114 #define PM_PROFILE_DEFAULT_IDX 0
1115 #define PM_PROFILE_LOW_SH_IDX 1
1116 #define PM_PROFILE_MID_SH_IDX 2
1117 #define PM_PROFILE_HIGH_SH_IDX 3
1118 #define PM_PROFILE_LOW_MH_IDX 4
1119 #define PM_PROFILE_MID_MH_IDX 5
1120 #define PM_PROFILE_HIGH_MH_IDX 6
1121 #define PM_PROFILE_MAX 7
1122
1123 struct radeon_pm_profile {
1124 int dpms_off_ps_idx;
1125 int dpms_on_ps_idx;
1126 int dpms_off_cm_idx;
1127 int dpms_on_cm_idx;
1128 };
1129
1130 enum radeon_int_thermal_type {
1131 THERMAL_TYPE_NONE,
1132 THERMAL_TYPE_EXTERNAL,
1133 THERMAL_TYPE_EXTERNAL_GPIO,
1134 THERMAL_TYPE_RV6XX,
1135 THERMAL_TYPE_RV770,
1136 THERMAL_TYPE_ADT7473_WITH_INTERNAL,
1137 THERMAL_TYPE_EVERGREEN,
1138 THERMAL_TYPE_SUMO,
1139 THERMAL_TYPE_NI,
1140 THERMAL_TYPE_SI,
1141 THERMAL_TYPE_EMC2103_WITH_INTERNAL,
1142 THERMAL_TYPE_CI,
1143 };
1144
1145 struct radeon_voltage {
1146 enum radeon_voltage_type type;
1147 /* gpio voltage */
1148 struct radeon_gpio_rec gpio;
1149 u32 delay; /* delay in usec from voltage drop to sclk change */
1150 bool active_high; /* voltage drop is active when bit is high */
1151 /* VDDC voltage */
1152 u8 vddc_id; /* index into vddc voltage table */
1153 u8 vddci_id; /* index into vddci voltage table */
1154 bool vddci_enabled;
1155 /* r6xx+ sw */
1156 u16 voltage;
1157 /* evergreen+ vddci */
1158 u16 vddci;
1159 };
1160
1161 /* clock mode flags */
1162 #define RADEON_PM_MODE_NO_DISPLAY (1 << 0)
1163
1164 struct radeon_pm_clock_info {
1165 /* memory clock */
1166 u32 mclk;
1167 /* engine clock */
1168 u32 sclk;
1169 /* voltage info */
1170 struct radeon_voltage voltage;
1171 /* standardized clock flags */
1172 u32 flags;
1173 };
1174
1175 /* state flags */
1176 #define RADEON_PM_STATE_SINGLE_DISPLAY_ONLY (1 << 0)
1177
1178 struct radeon_power_state {
1179 enum radeon_pm_state_type type;
1180 struct radeon_pm_clock_info *clock_info;
1181 /* number of valid clock modes in this power state */
1182 int num_clock_modes;
1183 struct radeon_pm_clock_info *default_clock_mode;
1184 /* standardized state flags */
1185 u32 flags;
1186 u32 misc; /* vbios specific flags */
1187 u32 misc2; /* vbios specific flags */
1188 int pcie_lanes; /* pcie lanes */
1189 };
1190
1191 /*
1192 * Some modes are overclocked by very low value, accept them
1193 */
1194 #define RADEON_MODE_OVERCLOCK_MARGIN 500 /* 5 MHz */
1195
1196 enum radeon_dpm_auto_throttle_src {
1197 RADEON_DPM_AUTO_THROTTLE_SRC_THERMAL,
1198 RADEON_DPM_AUTO_THROTTLE_SRC_EXTERNAL
1199 };
1200
1201 enum radeon_dpm_event_src {
1202 RADEON_DPM_EVENT_SRC_ANALOG = 0,
1203 RADEON_DPM_EVENT_SRC_EXTERNAL = 1,
1204 RADEON_DPM_EVENT_SRC_DIGITAL = 2,
1205 RADEON_DPM_EVENT_SRC_ANALOG_OR_EXTERNAL = 3,
1206 RADEON_DPM_EVENT_SRC_DIGIAL_OR_EXTERNAL = 4
1207 };
1208
1209 struct radeon_ps {
1210 u32 caps; /* vbios flags */
1211 u32 class; /* vbios flags */
1212 u32 class2; /* vbios flags */
1213 /* UVD clocks */
1214 u32 vclk;
1215 u32 dclk;
1216 /* asic priv */
1217 void *ps_priv;
1218 };
1219
1220 struct radeon_dpm_thermal {
1221 /* thermal interrupt work */
1222 struct work_struct work;
1223 /* low temperature threshold */
1224 int min_temp;
1225 /* high temperature threshold */
1226 int max_temp;
1227 /* was interrupt low to high or high to low */
1228 bool high_to_low;
1229 };
1230
1231 enum radeon_clk_action
1232 {
1233 RADEON_SCLK_UP = 1,
1234 RADEON_SCLK_DOWN
1235 };
1236
1237 struct radeon_blacklist_clocks
1238 {
1239 u32 sclk;
1240 u32 mclk;
1241 enum radeon_clk_action action;
1242 };
1243
1244 struct radeon_clock_and_voltage_limits {
1245 u32 sclk;
1246 u32 mclk;
1247 u32 vddc;
1248 u32 vddci;
1249 };
1250
1251 struct radeon_clock_array {
1252 u32 count;
1253 u32 *values;
1254 };
1255
1256 struct radeon_clock_voltage_dependency_entry {
1257 u32 clk;
1258 u16 v;
1259 };
1260
1261 struct radeon_clock_voltage_dependency_table {
1262 u32 count;
1263 struct radeon_clock_voltage_dependency_entry *entries;
1264 };
1265
1266 struct radeon_cac_leakage_entry {
1267 u16 vddc;
1268 u32 leakage;
1269 };
1270
1271 struct radeon_cac_leakage_table {
1272 u32 count;
1273 struct radeon_cac_leakage_entry *entries;
1274 };
1275
1276 struct radeon_phase_shedding_limits_entry {
1277 u16 voltage;
1278 u32 sclk;
1279 u32 mclk;
1280 };
1281
1282 struct radeon_phase_shedding_limits_table {
1283 u32 count;
1284 struct radeon_phase_shedding_limits_entry *entries;
1285 };
1286
1287 struct radeon_ppm_table {
1288 u8 ppm_design;
1289 u16 cpu_core_number;
1290 u32 platform_tdp;
1291 u32 small_ac_platform_tdp;
1292 u32 platform_tdc;
1293 u32 small_ac_platform_tdc;
1294 u32 apu_tdp;
1295 u32 dgpu_tdp;
1296 u32 dgpu_ulv_power;
1297 u32 tj_max;
1298 };
1299
1300 struct radeon_dpm_dynamic_state {
1301 struct radeon_clock_voltage_dependency_table vddc_dependency_on_sclk;
1302 struct radeon_clock_voltage_dependency_table vddci_dependency_on_mclk;
1303 struct radeon_clock_voltage_dependency_table vddc_dependency_on_mclk;
1304 struct radeon_clock_voltage_dependency_table vddc_dependency_on_dispclk;
1305 struct radeon_clock_array valid_sclk_values;
1306 struct radeon_clock_array valid_mclk_values;
1307 struct radeon_clock_and_voltage_limits max_clock_voltage_on_dc;
1308 struct radeon_clock_and_voltage_limits max_clock_voltage_on_ac;
1309 u32 mclk_sclk_ratio;
1310 u32 sclk_mclk_delta;
1311 u16 vddc_vddci_delta;
1312 u16 min_vddc_for_pcie_gen2;
1313 struct radeon_cac_leakage_table cac_leakage_table;
1314 struct radeon_phase_shedding_limits_table phase_shedding_limits_table;
1315 struct radeon_ppm_table *ppm_table;
1316 };
1317
1318 struct radeon_dpm_fan {
1319 u16 t_min;
1320 u16 t_med;
1321 u16 t_high;
1322 u16 pwm_min;
1323 u16 pwm_med;
1324 u16 pwm_high;
1325 u8 t_hyst;
1326 u32 cycle_delay;
1327 u16 t_max;
1328 bool ucode_fan_control;
1329 };
1330
1331 enum radeon_pcie_gen {
1332 RADEON_PCIE_GEN1 = 0,
1333 RADEON_PCIE_GEN2 = 1,
1334 RADEON_PCIE_GEN3 = 2,
1335 RADEON_PCIE_GEN_INVALID = 0xffff
1336 };
1337
1338 enum radeon_dpm_forced_level {
1339 RADEON_DPM_FORCED_LEVEL_AUTO = 0,
1340 RADEON_DPM_FORCED_LEVEL_LOW = 1,
1341 RADEON_DPM_FORCED_LEVEL_HIGH = 2,
1342 };
1343
1344 struct radeon_dpm {
1345 struct radeon_ps *ps;
1346 /* number of valid power states */
1347 int num_ps;
1348 /* current power state that is active */
1349 struct radeon_ps *current_ps;
1350 /* requested power state */
1351 struct radeon_ps *requested_ps;
1352 /* boot up power state */
1353 struct radeon_ps *boot_ps;
1354 /* default uvd power state */
1355 struct radeon_ps *uvd_ps;
1356 enum radeon_pm_state_type state;
1357 enum radeon_pm_state_type user_state;
1358 u32 platform_caps;
1359 u32 voltage_response_time;
1360 u32 backbias_response_time;
1361 void *priv;
1362 u32 new_active_crtcs;
1363 int new_active_crtc_count;
1364 u32 current_active_crtcs;
1365 int current_active_crtc_count;
1366 struct radeon_dpm_dynamic_state dyn_state;
1367 struct radeon_dpm_fan fan;
1368 u32 tdp_limit;
1369 u32 near_tdp_limit;
1370 u32 near_tdp_limit_adjusted;
1371 u32 sq_ramping_threshold;
1372 u32 cac_leakage;
1373 u16 tdp_od_limit;
1374 u32 tdp_adjustment;
1375 u16 load_line_slope;
1376 bool power_control;
1377 bool ac_power;
1378 /* special states active */
1379 bool thermal_active;
1380 bool uvd_active;
1381 /* thermal handling */
1382 struct radeon_dpm_thermal thermal;
1383 /* forced levels */
1384 enum radeon_dpm_forced_level forced_level;
1385 };
1386
1387 void radeon_dpm_enable_power_state(struct radeon_device *rdev,
1388 enum radeon_pm_state_type dpm_state);
1389
1390
1391 struct radeon_pm {
1392 struct mutex mutex;
1393 /* write locked while reprogramming mclk */
1394 struct rw_semaphore mclk_lock;
1395 u32 active_crtcs;
1396 int active_crtc_count;
1397 int req_vblank;
1398 bool vblank_sync;
1399 fixed20_12 max_bandwidth;
1400 fixed20_12 igp_sideport_mclk;
1401 fixed20_12 igp_system_mclk;
1402 fixed20_12 igp_ht_link_clk;
1403 fixed20_12 igp_ht_link_width;
1404 fixed20_12 k8_bandwidth;
1405 fixed20_12 sideport_bandwidth;
1406 fixed20_12 ht_bandwidth;
1407 fixed20_12 core_bandwidth;
1408 fixed20_12 sclk;
1409 fixed20_12 mclk;
1410 fixed20_12 needed_bandwidth;
1411 struct radeon_power_state *power_state;
1412 /* number of valid power states */
1413 int num_power_states;
1414 int current_power_state_index;
1415 int current_clock_mode_index;
1416 int requested_power_state_index;
1417 int requested_clock_mode_index;
1418 int default_power_state_index;
1419 u32 current_sclk;
1420 u32 current_mclk;
1421 u16 current_vddc;
1422 u16 current_vddci;
1423 u32 default_sclk;
1424 u32 default_mclk;
1425 u16 default_vddc;
1426 u16 default_vddci;
1427 struct radeon_i2c_chan *i2c_bus;
1428 /* selected pm method */
1429 enum radeon_pm_method pm_method;
1430 /* dynpm power management */
1431 struct delayed_work dynpm_idle_work;
1432 enum radeon_dynpm_state dynpm_state;
1433 enum radeon_dynpm_action dynpm_planned_action;
1434 unsigned long dynpm_action_timeout;
1435 bool dynpm_can_upclock;
1436 bool dynpm_can_downclock;
1437 /* profile-based power management */
1438 enum radeon_pm_profile_type profile;
1439 int profile_index;
1440 struct radeon_pm_profile profiles[PM_PROFILE_MAX];
1441 /* internal thermal controller on rv6xx+ */
1442 enum radeon_int_thermal_type int_thermal_type;
1443 struct device *int_hwmon_dev;
1444 /* dpm */
1445 bool dpm_enabled;
1446 struct radeon_dpm dpm;
1447 };
1448
1449 int radeon_pm_get_type_index(struct radeon_device *rdev,
1450 enum radeon_pm_state_type ps_type,
1451 int instance);
1452 /*
1453 * UVD
1454 */
1455 #define RADEON_MAX_UVD_HANDLES 10
1456 #define RADEON_UVD_STACK_SIZE (1024*1024)
1457 #define RADEON_UVD_HEAP_SIZE (1024*1024)
1458
1459 struct radeon_uvd {
1460 struct radeon_bo *vcpu_bo;
1461 void *cpu_addr;
1462 uint64_t gpu_addr;
1463 atomic_t handles[RADEON_MAX_UVD_HANDLES];
1464 struct drm_file *filp[RADEON_MAX_UVD_HANDLES];
1465 struct delayed_work idle_work;
1466 };
1467
1468 int radeon_uvd_init(struct radeon_device *rdev);
1469 void radeon_uvd_fini(struct radeon_device *rdev);
1470 int radeon_uvd_suspend(struct radeon_device *rdev);
1471 int radeon_uvd_resume(struct radeon_device *rdev);
1472 int radeon_uvd_get_create_msg(struct radeon_device *rdev, int ring,
1473 uint32_t handle, struct radeon_fence **fence);
1474 int radeon_uvd_get_destroy_msg(struct radeon_device *rdev, int ring,
1475 uint32_t handle, struct radeon_fence **fence);
1476 void radeon_uvd_force_into_uvd_segment(struct radeon_bo *rbo);
1477 void radeon_uvd_free_handles(struct radeon_device *rdev,
1478 struct drm_file *filp);
1479 int radeon_uvd_cs_parse(struct radeon_cs_parser *parser);
1480 void radeon_uvd_note_usage(struct radeon_device *rdev);
1481 int radeon_uvd_calc_upll_dividers(struct radeon_device *rdev,
1482 unsigned vclk, unsigned dclk,
1483 unsigned vco_min, unsigned vco_max,
1484 unsigned fb_factor, unsigned fb_mask,
1485 unsigned pd_min, unsigned pd_max,
1486 unsigned pd_even,
1487 unsigned *optimal_fb_div,
1488 unsigned *optimal_vclk_div,
1489 unsigned *optimal_dclk_div);
1490 int radeon_uvd_send_upll_ctlreq(struct radeon_device *rdev,
1491 unsigned cg_upll_func_cntl);
1492
1493 struct r600_audio {
1494 int channels;
1495 int rate;
1496 int bits_per_sample;
1497 u8 status_bits;
1498 u8 category_code;
1499 };
1500
1501 /*
1502 * Benchmarking
1503 */
1504 void radeon_benchmark(struct radeon_device *rdev, int test_number);
1505
1506
1507 /*
1508 * Testing
1509 */
1510 void radeon_test_moves(struct radeon_device *rdev);
1511 void radeon_test_ring_sync(struct radeon_device *rdev,
1512 struct radeon_ring *cpA,
1513 struct radeon_ring *cpB);
1514 void radeon_test_syncing(struct radeon_device *rdev);
1515
1516
1517 /*
1518 * Debugfs
1519 */
1520 struct radeon_debugfs {
1521 struct drm_info_list *files;
1522 unsigned num_files;
1523 };
1524
1525 int radeon_debugfs_add_files(struct radeon_device *rdev,
1526 struct drm_info_list *files,
1527 unsigned nfiles);
1528 int radeon_debugfs_fence_init(struct radeon_device *rdev);
1529
1530
1531 /*
1532 * ASIC specific functions.
1533 */
1534 struct radeon_asic {
1535 int (*init)(struct radeon_device *rdev);
1536 void (*fini)(struct radeon_device *rdev);
1537 int (*resume)(struct radeon_device *rdev);
1538 int (*suspend)(struct radeon_device *rdev);
1539 void (*vga_set_state)(struct radeon_device *rdev, bool state);
1540 int (*asic_reset)(struct radeon_device *rdev);
1541 /* ioctl hw specific callback. Some hw might want to perform special
1542 * operation on specific ioctl. For instance on wait idle some hw
1543 * might want to perform and HDP flush through MMIO as it seems that
1544 * some R6XX/R7XX hw doesn't take HDP flush into account if programmed
1545 * through ring.
1546 */
1547 void (*ioctl_wait_idle)(struct radeon_device *rdev, struct radeon_bo *bo);
1548 /* check if 3D engine is idle */
1549 bool (*gui_idle)(struct radeon_device *rdev);
1550 /* wait for mc_idle */
1551 int (*mc_wait_for_idle)(struct radeon_device *rdev);
1552 /* get the reference clock */
1553 u32 (*get_xclk)(struct radeon_device *rdev);
1554 /* get the gpu clock counter */
1555 uint64_t (*get_gpu_clock_counter)(struct radeon_device *rdev);
1556 /* gart */
1557 struct {
1558 void (*tlb_flush)(struct radeon_device *rdev);
1559 int (*set_page)(struct radeon_device *rdev, int i, uint64_t addr);
1560 } gart;
1561 struct {
1562 int (*init)(struct radeon_device *rdev);
1563 void (*fini)(struct radeon_device *rdev);
1564
1565 u32 pt_ring_index;
1566 void (*set_page)(struct radeon_device *rdev,
1567 struct radeon_ib *ib,
1568 uint64_t pe,
1569 uint64_t addr, unsigned count,
1570 uint32_t incr, uint32_t flags);
1571 } vm;
1572 /* ring specific callbacks */
1573 struct {
1574 void (*ib_execute)(struct radeon_device *rdev, struct radeon_ib *ib);
1575 int (*ib_parse)(struct radeon_device *rdev, struct radeon_ib *ib);
1576 void (*emit_fence)(struct radeon_device *rdev, struct radeon_fence *fence);
1577 void (*emit_semaphore)(struct radeon_device *rdev, struct radeon_ring *cp,
1578 struct radeon_semaphore *semaphore, bool emit_wait);
1579 int (*cs_parse)(struct radeon_cs_parser *p);
1580 void (*ring_start)(struct radeon_device *rdev, struct radeon_ring *cp);
1581 int (*ring_test)(struct radeon_device *rdev, struct radeon_ring *cp);
1582 int (*ib_test)(struct radeon_device *rdev, struct radeon_ring *cp);
1583 bool (*is_lockup)(struct radeon_device *rdev, struct radeon_ring *cp);
1584 void (*vm_flush)(struct radeon_device *rdev, int ridx, struct radeon_vm *vm);
1585
1586 u32 (*get_rptr)(struct radeon_device *rdev, struct radeon_ring *ring);
1587 u32 (*get_wptr)(struct radeon_device *rdev, struct radeon_ring *ring);
1588 void (*set_wptr)(struct radeon_device *rdev, struct radeon_ring *ring);
1589 } ring[RADEON_NUM_RINGS];
1590 /* irqs */
1591 struct {
1592 int (*set)(struct radeon_device *rdev);
1593 int (*process)(struct radeon_device *rdev);
1594 } irq;
1595 /* displays */
1596 struct {
1597 /* display watermarks */
1598 void (*bandwidth_update)(struct radeon_device *rdev);
1599 /* get frame count */
1600 u32 (*get_vblank_counter)(struct radeon_device *rdev, int crtc);
1601 /* wait for vblank */
1602 void (*wait_for_vblank)(struct radeon_device *rdev, int crtc);
1603 /* set backlight level */
1604 void (*set_backlight_level)(struct radeon_encoder *radeon_encoder, u8 level);
1605 /* get backlight level */
1606 u8 (*get_backlight_level)(struct radeon_encoder *radeon_encoder);
1607 /* audio callbacks */
1608 void (*hdmi_enable)(struct drm_encoder *encoder, bool enable);
1609 void (*hdmi_setmode)(struct drm_encoder *encoder, struct drm_display_mode *mode);
1610 } display;
1611 /* copy functions for bo handling */
1612 struct {
1613 int (*blit)(struct radeon_device *rdev,
1614 uint64_t src_offset,
1615 uint64_t dst_offset,
1616 unsigned num_gpu_pages,
1617 struct radeon_fence **fence);
1618 u32 blit_ring_index;
1619 int (*dma)(struct radeon_device *rdev,
1620 uint64_t src_offset,
1621 uint64_t dst_offset,
1622 unsigned num_gpu_pages,
1623 struct radeon_fence **fence);
1624 u32 dma_ring_index;
1625 /* method used for bo copy */
1626 int (*copy)(struct radeon_device *rdev,
1627 uint64_t src_offset,
1628 uint64_t dst_offset,
1629 unsigned num_gpu_pages,
1630 struct radeon_fence **fence);
1631 /* ring used for bo copies */
1632 u32 copy_ring_index;
1633 } copy;
1634 /* surfaces */
1635 struct {
1636 int (*set_reg)(struct radeon_device *rdev, int reg,
1637 uint32_t tiling_flags, uint32_t pitch,
1638 uint32_t offset, uint32_t obj_size);
1639 void (*clear_reg)(struct radeon_device *rdev, int reg);
1640 } surface;
1641 /* hotplug detect */
1642 struct {
1643 void (*init)(struct radeon_device *rdev);
1644 void (*fini)(struct radeon_device *rdev);
1645 bool (*sense)(struct radeon_device *rdev, enum radeon_hpd_id hpd);
1646 void (*set_polarity)(struct radeon_device *rdev, enum radeon_hpd_id hpd);
1647 } hpd;
1648 /* static power management */
1649 struct {
1650 void (*misc)(struct radeon_device *rdev);
1651 void (*prepare)(struct radeon_device *rdev);
1652 void (*finish)(struct radeon_device *rdev);
1653 void (*init_profile)(struct radeon_device *rdev);
1654 void (*get_dynpm_state)(struct radeon_device *rdev);
1655 uint32_t (*get_engine_clock)(struct radeon_device *rdev);
1656 void (*set_engine_clock)(struct radeon_device *rdev, uint32_t eng_clock);
1657 uint32_t (*get_memory_clock)(struct radeon_device *rdev);
1658 void (*set_memory_clock)(struct radeon_device *rdev, uint32_t mem_clock);
1659 int (*get_pcie_lanes)(struct radeon_device *rdev);
1660 void (*set_pcie_lanes)(struct radeon_device *rdev, int lanes);
1661 void (*set_clock_gating)(struct radeon_device *rdev, int enable);
1662 int (*set_uvd_clocks)(struct radeon_device *rdev, u32 vclk, u32 dclk);
1663 int (*get_temperature)(struct radeon_device *rdev);
1664 } pm;
1665 /* dynamic power management */
1666 struct {
1667 int (*init)(struct radeon_device *rdev);
1668 void (*setup_asic)(struct radeon_device *rdev);
1669 int (*enable)(struct radeon_device *rdev);
1670 void (*disable)(struct radeon_device *rdev);
1671 int (*pre_set_power_state)(struct radeon_device *rdev);
1672 int (*set_power_state)(struct radeon_device *rdev);
1673 void (*post_set_power_state)(struct radeon_device *rdev);
1674 void (*display_configuration_changed)(struct radeon_device *rdev);
1675 void (*fini)(struct radeon_device *rdev);
1676 u32 (*get_sclk)(struct radeon_device *rdev, bool low);
1677 u32 (*get_mclk)(struct radeon_device *rdev, bool low);
1678 void (*print_power_state)(struct radeon_device *rdev, struct radeon_ps *ps);
1679 void (*debugfs_print_current_performance_level)(struct radeon_device *rdev, struct seq_file *m);
1680 int (*force_performance_level)(struct radeon_device *rdev, enum radeon_dpm_forced_level level);
1681 bool (*vblank_too_short)(struct radeon_device *rdev);
1682 } dpm;
1683 /* pageflipping */
1684 struct {
1685 void (*pre_page_flip)(struct radeon_device *rdev, int crtc);
1686 u32 (*page_flip)(struct radeon_device *rdev, int crtc, u64 crtc_base);
1687 void (*post_page_flip)(struct radeon_device *rdev, int crtc);
1688 } pflip;
1689 };
1690
1691 /*
1692 * Asic structures
1693 */
1694 struct r100_asic {
1695 const unsigned *reg_safe_bm;
1696 unsigned reg_safe_bm_size;
1697 u32 hdp_cntl;
1698 };
1699
1700 struct r300_asic {
1701 const unsigned *reg_safe_bm;
1702 unsigned reg_safe_bm_size;
1703 u32 resync_scratch;
1704 u32 hdp_cntl;
1705 };
1706
1707 struct r600_asic {
1708 unsigned max_pipes;
1709 unsigned max_tile_pipes;
1710 unsigned max_simds;
1711 unsigned max_backends;
1712 unsigned max_gprs;
1713 unsigned max_threads;
1714 unsigned max_stack_entries;
1715 unsigned max_hw_contexts;
1716 unsigned max_gs_threads;
1717 unsigned sx_max_export_size;
1718 unsigned sx_max_export_pos_size;
1719 unsigned sx_max_export_smx_size;
1720 unsigned sq_num_cf_insts;
1721 unsigned tiling_nbanks;
1722 unsigned tiling_npipes;
1723 unsigned tiling_group_size;
1724 unsigned tile_config;
1725 unsigned backend_map;
1726 };
1727
1728 struct rv770_asic {
1729 unsigned max_pipes;
1730 unsigned max_tile_pipes;
1731 unsigned max_simds;
1732 unsigned max_backends;
1733 unsigned max_gprs;
1734 unsigned max_threads;
1735 unsigned max_stack_entries;
1736 unsigned max_hw_contexts;
1737 unsigned max_gs_threads;
1738 unsigned sx_max_export_size;
1739 unsigned sx_max_export_pos_size;
1740 unsigned sx_max_export_smx_size;
1741 unsigned sq_num_cf_insts;
1742 unsigned sx_num_of_sets;
1743 unsigned sc_prim_fifo_size;
1744 unsigned sc_hiz_tile_fifo_size;
1745 unsigned sc_earlyz_tile_fifo_fize;
1746 unsigned tiling_nbanks;
1747 unsigned tiling_npipes;
1748 unsigned tiling_group_size;
1749 unsigned tile_config;
1750 unsigned backend_map;
1751 };
1752
1753 struct evergreen_asic {
1754 unsigned num_ses;
1755 unsigned max_pipes;
1756 unsigned max_tile_pipes;
1757 unsigned max_simds;
1758 unsigned max_backends;
1759 unsigned max_gprs;
1760 unsigned max_threads;
1761 unsigned max_stack_entries;
1762 unsigned max_hw_contexts;
1763 unsigned max_gs_threads;
1764 unsigned sx_max_export_size;
1765 unsigned sx_max_export_pos_size;
1766 unsigned sx_max_export_smx_size;
1767 unsigned sq_num_cf_insts;
1768 unsigned sx_num_of_sets;
1769 unsigned sc_prim_fifo_size;
1770 unsigned sc_hiz_tile_fifo_size;
1771 unsigned sc_earlyz_tile_fifo_size;
1772 unsigned tiling_nbanks;
1773 unsigned tiling_npipes;
1774 unsigned tiling_group_size;
1775 unsigned tile_config;
1776 unsigned backend_map;
1777 };
1778
1779 struct cayman_asic {
1780 unsigned max_shader_engines;
1781 unsigned max_pipes_per_simd;
1782 unsigned max_tile_pipes;
1783 unsigned max_simds_per_se;
1784 unsigned max_backends_per_se;
1785 unsigned max_texture_channel_caches;
1786 unsigned max_gprs;
1787 unsigned max_threads;
1788 unsigned max_gs_threads;
1789 unsigned max_stack_entries;
1790 unsigned sx_num_of_sets;
1791 unsigned sx_max_export_size;
1792 unsigned sx_max_export_pos_size;
1793 unsigned sx_max_export_smx_size;
1794 unsigned max_hw_contexts;
1795 unsigned sq_num_cf_insts;
1796 unsigned sc_prim_fifo_size;
1797 unsigned sc_hiz_tile_fifo_size;
1798 unsigned sc_earlyz_tile_fifo_size;
1799
1800 unsigned num_shader_engines;
1801 unsigned num_shader_pipes_per_simd;
1802 unsigned num_tile_pipes;
1803 unsigned num_simds_per_se;
1804 unsigned num_backends_per_se;
1805 unsigned backend_disable_mask_per_asic;
1806 unsigned backend_map;
1807 unsigned num_texture_channel_caches;
1808 unsigned mem_max_burst_length_bytes;
1809 unsigned mem_row_size_in_kb;
1810 unsigned shader_engine_tile_size;
1811 unsigned num_gpus;
1812 unsigned multi_gpu_tile_size;
1813
1814 unsigned tile_config;
1815 };
1816
1817 struct si_asic {
1818 unsigned max_shader_engines;
1819 unsigned max_tile_pipes;
1820 unsigned max_cu_per_sh;
1821 unsigned max_sh_per_se;
1822 unsigned max_backends_per_se;
1823 unsigned max_texture_channel_caches;
1824 unsigned max_gprs;
1825 unsigned max_gs_threads;
1826 unsigned max_hw_contexts;
1827 unsigned sc_prim_fifo_size_frontend;
1828 unsigned sc_prim_fifo_size_backend;
1829 unsigned sc_hiz_tile_fifo_size;
1830 unsigned sc_earlyz_tile_fifo_size;
1831
1832 unsigned num_tile_pipes;
1833 unsigned num_backends_per_se;
1834 unsigned backend_disable_mask_per_asic;
1835 unsigned backend_map;
1836 unsigned num_texture_channel_caches;
1837 unsigned mem_max_burst_length_bytes;
1838 unsigned mem_row_size_in_kb;
1839 unsigned shader_engine_tile_size;
1840 unsigned num_gpus;
1841 unsigned multi_gpu_tile_size;
1842
1843 unsigned tile_config;
1844 uint32_t tile_mode_array[32];
1845 };
1846
1847 struct cik_asic {
1848 unsigned max_shader_engines;
1849 unsigned max_tile_pipes;
1850 unsigned max_cu_per_sh;
1851 unsigned max_sh_per_se;
1852 unsigned max_backends_per_se;
1853 unsigned max_texture_channel_caches;
1854 unsigned max_gprs;
1855 unsigned max_gs_threads;
1856 unsigned max_hw_contexts;
1857 unsigned sc_prim_fifo_size_frontend;
1858 unsigned sc_prim_fifo_size_backend;
1859 unsigned sc_hiz_tile_fifo_size;
1860 unsigned sc_earlyz_tile_fifo_size;
1861
1862 unsigned num_tile_pipes;
1863 unsigned num_backends_per_se;
1864 unsigned backend_disable_mask_per_asic;
1865 unsigned backend_map;
1866 unsigned num_texture_channel_caches;
1867 unsigned mem_max_burst_length_bytes;
1868 unsigned mem_row_size_in_kb;
1869 unsigned shader_engine_tile_size;
1870 unsigned num_gpus;
1871 unsigned multi_gpu_tile_size;
1872
1873 unsigned tile_config;
1874 uint32_t tile_mode_array[32];
1875 };
1876
1877 union radeon_asic_config {
1878 struct r300_asic r300;
1879 struct r100_asic r100;
1880 struct r600_asic r600;
1881 struct rv770_asic rv770;
1882 struct evergreen_asic evergreen;
1883 struct cayman_asic cayman;
1884 struct si_asic si;
1885 struct cik_asic cik;
1886 };
1887
1888 /*
1889 * asic initizalization from radeon_asic.c
1890 */
1891 void radeon_agp_disable(struct radeon_device *rdev);
1892 int radeon_asic_init(struct radeon_device *rdev);
1893
1894
1895 /*
1896 * IOCTL.
1897 */
1898 int radeon_gem_info_ioctl(struct drm_device *dev, void *data,
1899 struct drm_file *filp);
1900 int radeon_gem_create_ioctl(struct drm_device *dev, void *data,
1901 struct drm_file *filp);
1902 int radeon_gem_pin_ioctl(struct drm_device *dev, void *data,
1903 struct drm_file *file_priv);
1904 int radeon_gem_unpin_ioctl(struct drm_device *dev, void *data,
1905 struct drm_file *file_priv);
1906 int radeon_gem_pwrite_ioctl(struct drm_device *dev, void *data,
1907 struct drm_file *file_priv);
1908 int radeon_gem_pread_ioctl(struct drm_device *dev, void *data,
1909 struct drm_file *file_priv);
1910 int radeon_gem_set_domain_ioctl(struct drm_device *dev, void *data,
1911 struct drm_file *filp);
1912 int radeon_gem_mmap_ioctl(struct drm_device *dev, void *data,
1913 struct drm_file *filp);
1914 int radeon_gem_busy_ioctl(struct drm_device *dev, void *data,
1915 struct drm_file *filp);
1916 int radeon_gem_wait_idle_ioctl(struct drm_device *dev, void *data,
1917 struct drm_file *filp);
1918 int radeon_gem_va_ioctl(struct drm_device *dev, void *data,
1919 struct drm_file *filp);
1920 int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
1921 int radeon_gem_set_tiling_ioctl(struct drm_device *dev, void *data,
1922 struct drm_file *filp);
1923 int radeon_gem_get_tiling_ioctl(struct drm_device *dev, void *data,
1924 struct drm_file *filp);
1925
1926 /* VRAM scratch page for HDP bug, default vram page */
1927 struct r600_vram_scratch {
1928 struct radeon_bo *robj;
1929 volatile uint32_t *ptr;
1930 u64 gpu_addr;
1931 };
1932
1933 /*
1934 * ACPI
1935 */
1936 struct radeon_atif_notification_cfg {
1937 bool enabled;
1938 int command_code;
1939 };
1940
1941 struct radeon_atif_notifications {
1942 bool display_switch;
1943 bool expansion_mode_change;
1944 bool thermal_state;
1945 bool forced_power_state;
1946 bool system_power_state;
1947 bool display_conf_change;
1948 bool px_gfx_switch;
1949 bool brightness_change;
1950 bool dgpu_display_event;
1951 };
1952
1953 struct radeon_atif_functions {
1954 bool system_params;
1955 bool sbios_requests;
1956 bool select_active_disp;
1957 bool lid_state;
1958 bool get_tv_standard;
1959 bool set_tv_standard;
1960 bool get_panel_expansion_mode;
1961 bool set_panel_expansion_mode;
1962 bool temperature_change;
1963 bool graphics_device_types;
1964 };
1965
1966 struct radeon_atif {
1967 struct radeon_atif_notifications notifications;
1968 struct radeon_atif_functions functions;
1969 struct radeon_atif_notification_cfg notification_cfg;
1970 struct radeon_encoder *encoder_for_bl;
1971 };
1972
1973 struct radeon_atcs_functions {
1974 bool get_ext_state;
1975 bool pcie_perf_req;
1976 bool pcie_dev_rdy;
1977 bool pcie_bus_width;
1978 };
1979
1980 struct radeon_atcs {
1981 struct radeon_atcs_functions functions;
1982 };
1983
1984 /*
1985 * Core structure, functions and helpers.
1986 */
1987 typedef uint32_t (*radeon_rreg_t)(struct radeon_device*, uint32_t);
1988 typedef void (*radeon_wreg_t)(struct radeon_device*, uint32_t, uint32_t);
1989
1990 struct radeon_device {
1991 struct device *dev;
1992 struct drm_device *ddev;
1993 struct pci_dev *pdev;
1994 struct rw_semaphore exclusive_lock;
1995 /* ASIC */
1996 union radeon_asic_config config;
1997 enum radeon_family family;
1998 unsigned long flags;
1999 int usec_timeout;
2000 enum radeon_pll_errata pll_errata;
2001 int num_gb_pipes;
2002 int num_z_pipes;
2003 int disp_priority;
2004 /* BIOS */
2005 uint8_t *bios;
2006 bool is_atom_bios;
2007 uint16_t bios_header_start;
2008 struct radeon_bo *stollen_vga_memory;
2009 /* Register mmio */
2010 resource_size_t rmmio_base;
2011 resource_size_t rmmio_size;
2012 /* protects concurrent MM_INDEX/DATA based register access */
2013 spinlock_t mmio_idx_lock;
2014 void __iomem *rmmio;
2015 radeon_rreg_t mc_rreg;
2016 radeon_wreg_t mc_wreg;
2017 radeon_rreg_t pll_rreg;
2018 radeon_wreg_t pll_wreg;
2019 uint32_t pcie_reg_mask;
2020 radeon_rreg_t pciep_rreg;
2021 radeon_wreg_t pciep_wreg;
2022 /* io port */
2023 void __iomem *rio_mem;
2024 resource_size_t rio_mem_size;
2025 struct radeon_clock clock;
2026 struct radeon_mc mc;
2027 struct radeon_gart gart;
2028 struct radeon_mode_info mode_info;
2029 struct radeon_scratch scratch;
2030 struct radeon_doorbell doorbell;
2031 struct radeon_mman mman;
2032 struct radeon_fence_driver fence_drv[RADEON_NUM_RINGS];
2033 wait_queue_head_t fence_queue;
2034 struct mutex ring_lock;
2035 struct radeon_ring ring[RADEON_NUM_RINGS];
2036 bool ib_pool_ready;
2037 struct radeon_sa_manager ring_tmp_bo;
2038 struct radeon_irq irq;
2039 struct radeon_asic *asic;
2040 struct radeon_gem gem;
2041 struct radeon_pm pm;
2042 struct radeon_uvd uvd;
2043 uint32_t bios_scratch[RADEON_BIOS_NUM_SCRATCH];
2044 struct radeon_wb wb;
2045 struct radeon_dummy_page dummy_page;
2046 bool shutdown;
2047 bool suspend;
2048 bool need_dma32;
2049 bool accel_working;
2050 bool fastfb_working; /* IGP feature*/
2051 struct radeon_surface_reg surface_regs[RADEON_GEM_MAX_SURFACES];
2052 const struct firmware *me_fw; /* all family ME firmware */
2053 const struct firmware *pfp_fw; /* r6/700 PFP firmware */
2054 const struct firmware *rlc_fw; /* r6/700 RLC firmware */
2055 const struct firmware *mc_fw; /* NI MC firmware */
2056 const struct firmware *ce_fw; /* SI CE firmware */
2057 const struct firmware *uvd_fw; /* UVD firmware */
2058 const struct firmware *mec_fw; /* CIK MEC firmware */
2059 const struct firmware *sdma_fw; /* CIK SDMA firmware */
2060 const struct firmware *smc_fw; /* SMC firmware */
2061 struct r600_blit r600_blit;
2062 struct r600_vram_scratch vram_scratch;
2063 int msi_enabled; /* msi enabled */
2064 struct r600_ih ih; /* r6/700 interrupt ring */
2065 struct radeon_rlc rlc;
2066 struct radeon_mec mec;
2067 struct work_struct hotplug_work;
2068 struct work_struct audio_work;
2069 struct work_struct reset_work;
2070 int num_crtc; /* number of crtcs */
2071 struct mutex dc_hw_i2c_mutex; /* display controller hw i2c mutex */
2072 bool audio_enabled;
2073 bool has_uvd;
2074 struct r600_audio audio_status; /* audio stuff */
2075 struct notifier_block acpi_nb;
2076 /* only one userspace can use Hyperz features or CMASK at a time */
2077 struct drm_file *hyperz_filp;
2078 struct drm_file *cmask_filp;
2079 /* i2c buses */
2080 struct radeon_i2c_chan *i2c_bus[RADEON_MAX_I2C_BUS];
2081 /* debugfs */
2082 struct radeon_debugfs debugfs[RADEON_DEBUGFS_MAX_COMPONENTS];
2083 unsigned debugfs_count;
2084 /* virtual memory */
2085 struct radeon_vm_manager vm_manager;
2086 struct mutex gpu_clock_mutex;
2087 /* ACPI interface */
2088 struct radeon_atif atif;
2089 struct radeon_atcs atcs;
2090 };
2091
2092 int radeon_device_init(struct radeon_device *rdev,
2093 struct drm_device *ddev,
2094 struct pci_dev *pdev,
2095 uint32_t flags);
2096 void radeon_device_fini(struct radeon_device *rdev);
2097 int radeon_gpu_wait_for_idle(struct radeon_device *rdev);
2098
2099 uint32_t r100_mm_rreg(struct radeon_device *rdev, uint32_t reg,
2100 bool always_indirect);
2101 void r100_mm_wreg(struct radeon_device *rdev, uint32_t reg, uint32_t v,
2102 bool always_indirect);
2103 u32 r100_io_rreg(struct radeon_device *rdev, u32 reg);
2104 void r100_io_wreg(struct radeon_device *rdev, u32 reg, u32 v);
2105
2106 u32 cik_mm_rdoorbell(struct radeon_device *rdev, u32 offset);
2107 void cik_mm_wdoorbell(struct radeon_device *rdev, u32 offset, u32 v);
2108
2109 /*
2110 * Cast helper
2111 */
2112 #define to_radeon_fence(p) ((struct radeon_fence *)(p))
2113
2114 /*
2115 * Registers read & write functions.
2116 */
2117 #define RREG8(reg) readb((rdev->rmmio) + (reg))
2118 #define WREG8(reg, v) writeb(v, (rdev->rmmio) + (reg))
2119 #define RREG16(reg) readw((rdev->rmmio) + (reg))
2120 #define WREG16(reg, v) writew(v, (rdev->rmmio) + (reg))
2121 #define RREG32(reg) r100_mm_rreg(rdev, (reg), false)
2122 #define RREG32_IDX(reg) r100_mm_rreg(rdev, (reg), true)
2123 #define DREG32(reg) printk(KERN_INFO "REGISTER: " #reg " : 0x%08X\n", r100_mm_rreg(rdev, (reg), false))
2124 #define WREG32(reg, v) r100_mm_wreg(rdev, (reg), (v), false)
2125 #define WREG32_IDX(reg, v) r100_mm_wreg(rdev, (reg), (v), true)
2126 #define REG_SET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
2127 #define REG_GET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
2128 #define RREG32_PLL(reg) rdev->pll_rreg(rdev, (reg))
2129 #define WREG32_PLL(reg, v) rdev->pll_wreg(rdev, (reg), (v))
2130 #define RREG32_MC(reg) rdev->mc_rreg(rdev, (reg))
2131 #define WREG32_MC(reg, v) rdev->mc_wreg(rdev, (reg), (v))
2132 #define RREG32_PCIE(reg) rv370_pcie_rreg(rdev, (reg))
2133 #define WREG32_PCIE(reg, v) rv370_pcie_wreg(rdev, (reg), (v))
2134 #define RREG32_PCIE_PORT(reg) rdev->pciep_rreg(rdev, (reg))
2135 #define WREG32_PCIE_PORT(reg, v) rdev->pciep_wreg(rdev, (reg), (v))
2136 #define RREG32_SMC(reg) tn_smc_rreg(rdev, (reg))
2137 #define WREG32_SMC(reg, v) tn_smc_wreg(rdev, (reg), (v))
2138 #define RREG32_RCU(reg) r600_rcu_rreg(rdev, (reg))
2139 #define WREG32_RCU(reg, v) r600_rcu_wreg(rdev, (reg), (v))
2140 #define RREG32_CG(reg) eg_cg_rreg(rdev, (reg))
2141 #define WREG32_CG(reg, v) eg_cg_wreg(rdev, (reg), (v))
2142 #define RREG32_PIF_PHY0(reg) eg_pif_phy0_rreg(rdev, (reg))
2143 #define WREG32_PIF_PHY0(reg, v) eg_pif_phy0_wreg(rdev, (reg), (v))
2144 #define RREG32_PIF_PHY1(reg) eg_pif_phy1_rreg(rdev, (reg))
2145 #define WREG32_PIF_PHY1(reg, v) eg_pif_phy1_wreg(rdev, (reg), (v))
2146 #define RREG32_UVD_CTX(reg) r600_uvd_ctx_rreg(rdev, (reg))
2147 #define WREG32_UVD_CTX(reg, v) r600_uvd_ctx_wreg(rdev, (reg), (v))
2148 #define WREG32_P(reg, val, mask) \
2149 do { \
2150 uint32_t tmp_ = RREG32(reg); \
2151 tmp_ &= (mask); \
2152 tmp_ |= ((val) & ~(mask)); \
2153 WREG32(reg, tmp_); \
2154 } while (0)
2155 #define WREG32_AND(reg, and) WREG32_P(reg, 0, and)
2156 #define WREG32_OR(reg, or) WREG32_P(reg, or, ~or)
2157 #define WREG32_PLL_P(reg, val, mask) \
2158 do { \
2159 uint32_t tmp_ = RREG32_PLL(reg); \
2160 tmp_ &= (mask); \
2161 tmp_ |= ((val) & ~(mask)); \
2162 WREG32_PLL(reg, tmp_); \
2163 } while (0)
2164 #define DREG32_SYS(sqf, rdev, reg) seq_printf((sqf), #reg " : 0x%08X\n", r100_mm_rreg((rdev), (reg), false))
2165 #define RREG32_IO(reg) r100_io_rreg(rdev, (reg))
2166 #define WREG32_IO(reg, v) r100_io_wreg(rdev, (reg), (v))
2167
2168 #define RDOORBELL32(offset) cik_mm_rdoorbell(rdev, (offset))
2169 #define WDOORBELL32(offset, v) cik_mm_wdoorbell(rdev, (offset), (v))
2170
2171 /*
2172 * Indirect registers accessor
2173 */
2174 static inline uint32_t rv370_pcie_rreg(struct radeon_device *rdev, uint32_t reg)
2175 {
2176 uint32_t r;
2177
2178 WREG32(RADEON_PCIE_INDEX, ((reg) & rdev->pcie_reg_mask));
2179 r = RREG32(RADEON_PCIE_DATA);
2180 return r;
2181 }
2182
2183 static inline void rv370_pcie_wreg(struct radeon_device *rdev, uint32_t reg, uint32_t v)
2184 {
2185 WREG32(RADEON_PCIE_INDEX, ((reg) & rdev->pcie_reg_mask));
2186 WREG32(RADEON_PCIE_DATA, (v));
2187 }
2188
2189 static inline u32 tn_smc_rreg(struct radeon_device *rdev, u32 reg)
2190 {
2191 u32 r;
2192
2193 WREG32(TN_SMC_IND_INDEX_0, (reg));
2194 r = RREG32(TN_SMC_IND_DATA_0);
2195 return r;
2196 }
2197
2198 static inline void tn_smc_wreg(struct radeon_device *rdev, u32 reg, u32 v)
2199 {
2200 WREG32(TN_SMC_IND_INDEX_0, (reg));
2201 WREG32(TN_SMC_IND_DATA_0, (v));
2202 }
2203
2204 static inline u32 r600_rcu_rreg(struct radeon_device *rdev, u32 reg)
2205 {
2206 u32 r;
2207
2208 WREG32(R600_RCU_INDEX, ((reg) & 0x1fff));
2209 r = RREG32(R600_RCU_DATA);
2210 return r;
2211 }
2212
2213 static inline void r600_rcu_wreg(struct radeon_device *rdev, u32 reg, u32 v)
2214 {
2215 WREG32(R600_RCU_INDEX, ((reg) & 0x1fff));
2216 WREG32(R600_RCU_DATA, (v));
2217 }
2218
2219 static inline u32 eg_cg_rreg(struct radeon_device *rdev, u32 reg)
2220 {
2221 u32 r;
2222
2223 WREG32(EVERGREEN_CG_IND_ADDR, ((reg) & 0xffff));
2224 r = RREG32(EVERGREEN_CG_IND_DATA);
2225 return r;
2226 }
2227
2228 static inline void eg_cg_wreg(struct radeon_device *rdev, u32 reg, u32 v)
2229 {
2230 WREG32(EVERGREEN_CG_IND_ADDR, ((reg) & 0xffff));
2231 WREG32(EVERGREEN_CG_IND_DATA, (v));
2232 }
2233
2234 static inline u32 eg_pif_phy0_rreg(struct radeon_device *rdev, u32 reg)
2235 {
2236 u32 r;
2237
2238 WREG32(EVERGREEN_PIF_PHY0_INDEX, ((reg) & 0xffff));
2239 r = RREG32(EVERGREEN_PIF_PHY0_DATA);
2240 return r;
2241 }
2242
2243 static inline void eg_pif_phy0_wreg(struct radeon_device *rdev, u32 reg, u32 v)
2244 {
2245 WREG32(EVERGREEN_PIF_PHY0_INDEX, ((reg) & 0xffff));
2246 WREG32(EVERGREEN_PIF_PHY0_DATA, (v));
2247 }
2248
2249 static inline u32 eg_pif_phy1_rreg(struct radeon_device *rdev, u32 reg)
2250 {
2251 u32 r;
2252
2253 WREG32(EVERGREEN_PIF_PHY1_INDEX, ((reg) & 0xffff));
2254 r = RREG32(EVERGREEN_PIF_PHY1_DATA);
2255 return r;
2256 }
2257
2258 static inline void eg_pif_phy1_wreg(struct radeon_device *rdev, u32 reg, u32 v)
2259 {
2260 WREG32(EVERGREEN_PIF_PHY1_INDEX, ((reg) & 0xffff));
2261 WREG32(EVERGREEN_PIF_PHY1_DATA, (v));
2262 }
2263
2264 static inline u32 r600_uvd_ctx_rreg(struct radeon_device *rdev, u32 reg)
2265 {
2266 u32 r;
2267
2268 WREG32(R600_UVD_CTX_INDEX, ((reg) & 0x1ff));
2269 r = RREG32(R600_UVD_CTX_DATA);
2270 return r;
2271 }
2272
2273 static inline void r600_uvd_ctx_wreg(struct radeon_device *rdev, u32 reg, u32 v)
2274 {
2275 WREG32(R600_UVD_CTX_INDEX, ((reg) & 0x1ff));
2276 WREG32(R600_UVD_CTX_DATA, (v));
2277 }
2278
2279 void r100_pll_errata_after_index(struct radeon_device *rdev);
2280
2281
2282 /*
2283 * ASICs helpers.
2284 */
2285 #define ASIC_IS_RN50(rdev) ((rdev->pdev->device == 0x515e) || \
2286 (rdev->pdev->device == 0x5969))
2287 #define ASIC_IS_RV100(rdev) ((rdev->family == CHIP_RV100) || \
2288 (rdev->family == CHIP_RV200) || \
2289 (rdev->family == CHIP_RS100) || \
2290 (rdev->family == CHIP_RS200) || \
2291 (rdev->family == CHIP_RV250) || \
2292 (rdev->family == CHIP_RV280) || \
2293 (rdev->family == CHIP_RS300))
2294 #define ASIC_IS_R300(rdev) ((rdev->family == CHIP_R300) || \
2295 (rdev->family == CHIP_RV350) || \
2296 (rdev->family == CHIP_R350) || \
2297 (rdev->family == CHIP_RV380) || \
2298 (rdev->family == CHIP_R420) || \
2299 (rdev->family == CHIP_R423) || \
2300 (rdev->family == CHIP_RV410) || \
2301 (rdev->family == CHIP_RS400) || \
2302 (rdev->family == CHIP_RS480))
2303 #define ASIC_IS_X2(rdev) ((rdev->ddev->pdev->device == 0x9441) || \
2304 (rdev->ddev->pdev->device == 0x9443) || \
2305 (rdev->ddev->pdev->device == 0x944B) || \
2306 (rdev->ddev->pdev->device == 0x9506) || \
2307 (rdev->ddev->pdev->device == 0x9509) || \
2308 (rdev->ddev->pdev->device == 0x950F) || \
2309 (rdev->ddev->pdev->device == 0x689C) || \
2310 (rdev->ddev->pdev->device == 0x689D))
2311 #define ASIC_IS_AVIVO(rdev) ((rdev->family >= CHIP_RS600))
2312 #define ASIC_IS_DCE2(rdev) ((rdev->family == CHIP_RS600) || \
2313 (rdev->family == CHIP_RS690) || \
2314 (rdev->family == CHIP_RS740) || \
2315 (rdev->family >= CHIP_R600))
2316 #define ASIC_IS_DCE3(rdev) ((rdev->family >= CHIP_RV620))
2317 #define ASIC_IS_DCE32(rdev) ((rdev->family >= CHIP_RV730))
2318 #define ASIC_IS_DCE4(rdev) ((rdev->family >= CHIP_CEDAR))
2319 #define ASIC_IS_DCE41(rdev) ((rdev->family >= CHIP_PALM) && \
2320 (rdev->flags & RADEON_IS_IGP))
2321 #define ASIC_IS_DCE5(rdev) ((rdev->family >= CHIP_BARTS))
2322 #define ASIC_IS_DCE6(rdev) ((rdev->family >= CHIP_ARUBA))
2323 #define ASIC_IS_DCE61(rdev) ((rdev->family >= CHIP_ARUBA) && \
2324 (rdev->flags & RADEON_IS_IGP))
2325 #define ASIC_IS_DCE64(rdev) ((rdev->family == CHIP_OLAND))
2326 #define ASIC_IS_NODCE(rdev) ((rdev->family == CHIP_HAINAN))
2327 #define ASIC_IS_DCE8(rdev) ((rdev->family >= CHIP_BONAIRE))
2328
2329 #define ASIC_IS_LOMBOK(rdev) ((rdev->ddev->pdev->device == 0x6849) || \
2330 (rdev->ddev->pdev->device == 0x6850) || \
2331 (rdev->ddev->pdev->device == 0x6858) || \
2332 (rdev->ddev->pdev->device == 0x6859) || \
2333 (rdev->ddev->pdev->device == 0x6840) || \
2334 (rdev->ddev->pdev->device == 0x6841) || \
2335 (rdev->ddev->pdev->device == 0x6842) || \
2336 (rdev->ddev->pdev->device == 0x6843))
2337
2338 /*
2339 * BIOS helpers.
2340 */
2341 #define RBIOS8(i) (rdev->bios[i])
2342 #define RBIOS16(i) (RBIOS8(i) | (RBIOS8((i)+1) << 8))
2343 #define RBIOS32(i) ((RBIOS16(i)) | (RBIOS16((i)+2) << 16))
2344
2345 int radeon_combios_init(struct radeon_device *rdev);
2346 void radeon_combios_fini(struct radeon_device *rdev);
2347 int radeon_atombios_init(struct radeon_device *rdev);
2348 void radeon_atombios_fini(struct radeon_device *rdev);
2349
2350
2351 /*
2352 * RING helpers.
2353 */
2354 #if DRM_DEBUG_CODE == 0
2355 static inline void radeon_ring_write(struct radeon_ring *ring, uint32_t v)
2356 {
2357 ring->ring[ring->wptr++] = v;
2358 ring->wptr &= ring->ptr_mask;
2359 ring->count_dw--;
2360 ring->ring_free_dw--;
2361 }
2362 #else
2363 /* With debugging this is just too big to inline */
2364 void radeon_ring_write(struct radeon_ring *ring, uint32_t v);
2365 #endif
2366
2367 /*
2368 * ASICs macro.
2369 */
2370 #define radeon_init(rdev) (rdev)->asic->init((rdev))
2371 #define radeon_fini(rdev) (rdev)->asic->fini((rdev))
2372 #define radeon_resume(rdev) (rdev)->asic->resume((rdev))
2373 #define radeon_suspend(rdev) (rdev)->asic->suspend((rdev))
2374 #define radeon_cs_parse(rdev, r, p) (rdev)->asic->ring[(r)].cs_parse((p))
2375 #define radeon_vga_set_state(rdev, state) (rdev)->asic->vga_set_state((rdev), (state))
2376 #define radeon_asic_reset(rdev) (rdev)->asic->asic_reset((rdev))
2377 #define radeon_gart_tlb_flush(rdev) (rdev)->asic->gart.tlb_flush((rdev))
2378 #define radeon_gart_set_page(rdev, i, p) (rdev)->asic->gart.set_page((rdev), (i), (p))
2379 #define radeon_asic_vm_init(rdev) (rdev)->asic->vm.init((rdev))
2380 #define radeon_asic_vm_fini(rdev) (rdev)->asic->vm.fini((rdev))
2381 #define radeon_asic_vm_set_page(rdev, ib, pe, addr, count, incr, flags) ((rdev)->asic->vm.set_page((rdev), (ib), (pe), (addr), (count), (incr), (flags)))
2382 #define radeon_ring_start(rdev, r, cp) (rdev)->asic->ring[(r)].ring_start((rdev), (cp))
2383 #define radeon_ring_test(rdev, r, cp) (rdev)->asic->ring[(r)].ring_test((rdev), (cp))
2384 #define radeon_ib_test(rdev, r, cp) (rdev)->asic->ring[(r)].ib_test((rdev), (cp))
2385 #define radeon_ring_ib_execute(rdev, r, ib) (rdev)->asic->ring[(r)].ib_execute((rdev), (ib))
2386 #define radeon_ring_ib_parse(rdev, r, ib) (rdev)->asic->ring[(r)].ib_parse((rdev), (ib))
2387 #define radeon_ring_is_lockup(rdev, r, cp) (rdev)->asic->ring[(r)].is_lockup((rdev), (cp))
2388 #define radeon_ring_vm_flush(rdev, r, vm) (rdev)->asic->ring[(r)].vm_flush((rdev), (r), (vm))
2389 #define radeon_ring_get_rptr(rdev, r) (rdev)->asic->ring[(r)->idx].get_rptr((rdev), (r))
2390 #define radeon_ring_get_wptr(rdev, r) (rdev)->asic->ring[(r)->idx].get_wptr((rdev), (r))
2391 #define radeon_ring_set_wptr(rdev, r) (rdev)->asic->ring[(r)->idx].set_wptr((rdev), (r))
2392 #define radeon_irq_set(rdev) (rdev)->asic->irq.set((rdev))
2393 #define radeon_irq_process(rdev) (rdev)->asic->irq.process((rdev))
2394 #define radeon_get_vblank_counter(rdev, crtc) (rdev)->asic->display.get_vblank_counter((rdev), (crtc))
2395 #define radeon_set_backlight_level(rdev, e, l) (rdev)->asic->display.set_backlight_level((e), (l))
2396 #define radeon_get_backlight_level(rdev, e) (rdev)->asic->display.get_backlight_level((e))
2397 #define radeon_hdmi_enable(rdev, e, b) (rdev)->asic->display.hdmi_enable((e), (b))
2398 #define radeon_hdmi_setmode(rdev, e, m) (rdev)->asic->display.hdmi_setmode((e), (m))
2399 #define radeon_fence_ring_emit(rdev, r, fence) (rdev)->asic->ring[(r)].emit_fence((rdev), (fence))
2400 #define radeon_semaphore_ring_emit(rdev, r, cp, semaphore, emit_wait) (rdev)->asic->ring[(r)].emit_semaphore((rdev), (cp), (semaphore), (emit_wait))
2401 #define radeon_copy_blit(rdev, s, d, np, f) (rdev)->asic->copy.blit((rdev), (s), (d), (np), (f))
2402 #define radeon_copy_dma(rdev, s, d, np, f) (rdev)->asic->copy.dma((rdev), (s), (d), (np), (f))
2403 #define radeon_copy(rdev, s, d, np, f) (rdev)->asic->copy.copy((rdev), (s), (d), (np), (f))
2404 #define radeon_copy_blit_ring_index(rdev) (rdev)->asic->copy.blit_ring_index
2405 #define radeon_copy_dma_ring_index(rdev) (rdev)->asic->copy.dma_ring_index
2406 #define radeon_copy_ring_index(rdev) (rdev)->asic->copy.copy_ring_index
2407 #define radeon_get_engine_clock(rdev) (rdev)->asic->pm.get_engine_clock((rdev))
2408 #define radeon_set_engine_clock(rdev, e) (rdev)->asic->pm.set_engine_clock((rdev), (e))
2409 #define radeon_get_memory_clock(rdev) (rdev)->asic->pm.get_memory_clock((rdev))
2410 #define radeon_set_memory_clock(rdev, e) (rdev)->asic->pm.set_memory_clock((rdev), (e))
2411 #define radeon_get_pcie_lanes(rdev) (rdev)->asic->pm.get_pcie_lanes((rdev))
2412 #define radeon_set_pcie_lanes(rdev, l) (rdev)->asic->pm.set_pcie_lanes((rdev), (l))
2413 #define radeon_set_clock_gating(rdev, e) (rdev)->asic->pm.set_clock_gating((rdev), (e))
2414 #define radeon_set_uvd_clocks(rdev, v, d) (rdev)->asic->pm.set_uvd_clocks((rdev), (v), (d))
2415 #define radeon_get_temperature(rdev) (rdev)->asic->pm.get_temperature((rdev))
2416 #define radeon_set_surface_reg(rdev, r, f, p, o, s) ((rdev)->asic->surface.set_reg((rdev), (r), (f), (p), (o), (s)))
2417 #define radeon_clear_surface_reg(rdev, r) ((rdev)->asic->surface.clear_reg((rdev), (r)))
2418 #define radeon_bandwidth_update(rdev) (rdev)->asic->display.bandwidth_update((rdev))
2419 #define radeon_hpd_init(rdev) (rdev)->asic->hpd.init((rdev))
2420 #define radeon_hpd_fini(rdev) (rdev)->asic->hpd.fini((rdev))
2421 #define radeon_hpd_sense(rdev, h) (rdev)->asic->hpd.sense((rdev), (h))
2422 #define radeon_hpd_set_polarity(rdev, h) (rdev)->asic->hpd.set_polarity((rdev), (h))
2423 #define radeon_gui_idle(rdev) (rdev)->asic->gui_idle((rdev))
2424 #define radeon_pm_misc(rdev) (rdev)->asic->pm.misc((rdev))
2425 #define radeon_pm_prepare(rdev) (rdev)->asic->pm.prepare((rdev))
2426 #define radeon_pm_finish(rdev) (rdev)->asic->pm.finish((rdev))
2427 #define radeon_pm_init_profile(rdev) (rdev)->asic->pm.init_profile((rdev))
2428 #define radeon_pm_get_dynpm_state(rdev) (rdev)->asic->pm.get_dynpm_state((rdev))
2429 #define radeon_pre_page_flip(rdev, crtc) (rdev)->asic->pflip.pre_page_flip((rdev), (crtc))
2430 #define radeon_page_flip(rdev, crtc, base) (rdev)->asic->pflip.page_flip((rdev), (crtc), (base))
2431 #define radeon_post_page_flip(rdev, crtc) (rdev)->asic->pflip.post_page_flip((rdev), (crtc))
2432 #define radeon_wait_for_vblank(rdev, crtc) (rdev)->asic->display.wait_for_vblank((rdev), (crtc))
2433 #define radeon_mc_wait_for_idle(rdev) (rdev)->asic->mc_wait_for_idle((rdev))
2434 #define radeon_get_xclk(rdev) (rdev)->asic->get_xclk((rdev))
2435 #define radeon_get_gpu_clock_counter(rdev) (rdev)->asic->get_gpu_clock_counter((rdev))
2436 #define radeon_dpm_init(rdev) rdev->asic->dpm.init((rdev))
2437 #define radeon_dpm_setup_asic(rdev) rdev->asic->dpm.setup_asic((rdev))
2438 #define radeon_dpm_enable(rdev) rdev->asic->dpm.enable((rdev))
2439 #define radeon_dpm_disable(rdev) rdev->asic->dpm.disable((rdev))
2440 #define radeon_dpm_pre_set_power_state(rdev) rdev->asic->dpm.pre_set_power_state((rdev))
2441 #define radeon_dpm_set_power_state(rdev) rdev->asic->dpm.set_power_state((rdev))
2442 #define radeon_dpm_post_set_power_state(rdev) rdev->asic->dpm.post_set_power_state((rdev))
2443 #define radeon_dpm_display_configuration_changed(rdev) rdev->asic->dpm.display_configuration_changed((rdev))
2444 #define radeon_dpm_fini(rdev) rdev->asic->dpm.fini((rdev))
2445 #define radeon_dpm_get_sclk(rdev, l) rdev->asic->dpm.get_sclk((rdev), (l))
2446 #define radeon_dpm_get_mclk(rdev, l) rdev->asic->dpm.get_mclk((rdev), (l))
2447 #define radeon_dpm_print_power_state(rdev, ps) rdev->asic->dpm.print_power_state((rdev), (ps))
2448 #define radeon_dpm_debugfs_print_current_performance_level(rdev, m) rdev->asic->dpm.debugfs_print_current_performance_level((rdev), (m))
2449 #define radeon_dpm_force_performance_level(rdev, l) rdev->asic->dpm.force_performance_level((rdev), (l))
2450 #define radeon_dpm_vblank_too_short(rdev) rdev->asic->dpm.vblank_too_short((rdev))
2451
2452 /* Common functions */
2453 /* AGP */
2454 extern int radeon_gpu_reset(struct radeon_device *rdev);
2455 extern void r600_set_bios_scratch_engine_hung(struct radeon_device *rdev, bool hung);
2456 extern void radeon_agp_disable(struct radeon_device *rdev);
2457 extern int radeon_modeset_init(struct radeon_device *rdev);
2458 extern void radeon_modeset_fini(struct radeon_device *rdev);
2459 extern bool radeon_card_posted(struct radeon_device *rdev);
2460 extern void radeon_update_bandwidth_info(struct radeon_device *rdev);
2461 extern void radeon_update_display_priority(struct radeon_device *rdev);
2462 extern bool radeon_boot_test_post_card(struct radeon_device *rdev);
2463 extern void radeon_scratch_init(struct radeon_device *rdev);
2464 extern void radeon_wb_fini(struct radeon_device *rdev);
2465 extern int radeon_wb_init(struct radeon_device *rdev);
2466 extern void radeon_wb_disable(struct radeon_device *rdev);
2467 extern void radeon_surface_init(struct radeon_device *rdev);
2468 extern int radeon_cs_parser_init(struct radeon_cs_parser *p, void *data);
2469 extern void radeon_legacy_set_clock_gating(struct radeon_device *rdev, int enable);
2470 extern void radeon_atom_set_clock_gating(struct radeon_device *rdev, int enable);
2471 extern void radeon_ttm_placement_from_domain(struct radeon_bo *rbo, u32 domain);
2472 extern bool radeon_ttm_bo_is_radeon_bo(struct ttm_buffer_object *bo);
2473 extern void radeon_vram_location(struct radeon_device *rdev, struct radeon_mc *mc, u64 base);
2474 extern void radeon_gtt_location(struct radeon_device *rdev, struct radeon_mc *mc);
2475 extern int radeon_resume_kms(struct drm_device *dev);
2476 extern int radeon_suspend_kms(struct drm_device *dev, pm_message_t state);
2477 extern void radeon_ttm_set_active_vram_size(struct radeon_device *rdev, u64 size);
2478 extern void radeon_program_register_sequence(struct radeon_device *rdev,
2479 const u32 *registers,
2480 const u32 array_size);
2481
2482 /*
2483 * vm
2484 */
2485 int radeon_vm_manager_init(struct radeon_device *rdev);
2486 void radeon_vm_manager_fini(struct radeon_device *rdev);
2487 void radeon_vm_init(struct radeon_device *rdev, struct radeon_vm *vm);
2488 void radeon_vm_fini(struct radeon_device *rdev, struct radeon_vm *vm);
2489 int radeon_vm_alloc_pt(struct radeon_device *rdev, struct radeon_vm *vm);
2490 void radeon_vm_add_to_lru(struct radeon_device *rdev, struct radeon_vm *vm);
2491 struct radeon_fence *radeon_vm_grab_id(struct radeon_device *rdev,
2492 struct radeon_vm *vm, int ring);
2493 void radeon_vm_fence(struct radeon_device *rdev,
2494 struct radeon_vm *vm,
2495 struct radeon_fence *fence);
2496 uint64_t radeon_vm_map_gart(struct radeon_device *rdev, uint64_t addr);
2497 int radeon_vm_bo_update_pte(struct radeon_device *rdev,
2498 struct radeon_vm *vm,
2499 struct radeon_bo *bo,
2500 struct ttm_mem_reg *mem);
2501 void radeon_vm_bo_invalidate(struct radeon_device *rdev,
2502 struct radeon_bo *bo);
2503 struct radeon_bo_va *radeon_vm_bo_find(struct radeon_vm *vm,
2504 struct radeon_bo *bo);
2505 struct radeon_bo_va *radeon_vm_bo_add(struct radeon_device *rdev,
2506 struct radeon_vm *vm,
2507 struct radeon_bo *bo);
2508 int radeon_vm_bo_set_addr(struct radeon_device *rdev,
2509 struct radeon_bo_va *bo_va,
2510 uint64_t offset,
2511 uint32_t flags);
2512 int radeon_vm_bo_rmv(struct radeon_device *rdev,
2513 struct radeon_bo_va *bo_va);
2514
2515 /* audio */
2516 void r600_audio_update_hdmi(struct work_struct *work);
2517
2518 /*
2519 * R600 vram scratch functions
2520 */
2521 int r600_vram_scratch_init(struct radeon_device *rdev);
2522 void r600_vram_scratch_fini(struct radeon_device *rdev);
2523
2524 /*
2525 * r600 cs checking helper
2526 */
2527 unsigned r600_mip_minify(unsigned size, unsigned level);
2528 bool r600_fmt_is_valid_color(u32 format);
2529 bool r600_fmt_is_valid_texture(u32 format, enum radeon_family family);
2530 int r600_fmt_get_blocksize(u32 format);
2531 int r600_fmt_get_nblocksx(u32 format, u32 w);
2532 int r600_fmt_get_nblocksy(u32 format, u32 h);
2533
2534 /*
2535 * r600 functions used by radeon_encoder.c
2536 */
2537 struct radeon_hdmi_acr {
2538 u32 clock;
2539
2540 int n_32khz;
2541 int cts_32khz;
2542
2543 int n_44_1khz;
2544 int cts_44_1khz;
2545
2546 int n_48khz;
2547 int cts_48khz;
2548
2549 };
2550
2551 extern struct radeon_hdmi_acr r600_hdmi_acr(uint32_t clock);
2552
2553 extern u32 r6xx_remap_render_backend(struct radeon_device *rdev,
2554 u32 tiling_pipe_num,
2555 u32 max_rb_num,
2556 u32 total_max_rb_num,
2557 u32 enabled_rb_mask);
2558
2559 /*
2560 * evergreen functions used by radeon_encoder.c
2561 */
2562
2563 extern int ni_init_microcode(struct radeon_device *rdev);
2564 extern int ni_mc_load_microcode(struct radeon_device *rdev);
2565
2566 /* radeon_acpi.c */
2567 #if defined(CONFIG_ACPI)
2568 extern int radeon_acpi_init(struct radeon_device *rdev);
2569 extern void radeon_acpi_fini(struct radeon_device *rdev);
2570 extern bool radeon_acpi_is_pcie_performance_request_supported(struct radeon_device *rdev);
2571 extern int radeon_acpi_pcie_performance_request(struct radeon_device *rdev,
2572 u8 perf_req, bool advertise);
2573 extern int radeon_acpi_pcie_notify_device_ready(struct radeon_device *rdev);
2574 #else
2575 static inline int radeon_acpi_init(struct radeon_device *rdev) { return 0; }
2576 static inline void radeon_acpi_fini(struct radeon_device *rdev) { }
2577 #endif
2578
2579 int radeon_cs_packet_parse(struct radeon_cs_parser *p,
2580 struct radeon_cs_packet *pkt,
2581 unsigned idx);
2582 bool radeon_cs_packet_next_is_pkt3_nop(struct radeon_cs_parser *p);
2583 void radeon_cs_dump_packet(struct radeon_cs_parser *p,
2584 struct radeon_cs_packet *pkt);
2585 int radeon_cs_packet_next_reloc(struct radeon_cs_parser *p,
2586 struct radeon_cs_reloc **cs_reloc,
2587 int nomm);
2588 int r600_cs_common_vline_parse(struct radeon_cs_parser *p,
2589 uint32_t *vline_start_end,
2590 uint32_t *vline_status);
2591
2592 #include "radeon_object.h"
2593
2594 #endif
This page took 0.084539 seconds and 6 git commands to generate.