radeon.h 94.9 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
/*
 * Copyright 2008 Advanced Micro Devices, Inc.
 * Copyright 2008 Red Hat Inc.
 * Copyright 2009 Jerome Glisse.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice shall be included in
 * all copies or substantial portions of the Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
 * OTHER DEALINGS IN THE SOFTWARE.
 *
 * Authors: Dave Airlie
 *          Alex Deucher
 *          Jerome Glisse
 */
#ifndef __RADEON_H__
#define __RADEON_H__

/* TODO: Here are things that needs to be done :
 *	- surface allocator & initializer : (bit like scratch reg) should
 *	  initialize HDP_ stuff on RS600, R600, R700 hw, well anythings
 *	  related to surface
 *	- WB : write back stuff (do it bit like scratch reg things)
 *	- Vblank : look at Jesse's rework and what we should do
 *	- r600/r700: gart & cp
 *	- cs : clean cs ioctl use bitmap & things like that.
 *	- power management stuff
 *	- Barrier in gart code
 *	- Unmappabled vram ?
 *	- TESTING, TESTING, TESTING
 */

45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62
/* Initialization path:
 *  We expect that acceleration initialization might fail for various
 *  reasons even thought we work hard to make it works on most
 *  configurations. In order to still have a working userspace in such
 *  situation the init path must succeed up to the memory controller
 *  initialization point. Failure before this point are considered as
 *  fatal error. Here is the init callchain :
 *      radeon_device_init  perform common structure, mutex initialization
 *      asic_init           setup the GPU memory layout and perform all
 *                          one time initialization (failure in this
 *                          function are considered fatal)
 *      asic_startup        setup the GPU acceleration, in order to
 *                          follow guideline the first thing this
 *                          function should do is setting the GPU
 *                          memory controller (only MC setup failure
 *                          are considered as fatal)
 */

A
Arun Sharma 已提交
63
#include <linux/atomic.h>
64 65 66
#include <linux/wait.h>
#include <linux/list.h>
#include <linux/kref.h>
67
#include <linux/interval_tree.h>
68
#include <linux/hashtable.h>
69
#include <linux/dma-fence.h>
70

71 72 73 74
#ifdef CONFIG_MMU_NOTIFIER
#include <linux/mmu_notifier.h>
#endif

75 76 77 78
#include <drm/ttm/ttm_bo_api.h>
#include <drm/ttm/ttm_bo_driver.h>
#include <drm/ttm/ttm_placement.h>
#include <drm/ttm/ttm_execbuf_util.h>
79

D
Daniel Vetter 已提交
80 81
#include <drm/drm_gem.h>

82
#include "radeon_family.h"
83 84 85 86 87 88 89 90 91 92 93 94 95 96
#include "radeon_mode.h"
#include "radeon_reg.h"

/*
 * Modules parameters.
 */
extern int radeon_no_wb;
extern int radeon_modeset;
extern int radeon_dynclks;
extern int radeon_r4xx_atom;
extern int radeon_agpmode;
extern int radeon_vram_limit;
extern int radeon_gart_size;
extern int radeon_benchmarking;
97
extern int radeon_testing;
98
extern int radeon_connector_table;
99
extern int radeon_tv;
100
extern int radeon_audio;
101
extern int radeon_disp_priority;
102
extern int radeon_hw_i2c;
103
extern int radeon_pcie_gen2;
104
extern int radeon_msi;
105
extern int radeon_lockup_timeout;
106
extern int radeon_fastfb;
107
extern int radeon_dpm;
108
extern int radeon_aspm;
109
extern int radeon_runtime_pm;
110
extern int radeon_hard_reset;
111
extern int radeon_vm_size;
112
extern int radeon_vm_block_size;
113
extern int radeon_deep_color;
114
extern int radeon_use_pflipirq;
115
extern int radeon_bapm;
116
extern int radeon_backlight;
117
extern int radeon_auxch;
118
extern int radeon_mst;
119
extern int radeon_uvd;
120
extern int radeon_vce;
121
extern int radeon_si_support;
122
extern int radeon_cik_support;
123 124 125 126 127

/*
 * Copy from radeon_drv.h so we don't have to include both and have conflicting
 * symbol;
 */
128 129
#define RADEON_MAX_USEC_TIMEOUT			100000	/* 100 ms */
#define RADEON_FENCE_JIFFIES_TIMEOUT		(HZ / 2)
130
#define RADEON_USEC_IB_TEST_TIMEOUT		1000000 /* 1s */
131
/* RADEON_IB_POOL_SIZE must be a power of 2 */
132 133 134 135
#define RADEON_IB_POOL_SIZE			16
#define RADEON_DEBUGFS_MAX_COMPONENTS		32
#define RADEONFB_CONN_LIMIT			4
#define RADEON_BIOS_NUM_SCRATCH			8
136

137 138
/* internal ring indices */
/* r1xx+ has gfx CP ring */
139
#define RADEON_RING_TYPE_GFX_INDEX		0
140 141

/* cayman has 2 compute CP rings */
142 143
#define CAYMAN_RING_TYPE_CP1_INDEX		1
#define CAYMAN_RING_TYPE_CP2_INDEX		2
144

145 146
/* R600+ has an async dma ring */
#define R600_RING_TYPE_DMA_INDEX		3
147 148
/* cayman add a second async dma ring */
#define CAYMAN_RING_TYPE_DMA1_INDEX		4
149

C
Christian König 已提交
150
/* R600+ */
151 152 153 154 155 156 157 158
#define R600_RING_TYPE_UVD_INDEX		5

/* TN+ */
#define TN_RING_TYPE_VCE1_INDEX			6
#define TN_RING_TYPE_VCE2_INDEX			7

/* max number of rings */
#define RADEON_NUM_RINGS			8
C
Christian König 已提交
159

160 161
/* number of hw syncs before falling back on blocking */
#define RADEON_NUM_SYNCS			4
C
Christian König 已提交
162

163
/* hardcode those limit for now */
164
#define RADEON_VA_IB_OFFSET			(1 << 20)
165 166
#define RADEON_VA_RESERVED_SIZE			(8 << 20)
#define RADEON_IB_VM_MAX_SIZE			(64 << 10)
167

168 169 170
/* hard reset data */
#define RADEON_ASIC_RESET_DATA                  0x39d5e86b

A
Alex Deucher 已提交
171 172 173 174
/* reset flags */
#define RADEON_RESET_GFX			(1 << 0)
#define RADEON_RESET_COMPUTE			(1 << 1)
#define RADEON_RESET_DMA			(1 << 2)
175 176 177 178 179 180 181 182 183
#define RADEON_RESET_CP				(1 << 3)
#define RADEON_RESET_GRBM			(1 << 4)
#define RADEON_RESET_DMA1			(1 << 5)
#define RADEON_RESET_RLC			(1 << 6)
#define RADEON_RESET_SEM			(1 << 7)
#define RADEON_RESET_IH				(1 << 8)
#define RADEON_RESET_VMC			(1 << 9)
#define RADEON_RESET_MC				(1 << 10)
#define RADEON_RESET_DISPLAY			(1 << 11)
A
Alex Deucher 已提交
184

185 186 187 188 189 190 191
/* CG block flags */
#define RADEON_CG_BLOCK_GFX			(1 << 0)
#define RADEON_CG_BLOCK_MC			(1 << 1)
#define RADEON_CG_BLOCK_SDMA			(1 << 2)
#define RADEON_CG_BLOCK_UVD			(1 << 3)
#define RADEON_CG_BLOCK_VCE			(1 << 4)
#define RADEON_CG_BLOCK_HDP			(1 << 5)
192
#define RADEON_CG_BLOCK_BIF			(1 << 6)
193

A
Alex Deucher 已提交
194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213
/* CG flags */
#define RADEON_CG_SUPPORT_GFX_MGCG		(1 << 0)
#define RADEON_CG_SUPPORT_GFX_MGLS		(1 << 1)
#define RADEON_CG_SUPPORT_GFX_CGCG		(1 << 2)
#define RADEON_CG_SUPPORT_GFX_CGLS		(1 << 3)
#define RADEON_CG_SUPPORT_GFX_CGTS		(1 << 4)
#define RADEON_CG_SUPPORT_GFX_CGTS_LS		(1 << 5)
#define RADEON_CG_SUPPORT_GFX_CP_LS		(1 << 6)
#define RADEON_CG_SUPPORT_GFX_RLC_LS		(1 << 7)
#define RADEON_CG_SUPPORT_MC_LS			(1 << 8)
#define RADEON_CG_SUPPORT_MC_MGCG		(1 << 9)
#define RADEON_CG_SUPPORT_SDMA_LS		(1 << 10)
#define RADEON_CG_SUPPORT_SDMA_MGCG		(1 << 11)
#define RADEON_CG_SUPPORT_BIF_LS		(1 << 12)
#define RADEON_CG_SUPPORT_UVD_MGCG		(1 << 13)
#define RADEON_CG_SUPPORT_VCE_MGCG		(1 << 14)
#define RADEON_CG_SUPPORT_HDP_LS		(1 << 15)
#define RADEON_CG_SUPPORT_HDP_MGCG		(1 << 16)

/* PG flags */
A
Alex Deucher 已提交
214
#define RADEON_PG_SUPPORT_GFX_PG		(1 << 0)
A
Alex Deucher 已提交
215 216 217 218 219 220 221 222 223 224 225
#define RADEON_PG_SUPPORT_GFX_SMG		(1 << 1)
#define RADEON_PG_SUPPORT_GFX_DMG		(1 << 2)
#define RADEON_PG_SUPPORT_UVD			(1 << 3)
#define RADEON_PG_SUPPORT_VCE			(1 << 4)
#define RADEON_PG_SUPPORT_CP			(1 << 5)
#define RADEON_PG_SUPPORT_GDS			(1 << 6)
#define RADEON_PG_SUPPORT_RLC_SMU_HS		(1 << 7)
#define RADEON_PG_SUPPORT_SDMA			(1 << 8)
#define RADEON_PG_SUPPORT_ACP			(1 << 9)
#define RADEON_PG_SUPPORT_SAMU			(1 << 10)

226 227 228 229 230 231 232
/* max cursor sizes (in pixels) */
#define CURSOR_WIDTH 64
#define CURSOR_HEIGHT 64

#define CIK_CURSOR_WIDTH 128
#define CIK_CURSOR_HEIGHT 128

233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251
/*
 * Errata workarounds.
 */
enum radeon_pll_errata {
	CHIP_ERRATA_R300_CG             = 0x00000001,
	CHIP_ERRATA_PLL_DUMMYREADS      = 0x00000002,
	CHIP_ERRATA_PLL_DELAY           = 0x00000004
};


struct radeon_device;


/*
 * BIOS.
 */
bool radeon_get_bios(struct radeon_device *rdev);

/*
252
 * Dummy page
253
 */
254
struct radeon_dummy_page {
255
	uint64_t	entry;
256 257 258 259 260 261
	struct page	*page;
	dma_addr_t	addr;
};
int radeon_dummy_page_init(struct radeon_device *rdev);
void radeon_dummy_page_fini(struct radeon_device *rdev);

262

263 264 265
/*
 * Clocks
 */
266 267 268
struct radeon_clock {
	struct radeon_pll p1pll;
	struct radeon_pll p2pll;
269
	struct radeon_pll dcpll;
270 271 272 273 274
	struct radeon_pll spll;
	struct radeon_pll mpll;
	/* 10 Khz units */
	uint32_t default_mclk;
	uint32_t default_sclk;
275
	uint32_t default_dispclk;
276
	uint32_t current_dispclk;
277
	uint32_t dp_extclk;
278
	uint32_t max_pixel_clock;
279
	uint32_t vco_freq;
280 281
};

282 283 284 285
/*
 * Power management
 */
int radeon_pm_init(struct radeon_device *rdev);
286
int radeon_pm_late_init(struct radeon_device *rdev);
287
void radeon_pm_fini(struct radeon_device *rdev);
288
void radeon_pm_compute_clocks(struct radeon_device *rdev);
289 290
void radeon_pm_suspend(struct radeon_device *rdev);
void radeon_pm_resume(struct radeon_device *rdev);
291 292
void radeon_combios_get_power_modes(struct radeon_device *rdev);
void radeon_atombios_get_power_modes(struct radeon_device *rdev);
293 294 295 296 297
int radeon_atom_get_clock_dividers(struct radeon_device *rdev,
				   u8 clock_type,
				   u32 clock,
				   bool strobe_mode,
				   struct atom_clock_dividers *dividers);
298 299 300 301
int radeon_atom_get_memory_pll_dividers(struct radeon_device *rdev,
					u32 clock,
					bool strobe_mode,
					struct atom_mpll_param *mpll_param);
302
void radeon_atom_set_voltage(struct radeon_device *rdev, u16 voltage_level, u8 voltage_type);
303 304 305 306 307 308 309
int radeon_atom_get_voltage_gpio_settings(struct radeon_device *rdev,
					  u16 voltage_level, u8 voltage_type,
					  u32 *gpio_value, u32 *gpio_mask);
void radeon_atom_set_engine_dram_timings(struct radeon_device *rdev,
					 u32 eng_clock, u32 mem_clock);
int radeon_atom_get_voltage_step(struct radeon_device *rdev,
				 u8 voltage_type, u16 *voltage_step);
310 311
int radeon_atom_get_max_vddc(struct radeon_device *rdev, u8 voltage_type,
			     u16 voltage_id, u16 *voltage);
312 313 314
int radeon_atom_get_leakage_vddc_based_on_leakage_idx(struct radeon_device *rdev,
						      u16 *voltage,
						      u16 leakage_idx);
315 316 317 318 319 320
int radeon_atom_get_leakage_id_from_vbios(struct radeon_device *rdev,
					  u16 *leakage_id);
int radeon_atom_get_leakage_vddc_based_on_leakage_params(struct radeon_device *rdev,
							 u16 *vddc, u16 *vddci,
							 u16 virtual_voltage_id,
							 u16 vbios_voltage_id);
321 322 323
int radeon_atom_get_voltage_evv(struct radeon_device *rdev,
				u16 virtual_voltage_id,
				u16 *voltage);
324 325 326 327 328 329 330 331 332
int radeon_atom_round_to_true_voltage(struct radeon_device *rdev,
				      u8 voltage_type,
				      u16 nominal_voltage,
				      u16 *true_voltage);
int radeon_atom_get_min_voltage(struct radeon_device *rdev,
				u8 voltage_type, u16 *min_voltage);
int radeon_atom_get_max_voltage(struct radeon_device *rdev,
				u8 voltage_type, u16 *max_voltage);
int radeon_atom_get_voltage_table(struct radeon_device *rdev,
333
				  u8 voltage_type, u8 voltage_mode,
334
				  struct atom_voltage_table *voltage_table);
335 336
bool radeon_atom_is_voltage_gpio(struct radeon_device *rdev,
				 u8 voltage_type, u8 voltage_mode);
337 338 339
int radeon_atom_get_svi2_info(struct radeon_device *rdev,
			      u8 voltage_type,
			      u8 *svd_gpio_id, u8 *svc_gpio_id);
340 341 342 343 344 345 346 347 348 349 350 351 352 353
void radeon_atom_update_memory_dll(struct radeon_device *rdev,
				   u32 mem_clock);
void radeon_atom_set_ac_timing(struct radeon_device *rdev,
			       u32 mem_clock);
int radeon_atom_init_mc_reg_table(struct radeon_device *rdev,
				  u8 module_index,
				  struct atom_mc_reg_table *reg_table);
int radeon_atom_get_memory_info(struct radeon_device *rdev,
				u8 module_index, struct atom_memory_info *mem_info);
int radeon_atom_get_mclk_range_table(struct radeon_device *rdev,
				     bool gddr5, u8 module_index,
				     struct atom_memory_clock_range_table *mclk_range_table);
int radeon_atom_get_max_vddc(struct radeon_device *rdev, u8 voltage_type,
			     u16 voltage_id, u16 *voltage);
354
void rs690_pm_info(struct radeon_device *rdev);
355 356 357
extern void evergreen_tiling_fields(unsigned tiling_flags, unsigned *bankw,
				    unsigned *bankh, unsigned *mtaspect,
				    unsigned *tile_split);
358

359 360 361 362
/*
 * Fences.
 */
struct radeon_fence_driver {
363
	struct radeon_device		*rdev;
364
	uint32_t			scratch_reg;
365 366
	uint64_t			gpu_addr;
	volatile uint32_t		*cpu_addr;
367 368
	/* sync_seq is protected by ring emission lock */
	uint64_t			sync_seq[RADEON_NUM_RINGS];
369
	atomic64_t			last_seq;
370
	bool				initialized, delayed_irq;
371
	struct delayed_work		lockup_work;
372 373 374
};

struct radeon_fence {
375
	struct dma_fence		base;
376

377 378
	struct radeon_device	*rdev;
	uint64_t		seq;
379
	/* RB, DMA, etc. */
380 381
	unsigned		ring;
	bool			is_vm_update;
382

383
	wait_queue_entry_t		fence_wake;
384 385
};

386 387
int radeon_fence_driver_start_ring(struct radeon_device *rdev, int ring);
int radeon_fence_driver_init(struct radeon_device *rdev);
388
void radeon_fence_driver_fini(struct radeon_device *rdev);
389
void radeon_fence_driver_force_completion(struct radeon_device *rdev, int ring);
390
int radeon_fence_emit(struct radeon_device *rdev, struct radeon_fence **fence, int ring);
391
void radeon_fence_process(struct radeon_device *rdev, int ring);
392
bool radeon_fence_signaled(struct radeon_fence *fence);
393
long radeon_fence_wait_timeout(struct radeon_fence *fence, bool interruptible, long timeout);
394
int radeon_fence_wait(struct radeon_fence *fence, bool interruptible);
395 396
int radeon_fence_wait_next(struct radeon_device *rdev, int ring);
int radeon_fence_wait_empty(struct radeon_device *rdev, int ring);
397 398 399
int radeon_fence_wait_any(struct radeon_device *rdev,
			  struct radeon_fence **fences,
			  bool intr);
400 401
struct radeon_fence *radeon_fence_ref(struct radeon_fence *fence);
void radeon_fence_unref(struct radeon_fence **fence);
402
unsigned radeon_fence_count_emitted(struct radeon_device *rdev, int ring);
403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423
bool radeon_fence_need_sync(struct radeon_fence *fence, int ring);
void radeon_fence_note_sync(struct radeon_fence *fence, int ring);
static inline struct radeon_fence *radeon_fence_later(struct radeon_fence *a,
						      struct radeon_fence *b)
{
	if (!a) {
		return b;
	}

	if (!b) {
		return a;
	}

	BUG_ON(a->ring != b->ring);

	if (a->seq > b->seq) {
		return a;
	} else {
		return b;
	}
}
424

425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440
static inline bool radeon_fence_is_earlier(struct radeon_fence *a,
					   struct radeon_fence *b)
{
	if (!a) {
		return false;
	}

	if (!b) {
		return true;
	}

	BUG_ON(a->ring != b->ring);

	return a->seq < b->seq;
}

441 442 443 444
/*
 * Tiling registers
 */
struct radeon_surface_reg {
445
	struct radeon_bo *bo;
446 447 448
};

#define RADEON_GEM_MAX_SURFACES 8
449 450

/*
451
 * TTM.
452
 */
453 454
struct radeon_mman {
	struct ttm_bo_device		bdev;
455
	bool				initialized;
456 457 458

#if defined(CONFIG_DEBUG_FS)
	struct dentry			*vram;
459
	struct dentry			*gtt;
460
#endif
461 462
};

463 464 465 466
struct radeon_bo_list {
	struct radeon_bo		*robj;
	struct ttm_validate_buffer	tv;
	uint64_t			gpu_offset;
K
Kent Russell 已提交
467
	unsigned			preferred_domains;
468 469 470 471
	unsigned			allowed_domains;
	uint32_t			tiling_flags;
};

472 473
/* bo virtual address in a specific vm */
struct radeon_bo_va {
474
	/* protected by bo being reserved */
475 476
	struct list_head		bo_list;
	uint32_t			flags;
477
	struct radeon_fence		*last_pt_update;
478 479 480
	unsigned			ref_count;

	/* protected by vm mutex */
481
	struct interval_tree_node	it;
482
	struct list_head		vm_status;
483 484 485 486

	/* constant after initialization */
	struct radeon_vm		*vm;
	struct radeon_bo		*bo;
487 488
};

489 490 491 492
struct radeon_bo {
	/* Protected by gem.mutex */
	struct list_head		list;
	/* Protected by tbo.reserved */
493
	u32				initial_domain;
494
	struct ttm_place		placements[4];
495
	struct ttm_placement		placement;
496 497
	struct ttm_buffer_object	tbo;
	struct ttm_bo_kmap_obj		kmap;
498
	u32				flags;
499 500 501 502
	void				*kptr;
	u32				tiling_flags;
	u32				pitch;
	int				surface_reg;
503
	unsigned			prime_shared_count;
504 505 506 507
	/* list of all virtual address to which this bo
	 * is associated to
	 */
	struct list_head		va;
508 509
	/* Constant after initialization */
	struct radeon_device		*rdev;
510

J
Jerome Glisse 已提交
511
	pid_t				pid;
512

513 514 515
#ifdef CONFIG_MMU_NOTIFIER
	struct mmu_interval_notifier	notifier;
#endif
516
};
517
#define gem_to_radeon_bo(gobj) container_of((gobj), struct radeon_bo, tbo.base)
518

J
Jerome Glisse 已提交
519 520
int radeon_gem_debugfs_init(struct radeon_device *rdev);

521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544
/* sub-allocation manager, it has to be protected by another lock.
 * By conception this is an helper for other part of the driver
 * like the indirect buffer or semaphore, which both have their
 * locking.
 *
 * Principe is simple, we keep a list of sub allocation in offset
 * order (first entry has offset == 0, last entry has the highest
 * offset).
 *
 * When allocating new object we first check if there is room at
 * the end total_size - (last_object_offset + last_object_size) >=
 * alloc_size. If so we allocate new object there.
 *
 * When there is not enough room at the end, we start waiting for
 * each sub object until we reach object_offset+object_size >=
 * alloc_size, this object then become the sub object we return.
 *
 * Alignment can't be bigger than page size.
 *
 * Hole are not considered for allocation to keep things simple.
 * Assumption is that there won't be hole (all object on same
 * alignment).
 */
struct radeon_sa_manager {
545
	wait_queue_head_t	wq;
546
	struct radeon_bo	*bo;
547 548 549
	struct list_head	*hole;
	struct list_head	flist[RADEON_NUM_RINGS];
	struct list_head	olist;
550 551 552 553
	unsigned		size;
	uint64_t		gpu_addr;
	void			*cpu_ptr;
	uint32_t		domain;
554
	uint32_t		align;
555 556 557 558 559 560
};

struct radeon_sa_bo;

/* sub-allocation buffer */
struct radeon_sa_bo {
561 562
	struct list_head		olist;
	struct list_head		flist;
563
	struct radeon_sa_manager	*manager;
564 565
	unsigned			soffset;
	unsigned			eoffset;
566
	struct radeon_fence		*fence;
567 568
};

569 570 571 572
/*
 * GEM objects.
 */
struct radeon_gem {
573
	struct mutex		mutex;
574 575 576 577 578
	struct list_head	objects;
};

int radeon_gem_init(struct radeon_device *rdev);
void radeon_gem_fini(struct radeon_device *rdev);
579
int radeon_gem_object_create(struct radeon_device *rdev, unsigned long size,
580
				int alignment, int initial_domain,
581
				u32 flags, bool kernel,
582
				struct drm_gem_object **obj);
583

584 585 586 587 588 589
int radeon_mode_dumb_create(struct drm_file *file_priv,
			    struct drm_device *dev,
			    struct drm_mode_create_dumb *args);
int radeon_mode_dumb_mmap(struct drm_file *filp,
			  struct drm_device *dev,
			  uint32_t handle, uint64_t *offset_p);
590

591 592 593 594
/*
 * Semaphores.
 */
struct radeon_semaphore {
595 596 597
	struct radeon_sa_bo	*sa_bo;
	signed			waiters;
	uint64_t		gpu_addr;
598 599 600 601
};

int radeon_semaphore_create(struct radeon_device *rdev,
			    struct radeon_semaphore **semaphore);
602
bool radeon_semaphore_emit_signal(struct radeon_device *rdev, int ring,
603
				  struct radeon_semaphore *semaphore);
604
bool radeon_semaphore_emit_wait(struct radeon_device *rdev, int ring,
605 606
				struct radeon_semaphore *semaphore);
void radeon_semaphore_free(struct radeon_device *rdev,
607
			   struct radeon_semaphore **semaphore,
608
			   struct radeon_fence *fence);
609

610 611 612 613 614 615
/*
 * Synchronization
 */
struct radeon_sync {
	struct radeon_semaphore *semaphores[RADEON_NUM_SYNCS];
	struct radeon_fence	*sync_to[RADEON_NUM_RINGS];
616
	struct radeon_fence	*last_vm_update;
617 618 619 620 621 622 623
};

void radeon_sync_create(struct radeon_sync *sync);
void radeon_sync_fence(struct radeon_sync *sync,
		       struct radeon_fence *fence);
int radeon_sync_resv(struct radeon_device *rdev,
		     struct radeon_sync *sync,
624
		     struct dma_resv *resv,
625 626 627 628 629 630 631
		     bool shared);
int radeon_sync_rings(struct radeon_device *rdev,
		      struct radeon_sync *sync,
		      int waiting_ring);
void radeon_sync_free(struct radeon_device *rdev, struct radeon_sync *sync,
		      struct radeon_fence *fence);

632 633 634 635 636
/*
 * GART structures, functions & helpers
 */
struct radeon_mc;

637
#define RADEON_GPU_PAGE_SIZE 4096
638
#define RADEON_GPU_PAGE_MASK (RADEON_GPU_PAGE_SIZE - 1)
639
#define RADEON_GPU_PAGE_SHIFT 12
640
#define RADEON_GPU_PAGE_ALIGN(a) (((a) + RADEON_GPU_PAGE_MASK) & ~RADEON_GPU_PAGE_MASK)
641

642 643 644 645 646 647
#define RADEON_GART_PAGE_DUMMY  0
#define RADEON_GART_PAGE_VALID	(1 << 0)
#define RADEON_GART_PAGE_READ	(1 << 1)
#define RADEON_GART_PAGE_WRITE	(1 << 2)
#define RADEON_GART_PAGE_SNOOP	(1 << 3)

648 649
struct radeon_gart {
	dma_addr_t			table_addr;
650 651
	struct radeon_bo		*robj;
	void				*ptr;
652 653 654 655
	unsigned			num_gpu_pages;
	unsigned			num_cpu_pages;
	unsigned			table_size;
	struct page			**pages;
656
	uint64_t			*pages_entry;
657 658 659 660 661 662 663
	bool				ready;
};

int radeon_gart_table_ram_alloc(struct radeon_device *rdev);
void radeon_gart_table_ram_free(struct radeon_device *rdev);
int radeon_gart_table_vram_alloc(struct radeon_device *rdev);
void radeon_gart_table_vram_free(struct radeon_device *rdev);
664 665
int radeon_gart_table_vram_pin(struct radeon_device *rdev);
void radeon_gart_table_vram_unpin(struct radeon_device *rdev);
666 667 668 669 670
int radeon_gart_init(struct radeon_device *rdev);
void radeon_gart_fini(struct radeon_device *rdev);
void radeon_gart_unbind(struct radeon_device *rdev, unsigned offset,
			int pages);
int radeon_gart_bind(struct radeon_device *rdev, unsigned offset,
671
		     int pages, struct page **pagelist,
672
		     dma_addr_t *dma_addr, uint32_t flags);
673 674 675 676 677 678 679 680 681


/*
 * GPU MC structures, functions & helpers
 */
struct radeon_mc {
	resource_size_t		aper_size;
	resource_size_t		aper_base;
	resource_size_t		agp_base;
682 683
	/* for some chips with <= 32MB we need to lie
	 * about vram size near mc fb location */
684
	u64			mc_vram_size;
685
	u64			visible_vram_size;
686 687 688 689 690
	u64			gtt_size;
	u64			gtt_start;
	u64			gtt_end;
	u64			vram_start;
	u64			vram_end;
691
	unsigned		vram_width;
692
	u64			real_vram_size;
693 694
	int			vram_mtrr;
	bool			vram_is_ddr;
695
	bool			igp_sideport_enabled;
696
	u64                     gtt_base_align;
697
	u64                     mc_mask;
698 699
};

700 701
bool radeon_combios_sideport_present(struct radeon_device *rdev);
bool radeon_atombios_sideport_present(struct radeon_device *rdev);
702 703 704 705 706 707

/*
 * GPU scratch registers structures, functions & helpers
 */
struct radeon_scratch {
	unsigned		num_reg;
708
	uint32_t                reg_base;
709 710 711 712 713 714 715
	bool			free[32];
	uint32_t		reg[32];
};

int radeon_scratch_get(struct radeon_device *rdev, uint32_t *reg);
void radeon_scratch_free(struct radeon_device *rdev, uint32_t reg);

716 717 718
/*
 * GPU doorbell structures, functions & helpers
 */
719 720
#define RADEON_MAX_DOORBELLS 1024	/* Reserve at most 1024 doorbell slots for radeon-owned rings. */

721 722
struct radeon_doorbell {
	/* doorbell mmio */
723 724 725 726
	resource_size_t		base;
	resource_size_t		size;
	u32 __iomem		*ptr;
	u32			num_doorbells;	/* Number of doorbells actually reserved for radeon. */
J
Joe Perches 已提交
727
	DECLARE_BITMAP(used, RADEON_MAX_DOORBELLS);
728 729 730 731
};

int radeon_doorbell_get(struct radeon_device *rdev, u32 *page);
void radeon_doorbell_free(struct radeon_device *rdev, u32 doorbell);
732 733 734 735

/*
 * IRQS.
 */
736

737 738 739 740 741
struct radeon_flip_work {
	struct work_struct		flip_work;
	struct work_struct		unpin_work;
	struct radeon_device		*rdev;
	int				crtc_id;
742
	u32				target_vblank;
743
	uint64_t			base;
744
	struct drm_pending_vblank_event *event;
745
	struct radeon_bo		*old_rbo;
746
	struct dma_fence		*fence;
747
	bool				async;
748 749 750 751
};

struct r500_irq_stat_regs {
	u32 disp_int;
752
	u32 hdmi0_status;
753 754 755 756 757 758 759 760
};

struct r600_irq_stat_regs {
	u32 disp_int;
	u32 disp_int_cont;
	u32 disp_int_cont2;
	u32 d1grph_int;
	u32 d2grph_int;
761 762
	u32 hdmi0_status;
	u32 hdmi1_status;
763 764 765
};

struct evergreen_irq_stat_regs {
766
	u32 disp_int[6];
767
	u32 grph_int[6];
768
	u32 afmt_status[6];
769 770
};

771 772 773 774 775 776 777 778
struct cik_irq_stat_regs {
	u32 disp_int;
	u32 disp_int_cont;
	u32 disp_int_cont2;
	u32 disp_int_cont3;
	u32 disp_int_cont4;
	u32 disp_int_cont5;
	u32 disp_int_cont6;
779 780 781 782 783 784
	u32 d1grph_int;
	u32 d2grph_int;
	u32 d3grph_int;
	u32 d4grph_int;
	u32 d5grph_int;
	u32 d6grph_int;
785 786
};

787 788 789 790
union radeon_irq_stat_regs {
	struct r500_irq_stat_regs r500;
	struct r600_irq_stat_regs r600;
	struct evergreen_irq_stat_regs evergreen;
791
	struct cik_irq_stat_regs cik;
792 793
};

794
struct radeon_irq {
795 796
	bool				installed;
	spinlock_t			lock;
797
	atomic_t			ring_int[RADEON_NUM_RINGS];
798
	bool				crtc_vblank_int[RADEON_MAX_CRTCS];
799
	atomic_t			pflip[RADEON_MAX_CRTCS];
800 801 802 803
	wait_queue_head_t		vblank_queue;
	bool				hpd[RADEON_MAX_HPD_PINS];
	bool				afmt[RADEON_MAX_AFMT_BLOCKS];
	union radeon_irq_stat_regs	stat_regs;
804
	bool				dpm_thermal;
805 806 807 808
};

int radeon_irq_kms_init(struct radeon_device *rdev);
void radeon_irq_kms_fini(struct radeon_device *rdev);
809
void radeon_irq_kms_sw_irq_get(struct radeon_device *rdev, int ring);
810
bool radeon_irq_kms_sw_irq_get_delayed(struct radeon_device *rdev, int ring);
811
void radeon_irq_kms_sw_irq_put(struct radeon_device *rdev, int ring);
812 813
void radeon_irq_kms_pflip_irq_get(struct radeon_device *rdev, int crtc);
void radeon_irq_kms_pflip_irq_put(struct radeon_device *rdev, int crtc);
814 815 816 817
void radeon_irq_kms_enable_afmt(struct radeon_device *rdev, int block);
void radeon_irq_kms_disable_afmt(struct radeon_device *rdev, int block);
void radeon_irq_kms_enable_hpd(struct radeon_device *rdev, unsigned hpd_mask);
void radeon_irq_kms_disable_hpd(struct radeon_device *rdev, unsigned hpd_mask);
818 819

/*
820
 * CP & rings.
821
 */
822

823
struct radeon_ib {
824 825 826 827
	struct radeon_sa_bo		*sa_bo;
	uint32_t			length_dw;
	uint64_t			gpu_addr;
	uint32_t			*ptr;
828
	int				ring;
829
	struct radeon_fence		*fence;
830
	struct radeon_vm		*vm;
831
	bool				is_const_ib;
832
	struct radeon_sync		sync;
833 834
};

835
struct radeon_ring {
836
	struct radeon_bo	*ring_obj;
837
	volatile uint32_t	*ring;
838
	unsigned		rptr_offs;
839
	unsigned		rptr_save_reg;
840 841
	u64			next_rptr_gpu_addr;
	volatile u32		*next_rptr_cpu_addr;
842 843 844 845 846
	unsigned		wptr;
	unsigned		wptr_old;
	unsigned		ring_size;
	unsigned		ring_free_dw;
	int			count_dw;
847 848
	atomic_t		last_rptr;
	atomic64_t		last_activity;
849 850 851 852
	uint64_t		gpu_addr;
	uint32_t		align_mask;
	uint32_t		ptr_mask;
	bool			ready;
853
	u32			nop;
854
	u32			idx;
855 856
	u64			last_semaphore_signal_addr;
	u64			last_semaphore_wait_addr;
857 858 859 860 861
	/* for CIK queues */
	u32 me;
	u32 pipe;
	u32 queue;
	struct radeon_bo	*mqd_obj;
862
	u32 doorbell_index;
863 864 865 866 867 868 869 870 871
	unsigned		wptr_offs;
};

struct radeon_mec {
	struct radeon_bo	*hpd_eop_obj;
	u64			hpd_eop_gpu_addr;
	u32 num_pipe;
	u32 num_mec;
	u32 num_queue;
872 873
};

874 875 876
/*
 * VM
 */
877

878
/* maximum number of VMIDs */
879 880
#define RADEON_NUM_VM	16

881
/* number of entries in page table */
882
#define RADEON_VM_PTE_COUNT (1 << radeon_vm_block_size)
883

884 885 886 887 888
/* PTBs (Page Table Blocks) need to be aligned to 32K */
#define RADEON_VM_PTB_ALIGN_SIZE   32768
#define RADEON_VM_PTB_ALIGN_MASK (RADEON_VM_PTB_ALIGN_SIZE - 1)
#define RADEON_VM_PTB_ALIGN(a) (((a) + RADEON_VM_PTB_ALIGN_MASK) & ~RADEON_VM_PTB_ALIGN_MASK)

889 890 891 892 893 894
#define R600_PTE_VALID		(1 << 0)
#define R600_PTE_SYSTEM		(1 << 1)
#define R600_PTE_SNOOPED	(1 << 2)
#define R600_PTE_READABLE	(1 << 5)
#define R600_PTE_WRITEABLE	(1 << 6)

895 896 897 898 899
/* PTE (Page Table Entry) fragment field for different page sizes */
#define R600_PTE_FRAG_4KB	(0 << 7)
#define R600_PTE_FRAG_64KB	(4 << 7)
#define R600_PTE_FRAG_256KB	(6 << 7)

900 901 902
/* flags needed to be set so we can copy directly from the GART table */
#define R600_PTE_GART_MASK	( R600_PTE_READABLE | R600_PTE_WRITEABLE | \
				  R600_PTE_SYSTEM | R600_PTE_VALID )
903

904 905 906 907 908
struct radeon_vm_pt {
	struct radeon_bo		*bo;
	uint64_t			addr;
};

909 910 911 912 913 914 915 916 917
struct radeon_vm_id {
	unsigned		id;
	uint64_t		pd_gpu_addr;
	/* last flushed PD/PT update */
	struct radeon_fence	*flushed_updates;
	/* last use of vmid */
	struct radeon_fence	*last_id_use;
};

918
struct radeon_vm {
919 920
	struct mutex		mutex;

921
	struct rb_root_cached	va;
922

923 924 925
	/* protecting invalidated and freed */
	spinlock_t		status_lock;

926
	/* BOs moved, but not yet updated in the PT */
927
	struct list_head	invalidated;
928

929
	/* BOs freed, but not yet updated in the PT */
930
	struct list_head	freed;
931

932 933 934
	/* BOs cleared in the PT */
	struct list_head	cleared;

935
	/* contains the page directory */
936 937
	struct radeon_bo	*page_directory;
	unsigned		max_pde_used;
938 939

	/* array of page tables, one for each page directory entry */
940
	struct radeon_vm_pt	*page_tables;
941

942
	struct radeon_bo_va	*ib_bo_va;
943

944 945
	/* for id and flush management per ring */
	struct radeon_vm_id	ids[RADEON_NUM_RINGS];
946 947 948
};

struct radeon_vm_manager {
949
	struct radeon_fence		*active[RADEON_NUM_VM];
950 951 952 953 954
	uint32_t			max_pfn;
	/* number of VMIDs */
	unsigned			nvm;
	/* vram base address for page table entry  */
	u64				vram_base_offset;
955 956
	/* is vm enabled? */
	bool				enabled;
957 958
	/* for hw to save the PD addr on suspend/resume */
	uint32_t			saved_table_addr[RADEON_NUM_VM];
959 960 961 962 963 964 965 966 967
};

/*
 * file private structure
 */
struct radeon_fpriv {
	struct radeon_vm		vm;
};

968 969 970 971
/*
 * R6xx+ IH ring
 */
struct r600_ih {
972
	struct radeon_bo	*ring_obj;
973 974 975 976 977
	volatile uint32_t	*ring;
	unsigned		rptr;
	unsigned		ring_size;
	uint64_t		gpu_addr;
	uint32_t		ptr_mask;
978
	atomic_t		lock;
979 980 981
	bool                    enabled;
};

982
/*
983
 * RLC stuff
984
 */
985 986 987
#include "clearstate_defs.h"

struct radeon_rlc {
988 989 990
	/* for power gating */
	struct radeon_bo	*save_restore_obj;
	uint64_t		save_restore_gpu_addr;
991
	volatile uint32_t	*sr_ptr;
992
	const u32               *reg_list;
993
	u32                     reg_list_size;
994 995 996
	/* for clear state */
	struct radeon_bo	*clear_state_obj;
	uint64_t		clear_state_gpu_addr;
997
	volatile uint32_t	*cs_ptr;
998
	const struct cs_section_def   *cs_data;
999 1000 1001 1002 1003 1004
	u32                     clear_state_size;
	/* for cp tables */
	struct radeon_bo	*cp_table_obj;
	uint64_t		cp_table_gpu_addr;
	volatile uint32_t	*cp_table_ptr;
	u32                     cp_table_size;
1005 1006
};

1007
int radeon_ib_get(struct radeon_device *rdev, int ring,
1008 1009
		  struct radeon_ib *ib, struct radeon_vm *vm,
		  unsigned size);
1010
void radeon_ib_free(struct radeon_device *rdev, struct radeon_ib *ib);
1011
int radeon_ib_schedule(struct radeon_device *rdev, struct radeon_ib *ib,
1012
		       struct radeon_ib *const_ib, bool hdp_flush);
1013 1014
int radeon_ib_pool_init(struct radeon_device *rdev);
void radeon_ib_pool_fini(struct radeon_device *rdev);
1015
int radeon_ib_ring_tests(struct radeon_device *rdev);
1016
/* Ring access between begin & end cannot sleep */
1017 1018
bool radeon_ring_supports_scratch_reg(struct radeon_device *rdev,
				      struct radeon_ring *ring);
1019 1020 1021
void radeon_ring_free_size(struct radeon_device *rdev, struct radeon_ring *cp);
int radeon_ring_alloc(struct radeon_device *rdev, struct radeon_ring *cp, unsigned ndw);
int radeon_ring_lock(struct radeon_device *rdev, struct radeon_ring *cp, unsigned ndw);
1022 1023 1024 1025
void radeon_ring_commit(struct radeon_device *rdev, struct radeon_ring *cp,
			bool hdp_flush);
void radeon_ring_unlock_commit(struct radeon_device *rdev, struct radeon_ring *cp,
			       bool hdp_flush);
1026
void radeon_ring_undo(struct radeon_ring *ring);
1027 1028
void radeon_ring_unlock_undo(struct radeon_device *rdev, struct radeon_ring *cp);
int radeon_ring_test(struct radeon_device *rdev, struct radeon_ring *cp);
1029 1030
void radeon_ring_lockup_update(struct radeon_device *rdev,
			       struct radeon_ring *ring);
1031
bool radeon_ring_test_lockup(struct radeon_device *rdev, struct radeon_ring *ring);
1032 1033 1034 1035
unsigned radeon_ring_backup(struct radeon_device *rdev, struct radeon_ring *ring,
			    uint32_t **data);
int radeon_ring_restore(struct radeon_device *rdev, struct radeon_ring *ring,
			unsigned size, uint32_t *data);
1036
int radeon_ring_init(struct radeon_device *rdev, struct radeon_ring *cp, unsigned ring_size,
1037
		     unsigned rptr_offs, u32 nop);
1038
void radeon_ring_fini(struct radeon_device *rdev, struct radeon_ring *cp);
1039 1040


1041 1042 1043 1044 1045
/* r600 async dma */
void r600_dma_stop(struct radeon_device *rdev);
int r600_dma_resume(struct radeon_device *rdev);
void r600_dma_fini(struct radeon_device *rdev);

1046 1047 1048 1049
void cayman_dma_stop(struct radeon_device *rdev);
int cayman_dma_resume(struct radeon_device *rdev);
void cayman_dma_fini(struct radeon_device *rdev);

1050 1051 1052 1053 1054 1055
/*
 * CS.
 */
struct radeon_cs_chunk {
	uint32_t		length_dw;
	uint32_t		*kdata;
1056
	void __user		*user_ptr;
1057 1058 1059
};

struct radeon_cs_parser {
1060
	struct device		*dev;
1061 1062 1063 1064 1065 1066 1067 1068 1069 1070
	struct radeon_device	*rdev;
	struct drm_file		*filp;
	/* chunks */
	unsigned		nchunks;
	struct radeon_cs_chunk	*chunks;
	uint64_t		*chunks_array;
	/* IB */
	unsigned		idx;
	/* relocations */
	unsigned		nrelocs;
1071 1072
	struct radeon_bo_list	*relocs;
	struct radeon_bo_list	*vm_bos;
1073
	struct list_head	validated;
1074
	unsigned		dma_reloc_idx;
1075
	/* indices of various chunks */
1076 1077 1078 1079
	struct radeon_cs_chunk  *chunk_ib;
	struct radeon_cs_chunk  *chunk_relocs;
	struct radeon_cs_chunk  *chunk_flags;
	struct radeon_cs_chunk  *chunk_const_ib;
1080 1081
	struct radeon_ib	ib;
	struct radeon_ib	const_ib;
1082
	void			*track;
1083
	unsigned		family;
1084
	int			parser_error;
1085 1086 1087
	u32			cs_flags;
	u32			ring;
	s32			priority;
1088
	struct ww_acquire_ctx	ticket;
1089 1090
};

1091 1092
static inline u32 radeon_get_ib_value(struct radeon_cs_parser *p, int idx)
{
1093
	struct radeon_cs_chunk *ibc = p->chunk_ib;
1094 1095 1096 1097 1098 1099

	if (ibc->kdata)
		return ibc->kdata[idx];
	return p->ib.ptr[idx];
}

1100

1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120
struct radeon_cs_packet {
	unsigned	idx;
	unsigned	type;
	unsigned	reg;
	unsigned	opcode;
	int		count;
	unsigned	one_reg_wr;
};

typedef int (*radeon_packet0_check_t)(struct radeon_cs_parser *p,
				      struct radeon_cs_packet *pkt,
				      unsigned idx, unsigned reg);
typedef int (*radeon_packet3_check_t)(struct radeon_cs_parser *p,
				      struct radeon_cs_packet *pkt);


/*
 * AGP
 */
int radeon_agp_init(struct radeon_device *rdev);
1121
void radeon_agp_resume(struct radeon_device *rdev);
1122
void radeon_agp_suspend(struct radeon_device *rdev);
1123 1124 1125 1126 1127 1128 1129
void radeon_agp_fini(struct radeon_device *rdev);


/*
 * Writeback
 */
struct radeon_wb {
1130
	struct radeon_bo	*wb_obj;
1131 1132
	volatile uint32_t	*wb;
	uint64_t		gpu_addr;
1133
	bool                    enabled;
1134
	bool                    use_event;
1135 1136
};

1137
#define RADEON_WB_SCRATCH_OFFSET 0
1138
#define RADEON_WB_RING0_NEXT_RPTR 256
1139
#define RADEON_WB_CP_RPTR_OFFSET 1024
1140 1141
#define RADEON_WB_CP1_RPTR_OFFSET 1280
#define RADEON_WB_CP2_RPTR_OFFSET 1536
1142
#define R600_WB_DMA_RPTR_OFFSET   1792
1143
#define R600_WB_IH_WPTR_OFFSET   2048
1144
#define CAYMAN_WB_DMA1_RPTR_OFFSET   2304
1145
#define R600_WB_EVENT_OFFSET     3072
1146 1147
#define CIK_WB_CP1_WPTR_OFFSET     3328
#define CIK_WB_CP2_WPTR_OFFSET     3584
1148 1149
#define R600_WB_DMA_RING_TEST_OFFSET 3588
#define CAYMAN_WB_DMA1_RING_TEST_OFFSET 3592
1150

1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161
/**
 * struct radeon_pm - power management datas
 * @max_bandwidth:      maximum bandwidth the gpu has (MByte/s)
 * @igp_sideport_mclk:  sideport memory clock Mhz (rs690,rs740,rs780,rs880)
 * @igp_system_mclk:    system clock Mhz (rs690,rs740,rs780,rs880)
 * @igp_ht_link_clk:    ht link clock Mhz (rs690,rs740,rs780,rs880)
 * @igp_ht_link_width:  ht link width in bits (rs690,rs740,rs780,rs880)
 * @k8_bandwidth:       k8 bandwidth the gpu has (MByte/s) (IGP)
 * @sideport_bandwidth: sideport bandwidth the gpu has (MByte/s) (IGP)
 * @ht_bandwidth:       ht bandwidth the gpu has (MByte/s) (IGP)
 * @core_bandwidth:     core GPU bandwidth the gpu has (MByte/s) (IGP)
L
Lucas De Marchi 已提交
1162
 * @sclk:          	GPU clock Mhz (core bandwidth depends of this clock)
1163 1164 1165
 * @needed_bandwidth:   current bandwidth needs
 *
 * It keeps track of various data needed to take powermanagement decision.
L
Lucas De Marchi 已提交
1166
 * Bandwidth need is used to determine minimun clock of the GPU and memory.
1167 1168 1169
 * Equation between gpu/memory clock and available bandwidth is hw dependent
 * (type of memory, bus size, efficiency, ...)
 */
1170 1171 1172 1173

enum radeon_pm_method {
	PM_METHOD_PROFILE,
	PM_METHOD_DYNPM,
1174
	PM_METHOD_DPM,
1175 1176 1177 1178 1179 1180
};

enum radeon_dynpm_state {
	DYNPM_STATE_DISABLED,
	DYNPM_STATE_MINIMUM,
	DYNPM_STATE_PAUSED,
1181 1182
	DYNPM_STATE_ACTIVE,
	DYNPM_STATE_SUSPENDED,
1183
};
1184 1185 1186 1187 1188 1189
enum radeon_dynpm_action {
	DYNPM_ACTION_NONE,
	DYNPM_ACTION_MINIMUM,
	DYNPM_ACTION_DOWNCLOCK,
	DYNPM_ACTION_UPCLOCK,
	DYNPM_ACTION_DEFAULT
1190
};
1191 1192 1193 1194 1195 1196 1197 1198

enum radeon_voltage_type {
	VOLTAGE_NONE = 0,
	VOLTAGE_GPIO,
	VOLTAGE_VDDC,
	VOLTAGE_SW
};

1199
enum radeon_pm_state_type {
1200
	/* not used for dpm */
1201 1202
	POWER_STATE_TYPE_DEFAULT,
	POWER_STATE_TYPE_POWERSAVE,
1203
	/* user selectable states */
1204 1205 1206
	POWER_STATE_TYPE_BATTERY,
	POWER_STATE_TYPE_BALANCED,
	POWER_STATE_TYPE_PERFORMANCE,
1207 1208 1209 1210 1211 1212 1213 1214 1215 1216
	/* internal states */
	POWER_STATE_TYPE_INTERNAL_UVD,
	POWER_STATE_TYPE_INTERNAL_UVD_SD,
	POWER_STATE_TYPE_INTERNAL_UVD_HD,
	POWER_STATE_TYPE_INTERNAL_UVD_HD2,
	POWER_STATE_TYPE_INTERNAL_UVD_MVC,
	POWER_STATE_TYPE_INTERNAL_BOOT,
	POWER_STATE_TYPE_INTERNAL_THERMAL,
	POWER_STATE_TYPE_INTERNAL_ACPI,
	POWER_STATE_TYPE_INTERNAL_ULV,
1217
	POWER_STATE_TYPE_INTERNAL_3DPERF,
1218 1219
};

1220 1221 1222 1223
enum radeon_pm_profile_type {
	PM_PROFILE_DEFAULT,
	PM_PROFILE_AUTO,
	PM_PROFILE_LOW,
1224
	PM_PROFILE_MID,
1225 1226 1227 1228 1229
	PM_PROFILE_HIGH,
};

#define PM_PROFILE_DEFAULT_IDX 0
#define PM_PROFILE_LOW_SH_IDX  1
1230 1231 1232 1233 1234 1235
#define PM_PROFILE_MID_SH_IDX  2
#define PM_PROFILE_HIGH_SH_IDX 3
#define PM_PROFILE_LOW_MH_IDX  4
#define PM_PROFILE_MID_MH_IDX  5
#define PM_PROFILE_HIGH_MH_IDX 6
#define PM_PROFILE_MAX         7
1236 1237 1238 1239 1240 1241

struct radeon_pm_profile {
	int dpms_off_ps_idx;
	int dpms_on_ps_idx;
	int dpms_off_cm_idx;
	int dpms_on_cm_idx;
1242 1243
};

1244 1245
enum radeon_int_thermal_type {
	THERMAL_TYPE_NONE,
1246 1247
	THERMAL_TYPE_EXTERNAL,
	THERMAL_TYPE_EXTERNAL_GPIO,
1248 1249
	THERMAL_TYPE_RV6XX,
	THERMAL_TYPE_RV770,
1250
	THERMAL_TYPE_ADT7473_WITH_INTERNAL,
1251
	THERMAL_TYPE_EVERGREEN,
1252
	THERMAL_TYPE_SUMO,
1253
	THERMAL_TYPE_NI,
1254
	THERMAL_TYPE_SI,
1255
	THERMAL_TYPE_EMC2103_WITH_INTERNAL,
1256
	THERMAL_TYPE_CI,
1257
	THERMAL_TYPE_KV,
1258 1259
};

1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270
struct radeon_voltage {
	enum radeon_voltage_type type;
	/* gpio voltage */
	struct radeon_gpio_rec gpio;
	u32 delay; /* delay in usec from voltage drop to sclk change */
	bool active_high; /* voltage drop is active when bit is high */
	/* VDDC voltage */
	u8 vddc_id; /* index into vddc voltage table */
	u8 vddci_id; /* index into vddci voltage table */
	bool vddci_enabled;
	/* r6xx+ sw */
1271 1272 1273
	u16 voltage;
	/* evergreen+ vddci */
	u16 vddci;
1274 1275
};

1276 1277 1278
/* clock mode flags */
#define RADEON_PM_MODE_NO_DISPLAY          (1 << 0)

1279 1280 1281 1282 1283 1284 1285
struct radeon_pm_clock_info {
	/* memory clock */
	u32 mclk;
	/* engine clock */
	u32 sclk;
	/* voltage info */
	struct radeon_voltage voltage;
1286
	/* standardized clock flags */
1287 1288 1289
	u32 flags;
};

1290
/* state flags */
1291
#define RADEON_PM_STATE_SINGLE_DISPLAY_ONLY (1 << 0)
1292

1293
struct radeon_power_state {
1294
	enum radeon_pm_state_type type;
1295
	struct radeon_pm_clock_info *clock_info;
1296 1297 1298
	/* number of valid clock modes in this power state */
	int num_clock_modes;
	struct radeon_pm_clock_info *default_clock_mode;
1299 1300
	/* standardized state flags */
	u32 flags;
A
Alex Deucher 已提交
1301 1302 1303
	u32 misc; /* vbios specific flags */
	u32 misc2; /* vbios specific flags */
	int pcie_lanes; /* pcie lanes */
1304 1305
};

1306 1307 1308 1309 1310
/*
 * Some modes are overclocked by very low value, accept them
 */
#define RADEON_MODE_OVERCLOCK_MARGIN 500 /* 5 MHz */

1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323
enum radeon_dpm_auto_throttle_src {
	RADEON_DPM_AUTO_THROTTLE_SRC_THERMAL,
	RADEON_DPM_AUTO_THROTTLE_SRC_EXTERNAL
};

enum radeon_dpm_event_src {
	RADEON_DPM_EVENT_SRC_ANALOG = 0,
	RADEON_DPM_EVENT_SRC_EXTERNAL = 1,
	RADEON_DPM_EVENT_SRC_DIGITAL = 2,
	RADEON_DPM_EVENT_SRC_ANALOG_OR_EXTERNAL = 3,
	RADEON_DPM_EVENT_SRC_DIGIAL_OR_EXTERNAL = 4
};

1324 1325
#define RADEON_MAX_VCE_LEVELS 6

1326 1327 1328 1329 1330 1331 1332 1333 1334
enum radeon_vce_level {
	RADEON_VCE_LEVEL_AC_ALL = 0,     /* AC, All cases */
	RADEON_VCE_LEVEL_DC_EE = 1,      /* DC, entropy encoding */
	RADEON_VCE_LEVEL_DC_LL_LOW = 2,  /* DC, low latency queue, res <= 720 */
	RADEON_VCE_LEVEL_DC_LL_HIGH = 3, /* DC, low latency queue, 1080 >= res > 720 */
	RADEON_VCE_LEVEL_DC_GP_LOW = 4,  /* DC, general purpose queue, res <= 720 */
	RADEON_VCE_LEVEL_DC_GP_HIGH = 5, /* DC, general purpose queue, 1080 >= res > 720 */
};

1335 1336 1337 1338 1339 1340 1341
struct radeon_ps {
	u32 caps; /* vbios flags */
	u32 class; /* vbios flags */
	u32 class2; /* vbios flags */
	/* UVD clocks */
	u32 vclk;
	u32 dclk;
1342 1343 1344
	/* VCE clocks */
	u32 evclk;
	u32 ecclk;
1345 1346
	bool vce_active;
	enum radeon_vce_level vce_level;
1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361
	/* asic priv */
	void *ps_priv;
};

struct radeon_dpm_thermal {
	/* thermal interrupt work */
	struct work_struct work;
	/* low temperature threshold */
	int                min_temp;
	/* high temperature threshold */
	int                max_temp;
	/* was interrupt low to high or high to low */
	bool               high_to_low;
};

1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374
enum radeon_clk_action
{
	RADEON_SCLK_UP = 1,
	RADEON_SCLK_DOWN
};

struct radeon_blacklist_clocks
{
	u32 sclk;
	u32 mclk;
	enum radeon_clk_action action;
};

1375 1376 1377
struct radeon_clock_and_voltage_limits {
	u32 sclk;
	u32 mclk;
1378 1379
	u16 vddc;
	u16 vddci;
1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396
};

struct radeon_clock_array {
	u32 count;
	u32 *values;
};

struct radeon_clock_voltage_dependency_entry {
	u32 clk;
	u16 v;
};

struct radeon_clock_voltage_dependency_table {
	u32 count;
	struct radeon_clock_voltage_dependency_entry *entries;
};

1397 1398 1399 1400 1401 1402 1403 1404 1405 1406
union radeon_cac_leakage_entry {
	struct {
		u16 vddc;
		u32 leakage;
	};
	struct {
		u16 vddc1;
		u16 vddc2;
		u16 vddc3;
	};
1407 1408 1409 1410
};

struct radeon_cac_leakage_table {
	u32 count;
1411
	union radeon_cac_leakage_entry *entries;
1412 1413
};

1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424
struct radeon_phase_shedding_limits_entry {
	u16 voltage;
	u32 sclk;
	u32 mclk;
};

struct radeon_phase_shedding_limits_table {
	u32 count;
	struct radeon_phase_shedding_limits_entry *entries;
};

1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435
struct radeon_uvd_clock_voltage_dependency_entry {
	u32 vclk;
	u32 dclk;
	u16 v;
};

struct radeon_uvd_clock_voltage_dependency_table {
	u8 count;
	struct radeon_uvd_clock_voltage_dependency_entry *entries;
};

1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446
struct radeon_vce_clock_voltage_dependency_entry {
	u32 ecclk;
	u32 evclk;
	u16 v;
};

struct radeon_vce_clock_voltage_dependency_table {
	u8 count;
	struct radeon_vce_clock_voltage_dependency_entry *entries;
};

1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459
struct radeon_ppm_table {
	u8 ppm_design;
	u16 cpu_core_number;
	u32 platform_tdp;
	u32 small_ac_platform_tdp;
	u32 platform_tdc;
	u32 small_ac_platform_tdc;
	u32 apu_tdp;
	u32 dgpu_tdp;
	u32 dgpu_ulv_power;
	u32 tj_max;
};

1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470
struct radeon_cac_tdp_table {
	u16 tdp;
	u16 configurable_tdp;
	u16 tdc;
	u16 battery_power_limit;
	u16 small_power_limit;
	u16 low_cac_leakage;
	u16 high_cac_leakage;
	u16 maximum_power_delivery_limit;
};

1471 1472 1473 1474
struct radeon_dpm_dynamic_state {
	struct radeon_clock_voltage_dependency_table vddc_dependency_on_sclk;
	struct radeon_clock_voltage_dependency_table vddci_dependency_on_mclk;
	struct radeon_clock_voltage_dependency_table vddc_dependency_on_mclk;
1475
	struct radeon_clock_voltage_dependency_table mvdd_dependency_on_mclk;
1476
	struct radeon_clock_voltage_dependency_table vddc_dependency_on_dispclk;
1477
	struct radeon_uvd_clock_voltage_dependency_table uvd_clock_voltage_dependency_table;
1478
	struct radeon_vce_clock_voltage_dependency_table vce_clock_voltage_dependency_table;
1479 1480
	struct radeon_clock_voltage_dependency_table samu_clock_voltage_dependency_table;
	struct radeon_clock_voltage_dependency_table acp_clock_voltage_dependency_table;
1481 1482 1483 1484 1485 1486 1487 1488 1489
	struct radeon_clock_array valid_sclk_values;
	struct radeon_clock_array valid_mclk_values;
	struct radeon_clock_and_voltage_limits max_clock_voltage_on_dc;
	struct radeon_clock_and_voltage_limits max_clock_voltage_on_ac;
	u32 mclk_sclk_ratio;
	u32 sclk_mclk_delta;
	u16 vddc_vddci_delta;
	u16 min_vddc_for_pcie_gen2;
	struct radeon_cac_leakage_table cac_leakage_table;
1490
	struct radeon_phase_shedding_limits_table phase_shedding_limits_table;
1491
	struct radeon_ppm_table *ppm_table;
1492
	struct radeon_cac_tdp_table *cac_tdp_table;
1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504
};

struct radeon_dpm_fan {
	u16 t_min;
	u16 t_med;
	u16 t_high;
	u16 pwm_min;
	u16 pwm_med;
	u16 pwm_high;
	u8 t_hyst;
	u32 cycle_delay;
	u16 t_max;
1505 1506 1507 1508
	u8 control_mode;
	u16 default_max_fan_pwm;
	u16 default_fan_output_sensitivity;
	u16 fan_output_sensitivity;
1509 1510 1511
	bool ucode_fan_control;
};

1512 1513 1514 1515 1516 1517 1518
enum radeon_pcie_gen {
	RADEON_PCIE_GEN1 = 0,
	RADEON_PCIE_GEN2 = 1,
	RADEON_PCIE_GEN3 = 2,
	RADEON_PCIE_GEN_INVALID = 0xffff
};

1519 1520 1521 1522 1523 1524
enum radeon_dpm_forced_level {
	RADEON_DPM_FORCED_LEVEL_AUTO = 0,
	RADEON_DPM_FORCED_LEVEL_LOW = 1,
	RADEON_DPM_FORCED_LEVEL_HIGH = 2,
};

1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535
struct radeon_vce_state {
	/* vce clocks */
	u32 evclk;
	u32 ecclk;
	/* gpu clocks */
	u32 sclk;
	u32 mclk;
	u8 clk_idx;
	u8 pstate;
};

1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547
struct radeon_dpm {
	struct radeon_ps        *ps;
	/* number of valid power states */
	int                     num_ps;
	/* current power state that is active */
	struct radeon_ps        *current_ps;
	/* requested power state */
	struct radeon_ps        *requested_ps;
	/* boot up power state */
	struct radeon_ps        *boot_ps;
	/* default uvd power state */
	struct radeon_ps        *uvd_ps;
1548 1549 1550
	/* vce requirements */
	struct radeon_vce_state vce_states[RADEON_MAX_VCE_LEVELS];
	enum radeon_vce_level vce_level;
1551 1552 1553 1554 1555 1556 1557 1558 1559 1560
	enum radeon_pm_state_type state;
	enum radeon_pm_state_type user_state;
	u32                     platform_caps;
	u32                     voltage_response_time;
	u32                     backbias_response_time;
	void                    *priv;
	u32			new_active_crtcs;
	int			new_active_crtc_count;
	u32			current_active_crtcs;
	int			current_active_crtc_count;
1561
	bool single_display;
1562 1563 1564 1565
	struct radeon_dpm_dynamic_state dyn_state;
	struct radeon_dpm_fan fan;
	u32 tdp_limit;
	u32 near_tdp_limit;
1566
	u32 near_tdp_limit_adjusted;
1567 1568 1569 1570 1571 1572
	u32 sq_ramping_threshold;
	u32 cac_leakage;
	u16 tdp_od_limit;
	u32 tdp_adjustment;
	u16 load_line_slope;
	bool power_control;
1573
	bool ac_power;
1574 1575
	/* special states active */
	bool                    thermal_active;
1576
	bool                    uvd_active;
1577
	bool                    vce_active;
1578 1579
	/* thermal handling */
	struct radeon_dpm_thermal thermal;
1580 1581
	/* forced levels */
	enum radeon_dpm_forced_level forced_level;
1582 1583 1584
	/* track UVD streams */
	unsigned sd;
	unsigned hd;
1585 1586
};

1587
void radeon_dpm_enable_uvd(struct radeon_device *rdev, bool enable);
1588
void radeon_dpm_enable_vce(struct radeon_device *rdev, bool enable);
1589

1590
struct radeon_pm {
1591
	struct mutex		mutex;
1592 1593
	/* write locked while reprogramming mclk */
	struct rw_semaphore	mclk_lock;
1594 1595
	u32			active_crtcs;
	int			active_crtc_count;
1596
	int			req_vblank;
1597
	bool			vblank_sync;
1598 1599 1600 1601 1602 1603 1604 1605 1606 1607
	fixed20_12		max_bandwidth;
	fixed20_12		igp_sideport_mclk;
	fixed20_12		igp_system_mclk;
	fixed20_12		igp_ht_link_clk;
	fixed20_12		igp_ht_link_width;
	fixed20_12		k8_bandwidth;
	fixed20_12		sideport_bandwidth;
	fixed20_12		ht_bandwidth;
	fixed20_12		core_bandwidth;
	fixed20_12		sclk;
1608
	fixed20_12		mclk;
1609
	fixed20_12		needed_bandwidth;
1610
	struct radeon_power_state *power_state;
1611 1612
	/* number of valid power states */
	int                     num_power_states;
1613 1614 1615 1616 1617 1618 1619
	int                     current_power_state_index;
	int                     current_clock_mode_index;
	int                     requested_power_state_index;
	int                     requested_clock_mode_index;
	int                     default_power_state_index;
	u32                     current_sclk;
	u32                     current_mclk;
1620 1621
	u16                     current_vddc;
	u16                     current_vddci;
1622 1623
	u32                     default_sclk;
	u32                     default_mclk;
1624 1625
	u16                     default_vddc;
	u16                     default_vddci;
1626
	struct radeon_i2c_chan *i2c_bus;
1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639
	/* selected pm method */
	enum radeon_pm_method     pm_method;
	/* dynpm power management */
	struct delayed_work	dynpm_idle_work;
	enum radeon_dynpm_state	dynpm_state;
	enum radeon_dynpm_action	dynpm_planned_action;
	unsigned long		dynpm_action_timeout;
	bool                    dynpm_can_upclock;
	bool                    dynpm_can_downclock;
	/* profile-based power management */
	enum radeon_pm_profile_type profile;
	int                     profile_index;
	struct radeon_pm_profile profiles[PM_PROFILE_MAX];
1640 1641 1642
	/* internal thermal controller on rv6xx+ */
	enum radeon_int_thermal_type int_thermal_type;
	struct device	        *int_hwmon_dev;
1643 1644 1645 1646 1647
	/* fan control parameters */
	bool                    no_fan;
	u8                      fan_pulses_per_revolution;
	u8                      fan_min_rpm;
	u8                      fan_max_rpm;
1648 1649
	/* dpm */
	bool                    dpm_enabled;
1650
	bool                    sysfs_initialized;
1651
	struct radeon_dpm       dpm;
1652 1653
};

1654 1655 1656 1657
#define RADEON_PCIE_SPEED_25 1
#define RADEON_PCIE_SPEED_50 2
#define RADEON_PCIE_SPEED_80 4

1658 1659 1660
int radeon_pm_get_type_index(struct radeon_device *rdev,
			     enum radeon_pm_state_type ps_type,
			     int instance);
C
Christian König 已提交
1661 1662 1663
/*
 * UVD
 */
1664 1665 1666 1667 1668
#define RADEON_DEFAULT_UVD_HANDLES	10
#define RADEON_MAX_UVD_HANDLES		30
#define RADEON_UVD_STACK_SIZE		(200*1024)
#define RADEON_UVD_HEAP_SIZE		(256*1024)
#define RADEON_UVD_SESSION_SIZE		(50*1024)
C
Christian König 已提交
1669 1670

struct radeon_uvd {
1671
	bool			fw_header_present;
C
Christian König 已提交
1672 1673 1674
	struct radeon_bo	*vcpu_bo;
	void			*cpu_addr;
	uint64_t		gpu_addr;
1675
	unsigned		max_handles;
C
Christian König 已提交
1676 1677
	atomic_t		handles[RADEON_MAX_UVD_HANDLES];
	struct drm_file		*filp[RADEON_MAX_UVD_HANDLES];
1678
	unsigned		img_size[RADEON_MAX_UVD_HANDLES];
1679
	struct delayed_work	idle_work;
C
Christian König 已提交
1680 1681 1682 1683 1684 1685 1686 1687 1688 1689
};

int radeon_uvd_init(struct radeon_device *rdev);
void radeon_uvd_fini(struct radeon_device *rdev);
int radeon_uvd_suspend(struct radeon_device *rdev);
int radeon_uvd_resume(struct radeon_device *rdev);
int radeon_uvd_get_create_msg(struct radeon_device *rdev, int ring,
			      uint32_t handle, struct radeon_fence **fence);
int radeon_uvd_get_destroy_msg(struct radeon_device *rdev, int ring,
			       uint32_t handle, struct radeon_fence **fence);
1690 1691
void radeon_uvd_force_into_uvd_segment(struct radeon_bo *rbo,
				       uint32_t allowed_domains);
C
Christian König 已提交
1692 1693 1694
void radeon_uvd_free_handles(struct radeon_device *rdev,
			     struct drm_file *filp);
int radeon_uvd_cs_parse(struct radeon_cs_parser *parser);
1695
void radeon_uvd_note_usage(struct radeon_device *rdev);
1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706
int radeon_uvd_calc_upll_dividers(struct radeon_device *rdev,
				  unsigned vclk, unsigned dclk,
				  unsigned vco_min, unsigned vco_max,
				  unsigned fb_factor, unsigned fb_mask,
				  unsigned pd_min, unsigned pd_max,
				  unsigned pd_even,
				  unsigned *optimal_fb_div,
				  unsigned *optimal_vclk_div,
				  unsigned *optimal_dclk_div);
int radeon_uvd_send_upll_ctlreq(struct radeon_device *rdev,
                                unsigned cg_upll_func_cntl);
1707

1708 1709 1710 1711 1712 1713 1714 1715
/*
 * VCE
 */
#define RADEON_MAX_VCE_HANDLES	16

struct radeon_vce {
	struct radeon_bo	*vcpu_bo;
	uint64_t		gpu_addr;
1716 1717
	unsigned		fw_version;
	unsigned		fb_version;
1718 1719
	atomic_t		handles[RADEON_MAX_VCE_HANDLES];
	struct drm_file		*filp[RADEON_MAX_VCE_HANDLES];
1720
	unsigned		img_size[RADEON_MAX_VCE_HANDLES];
1721
	struct delayed_work	idle_work;
1722
	uint32_t		keyselect;
1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733
};

int radeon_vce_init(struct radeon_device *rdev);
void radeon_vce_fini(struct radeon_device *rdev);
int radeon_vce_suspend(struct radeon_device *rdev);
int radeon_vce_resume(struct radeon_device *rdev);
int radeon_vce_get_create_msg(struct radeon_device *rdev, int ring,
			      uint32_t handle, struct radeon_fence **fence);
int radeon_vce_get_destroy_msg(struct radeon_device *rdev, int ring,
			       uint32_t handle, struct radeon_fence **fence);
void radeon_vce_free_handles(struct radeon_device *rdev, struct drm_file *filp);
1734
void radeon_vce_note_usage(struct radeon_device *rdev);
1735
int radeon_vce_cs_reloc(struct radeon_cs_parser *p, int lo, int hi, unsigned size);
1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746
int radeon_vce_cs_parse(struct radeon_cs_parser *p);
bool radeon_vce_semaphore_emit(struct radeon_device *rdev,
			       struct radeon_ring *ring,
			       struct radeon_semaphore *semaphore,
			       bool emit_wait);
void radeon_vce_ib_execute(struct radeon_device *rdev, struct radeon_ib *ib);
void radeon_vce_fence_emit(struct radeon_device *rdev,
			   struct radeon_fence *fence);
int radeon_vce_ring_test(struct radeon_device *rdev, struct radeon_ring *ring);
int radeon_vce_ib_test(struct radeon_device *rdev, struct radeon_ring *ring);

1747
struct r600_audio_pin {
1748 1749 1750 1751 1752
	int			channels;
	int			rate;
	int			bits_per_sample;
	u8			status_bits;
	u8			category_code;
1753 1754 1755 1756 1757 1758 1759 1760 1761
	u32			offset;
	bool			connected;
	u32			id;
};

struct r600_audio {
	bool enabled;
	struct r600_audio_pin pin[RADEON_MAX_AFMT_BLOCKS];
	int num_pins;
1762 1763 1764
	struct radeon_audio_funcs *hdmi_funcs;
	struct radeon_audio_funcs *dp_funcs;
	struct radeon_audio_basic_funcs *funcs;
1765 1766
};

1767 1768 1769
/*
 * Benchmarking
 */
1770
void radeon_benchmark(struct radeon_device *rdev, int test_number);
1771 1772


1773 1774 1775 1776
/*
 * Testing
 */
void radeon_test_moves(struct radeon_device *rdev);
1777
void radeon_test_ring_sync(struct radeon_device *rdev,
1778 1779
			   struct radeon_ring *cpA,
			   struct radeon_ring *cpB);
1780
void radeon_test_syncing(struct radeon_device *rdev);
1781

1782 1783 1784
/*
 * MMU Notifier
 */
1785
#if defined(CONFIG_MMU_NOTIFIER)
1786 1787
int radeon_mn_register(struct radeon_bo *bo, unsigned long addr);
void radeon_mn_unregister(struct radeon_bo *bo);
1788 1789 1790 1791 1792 1793 1794
#else
static inline int radeon_mn_register(struct radeon_bo *bo, unsigned long addr)
{
	return -ENODEV;
}
static inline void radeon_mn_unregister(struct radeon_bo *bo) {}
#endif
1795

1796 1797 1798
/*
 * Debugfs
 */
1799 1800 1801 1802 1803
struct radeon_debugfs {
	struct drm_info_list	*files;
	unsigned		num_files;
};

1804 1805 1806 1807 1808
int radeon_debugfs_add_files(struct radeon_device *rdev,
			     struct drm_info_list *files,
			     unsigned nfiles);
int radeon_debugfs_fence_init(struct radeon_device *rdev);

1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824
/*
 * ASIC ring specific functions.
 */
struct radeon_asic_ring {
	/* ring read/write ptr handling */
	u32 (*get_rptr)(struct radeon_device *rdev, struct radeon_ring *ring);
	u32 (*get_wptr)(struct radeon_device *rdev, struct radeon_ring *ring);
	void (*set_wptr)(struct radeon_device *rdev, struct radeon_ring *ring);

	/* validating and patching of IBs */
	int (*ib_parse)(struct radeon_device *rdev, struct radeon_ib *ib);
	int (*cs_parse)(struct radeon_cs_parser *p);

	/* command emmit functions */
	void (*ib_execute)(struct radeon_device *rdev, struct radeon_ib *ib);
	void (*emit_fence)(struct radeon_device *rdev, struct radeon_fence *fence);
1825
	void (*hdp_flush)(struct radeon_device *rdev, struct radeon_ring *ring);
1826
	bool (*emit_semaphore)(struct radeon_device *rdev, struct radeon_ring *cp,
1827
			       struct radeon_semaphore *semaphore, bool emit_wait);
1828 1829
	void (*vm_flush)(struct radeon_device *rdev, struct radeon_ring *ring,
			 unsigned vm_id, uint64_t pd_addr);
1830 1831 1832 1833 1834 1835 1836 1837 1838

	/* testing functions */
	int (*ring_test)(struct radeon_device *rdev, struct radeon_ring *cp);
	int (*ib_test)(struct radeon_device *rdev, struct radeon_ring *cp);
	bool (*is_lockup)(struct radeon_device *rdev, struct radeon_ring *cp);

	/* deprecated */
	void (*ring_start)(struct radeon_device *rdev, struct radeon_ring *cp);
};
1839 1840 1841 1842 1843

/*
 * ASIC specific functions.
 */
struct radeon_asic {
1844
	int (*init)(struct radeon_device *rdev);
1845 1846 1847
	void (*fini)(struct radeon_device *rdev);
	int (*resume)(struct radeon_device *rdev);
	int (*suspend)(struct radeon_device *rdev);
1848
	void (*vga_set_state)(struct radeon_device *rdev, bool state);
1849
	int (*asic_reset)(struct radeon_device *rdev, bool hard);
1850 1851
	/* Flush the HDP cache via MMIO */
	void (*mmio_hdp_flush)(struct radeon_device *rdev);
1852 1853 1854 1855
	/* check if 3D engine is idle */
	bool (*gui_idle)(struct radeon_device *rdev);
	/* wait for mc_idle */
	int (*mc_wait_for_idle)(struct radeon_device *rdev);
1856 1857
	/* get the reference clock */
	u32 (*get_xclk)(struct radeon_device *rdev);
1858 1859
	/* get the gpu clock counter */
	uint64_t (*get_gpu_clock_counter)(struct radeon_device *rdev);
1860 1861
	/* get register for info ioctl */
	int (*get_allowed_info_register)(struct radeon_device *rdev, u32 reg, u32 *val);
1862
	/* gart */
1863 1864
	struct {
		void (*tlb_flush)(struct radeon_device *rdev);
1865
		uint64_t (*get_page_entry)(uint64_t addr, uint32_t flags);
1866
		void (*set_page)(struct radeon_device *rdev, unsigned i,
1867
				 uint64_t entry);
1868
	} gart;
1869 1870 1871
	struct {
		int (*init)(struct radeon_device *rdev);
		void (*fini)(struct radeon_device *rdev);
1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886
		void (*copy_pages)(struct radeon_device *rdev,
				   struct radeon_ib *ib,
				   uint64_t pe, uint64_t src,
				   unsigned count);
		void (*write_pages)(struct radeon_device *rdev,
				    struct radeon_ib *ib,
				    uint64_t pe,
				    uint64_t addr, unsigned count,
				    uint32_t incr, uint32_t flags);
		void (*set_pages)(struct radeon_device *rdev,
				  struct radeon_ib *ib,
				  uint64_t pe,
				  uint64_t addr, unsigned count,
				  uint32_t incr, uint32_t flags);
		void (*pad_ib)(struct radeon_ib *ib);
1887
	} vm;
1888
	/* ring specific callbacks */
1889
	const struct radeon_asic_ring *ring[RADEON_NUM_RINGS];
1890
	/* irqs */
1891 1892 1893 1894
	struct {
		int (*set)(struct radeon_device *rdev);
		int (*process)(struct radeon_device *rdev);
	} irq;
1895
	/* displays */
1896 1897 1898 1899 1900 1901 1902
	struct {
		/* display watermarks */
		void (*bandwidth_update)(struct radeon_device *rdev);
		/* get frame count */
		u32 (*get_vblank_counter)(struct radeon_device *rdev, int crtc);
		/* wait for vblank */
		void (*wait_for_vblank)(struct radeon_device *rdev, int crtc);
1903 1904
		/* set backlight level */
		void (*set_backlight_level)(struct radeon_encoder *radeon_encoder, u8 level);
1905 1906
		/* get backlight level */
		u8 (*get_backlight_level)(struct radeon_encoder *radeon_encoder);
1907 1908 1909
		/* audio callbacks */
		void (*hdmi_enable)(struct drm_encoder *encoder, bool enable);
		void (*hdmi_setmode)(struct drm_encoder *encoder, struct drm_display_mode *mode);
1910
	} display;
1911
	/* copy functions for bo handling */
1912
	struct {
1913 1914 1915 1916
		struct radeon_fence *(*blit)(struct radeon_device *rdev,
					     uint64_t src_offset,
					     uint64_t dst_offset,
					     unsigned num_gpu_pages,
1917
					     struct dma_resv *resv);
1918
		u32 blit_ring_index;
1919 1920 1921 1922
		struct radeon_fence *(*dma)(struct radeon_device *rdev,
					    uint64_t src_offset,
					    uint64_t dst_offset,
					    unsigned num_gpu_pages,
1923
					    struct dma_resv *resv);
1924 1925
		u32 dma_ring_index;
		/* method used for bo copy */
1926 1927 1928 1929
		struct radeon_fence *(*copy)(struct radeon_device *rdev,
					     uint64_t src_offset,
					     uint64_t dst_offset,
					     unsigned num_gpu_pages,
1930
					     struct dma_resv *resv);
1931 1932 1933
		/* ring used for bo copies */
		u32 copy_ring_index;
	} copy;
1934
	/* surfaces */
1935 1936 1937 1938 1939 1940
	struct {
		int (*set_reg)(struct radeon_device *rdev, int reg,
				       uint32_t tiling_flags, uint32_t pitch,
				       uint32_t offset, uint32_t obj_size);
		void (*clear_reg)(struct radeon_device *rdev, int reg);
	} surface;
1941
	/* hotplug detect */
1942 1943 1944 1945 1946 1947
	struct {
		void (*init)(struct radeon_device *rdev);
		void (*fini)(struct radeon_device *rdev);
		bool (*sense)(struct radeon_device *rdev, enum radeon_hpd_id hpd);
		void (*set_polarity)(struct radeon_device *rdev, enum radeon_hpd_id hpd);
	} hpd;
1948
	/* static power management */
1949 1950 1951 1952 1953 1954
	struct {
		void (*misc)(struct radeon_device *rdev);
		void (*prepare)(struct radeon_device *rdev);
		void (*finish)(struct radeon_device *rdev);
		void (*init_profile)(struct radeon_device *rdev);
		void (*get_dynpm_state)(struct radeon_device *rdev);
1955 1956 1957 1958 1959 1960 1961
		uint32_t (*get_engine_clock)(struct radeon_device *rdev);
		void (*set_engine_clock)(struct radeon_device *rdev, uint32_t eng_clock);
		uint32_t (*get_memory_clock)(struct radeon_device *rdev);
		void (*set_memory_clock)(struct radeon_device *rdev, uint32_t mem_clock);
		int (*get_pcie_lanes)(struct radeon_device *rdev);
		void (*set_pcie_lanes)(struct radeon_device *rdev, int lanes);
		void (*set_clock_gating)(struct radeon_device *rdev, int enable);
1962
		int (*set_uvd_clocks)(struct radeon_device *rdev, u32 vclk, u32 dclk);
1963
		int (*set_vce_clocks)(struct radeon_device *rdev, u32 evclk, u32 ecclk);
1964
		int (*get_temperature)(struct radeon_device *rdev);
1965
	} pm;
1966 1967 1968 1969 1970
	/* dynamic power management */
	struct {
		int (*init)(struct radeon_device *rdev);
		void (*setup_asic)(struct radeon_device *rdev);
		int (*enable)(struct radeon_device *rdev);
1971
		int (*late_enable)(struct radeon_device *rdev);
1972
		void (*disable)(struct radeon_device *rdev);
1973
		int (*pre_set_power_state)(struct radeon_device *rdev);
1974
		int (*set_power_state)(struct radeon_device *rdev);
1975
		void (*post_set_power_state)(struct radeon_device *rdev);
1976 1977 1978 1979 1980
		void (*display_configuration_changed)(struct radeon_device *rdev);
		void (*fini)(struct radeon_device *rdev);
		u32 (*get_sclk)(struct radeon_device *rdev, bool low);
		u32 (*get_mclk)(struct radeon_device *rdev, bool low);
		void (*print_power_state)(struct radeon_device *rdev, struct radeon_ps *ps);
1981
		void (*debugfs_print_current_performance_level)(struct radeon_device *rdev, struct seq_file *m);
1982
		int (*force_performance_level)(struct radeon_device *rdev, enum radeon_dpm_forced_level level);
1983
		bool (*vblank_too_short)(struct radeon_device *rdev);
1984
		void (*powergate_uvd)(struct radeon_device *rdev, bool gate);
1985
		void (*enable_bapm)(struct radeon_device *rdev, bool enable);
1986 1987 1988 1989
		void (*fan_ctrl_set_mode)(struct radeon_device *rdev, u32 mode);
		u32 (*fan_ctrl_get_mode)(struct radeon_device *rdev);
		int (*set_fan_speed_percent)(struct radeon_device *rdev, u32 speed);
		int (*get_fan_speed_percent)(struct radeon_device *rdev, u32 *speed);
1990 1991
		u32 (*get_current_sclk)(struct radeon_device *rdev);
		u32 (*get_current_mclk)(struct radeon_device *rdev);
1992
		u16 (*get_current_vddc)(struct radeon_device *rdev);
1993
	} dpm;
1994
	/* pageflipping */
1995
	struct {
1996
		void (*page_flip)(struct radeon_device *rdev, int crtc, u64 crtc_base, bool async);
1997
		bool (*page_flip_pending)(struct radeon_device *rdev, int crtc);
1998
	} pflip;
1999 2000
};

2001 2002 2003
/*
 * Asic structures
 */
2004
struct r100_asic {
2005 2006 2007
	const unsigned		*reg_safe_bm;
	unsigned		reg_safe_bm_size;
	u32			hdp_cntl;
2008 2009
};

2010
struct r300_asic {
2011 2012 2013 2014
	const unsigned		*reg_safe_bm;
	unsigned		reg_safe_bm_size;
	u32			resync_scratch;
	u32			hdp_cntl;
2015 2016 2017
};

struct r600_asic {
2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033
	unsigned		max_pipes;
	unsigned		max_tile_pipes;
	unsigned		max_simds;
	unsigned		max_backends;
	unsigned		max_gprs;
	unsigned		max_threads;
	unsigned		max_stack_entries;
	unsigned		max_hw_contexts;
	unsigned		max_gs_threads;
	unsigned		sx_max_export_size;
	unsigned		sx_max_export_pos_size;
	unsigned		sx_max_export_smx_size;
	unsigned		sq_num_cf_insts;
	unsigned		tiling_nbanks;
	unsigned		tiling_npipes;
	unsigned		tiling_group_size;
2034
	unsigned		tile_config;
2035
	unsigned		backend_map;
2036
	unsigned		active_simds;
2037 2038 2039
};

struct rv770_asic {
2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059
	unsigned		max_pipes;
	unsigned		max_tile_pipes;
	unsigned		max_simds;
	unsigned		max_backends;
	unsigned		max_gprs;
	unsigned		max_threads;
	unsigned		max_stack_entries;
	unsigned		max_hw_contexts;
	unsigned		max_gs_threads;
	unsigned		sx_max_export_size;
	unsigned		sx_max_export_pos_size;
	unsigned		sx_max_export_smx_size;
	unsigned		sq_num_cf_insts;
	unsigned		sx_num_of_sets;
	unsigned		sc_prim_fifo_size;
	unsigned		sc_hiz_tile_fifo_size;
	unsigned		sc_earlyz_tile_fifo_fize;
	unsigned		tiling_nbanks;
	unsigned		tiling_npipes;
	unsigned		tiling_group_size;
2060
	unsigned		tile_config;
2061
	unsigned		backend_map;
2062
	unsigned		active_simds;
2063 2064
};

2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086
struct evergreen_asic {
	unsigned num_ses;
	unsigned max_pipes;
	unsigned max_tile_pipes;
	unsigned max_simds;
	unsigned max_backends;
	unsigned max_gprs;
	unsigned max_threads;
	unsigned max_stack_entries;
	unsigned max_hw_contexts;
	unsigned max_gs_threads;
	unsigned sx_max_export_size;
	unsigned sx_max_export_pos_size;
	unsigned sx_max_export_smx_size;
	unsigned sq_num_cf_insts;
	unsigned sx_num_of_sets;
	unsigned sc_prim_fifo_size;
	unsigned sc_hiz_tile_fifo_size;
	unsigned sc_earlyz_tile_fifo_size;
	unsigned tiling_nbanks;
	unsigned tiling_npipes;
	unsigned tiling_group_size;
2087
	unsigned tile_config;
2088
	unsigned backend_map;
2089
	unsigned active_simds;
2090 2091
};

2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127
struct cayman_asic {
	unsigned max_shader_engines;
	unsigned max_pipes_per_simd;
	unsigned max_tile_pipes;
	unsigned max_simds_per_se;
	unsigned max_backends_per_se;
	unsigned max_texture_channel_caches;
	unsigned max_gprs;
	unsigned max_threads;
	unsigned max_gs_threads;
	unsigned max_stack_entries;
	unsigned sx_num_of_sets;
	unsigned sx_max_export_size;
	unsigned sx_max_export_pos_size;
	unsigned sx_max_export_smx_size;
	unsigned max_hw_contexts;
	unsigned sq_num_cf_insts;
	unsigned sc_prim_fifo_size;
	unsigned sc_hiz_tile_fifo_size;
	unsigned sc_earlyz_tile_fifo_size;

	unsigned num_shader_engines;
	unsigned num_shader_pipes_per_simd;
	unsigned num_tile_pipes;
	unsigned num_simds_per_se;
	unsigned num_backends_per_se;
	unsigned backend_disable_mask_per_asic;
	unsigned backend_map;
	unsigned num_texture_channel_caches;
	unsigned mem_max_burst_length_bytes;
	unsigned mem_row_size_in_kb;
	unsigned shader_engine_tile_size;
	unsigned num_gpus;
	unsigned multi_gpu_tile_size;

	unsigned tile_config;
2128
	unsigned active_simds;
2129 2130
};

2131 2132 2133
struct si_asic {
	unsigned max_shader_engines;
	unsigned max_tile_pipes;
A
Alex Deucher 已提交
2134 2135
	unsigned max_cu_per_sh;
	unsigned max_sh_per_se;
2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146
	unsigned max_backends_per_se;
	unsigned max_texture_channel_caches;
	unsigned max_gprs;
	unsigned max_gs_threads;
	unsigned max_hw_contexts;
	unsigned sc_prim_fifo_size_frontend;
	unsigned sc_prim_fifo_size_backend;
	unsigned sc_hiz_tile_fifo_size;
	unsigned sc_earlyz_tile_fifo_size;

	unsigned num_tile_pipes;
2147
	unsigned backend_enable_mask;
2148 2149 2150 2151 2152 2153 2154 2155 2156 2157
	unsigned backend_disable_mask_per_asic;
	unsigned backend_map;
	unsigned num_texture_channel_caches;
	unsigned mem_max_burst_length_bytes;
	unsigned mem_row_size_in_kb;
	unsigned shader_engine_tile_size;
	unsigned num_gpus;
	unsigned multi_gpu_tile_size;

	unsigned tile_config;
2158
	uint32_t tile_mode_array[32];
2159
	uint32_t active_cus;
2160 2161
};

2162 2163 2164 2165 2166 2167 2168 2169 2170 2171 2172 2173 2174 2175 2176 2177
struct cik_asic {
	unsigned max_shader_engines;
	unsigned max_tile_pipes;
	unsigned max_cu_per_sh;
	unsigned max_sh_per_se;
	unsigned max_backends_per_se;
	unsigned max_texture_channel_caches;
	unsigned max_gprs;
	unsigned max_gs_threads;
	unsigned max_hw_contexts;
	unsigned sc_prim_fifo_size_frontend;
	unsigned sc_prim_fifo_size_backend;
	unsigned sc_hiz_tile_fifo_size;
	unsigned sc_earlyz_tile_fifo_size;

	unsigned num_tile_pipes;
2178
	unsigned backend_enable_mask;
2179 2180 2181 2182 2183 2184 2185 2186 2187 2188
	unsigned backend_disable_mask_per_asic;
	unsigned backend_map;
	unsigned num_texture_channel_caches;
	unsigned mem_max_burst_length_bytes;
	unsigned mem_row_size_in_kb;
	unsigned shader_engine_tile_size;
	unsigned num_gpus;
	unsigned multi_gpu_tile_size;

	unsigned tile_config;
2189
	uint32_t tile_mode_array[32];
2190
	uint32_t macrotile_mode_array[16];
2191
	uint32_t active_cus;
2192 2193
};

2194 2195
union radeon_asic_config {
	struct r300_asic	r300;
2196
	struct r100_asic	r100;
2197 2198
	struct r600_asic	r600;
	struct rv770_asic	rv770;
2199
	struct evergreen_asic	evergreen;
2200
	struct cayman_asic	cayman;
2201
	struct si_asic		si;
2202
	struct cik_asic		cik;
2203 2204
};

D
Daniel Vetter 已提交
2205 2206 2207 2208 2209 2210
/*
 * asic initizalization from radeon_asic.c
 */
void radeon_agp_disable(struct radeon_device *rdev);
int radeon_asic_init(struct radeon_device *rdev);

2211 2212 2213 2214 2215 2216 2217 2218

/*
 * IOCTL.
 */
int radeon_gem_info_ioctl(struct drm_device *dev, void *data,
			  struct drm_file *filp);
int radeon_gem_create_ioctl(struct drm_device *dev, void *data,
			    struct drm_file *filp);
2219 2220
int radeon_gem_userptr_ioctl(struct drm_device *dev, void *data,
			     struct drm_file *filp);
2221 2222 2223 2224 2225 2226 2227 2228 2229 2230 2231 2232 2233 2234 2235 2236
int radeon_gem_pin_ioctl(struct drm_device *dev, void *data,
			 struct drm_file *file_priv);
int radeon_gem_unpin_ioctl(struct drm_device *dev, void *data,
			   struct drm_file *file_priv);
int radeon_gem_pwrite_ioctl(struct drm_device *dev, void *data,
			    struct drm_file *file_priv);
int radeon_gem_pread_ioctl(struct drm_device *dev, void *data,
			   struct drm_file *file_priv);
int radeon_gem_set_domain_ioctl(struct drm_device *dev, void *data,
				struct drm_file *filp);
int radeon_gem_mmap_ioctl(struct drm_device *dev, void *data,
			  struct drm_file *filp);
int radeon_gem_busy_ioctl(struct drm_device *dev, void *data,
			  struct drm_file *filp);
int radeon_gem_wait_idle_ioctl(struct drm_device *dev, void *data,
			      struct drm_file *filp);
2237 2238
int radeon_gem_va_ioctl(struct drm_device *dev, void *data,
			  struct drm_file *filp);
2239 2240
int radeon_gem_op_ioctl(struct drm_device *dev, void *data,
			struct drm_file *filp);
2241
int radeon_cs_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
2242 2243 2244 2245
int radeon_gem_set_tiling_ioctl(struct drm_device *dev, void *data,
				struct drm_file *filp);
int radeon_gem_get_tiling_ioctl(struct drm_device *dev, void *data,
				struct drm_file *filp);
2246
int radeon_info_ioctl(struct drm_device *dev, void *data, struct drm_file *filp);
2247

2248 2249
/* VRAM scratch page for HDP bug, default vram page */
struct r600_vram_scratch {
2250 2251
	struct radeon_bo		*robj;
	volatile uint32_t		*ptr;
2252
	u64				gpu_addr;
2253
};
2254

2255 2256 2257 2258 2259 2260 2261 2262 2263 2264 2265 2266 2267 2268 2269 2270 2271 2272 2273 2274 2275 2276 2277 2278 2279 2280 2281 2282 2283 2284 2285 2286 2287 2288 2289 2290 2291
/*
 * ACPI
 */
struct radeon_atif_notification_cfg {
	bool enabled;
	int command_code;
};

struct radeon_atif_notifications {
	bool display_switch;
	bool expansion_mode_change;
	bool thermal_state;
	bool forced_power_state;
	bool system_power_state;
	bool display_conf_change;
	bool px_gfx_switch;
	bool brightness_change;
	bool dgpu_display_event;
};

struct radeon_atif_functions {
	bool system_params;
	bool sbios_requests;
	bool select_active_disp;
	bool lid_state;
	bool get_tv_standard;
	bool set_tv_standard;
	bool get_panel_expansion_mode;
	bool set_panel_expansion_mode;
	bool temperature_change;
	bool graphics_device_types;
};

struct radeon_atif {
	struct radeon_atif_notifications notifications;
	struct radeon_atif_functions functions;
	struct radeon_atif_notification_cfg notification_cfg;
2292
	struct radeon_encoder *encoder_for_bl;
2293
};
2294

2295 2296 2297 2298 2299 2300 2301 2302 2303 2304 2305
struct radeon_atcs_functions {
	bool get_ext_state;
	bool pcie_perf_req;
	bool pcie_dev_rdy;
	bool pcie_bus_width;
};

struct radeon_atcs {
	struct radeon_atcs_functions functions;
};

2306 2307 2308 2309 2310 2311 2312
/*
 * Core structure, functions and helpers.
 */
typedef uint32_t (*radeon_rreg_t)(struct radeon_device*, uint32_t);
typedef void (*radeon_wreg_t)(struct radeon_device*, uint32_t, uint32_t);

struct radeon_device {
2313
	struct device			*dev;
2314 2315
	struct drm_device		*ddev;
	struct pci_dev			*pdev;
2316 2317 2318
#ifdef __alpha__
	struct pci_controller		*hose;
#endif
2319
	struct rw_semaphore		exclusive_lock;
2320
	/* ASIC */
2321
	union radeon_asic_config	config;
2322 2323 2324 2325 2326
	enum radeon_family		family;
	unsigned long			flags;
	int				usec_timeout;
	enum radeon_pll_errata		pll_errata;
	int				num_gb_pipes;
2327
	int				num_z_pipes;
2328 2329 2330 2331 2332
	int				disp_priority;
	/* BIOS */
	uint8_t				*bios;
	bool				is_atom_bios;
	uint16_t			bios_header_start;
K
Kent Russell 已提交
2333
	struct radeon_bo		*stolen_vga_memory;
2334
	/* Register mmio */
2335 2336
	resource_size_t			rmmio_base;
	resource_size_t			rmmio_size;
2337 2338
	/* protects concurrent MM_INDEX/DATA based register access */
	spinlock_t mmio_idx_lock;
2339 2340
	/* protects concurrent SMC based register access */
	spinlock_t smc_idx_lock;
2341 2342 2343 2344 2345 2346 2347 2348 2349 2350 2351 2352 2353 2354 2355 2356 2357 2358 2359 2360
	/* protects concurrent PLL register access */
	spinlock_t pll_idx_lock;
	/* protects concurrent MC register access */
	spinlock_t mc_idx_lock;
	/* protects concurrent PCIE register access */
	spinlock_t pcie_idx_lock;
	/* protects concurrent PCIE_PORT register access */
	spinlock_t pciep_idx_lock;
	/* protects concurrent PIF register access */
	spinlock_t pif_idx_lock;
	/* protects concurrent CG register access */
	spinlock_t cg_idx_lock;
	/* protects concurrent UVD register access */
	spinlock_t uvd_idx_lock;
	/* protects concurrent RCU register access */
	spinlock_t rcu_idx_lock;
	/* protects concurrent DIDT register access */
	spinlock_t didt_idx_lock;
	/* protects concurrent ENDPOINT (audio) register access */
	spinlock_t end_idx_lock;
2361
	void __iomem			*rmmio;
2362 2363 2364 2365
	radeon_rreg_t			mc_rreg;
	radeon_wreg_t			mc_wreg;
	radeon_rreg_t			pll_rreg;
	radeon_wreg_t			pll_wreg;
2366
	uint32_t                        pcie_reg_mask;
2367 2368
	radeon_rreg_t			pciep_rreg;
	radeon_wreg_t			pciep_wreg;
2369 2370 2371
	/* io port */
	void __iomem                    *rio_mem;
	resource_size_t			rio_mem_size;
2372 2373 2374 2375 2376
	struct radeon_clock             clock;
	struct radeon_mc		mc;
	struct radeon_gart		gart;
	struct radeon_mode_info		mode_info;
	struct radeon_scratch		scratch;
2377
	struct radeon_doorbell		doorbell;
2378
	struct radeon_mman		mman;
2379
	struct radeon_fence_driver	fence_drv[RADEON_NUM_RINGS];
2380
	wait_queue_head_t		fence_queue;
2381
	u64				fence_context;
2382
	struct mutex			ring_lock;
2383
	struct radeon_ring		ring[RADEON_NUM_RINGS];
J
Jerome Glisse 已提交
2384 2385
	bool				ib_pool_ready;
	struct radeon_sa_manager	ring_tmp_bo;
2386 2387 2388
	struct radeon_irq		irq;
	struct radeon_asic		*asic;
	struct radeon_gem		gem;
2389
	struct radeon_pm		pm;
C
Christian König 已提交
2390
	struct radeon_uvd		uvd;
2391
	struct radeon_vce		vce;
2392
	uint32_t			bios_scratch[RADEON_BIOS_NUM_SCRATCH];
2393
	struct radeon_wb		wb;
2394
	struct radeon_dummy_page	dummy_page;
2395
	bool				shutdown;
2396
	bool				need_swiotlb;
2397
	bool				accel_working;
2398
	bool				fastfb_working; /* IGP feature*/
2399
	bool				needs_reset, in_reset;
2400
	struct radeon_surface_reg surface_regs[RADEON_GEM_MAX_SURFACES];
2401 2402
	const struct firmware *me_fw;	/* all family ME firmware */
	const struct firmware *pfp_fw;	/* r6/700 PFP firmware */
2403
	const struct firmware *rlc_fw;	/* r6/700 RLC firmware */
2404
	const struct firmware *mc_fw;	/* NI MC firmware */
2405
	const struct firmware *ce_fw;	/* SI CE firmware */
2406
	const struct firmware *mec_fw;	/* CIK MEC firmware */
2407
	const struct firmware *mec2_fw;	/* KV MEC2 firmware */
2408
	const struct firmware *sdma_fw;	/* CIK SDMA firmware */
2409
	const struct firmware *smc_fw;	/* SMC firmware */
2410
	const struct firmware *uvd_fw;	/* UVD firmware */
2411
	const struct firmware *vce_fw;	/* VCE firmware */
2412
	bool new_fw;
2413
	struct r600_vram_scratch vram_scratch;
A
Alex Deucher 已提交
2414
	int msi_enabled; /* msi enabled */
2415
	struct r600_ih ih; /* r6/700 interrupt ring */
2416
	struct radeon_rlc rlc;
2417
	struct radeon_mec mec;
2418
	struct delayed_work hotplug_work;
2419
	struct work_struct dp_work;
2420
	struct work_struct audio_work;
2421
	int num_crtc; /* number of crtcs */
2422
	struct mutex dc_hw_i2c_mutex; /* display controller hw i2c mutex */
2423
	bool has_uvd;
2424
	bool has_vce;
2425
	struct r600_audio audio; /* audio stuff */
2426
	struct notifier_block acpi_nb;
2427
	/* only one userspace can use Hyperz features or CMASK at a time */
2428
	struct drm_file *hyperz_filp;
2429
	struct drm_file *cmask_filp;
2430 2431
	/* i2c buses */
	struct radeon_i2c_chan *i2c_bus[RADEON_MAX_I2C_BUS];
2432 2433 2434
	/* debugfs */
	struct radeon_debugfs	debugfs[RADEON_DEBUGFS_MAX_COMPONENTS];
	unsigned 		debugfs_count;
2435 2436
	/* virtual memory */
	struct radeon_vm_manager	vm_manager;
2437
	struct mutex			gpu_clock_mutex;
2438 2439 2440 2441
	/* memory stats */
	atomic64_t			vram_usage;
	atomic64_t			gtt_usage;
	atomic64_t			num_bytes_moved;
2442
	atomic_t			gpu_reset_counter;
2443 2444
	/* ACPI interface */
	struct radeon_atif		atif;
2445
	struct radeon_atcs		atcs;
2446 2447
	/* srbm instance registers */
	struct mutex			srbm_mutex;
A
Alex Deucher 已提交
2448 2449 2450
	/* clock, powergating flags */
	u32 cg_flags;
	u32 pg_flags;
2451 2452 2453

	struct dev_pm_domain vga_pm_domain;
	bool have_disp_power_ref;
A
Alex Deucher 已提交
2454
	u32 px_quirk_flags;
2455 2456 2457 2458

	/* tracking pinned memory */
	u64 vram_pin_size;
	u64 gart_pin_size;
2459 2460
};

2461
bool radeon_is_px(struct drm_device *dev);
2462 2463 2464 2465 2466 2467 2468
int radeon_device_init(struct radeon_device *rdev,
		       struct drm_device *ddev,
		       struct pci_dev *pdev,
		       uint32_t flags);
void radeon_device_fini(struct radeon_device *rdev);
int radeon_gpu_wait_for_idle(struct radeon_device *rdev);

2469 2470
#define RADEON_MIN_MMIO_SIZE 0x10000

2471 2472
uint32_t r100_mm_rreg_slow(struct radeon_device *rdev, uint32_t reg);
void r100_mm_wreg_slow(struct radeon_device *rdev, uint32_t reg, uint32_t v);
2473 2474 2475 2476 2477 2478
static inline uint32_t r100_mm_rreg(struct radeon_device *rdev, uint32_t reg,
				    bool always_indirect)
{
	/* The mmio size is 64kb at minimum. Allows the if to be optimized out. */
	if ((reg < rdev->rmmio_size || reg < RADEON_MIN_MMIO_SIZE) && !always_indirect)
		return readl(((void __iomem *)rdev->rmmio) + reg);
2479 2480
	else
		return r100_mm_rreg_slow(rdev, reg);
2481 2482 2483 2484 2485 2486
}
static inline void r100_mm_wreg(struct radeon_device *rdev, uint32_t reg, uint32_t v,
				bool always_indirect)
{
	if ((reg < rdev->rmmio_size || reg < RADEON_MIN_MMIO_SIZE) && !always_indirect)
		writel(v, ((void __iomem *)rdev->rmmio) + reg);
2487 2488
	else
		r100_mm_wreg_slow(rdev, reg, v);
2489 2490
}

2491 2492
u32 r100_io_rreg(struct radeon_device *rdev, u32 reg);
void r100_io_wreg(struct radeon_device *rdev, u32 reg, u32 v);
2493

2494 2495
u32 cik_mm_rdoorbell(struct radeon_device *rdev, u32 index);
void cik_mm_wdoorbell(struct radeon_device *rdev, u32 index, u32 v);
2496

2497 2498 2499
/*
 * Cast helper
 */
2500
extern const struct dma_fence_ops radeon_fence_ops;
2501

2502
static inline struct radeon_fence *to_radeon_fence(struct dma_fence *f)
2503 2504 2505 2506 2507 2508 2509 2510
{
	struct radeon_fence *__f = container_of(f, struct radeon_fence, base);

	if (__f->base.ops == &radeon_fence_ops)
		return __f;

	return NULL;
}
2511 2512 2513 2514

/*
 * Registers read & write functions.
 */
2515 2516 2517 2518
#define RREG8(reg) readb((rdev->rmmio) + (reg))
#define WREG8(reg, v) writeb(v, (rdev->rmmio) + (reg))
#define RREG16(reg) readw((rdev->rmmio) + (reg))
#define WREG16(reg, v) writew(v, (rdev->rmmio) + (reg))
2519 2520
#define RREG32(reg) r100_mm_rreg(rdev, (reg), false)
#define RREG32_IDX(reg) r100_mm_rreg(rdev, (reg), true)
2521 2522
#define DREG32(reg) pr_info("REGISTER: " #reg " : 0x%08X\n",	\
			    r100_mm_rreg(rdev, (reg), false))
2523 2524
#define WREG32(reg, v) r100_mm_wreg(rdev, (reg), (v), false)
#define WREG32_IDX(reg, v) r100_mm_wreg(rdev, (reg), (v), true)
2525 2526 2527 2528 2529 2530
#define REG_SET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
#define REG_GET(FIELD, v) (((v) << FIELD##_SHIFT) & FIELD##_MASK)
#define RREG32_PLL(reg) rdev->pll_rreg(rdev, (reg))
#define WREG32_PLL(reg, v) rdev->pll_wreg(rdev, (reg), (v))
#define RREG32_MC(reg) rdev->mc_rreg(rdev, (reg))
#define WREG32_MC(reg, v) rdev->mc_wreg(rdev, (reg), (v))
2531 2532
#define RREG32_PCIE(reg) rv370_pcie_rreg(rdev, (reg))
#define WREG32_PCIE(reg, v) rv370_pcie_wreg(rdev, (reg), (v))
2533 2534
#define RREG32_PCIE_PORT(reg) rdev->pciep_rreg(rdev, (reg))
#define WREG32_PCIE_PORT(reg, v) rdev->pciep_wreg(rdev, (reg), (v))
2535 2536
#define RREG32_SMC(reg) tn_smc_rreg(rdev, (reg))
#define WREG32_SMC(reg, v) tn_smc_wreg(rdev, (reg), (v))
2537 2538
#define RREG32_RCU(reg) r600_rcu_rreg(rdev, (reg))
#define WREG32_RCU(reg, v) r600_rcu_wreg(rdev, (reg), (v))
2539 2540
#define RREG32_CG(reg) eg_cg_rreg(rdev, (reg))
#define WREG32_CG(reg, v) eg_cg_wreg(rdev, (reg), (v))
2541 2542 2543 2544
#define RREG32_PIF_PHY0(reg) eg_pif_phy0_rreg(rdev, (reg))
#define WREG32_PIF_PHY0(reg, v) eg_pif_phy0_wreg(rdev, (reg), (v))
#define RREG32_PIF_PHY1(reg) eg_pif_phy1_rreg(rdev, (reg))
#define WREG32_PIF_PHY1(reg, v) eg_pif_phy1_wreg(rdev, (reg), (v))
2545 2546
#define RREG32_UVD_CTX(reg) r600_uvd_ctx_rreg(rdev, (reg))
#define WREG32_UVD_CTX(reg, v) r600_uvd_ctx_wreg(rdev, (reg), (v))
2547 2548
#define RREG32_DIDT(reg) cik_didt_rreg(rdev, (reg))
#define WREG32_DIDT(reg, v) cik_didt_wreg(rdev, (reg), (v))
2549 2550 2551 2552 2553 2554 2555
#define WREG32_P(reg, val, mask)				\
	do {							\
		uint32_t tmp_ = RREG32(reg);			\
		tmp_ &= (mask);					\
		tmp_ |= ((val) & ~(mask));			\
		WREG32(reg, tmp_);				\
	} while (0)
2556
#define WREG32_AND(reg, and) WREG32_P(reg, 0, and)
2557
#define WREG32_OR(reg, or) WREG32_P(reg, or, ~(or))
2558 2559 2560 2561 2562 2563 2564
#define WREG32_PLL_P(reg, val, mask)				\
	do {							\
		uint32_t tmp_ = RREG32_PLL(reg);		\
		tmp_ &= (mask);					\
		tmp_ |= ((val) & ~(mask));			\
		WREG32_PLL(reg, tmp_);				\
	} while (0)
2565 2566 2567 2568 2569 2570 2571
#define WREG32_SMC_P(reg, val, mask)				\
	do {							\
		uint32_t tmp_ = RREG32_SMC(reg);		\
		tmp_ &= (mask);					\
		tmp_ |= ((val) & ~(mask));			\
		WREG32_SMC(reg, tmp_);				\
	} while (0)
2572
#define DREG32_SYS(sqf, rdev, reg) seq_printf((sqf), #reg " : 0x%08X\n", r100_mm_rreg((rdev), (reg), false))
2573 2574
#define RREG32_IO(reg) r100_io_rreg(rdev, (reg))
#define WREG32_IO(reg, v) r100_io_wreg(rdev, (reg), (v))
2575

2576 2577
#define RDOORBELL32(index) cik_mm_rdoorbell(rdev, (index))
#define WDOORBELL32(index, v) cik_mm_wdoorbell(rdev, (index), (v))
2578

2579
/*
2580 2581 2582 2583 2584 2585
 * Indirect registers accessors.
 * They used to be inlined, but this increases code size by ~65 kbytes.
 * Since each performs a pair of MMIO ops
 * within a spin_lock_irqsave/spin_unlock_irqrestore region,
 * the cost of call+ret is almost negligible. MMIO and locking
 * costs several dozens of cycles each at best, call+ret is ~5 cycles.
2586
 */
2587 2588 2589 2590 2591 2592 2593 2594 2595 2596 2597 2598 2599 2600 2601 2602
uint32_t rv370_pcie_rreg(struct radeon_device *rdev, uint32_t reg);
void rv370_pcie_wreg(struct radeon_device *rdev, uint32_t reg, uint32_t v);
u32 tn_smc_rreg(struct radeon_device *rdev, u32 reg);
void tn_smc_wreg(struct radeon_device *rdev, u32 reg, u32 v);
u32 r600_rcu_rreg(struct radeon_device *rdev, u32 reg);
void r600_rcu_wreg(struct radeon_device *rdev, u32 reg, u32 v);
u32 eg_cg_rreg(struct radeon_device *rdev, u32 reg);
void eg_cg_wreg(struct radeon_device *rdev, u32 reg, u32 v);
u32 eg_pif_phy0_rreg(struct radeon_device *rdev, u32 reg);
void eg_pif_phy0_wreg(struct radeon_device *rdev, u32 reg, u32 v);
u32 eg_pif_phy1_rreg(struct radeon_device *rdev, u32 reg);
void eg_pif_phy1_wreg(struct radeon_device *rdev, u32 reg, u32 v);
u32 r600_uvd_ctx_rreg(struct radeon_device *rdev, u32 reg);
void r600_uvd_ctx_wreg(struct radeon_device *rdev, u32 reg, u32 v);
u32 cik_didt_rreg(struct radeon_device *rdev, u32 reg);
void cik_didt_wreg(struct radeon_device *rdev, u32 reg, u32 v);
2603

2604 2605 2606 2607 2608 2609
void r100_pll_errata_after_index(struct radeon_device *rdev);


/*
 * ASICs helpers.
 */
2610 2611
#define ASIC_IS_RN50(rdev) ((rdev->pdev->device == 0x515e) || \
			    (rdev->pdev->device == 0x5969))
2612 2613 2614 2615 2616 2617 2618 2619 2620 2621 2622 2623 2624 2625 2626 2627
#define ASIC_IS_RV100(rdev) ((rdev->family == CHIP_RV100) || \
		(rdev->family == CHIP_RV200) || \
		(rdev->family == CHIP_RS100) || \
		(rdev->family == CHIP_RS200) || \
		(rdev->family == CHIP_RV250) || \
		(rdev->family == CHIP_RV280) || \
		(rdev->family == CHIP_RS300))
#define ASIC_IS_R300(rdev) ((rdev->family == CHIP_R300)  ||	\
		(rdev->family == CHIP_RV350) ||			\
		(rdev->family == CHIP_R350)  ||			\
		(rdev->family == CHIP_RV380) ||			\
		(rdev->family == CHIP_R420)  ||			\
		(rdev->family == CHIP_R423)  ||			\
		(rdev->family == CHIP_RV410) ||			\
		(rdev->family == CHIP_RS400) ||			\
		(rdev->family == CHIP_RS480))
2628 2629 2630 2631 2632 2633 2634 2635
#define ASIC_IS_X2(rdev) ((rdev->pdev->device == 0x9441) || \
		(rdev->pdev->device == 0x9443) || \
		(rdev->pdev->device == 0x944B) || \
		(rdev->pdev->device == 0x9506) || \
		(rdev->pdev->device == 0x9509) || \
		(rdev->pdev->device == 0x950F) || \
		(rdev->pdev->device == 0x689C) || \
		(rdev->pdev->device == 0x689D))
2636
#define ASIC_IS_AVIVO(rdev) ((rdev->family >= CHIP_RS600))
2637 2638 2639 2640
#define ASIC_IS_DCE2(rdev) ((rdev->family == CHIP_RS600)  ||	\
			    (rdev->family == CHIP_RS690)  ||	\
			    (rdev->family == CHIP_RS740)  ||	\
			    (rdev->family >= CHIP_R600))
2641 2642
#define ASIC_IS_DCE3(rdev) ((rdev->family >= CHIP_RV620))
#define ASIC_IS_DCE32(rdev) ((rdev->family >= CHIP_RV730))
2643
#define ASIC_IS_DCE4(rdev) ((rdev->family >= CHIP_CEDAR))
2644 2645
#define ASIC_IS_DCE41(rdev) ((rdev->family >= CHIP_PALM) && \
			     (rdev->flags & RADEON_IS_IGP))
2646
#define ASIC_IS_DCE5(rdev) ((rdev->family >= CHIP_BARTS))
2647 2648 2649
#define ASIC_IS_DCE6(rdev) ((rdev->family >= CHIP_ARUBA))
#define ASIC_IS_DCE61(rdev) ((rdev->family >= CHIP_ARUBA) && \
			     (rdev->flags & RADEON_IS_IGP))
A
Alex Deucher 已提交
2650
#define ASIC_IS_DCE64(rdev) ((rdev->family == CHIP_OLAND))
2651
#define ASIC_IS_NODCE(rdev) ((rdev->family == CHIP_HAINAN))
2652
#define ASIC_IS_DCE8(rdev) ((rdev->family >= CHIP_BONAIRE))
2653 2654
#define ASIC_IS_DCE81(rdev) ((rdev->family == CHIP_KAVERI))
#define ASIC_IS_DCE82(rdev) ((rdev->family == CHIP_BONAIRE))
2655 2656
#define ASIC_IS_DCE83(rdev) ((rdev->family == CHIP_KABINI) || \
			     (rdev->family == CHIP_MULLINS))
2657

2658 2659 2660 2661 2662 2663 2664 2665
#define ASIC_IS_LOMBOK(rdev) ((rdev->pdev->device == 0x6849) || \
			      (rdev->pdev->device == 0x6850) || \
			      (rdev->pdev->device == 0x6858) || \
			      (rdev->pdev->device == 0x6859) || \
			      (rdev->pdev->device == 0x6840) || \
			      (rdev->pdev->device == 0x6841) || \
			      (rdev->pdev->device == 0x6842) || \
			      (rdev->pdev->device == 0x6843))
2666

2667 2668 2669 2670 2671 2672 2673 2674 2675 2676 2677 2678 2679 2680 2681 2682
/*
 * BIOS helpers.
 */
#define RBIOS8(i) (rdev->bios[i])
#define RBIOS16(i) (RBIOS8(i) | (RBIOS8((i)+1) << 8))
#define RBIOS32(i) ((RBIOS16(i)) | (RBIOS16((i)+2) << 16))

int radeon_combios_init(struct radeon_device *rdev);
void radeon_combios_fini(struct radeon_device *rdev);
int radeon_atombios_init(struct radeon_device *rdev);
void radeon_atombios_fini(struct radeon_device *rdev);


/*
 * RING helpers.
 */
D
David Herrmann 已提交
2683 2684 2685 2686 2687 2688 2689 2690 2691

/**
 * radeon_ring_write - write a value to the ring
 *
 * @ring: radeon_ring structure holding ring information
 * @v: dword (dw) value to write
 *
 * Write a value to the requested ring buffer (all asics).
 */
2692
static inline void radeon_ring_write(struct radeon_ring *ring, uint32_t v)
2693
{
D
David Herrmann 已提交
2694 2695 2696
	if (ring->count_dw <= 0)
		DRM_ERROR("radeon: writing more dwords to the ring than expected!\n");

2697 2698 2699 2700
	ring->ring[ring->wptr++] = v;
	ring->wptr &= ring->ptr_mask;
	ring->count_dw--;
	ring->ring_free_dw--;
2701 2702 2703 2704 2705
}

/*
 * ASICs macro.
 */
2706
#define radeon_init(rdev) (rdev)->asic->init((rdev))
2707 2708 2709
#define radeon_fini(rdev) (rdev)->asic->fini((rdev))
#define radeon_resume(rdev) (rdev)->asic->resume((rdev))
#define radeon_suspend(rdev) (rdev)->asic->suspend((rdev))
2710
#define radeon_cs_parse(rdev, r, p) (rdev)->asic->ring[(r)]->cs_parse((p))
2711
#define radeon_vga_set_state(rdev, state) (rdev)->asic->vga_set_state((rdev), (state))
2712
#define radeon_asic_reset(rdev) (rdev)->asic->asic_reset((rdev), false)
2713
#define radeon_gart_tlb_flush(rdev) (rdev)->asic->gart.tlb_flush((rdev))
2714 2715
#define radeon_gart_get_page_entry(a, f) (rdev)->asic->gart.get_page_entry((a), (f))
#define radeon_gart_set_page(rdev, i, e) (rdev)->asic->gart.set_page((rdev), (i), (e))
2716 2717
#define radeon_asic_vm_init(rdev) (rdev)->asic->vm.init((rdev))
#define radeon_asic_vm_fini(rdev) (rdev)->asic->vm.fini((rdev))
2718 2719 2720 2721
#define radeon_asic_vm_copy_pages(rdev, ib, pe, src, count) ((rdev)->asic->vm.copy_pages((rdev), (ib), (pe), (src), (count)))
#define radeon_asic_vm_write_pages(rdev, ib, pe, addr, count, incr, flags) ((rdev)->asic->vm.write_pages((rdev), (ib), (pe), (addr), (count), (incr), (flags)))
#define radeon_asic_vm_set_pages(rdev, ib, pe, addr, count, incr, flags) ((rdev)->asic->vm.set_pages((rdev), (ib), (pe), (addr), (count), (incr), (flags)))
#define radeon_asic_vm_pad_ib(rdev, ib) ((rdev)->asic->vm.pad_ib((ib)))
2722 2723 2724 2725 2726 2727
#define radeon_ring_start(rdev, r, cp) (rdev)->asic->ring[(r)]->ring_start((rdev), (cp))
#define radeon_ring_test(rdev, r, cp) (rdev)->asic->ring[(r)]->ring_test((rdev), (cp))
#define radeon_ib_test(rdev, r, cp) (rdev)->asic->ring[(r)]->ib_test((rdev), (cp))
#define radeon_ring_ib_execute(rdev, r, ib) (rdev)->asic->ring[(r)]->ib_execute((rdev), (ib))
#define radeon_ring_ib_parse(rdev, r, ib) (rdev)->asic->ring[(r)]->ib_parse((rdev), (ib))
#define radeon_ring_is_lockup(rdev, r, cp) (rdev)->asic->ring[(r)]->is_lockup((rdev), (cp))
2728
#define radeon_ring_vm_flush(rdev, r, vm_id, pd_addr) (rdev)->asic->ring[(r)->idx]->vm_flush((rdev), (r), (vm_id), (pd_addr))
2729 2730 2731
#define radeon_ring_get_rptr(rdev, r) (rdev)->asic->ring[(r)->idx]->get_rptr((rdev), (r))
#define radeon_ring_get_wptr(rdev, r) (rdev)->asic->ring[(r)->idx]->get_wptr((rdev), (r))
#define radeon_ring_set_wptr(rdev, r) (rdev)->asic->ring[(r)->idx]->set_wptr((rdev), (r))
2732 2733
#define radeon_irq_set(rdev) (rdev)->asic->irq.set((rdev))
#define radeon_irq_process(rdev) (rdev)->asic->irq.process((rdev))
2734
#define radeon_get_vblank_counter(rdev, crtc) (rdev)->asic->display.get_vblank_counter((rdev), (crtc))
2735
#define radeon_set_backlight_level(rdev, e, l) (rdev)->asic->display.set_backlight_level((e), (l))
2736
#define radeon_get_backlight_level(rdev, e) (rdev)->asic->display.get_backlight_level((e))
2737 2738
#define radeon_hdmi_enable(rdev, e, b) (rdev)->asic->display.hdmi_enable((e), (b))
#define radeon_hdmi_setmode(rdev, e, m) (rdev)->asic->display.hdmi_setmode((e), (m))
2739 2740
#define radeon_fence_ring_emit(rdev, r, fence) (rdev)->asic->ring[(r)]->emit_fence((rdev), (fence))
#define radeon_semaphore_ring_emit(rdev, r, cp, semaphore, emit_wait) (rdev)->asic->ring[(r)]->emit_semaphore((rdev), (cp), (semaphore), (emit_wait))
2741 2742 2743
#define radeon_copy_blit(rdev, s, d, np, resv) (rdev)->asic->copy.blit((rdev), (s), (d), (np), (resv))
#define radeon_copy_dma(rdev, s, d, np, resv) (rdev)->asic->copy.dma((rdev), (s), (d), (np), (resv))
#define radeon_copy(rdev, s, d, np, resv) (rdev)->asic->copy.copy((rdev), (s), (d), (np), (resv))
2744 2745 2746
#define radeon_copy_blit_ring_index(rdev) (rdev)->asic->copy.blit_ring_index
#define radeon_copy_dma_ring_index(rdev) (rdev)->asic->copy.dma_ring_index
#define radeon_copy_ring_index(rdev) (rdev)->asic->copy.copy_ring_index
2747 2748 2749 2750 2751 2752 2753
#define radeon_get_engine_clock(rdev) (rdev)->asic->pm.get_engine_clock((rdev))
#define radeon_set_engine_clock(rdev, e) (rdev)->asic->pm.set_engine_clock((rdev), (e))
#define radeon_get_memory_clock(rdev) (rdev)->asic->pm.get_memory_clock((rdev))
#define radeon_set_memory_clock(rdev, e) (rdev)->asic->pm.set_memory_clock((rdev), (e))
#define radeon_get_pcie_lanes(rdev) (rdev)->asic->pm.get_pcie_lanes((rdev))
#define radeon_set_pcie_lanes(rdev, l) (rdev)->asic->pm.set_pcie_lanes((rdev), (l))
#define radeon_set_clock_gating(rdev, e) (rdev)->asic->pm.set_clock_gating((rdev), (e))
2754
#define radeon_set_uvd_clocks(rdev, v, d) (rdev)->asic->pm.set_uvd_clocks((rdev), (v), (d))
2755
#define radeon_set_vce_clocks(rdev, ev, ec) (rdev)->asic->pm.set_vce_clocks((rdev), (ev), (ec))
2756
#define radeon_get_temperature(rdev) (rdev)->asic->pm.get_temperature((rdev))
2757 2758
#define radeon_set_surface_reg(rdev, r, f, p, o, s) ((rdev)->asic->surface.set_reg((rdev), (r), (f), (p), (o), (s)))
#define radeon_clear_surface_reg(rdev, r) ((rdev)->asic->surface.clear_reg((rdev), (r)))
2759
#define radeon_bandwidth_update(rdev) (rdev)->asic->display.bandwidth_update((rdev))
2760 2761 2762 2763
#define radeon_hpd_init(rdev) (rdev)->asic->hpd.init((rdev))
#define radeon_hpd_fini(rdev) (rdev)->asic->hpd.fini((rdev))
#define radeon_hpd_sense(rdev, h) (rdev)->asic->hpd.sense((rdev), (h))
#define radeon_hpd_set_polarity(rdev, h) (rdev)->asic->hpd.set_polarity((rdev), (h))
2764
#define radeon_gui_idle(rdev) (rdev)->asic->gui_idle((rdev))
2765 2766 2767 2768 2769
#define radeon_pm_misc(rdev) (rdev)->asic->pm.misc((rdev))
#define radeon_pm_prepare(rdev) (rdev)->asic->pm.prepare((rdev))
#define radeon_pm_finish(rdev) (rdev)->asic->pm.finish((rdev))
#define radeon_pm_init_profile(rdev) (rdev)->asic->pm.init_profile((rdev))
#define radeon_pm_get_dynpm_state(rdev) (rdev)->asic->pm.get_dynpm_state((rdev))
2770
#define radeon_page_flip(rdev, crtc, base, async) (rdev)->asic->pflip.page_flip((rdev), (crtc), (base), (async))
2771
#define radeon_page_flip_pending(rdev, crtc) (rdev)->asic->pflip.page_flip_pending((rdev), (crtc))
2772 2773
#define radeon_wait_for_vblank(rdev, crtc) (rdev)->asic->display.wait_for_vblank((rdev), (crtc))
#define radeon_mc_wait_for_idle(rdev) (rdev)->asic->mc_wait_for_idle((rdev))
2774
#define radeon_get_xclk(rdev) (rdev)->asic->get_xclk((rdev))
2775
#define radeon_get_gpu_clock_counter(rdev) (rdev)->asic->get_gpu_clock_counter((rdev))
2776
#define radeon_get_allowed_info_register(rdev, r, v) (rdev)->asic->get_allowed_info_register((rdev), (r), (v))
2777 2778 2779
#define radeon_dpm_init(rdev) rdev->asic->dpm.init((rdev))
#define radeon_dpm_setup_asic(rdev) rdev->asic->dpm.setup_asic((rdev))
#define radeon_dpm_enable(rdev) rdev->asic->dpm.enable((rdev))
2780
#define radeon_dpm_late_enable(rdev) rdev->asic->dpm.late_enable((rdev))
2781
#define radeon_dpm_disable(rdev) rdev->asic->dpm.disable((rdev))
2782
#define radeon_dpm_pre_set_power_state(rdev) rdev->asic->dpm.pre_set_power_state((rdev))
2783
#define radeon_dpm_set_power_state(rdev) rdev->asic->dpm.set_power_state((rdev))
2784
#define radeon_dpm_post_set_power_state(rdev) rdev->asic->dpm.post_set_power_state((rdev))
2785 2786 2787 2788 2789
#define radeon_dpm_display_configuration_changed(rdev) rdev->asic->dpm.display_configuration_changed((rdev))
#define radeon_dpm_fini(rdev) rdev->asic->dpm.fini((rdev))
#define radeon_dpm_get_sclk(rdev, l) rdev->asic->dpm.get_sclk((rdev), (l))
#define radeon_dpm_get_mclk(rdev, l) rdev->asic->dpm.get_mclk((rdev), (l))
#define radeon_dpm_print_power_state(rdev, ps) rdev->asic->dpm.print_power_state((rdev), (ps))
2790
#define radeon_dpm_debugfs_print_current_performance_level(rdev, m) rdev->asic->dpm.debugfs_print_current_performance_level((rdev), (m))
2791
#define radeon_dpm_force_performance_level(rdev, l) rdev->asic->dpm.force_performance_level((rdev), (l))
2792
#define radeon_dpm_vblank_too_short(rdev) rdev->asic->dpm.vblank_too_short((rdev))
2793
#define radeon_dpm_powergate_uvd(rdev, g) rdev->asic->dpm.powergate_uvd((rdev), (g))
2794
#define radeon_dpm_enable_bapm(rdev, e) rdev->asic->dpm.enable_bapm((rdev), (e))
2795 2796
#define radeon_dpm_get_current_sclk(rdev) rdev->asic->dpm.get_current_sclk((rdev))
#define radeon_dpm_get_current_mclk(rdev) rdev->asic->dpm.get_current_mclk((rdev))
2797

2798
/* Common functions */
2799
/* AGP */
2800
extern int radeon_gpu_reset(struct radeon_device *rdev);
2801
extern void radeon_pci_config_reset(struct radeon_device *rdev);
2802
extern void r600_set_bios_scratch_engine_hung(struct radeon_device *rdev, bool hung);
2803
extern void radeon_agp_disable(struct radeon_device *rdev);
2804 2805
extern int radeon_modeset_init(struct radeon_device *rdev);
extern void radeon_modeset_fini(struct radeon_device *rdev);
2806
extern bool radeon_card_posted(struct radeon_device *rdev);
2807
extern void radeon_update_bandwidth_info(struct radeon_device *rdev);
2808
extern void radeon_update_display_priority(struct radeon_device *rdev);
2809
extern bool radeon_boot_test_post_card(struct radeon_device *rdev);
2810
extern void radeon_scratch_init(struct radeon_device *rdev);
2811 2812 2813
extern void radeon_wb_fini(struct radeon_device *rdev);
extern int radeon_wb_init(struct radeon_device *rdev);
extern void radeon_wb_disable(struct radeon_device *rdev);
2814 2815
extern void radeon_surface_init(struct radeon_device *rdev);
extern int radeon_cs_parser_init(struct radeon_cs_parser *p, void *data);
2816
extern void radeon_legacy_set_clock_gating(struct radeon_device *rdev, int enable);
2817
extern void radeon_atom_set_clock_gating(struct radeon_device *rdev, int enable);
2818
extern void radeon_ttm_placement_from_domain(struct radeon_bo *rbo, u32 domain);
2819
extern bool radeon_ttm_bo_is_radeon_bo(struct ttm_buffer_object *bo);
2820 2821
extern int radeon_ttm_tt_set_userptr(struct radeon_device *rdev,
				     struct ttm_tt *ttm, uint64_t addr,
2822
				     uint32_t flags);
2823 2824
extern bool radeon_ttm_tt_has_userptr(struct radeon_device *rdev, struct ttm_tt *ttm);
extern bool radeon_ttm_tt_is_readonly(struct radeon_device *rdev, struct ttm_tt *ttm);
2825
bool radeon_ttm_tt_is_bound(struct ttm_bo_device *bdev, struct ttm_tt *ttm);
2826 2827
extern void radeon_vram_location(struct radeon_device *rdev, struct radeon_mc *mc, u64 base);
extern void radeon_gtt_location(struct radeon_device *rdev, struct radeon_mc *mc);
2828
extern int radeon_resume_kms(struct drm_device *dev, bool resume, bool fbcon);
2829 2830
extern int radeon_suspend_kms(struct drm_device *dev, bool suspend,
			      bool fbcon, bool freeze);
2831
extern void radeon_ttm_set_active_vram_size(struct radeon_device *rdev, u64 size);
2832 2833 2834
extern void radeon_program_register_sequence(struct radeon_device *rdev,
					     const u32 *registers,
					     const u32 array_size);
2835
struct radeon_device *radeon_get_rdev(struct ttm_bo_device *bdev);
2836

2837 2838 2839 2840 2841 2842
/* KMS */

u32 radeon_get_vblank_counter_kms(struct drm_crtc *crtc);
int radeon_enable_vblank_kms(struct drm_crtc *crtc);
void radeon_disable_vblank_kms(struct drm_crtc *crtc);

2843 2844 2845 2846 2847
/*
 * vm
 */
int radeon_vm_manager_init(struct radeon_device *rdev);
void radeon_vm_manager_fini(struct radeon_device *rdev);
2848
int radeon_vm_init(struct radeon_device *rdev, struct radeon_vm *vm);
2849
void radeon_vm_fini(struct radeon_device *rdev, struct radeon_vm *vm);
2850
struct radeon_bo_list *radeon_vm_get_bos(struct radeon_device *rdev,
2851 2852
					  struct radeon_vm *vm,
                                          struct list_head *head);
2853 2854
struct radeon_fence *radeon_vm_grab_id(struct radeon_device *rdev,
				       struct radeon_vm *vm, int ring);
2855 2856
void radeon_vm_flush(struct radeon_device *rdev,
                     struct radeon_vm *vm,
2857
		     int ring, struct radeon_fence *fence);
2858 2859 2860
void radeon_vm_fence(struct radeon_device *rdev,
		     struct radeon_vm *vm,
		     struct radeon_fence *fence);
2861
uint64_t radeon_vm_map_gart(struct radeon_device *rdev, uint64_t addr);
2862 2863
int radeon_vm_update_page_directory(struct radeon_device *rdev,
				    struct radeon_vm *vm);
2864 2865
int radeon_vm_clear_freed(struct radeon_device *rdev,
			  struct radeon_vm *vm);
2866 2867
int radeon_vm_clear_invalids(struct radeon_device *rdev,
			     struct radeon_vm *vm);
2868
int radeon_vm_bo_update(struct radeon_device *rdev,
2869
			struct radeon_bo_va *bo_va,
2870
			struct ttm_resource *mem);
2871 2872
void radeon_vm_bo_invalidate(struct radeon_device *rdev,
			     struct radeon_bo *bo);
2873 2874
struct radeon_bo_va *radeon_vm_bo_find(struct radeon_vm *vm,
				       struct radeon_bo *bo);
2875 2876 2877 2878 2879 2880 2881
struct radeon_bo_va *radeon_vm_bo_add(struct radeon_device *rdev,
				      struct radeon_vm *vm,
				      struct radeon_bo *bo);
int radeon_vm_bo_set_addr(struct radeon_device *rdev,
			  struct radeon_bo_va *bo_va,
			  uint64_t offset,
			  uint32_t flags);
2882 2883
void radeon_vm_bo_rmv(struct radeon_device *rdev,
		      struct radeon_bo_va *bo_va);
2884

2885 2886
/* audio */
void r600_audio_update_hdmi(struct work_struct *work);
2887 2888
struct r600_audio_pin *r600_audio_get_pin(struct radeon_device *rdev);
struct r600_audio_pin *dce6_audio_get_pin(struct radeon_device *rdev);
2889 2890
void r600_audio_enable(struct radeon_device *rdev,
		       struct r600_audio_pin *pin,
2891
		       u8 enable_mask);
2892 2893
void dce6_audio_enable(struct radeon_device *rdev,
		       struct r600_audio_pin *pin,
2894
		       u8 enable_mask);
2895

2896 2897 2898 2899 2900 2901
/*
 * R600 vram scratch functions
 */
int r600_vram_scratch_init(struct radeon_device *rdev);
void r600_vram_scratch_fini(struct radeon_device *rdev);

2902 2903 2904 2905 2906 2907 2908 2909 2910 2911
/*
 * r600 cs checking helper
 */
unsigned r600_mip_minify(unsigned size, unsigned level);
bool r600_fmt_is_valid_color(u32 format);
bool r600_fmt_is_valid_texture(u32 format, enum radeon_family family);
int r600_fmt_get_blocksize(u32 format);
int r600_fmt_get_nblocksx(u32 format, u32 w);
int r600_fmt_get_nblocksy(u32 format, u32 h);

2912 2913 2914
/*
 * r600 functions used by radeon_encoder.c
 */
2915 2916 2917 2918 2919 2920 2921 2922 2923 2924 2925 2926 2927 2928
struct radeon_hdmi_acr {
	u32 clock;

	int n_32khz;
	int cts_32khz;

	int n_44_1khz;
	int cts_44_1khz;

	int n_48khz;
	int cts_48khz;

};

2929 2930
extern struct radeon_hdmi_acr r600_hdmi_acr(uint32_t clock);

2931 2932 2933 2934 2935
extern u32 r6xx_remap_render_backend(struct radeon_device *rdev,
				     u32 tiling_pipe_num,
				     u32 max_rb_num,
				     u32 total_max_rb_num,
				     u32 enabled_rb_mask);
2936

2937 2938 2939 2940
/*
 * evergreen functions used by radeon_encoder.c
 */

2941
extern int ni_init_microcode(struct radeon_device *rdev);
2942
extern int ni_mc_load_microcode(struct radeon_device *rdev);
2943

2944 2945 2946 2947
/* radeon_acpi.c */
#if defined(CONFIG_ACPI)
extern int radeon_acpi_init(struct radeon_device *rdev);
extern void radeon_acpi_fini(struct radeon_device *rdev);
2948 2949
extern bool radeon_acpi_is_pcie_performance_request_supported(struct radeon_device *rdev);
extern int radeon_acpi_pcie_performance_request(struct radeon_device *rdev,
2950
						u8 perf_req, bool advertise);
2951
extern int radeon_acpi_pcie_notify_device_ready(struct radeon_device *rdev);
2952 2953 2954 2955
#else
static inline int radeon_acpi_init(struct radeon_device *rdev) { return 0; }
static inline void radeon_acpi_fini(struct radeon_device *rdev) { }
#endif
2956

2957 2958 2959
int radeon_cs_packet_parse(struct radeon_cs_parser *p,
			   struct radeon_cs_packet *pkt,
			   unsigned idx);
2960
bool radeon_cs_packet_next_is_pkt3_nop(struct radeon_cs_parser *p);
2961 2962
void radeon_cs_dump_packet(struct radeon_cs_parser *p,
			   struct radeon_cs_packet *pkt);
2963
int radeon_cs_packet_next_reloc(struct radeon_cs_parser *p,
2964
				struct radeon_bo_list **cs_reloc,
2965
				int nomm);
2966 2967 2968
int r600_cs_common_vline_parse(struct radeon_cs_parser *p,
			       uint32_t *vline_start_end,
			       uint32_t *vline_status);
2969

2970 2971 2972 2973 2974 2975
/* interrupt control register helpers */
void radeon_irq_kms_set_irq_n_enabled(struct radeon_device *rdev,
				      u32 reg, u32 mask,
				      bool enable, const char *name,
				      unsigned n);

2976 2977
#include "radeon_object.h"

2978
#endif