blob: 4c4a7218a3bd63c11f7f9c8d6b96583bef27368b [file] [log] [blame]
Alex Deucher43b3cd92012-03-20 17:18:00 -04001/*
2 * Copyright 2011 Advanced Micro Devices, Inc.
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice shall be included in
12 * all copies or substantial portions of the Software.
13 *
14 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
17 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
18 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
19 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
20 * OTHER DEALINGS IN THE SOFTWARE.
21 *
22 * Authors: Alex Deucher
23 */
24#ifndef SI_H
25#define SI_H
26
Alex Deucher1a8ca752012-06-01 18:58:22 -040027#define TAHITI_RB_BITMAP_WIDTH_PER_SH 2
28
29#define TAHITI_GB_ADDR_CONFIG_GOLDEN 0x12011003
30#define VERDE_GB_ADDR_CONFIG_GOLDEN 0x12010002
Alex Deucher8b028592012-07-31 12:42:48 -040031#define HAINAN_GB_ADDR_CONFIG_GOLDEN 0x02010001
Alex Deucher1a8ca752012-06-01 18:58:22 -040032
Alex Deucher9ed36f72013-03-21 12:41:46 -040033#define SI_MAX_SH_GPRS 256
34#define SI_MAX_TEMP_GPRS 16
35#define SI_MAX_SH_THREADS 256
36#define SI_MAX_SH_STACK_ENTRIES 4096
37#define SI_MAX_FRC_EOV_CNT 16384
38#define SI_MAX_BACKENDS 8
39#define SI_MAX_BACKENDS_MASK 0xFF
40#define SI_MAX_BACKENDS_PER_SE_MASK 0x0F
41#define SI_MAX_SIMDS 12
42#define SI_MAX_SIMDS_MASK 0x0FFF
43#define SI_MAX_SIMDS_PER_SE_MASK 0x00FF
44#define SI_MAX_PIPES 8
45#define SI_MAX_PIPES_MASK 0xFF
46#define SI_MAX_PIPES_PER_SIMD_MASK 0x3F
47#define SI_MAX_LDS_NUM 0xFFFF
48#define SI_MAX_TCC 16
49#define SI_MAX_TCC_MASK 0xFFFF
50
Alex Deuchera9e61412013-06-25 17:56:16 -040051/* SMC IND accessor regs */
52#define SMC_IND_INDEX_0 0x200
53#define SMC_IND_DATA_0 0x204
54
55#define SMC_IND_ACCESS_CNTL 0x228
56# define AUTO_INCREMENT_IND_0 (1 << 0)
57#define SMC_MESSAGE_0 0x22c
58#define SMC_RESP_0 0x230
59
Alex Deucherf8f84ac2013-03-07 12:56:35 -050060/* CG IND registers are accessed via SMC indirect space + SMC_CG_IND_START */
61#define SMC_CG_IND_START 0xc0030000
Alex Deuchera9e61412013-06-25 17:56:16 -040062#define SMC_CG_IND_END 0xc0040000
Alex Deucherf8f84ac2013-03-07 12:56:35 -050063
64#define CG_CGTT_LOCAL_0 0x400
65#define CG_CGTT_LOCAL_1 0x401
66
Alex Deuchera9e61412013-06-25 17:56:16 -040067/* SMC IND registers */
68#define SMC_SYSCON_RESET_CNTL 0x80000000
69# define RST_REG (1 << 0)
70#define SMC_SYSCON_CLOCK_CNTL_0 0x80000004
71# define CK_DISABLE (1 << 0)
72# define CKEN (1 << 24)
73
74#define VGA_HDP_CONTROL 0x328
75#define VGA_MEMORY_DISABLE (1 << 4)
76
77#define DCCG_DISP_SLOW_SELECT_REG 0x4fc
78#define DCCG_DISP1_SLOW_SELECT(x) ((x) << 0)
79#define DCCG_DISP1_SLOW_SELECT_MASK (7 << 0)
80#define DCCG_DISP1_SLOW_SELECT_SHIFT 0
81#define DCCG_DISP2_SLOW_SELECT(x) ((x) << 4)
82#define DCCG_DISP2_SLOW_SELECT_MASK (7 << 4)
83#define DCCG_DISP2_SLOW_SELECT_SHIFT 4
84
85#define CG_SPLL_FUNC_CNTL 0x600
86#define SPLL_RESET (1 << 0)
87#define SPLL_SLEEP (1 << 1)
88#define SPLL_BYPASS_EN (1 << 3)
89#define SPLL_REF_DIV(x) ((x) << 4)
90#define SPLL_REF_DIV_MASK (0x3f << 4)
91#define SPLL_PDIV_A(x) ((x) << 20)
92#define SPLL_PDIV_A_MASK (0x7f << 20)
93#define SPLL_PDIV_A_SHIFT 20
94#define CG_SPLL_FUNC_CNTL_2 0x604
95#define SCLK_MUX_SEL(x) ((x) << 0)
96#define SCLK_MUX_SEL_MASK (0x1ff << 0)
Alex Deucher4a5c8ea2013-11-15 16:35:55 -050097#define SPLL_CTLREQ_CHG (1 << 23)
98#define SCLK_MUX_UPDATE (1 << 26)
Alex Deuchera9e61412013-06-25 17:56:16 -040099#define CG_SPLL_FUNC_CNTL_3 0x608
100#define SPLL_FB_DIV(x) ((x) << 0)
101#define SPLL_FB_DIV_MASK (0x3ffffff << 0)
102#define SPLL_FB_DIV_SHIFT 0
103#define SPLL_DITHEN (1 << 28)
104#define CG_SPLL_FUNC_CNTL_4 0x60c
105
Alex Deucher4a5c8ea2013-11-15 16:35:55 -0500106#define SPLL_STATUS 0x614
107#define SPLL_CHG_STATUS (1 << 1)
Alex Deuchera9e61412013-06-25 17:56:16 -0400108#define SPLL_CNTL_MODE 0x618
Alex Deucher4a5c8ea2013-11-15 16:35:55 -0500109#define SPLL_SW_DIR_CONTROL (1 << 0)
Alex Deucher4955bb02014-05-05 16:40:42 -0400110# define SPLL_REFCLK_SEL(x) ((x) << 26)
111# define SPLL_REFCLK_SEL_MASK (3 << 26)
Alex Deuchera9e61412013-06-25 17:56:16 -0400112
113#define CG_SPLL_SPREAD_SPECTRUM 0x620
114#define SSEN (1 << 0)
115#define CLK_S(x) ((x) << 4)
116#define CLK_S_MASK (0xfff << 4)
117#define CLK_S_SHIFT 4
118#define CG_SPLL_SPREAD_SPECTRUM_2 0x624
119#define CLK_V(x) ((x) << 0)
120#define CLK_V_MASK (0x3ffffff << 0)
121#define CLK_V_SHIFT 0
122
123#define CG_SPLL_AUTOSCALE_CNTL 0x62c
124# define AUTOSCALE_ON_SS_CLEAR (1 << 9)
125
Christian König2539eb02013-04-08 12:41:34 +0200126/* discrete uvd clocks */
127#define CG_UPLL_FUNC_CNTL 0x634
128# define UPLL_RESET_MASK 0x00000001
129# define UPLL_SLEEP_MASK 0x00000002
130# define UPLL_BYPASS_EN_MASK 0x00000004
131# define UPLL_CTLREQ_MASK 0x00000008
132# define UPLL_VCO_MODE_MASK 0x00000600
Christian König092fbc42013-04-29 10:20:23 +0200133# define UPLL_REF_DIV_MASK 0x003F0000
Christian König2539eb02013-04-08 12:41:34 +0200134# define UPLL_CTLACK_MASK 0x40000000
135# define UPLL_CTLACK2_MASK 0x80000000
136#define CG_UPLL_FUNC_CNTL_2 0x638
137# define UPLL_PDIV_A(x) ((x) << 0)
138# define UPLL_PDIV_A_MASK 0x0000007F
139# define UPLL_PDIV_B(x) ((x) << 8)
140# define UPLL_PDIV_B_MASK 0x00007F00
141# define VCLK_SRC_SEL(x) ((x) << 20)
142# define VCLK_SRC_SEL_MASK 0x01F00000
143# define DCLK_SRC_SEL(x) ((x) << 25)
144# define DCLK_SRC_SEL_MASK 0x3E000000
145#define CG_UPLL_FUNC_CNTL_3 0x63C
146# define UPLL_FB_DIV(x) ((x) << 0)
147# define UPLL_FB_DIV_MASK 0x01FFFFFF
148#define CG_UPLL_FUNC_CNTL_4 0x644
149# define UPLL_SPARE_ISPARE9 0x00020000
150#define CG_UPLL_FUNC_CNTL_5 0x648
151# define RESET_ANTI_MUX_MASK 0x00000200
152#define CG_UPLL_SPREAD_SPECTRUM 0x650
153# define SSEN_MASK 0x00000001
154
Alex Deuchere0bcf162013-02-15 11:56:59 -0500155#define MPLL_BYPASSCLK_SEL 0x65c
156# define MPLL_CLKOUT_SEL(x) ((x) << 8)
157# define MPLL_CLKOUT_SEL_MASK 0xFF00
158
Alex Deucher454d2e22013-02-14 10:04:02 -0500159#define CG_CLKPIN_CNTL 0x660
160# define XTALIN_DIVIDE (1 << 1)
Alex Deuchere0bcf162013-02-15 11:56:59 -0500161# define BCLK_AS_XCLK (1 << 2)
Alex Deucher454d2e22013-02-14 10:04:02 -0500162#define CG_CLKPIN_CNTL_2 0x664
Alex Deuchere0bcf162013-02-15 11:56:59 -0500163# define FORCE_BIF_REFCLK_EN (1 << 3)
Alex Deucher454d2e22013-02-14 10:04:02 -0500164# define MUX_TCLK_TO_XCLK (1 << 8)
165
Alex Deuchere0bcf162013-02-15 11:56:59 -0500166#define THM_CLK_CNTL 0x66c
167# define CMON_CLK_SEL(x) ((x) << 0)
168# define CMON_CLK_SEL_MASK 0xFF
169# define TMON_CLK_SEL(x) ((x) << 8)
170# define TMON_CLK_SEL_MASK 0xFF00
171#define MISC_CLK_CNTL 0x670
172# define DEEP_SLEEP_CLK_SEL(x) ((x) << 0)
173# define DEEP_SLEEP_CLK_SEL_MASK 0xFF
174# define ZCLK_SEL(x) ((x) << 8)
175# define ZCLK_SEL_MASK 0xFF00
176
Alex Deuchera9e61412013-06-25 17:56:16 -0400177#define CG_THERMAL_CTRL 0x700
178#define DPM_EVENT_SRC(x) ((x) << 0)
179#define DPM_EVENT_SRC_MASK (7 << 0)
180#define DIG_THERM_DPM(x) ((x) << 14)
181#define DIG_THERM_DPM_MASK 0x003FC000
182#define DIG_THERM_DPM_SHIFT 14
Alex Deucher39471ad2014-09-14 21:14:14 -0400183#define CG_THERMAL_STATUS 0x704
184#define FDO_PWM_DUTY(x) ((x) << 9)
185#define FDO_PWM_DUTY_MASK (0xff << 9)
186#define FDO_PWM_DUTY_SHIFT 9
Alex Deuchera9e61412013-06-25 17:56:16 -0400187#define CG_THERMAL_INT 0x708
188#define DIG_THERM_INTH(x) ((x) << 8)
189#define DIG_THERM_INTH_MASK 0x0000FF00
190#define DIG_THERM_INTH_SHIFT 8
191#define DIG_THERM_INTL(x) ((x) << 16)
192#define DIG_THERM_INTL_MASK 0x00FF0000
193#define DIG_THERM_INTL_SHIFT 16
194#define THERM_INT_MASK_HIGH (1 << 24)
195#define THERM_INT_MASK_LOW (1 << 25)
196
Alex Deucher39471ad2014-09-14 21:14:14 -0400197#define CG_MULT_THERMAL_CTRL 0x710
198#define TEMP_SEL(x) ((x) << 20)
199#define TEMP_SEL_MASK (0xff << 20)
200#define TEMP_SEL_SHIFT 20
Alex Deuchera9e61412013-06-25 17:56:16 -0400201#define CG_MULT_THERMAL_STATUS 0x714
202#define ASIC_MAX_TEMP(x) ((x) << 0)
203#define ASIC_MAX_TEMP_MASK 0x000001ff
204#define ASIC_MAX_TEMP_SHIFT 0
205#define CTF_TEMP(x) ((x) << 9)
206#define CTF_TEMP_MASK 0x0003fe00
207#define CTF_TEMP_SHIFT 9
208
Alex Deucher39471ad2014-09-14 21:14:14 -0400209#define CG_FDO_CTRL0 0x754
210#define FDO_STATIC_DUTY(x) ((x) << 0)
Alex Deucherff4b4af2014-11-30 22:03:57 -0500211#define FDO_STATIC_DUTY_MASK 0x000000FF
Alex Deucher39471ad2014-09-14 21:14:14 -0400212#define FDO_STATIC_DUTY_SHIFT 0
213#define CG_FDO_CTRL1 0x758
214#define FMAX_DUTY100(x) ((x) << 0)
Alex Deucherff4b4af2014-11-30 22:03:57 -0500215#define FMAX_DUTY100_MASK 0x000000FF
Alex Deucher39471ad2014-09-14 21:14:14 -0400216#define FMAX_DUTY100_SHIFT 0
217#define CG_FDO_CTRL2 0x75C
218#define TMIN(x) ((x) << 0)
Alex Deucherff4b4af2014-11-30 22:03:57 -0500219#define TMIN_MASK 0x000000FF
Alex Deucher39471ad2014-09-14 21:14:14 -0400220#define TMIN_SHIFT 0
221#define FDO_PWM_MODE(x) ((x) << 11)
Alex Deucherff4b4af2014-11-30 22:03:57 -0500222#define FDO_PWM_MODE_MASK (7 << 11)
Alex Deucher39471ad2014-09-14 21:14:14 -0400223#define FDO_PWM_MODE_SHIFT 11
224#define TACH_PWM_RESP_RATE(x) ((x) << 25)
225#define TACH_PWM_RESP_RATE_MASK (0x7f << 25)
226#define TACH_PWM_RESP_RATE_SHIFT 25
227
228#define CG_TACH_CTRL 0x770
229# define EDGE_PER_REV(x) ((x) << 0)
230# define EDGE_PER_REV_MASK (0x7 << 0)
231# define EDGE_PER_REV_SHIFT 0
232# define TARGET_PERIOD(x) ((x) << 3)
233# define TARGET_PERIOD_MASK 0xfffffff8
234# define TARGET_PERIOD_SHIFT 3
235#define CG_TACH_STATUS 0x774
236# define TACH_PERIOD(x) ((x) << 0)
237# define TACH_PERIOD_MASK 0xffffffff
238# define TACH_PERIOD_SHIFT 0
239
Alex Deuchera9e61412013-06-25 17:56:16 -0400240#define GENERAL_PWRMGT 0x780
241# define GLOBAL_PWRMGT_EN (1 << 0)
242# define STATIC_PM_EN (1 << 1)
243# define THERMAL_PROTECTION_DIS (1 << 2)
244# define THERMAL_PROTECTION_TYPE (1 << 3)
245# define SW_SMIO_INDEX(x) ((x) << 6)
246# define SW_SMIO_INDEX_MASK (1 << 6)
247# define SW_SMIO_INDEX_SHIFT 6
248# define VOLT_PWRMGT_EN (1 << 10)
249# define DYN_SPREAD_SPECTRUM_EN (1 << 23)
250#define CG_TPC 0x784
251#define SCLK_PWRMGT_CNTL 0x788
252# define SCLK_PWRMGT_OFF (1 << 0)
253# define SCLK_LOW_D1 (1 << 1)
254# define FIR_RESET (1 << 4)
255# define FIR_FORCE_TREND_SEL (1 << 5)
256# define FIR_TREND_MODE (1 << 6)
257# define DYN_GFX_CLK_OFF_EN (1 << 7)
258# define GFX_CLK_FORCE_ON (1 << 8)
259# define GFX_CLK_REQUEST_OFF (1 << 9)
260# define GFX_CLK_FORCE_OFF (1 << 10)
261# define GFX_CLK_OFF_ACPI_D1 (1 << 11)
262# define GFX_CLK_OFF_ACPI_D2 (1 << 12)
263# define GFX_CLK_OFF_ACPI_D3 (1 << 13)
264# define DYN_LIGHT_SLEEP_EN (1 << 14)
265
Alex Deucher79821282013-06-28 18:02:19 -0400266#define TARGET_AND_CURRENT_PROFILE_INDEX 0x798
267# define CURRENT_STATE_INDEX_MASK (0xf << 4)
268# define CURRENT_STATE_INDEX_SHIFT 4
269
Alex Deuchera9e61412013-06-25 17:56:16 -0400270#define CG_FTV 0x7bc
271
272#define CG_FFCT_0 0x7c0
273# define UTC_0(x) ((x) << 0)
274# define UTC_0_MASK (0x3ff << 0)
275# define DTC_0(x) ((x) << 10)
276# define DTC_0_MASK (0x3ff << 10)
277
278#define CG_BSP 0x7fc
279# define BSP(x) ((x) << 0)
280# define BSP_MASK (0xffff << 0)
281# define BSU(x) ((x) << 16)
282# define BSU_MASK (0xf << 16)
283#define CG_AT 0x800
284# define CG_R(x) ((x) << 0)
285# define CG_R_MASK (0xffff << 0)
286# define CG_L(x) ((x) << 16)
287# define CG_L_MASK (0xffff << 16)
288
289#define CG_GIT 0x804
290# define CG_GICST(x) ((x) << 0)
291# define CG_GICST_MASK (0xffff << 0)
292# define CG_GIPOT(x) ((x) << 16)
293# define CG_GIPOT_MASK (0xffff << 16)
294
295#define CG_SSP 0x80c
296# define SST(x) ((x) << 0)
297# define SST_MASK (0xffff << 0)
298# define SSTU(x) ((x) << 16)
299# define SSTU_MASK (0xf << 16)
300
301#define CG_DISPLAY_GAP_CNTL 0x828
302# define DISP1_GAP(x) ((x) << 0)
303# define DISP1_GAP_MASK (3 << 0)
304# define DISP2_GAP(x) ((x) << 2)
305# define DISP2_GAP_MASK (3 << 2)
306# define VBI_TIMER_COUNT(x) ((x) << 4)
307# define VBI_TIMER_COUNT_MASK (0x3fff << 4)
308# define VBI_TIMER_UNIT(x) ((x) << 20)
309# define VBI_TIMER_UNIT_MASK (7 << 20)
310# define DISP1_GAP_MCHG(x) ((x) << 24)
311# define DISP1_GAP_MCHG_MASK (3 << 24)
312# define DISP2_GAP_MCHG(x) ((x) << 26)
313# define DISP2_GAP_MCHG_MASK (3 << 26)
314
315#define CG_ULV_CONTROL 0x878
316#define CG_ULV_PARAMETER 0x87c
317
318#define SMC_SCRATCH0 0x884
319
320#define CG_CAC_CTRL 0x8b8
321# define CAC_WINDOW(x) ((x) << 0)
322# define CAC_WINDOW_MASK 0x00ffffff
323
Alex Deucher0a96d722012-03-20 17:18:11 -0400324#define DMIF_ADDR_CONFIG 0xBD4
325
Alex Deucher7c1c7c12013-04-05 10:28:08 -0400326#define DMIF_ADDR_CALC 0xC00
327
Alex Deucher290d2452013-08-19 11:15:43 -0400328#define PIPE0_DMIF_BUFFER_CONTROL 0x0ca0
329# define DMIF_BUFFERS_ALLOCATED(x) ((x) << 0)
330# define DMIF_BUFFERS_ALLOCATED_COMPLETED (1 << 4)
331
Alex Deucherc476dde2012-03-20 17:18:12 -0400332#define SRBM_STATUS 0xE50
Alex Deucher014bb202013-01-18 19:36:20 -0500333#define GRBM_RQ_PENDING (1 << 5)
334#define VMC_BUSY (1 << 8)
335#define MCB_BUSY (1 << 9)
336#define MCB_NON_DISPLAY_BUSY (1 << 10)
337#define MCC_BUSY (1 << 11)
338#define MCD_BUSY (1 << 12)
339#define SEM_BUSY (1 << 14)
340#define IH_BUSY (1 << 17)
Alex Deucherc476dde2012-03-20 17:18:12 -0400341
Jerome Glisse64c56e82013-01-02 17:30:35 -0500342#define SRBM_SOFT_RESET 0x0E60
343#define SOFT_RESET_BIF (1 << 1)
344#define SOFT_RESET_DC (1 << 5)
345#define SOFT_RESET_DMA1 (1 << 6)
346#define SOFT_RESET_GRBM (1 << 8)
347#define SOFT_RESET_HDP (1 << 9)
348#define SOFT_RESET_IH (1 << 10)
349#define SOFT_RESET_MC (1 << 11)
350#define SOFT_RESET_ROM (1 << 14)
351#define SOFT_RESET_SEM (1 << 15)
352#define SOFT_RESET_VMC (1 << 17)
353#define SOFT_RESET_DMA (1 << 20)
354#define SOFT_RESET_TST (1 << 21)
355#define SOFT_RESET_REGBB (1 << 22)
356#define SOFT_RESET_ORB (1 << 23)
357
Alex Deucher0a96d722012-03-20 17:18:11 -0400358#define CC_SYS_RB_BACKEND_DISABLE 0xe80
359#define GC_USER_SYS_RB_BACKEND_DISABLE 0xe84
360
Christian König18ad01e2015-02-18 13:19:27 +0100361#define SRBM_READ_ERROR 0xE98
362#define SRBM_INT_CNTL 0xEA0
363#define SRBM_INT_ACK 0xEA8
364
Alex Deucher014bb202013-01-18 19:36:20 -0500365#define SRBM_STATUS2 0x0EC4
366#define DMA_BUSY (1 << 5)
367#define DMA1_BUSY (1 << 6)
368
Alex Deucherd2800ee2012-03-20 17:18:13 -0400369#define VM_L2_CNTL 0x1400
370#define ENABLE_L2_CACHE (1 << 0)
371#define ENABLE_L2_FRAGMENT_PROCESSING (1 << 1)
372#define L2_CACHE_PTE_ENDIAN_SWAP_MODE(x) ((x) << 2)
373#define L2_CACHE_PDE_ENDIAN_SWAP_MODE(x) ((x) << 4)
374#define ENABLE_L2_PTE_CACHE_LRU_UPDATE_BY_WRITE (1 << 9)
375#define ENABLE_L2_PDE0_CACHE_LRU_UPDATE_BY_WRITE (1 << 10)
376#define EFFECTIVE_L2_QUEUE_SIZE(x) (((x) & 7) << 15)
377#define CONTEXT1_IDENTITY_ACCESS_MODE(x) (((x) & 3) << 19)
378#define VM_L2_CNTL2 0x1404
379#define INVALIDATE_ALL_L1_TLBS (1 << 0)
380#define INVALIDATE_L2_CACHE (1 << 1)
381#define INVALIDATE_CACHE_MODE(x) ((x) << 26)
382#define INVALIDATE_PTE_AND_PDE_CACHES 0
383#define INVALIDATE_ONLY_PTE_CACHES 1
384#define INVALIDATE_ONLY_PDE_CACHES 2
385#define VM_L2_CNTL3 0x1408
386#define BANK_SELECT(x) ((x) << 0)
387#define L2_CACHE_UPDATE_MODE(x) ((x) << 6)
388#define L2_CACHE_BIGK_FRAGMENT_SIZE(x) ((x) << 15)
389#define L2_CACHE_BIGK_ASSOCIATIVITY (1 << 20)
390#define VM_L2_STATUS 0x140C
391#define L2_BUSY (1 << 0)
392#define VM_CONTEXT0_CNTL 0x1410
393#define ENABLE_CONTEXT (1 << 0)
394#define PAGE_TABLE_DEPTH(x) (((x) & 3) << 1)
Christian Königae133a12012-09-18 15:30:44 -0400395#define RANGE_PROTECTION_FAULT_ENABLE_INTERRUPT (1 << 3)
Alex Deucherd2800ee2012-03-20 17:18:13 -0400396#define RANGE_PROTECTION_FAULT_ENABLE_DEFAULT (1 << 4)
Christian Königae133a12012-09-18 15:30:44 -0400397#define DUMMY_PAGE_PROTECTION_FAULT_ENABLE_INTERRUPT (1 << 6)
398#define DUMMY_PAGE_PROTECTION_FAULT_ENABLE_DEFAULT (1 << 7)
399#define PDE0_PROTECTION_FAULT_ENABLE_INTERRUPT (1 << 9)
400#define PDE0_PROTECTION_FAULT_ENABLE_DEFAULT (1 << 10)
401#define VALID_PROTECTION_FAULT_ENABLE_INTERRUPT (1 << 12)
402#define VALID_PROTECTION_FAULT_ENABLE_DEFAULT (1 << 13)
403#define READ_PROTECTION_FAULT_ENABLE_INTERRUPT (1 << 15)
404#define READ_PROTECTION_FAULT_ENABLE_DEFAULT (1 << 16)
405#define WRITE_PROTECTION_FAULT_ENABLE_INTERRUPT (1 << 18)
406#define WRITE_PROTECTION_FAULT_ENABLE_DEFAULT (1 << 19)
Christian König1c89d272014-05-10 12:17:56 +0200407#define PAGE_TABLE_BLOCK_SIZE(x) (((x) & 0xF) << 24)
Alex Deucherd2800ee2012-03-20 17:18:13 -0400408#define VM_CONTEXT1_CNTL 0x1414
409#define VM_CONTEXT0_CNTL2 0x1430
410#define VM_CONTEXT1_CNTL2 0x1434
411#define VM_CONTEXT8_PAGE_TABLE_BASE_ADDR 0x1438
412#define VM_CONTEXT9_PAGE_TABLE_BASE_ADDR 0x143c
413#define VM_CONTEXT10_PAGE_TABLE_BASE_ADDR 0x1440
414#define VM_CONTEXT11_PAGE_TABLE_BASE_ADDR 0x1444
415#define VM_CONTEXT12_PAGE_TABLE_BASE_ADDR 0x1448
416#define VM_CONTEXT13_PAGE_TABLE_BASE_ADDR 0x144c
417#define VM_CONTEXT14_PAGE_TABLE_BASE_ADDR 0x1450
418#define VM_CONTEXT15_PAGE_TABLE_BASE_ADDR 0x1454
419
Christian Königae133a12012-09-18 15:30:44 -0400420#define VM_CONTEXT1_PROTECTION_FAULT_ADDR 0x14FC
421#define VM_CONTEXT1_PROTECTION_FAULT_STATUS 0x14DC
Alex Deucherfbf6dc72013-06-13 18:47:58 -0400422#define PROTECTIONS_MASK (0xf << 0)
423#define PROTECTIONS_SHIFT 0
424 /* bit 0: range
425 * bit 1: pde0
426 * bit 2: valid
427 * bit 3: read
428 * bit 4: write
429 */
430#define MEMORY_CLIENT_ID_MASK (0xff << 12)
431#define MEMORY_CLIENT_ID_SHIFT 12
432#define MEMORY_CLIENT_RW_MASK (1 << 24)
433#define MEMORY_CLIENT_RW_SHIFT 24
434#define FAULT_VMID_MASK (0xf << 25)
435#define FAULT_VMID_SHIFT 25
Christian Königae133a12012-09-18 15:30:44 -0400436
Alex Deucherd2800ee2012-03-20 17:18:13 -0400437#define VM_INVALIDATE_REQUEST 0x1478
438#define VM_INVALIDATE_RESPONSE 0x147c
439
440#define VM_CONTEXT0_PROTECTION_FAULT_DEFAULT_ADDR 0x1518
441#define VM_CONTEXT1_PROTECTION_FAULT_DEFAULT_ADDR 0x151c
442
443#define VM_CONTEXT0_PAGE_TABLE_BASE_ADDR 0x153c
444#define VM_CONTEXT1_PAGE_TABLE_BASE_ADDR 0x1540
445#define VM_CONTEXT2_PAGE_TABLE_BASE_ADDR 0x1544
446#define VM_CONTEXT3_PAGE_TABLE_BASE_ADDR 0x1548
447#define VM_CONTEXT4_PAGE_TABLE_BASE_ADDR 0x154c
448#define VM_CONTEXT5_PAGE_TABLE_BASE_ADDR 0x1550
449#define VM_CONTEXT6_PAGE_TABLE_BASE_ADDR 0x1554
450#define VM_CONTEXT7_PAGE_TABLE_BASE_ADDR 0x1558
451#define VM_CONTEXT0_PAGE_TABLE_START_ADDR 0x155c
452#define VM_CONTEXT1_PAGE_TABLE_START_ADDR 0x1560
453
454#define VM_CONTEXT0_PAGE_TABLE_END_ADDR 0x157C
455#define VM_CONTEXT1_PAGE_TABLE_END_ADDR 0x1580
456
Alex Deucherf8f84ac2013-03-07 12:56:35 -0500457#define VM_L2_CG 0x15c0
458#define MC_CG_ENABLE (1 << 18)
459#define MC_LS_ENABLE (1 << 19)
460
Alex Deucher43b3cd92012-03-20 17:18:00 -0400461#define MC_SHARED_CHMAP 0x2004
462#define NOOFCHAN_SHIFT 12
463#define NOOFCHAN_MASK 0x0000f000
Alex Deucher0a96d722012-03-20 17:18:11 -0400464#define MC_SHARED_CHREMAP 0x2008
465
Alex Deucherd2800ee2012-03-20 17:18:13 -0400466#define MC_VM_FB_LOCATION 0x2024
467#define MC_VM_AGP_TOP 0x2028
468#define MC_VM_AGP_BOT 0x202C
469#define MC_VM_AGP_BASE 0x2030
470#define MC_VM_SYSTEM_APERTURE_LOW_ADDR 0x2034
471#define MC_VM_SYSTEM_APERTURE_HIGH_ADDR 0x2038
472#define MC_VM_SYSTEM_APERTURE_DEFAULT_ADDR 0x203C
473
474#define MC_VM_MX_L1_TLB_CNTL 0x2064
475#define ENABLE_L1_TLB (1 << 0)
476#define ENABLE_L1_FRAGMENT_PROCESSING (1 << 1)
477#define SYSTEM_ACCESS_MODE_PA_ONLY (0 << 3)
478#define SYSTEM_ACCESS_MODE_USE_SYS_MAP (1 << 3)
479#define SYSTEM_ACCESS_MODE_IN_SYS (2 << 3)
480#define SYSTEM_ACCESS_MODE_NOT_IN_SYS (3 << 3)
481#define SYSTEM_APERTURE_UNMAPPED_ACCESS_PASS_THRU (0 << 5)
482#define ENABLE_ADVANCED_DRIVER_MODEL (1 << 6)
483
Alex Deucher8b074dd2012-03-20 17:18:18 -0400484#define MC_SHARED_BLACKOUT_CNTL 0x20ac
485
Alex Deucherf8f84ac2013-03-07 12:56:35 -0500486#define MC_HUB_MISC_HUB_CG 0x20b8
487#define MC_HUB_MISC_VM_CG 0x20bc
488
489#define MC_HUB_MISC_SIP_CG 0x20c0
490
491#define MC_XPB_CLK_GAT 0x2478
492
493#define MC_CITF_MISC_RD_CG 0x2648
494#define MC_CITF_MISC_WR_CG 0x264c
495#define MC_CITF_MISC_VM_CG 0x2650
496
Alex Deucher0a96d722012-03-20 17:18:11 -0400497#define MC_ARB_RAMCFG 0x2760
498#define NOOFBANK_SHIFT 0
499#define NOOFBANK_MASK 0x00000003
500#define NOOFRANK_SHIFT 2
501#define NOOFRANK_MASK 0x00000004
502#define NOOFROWS_SHIFT 3
503#define NOOFROWS_MASK 0x00000038
504#define NOOFCOLS_SHIFT 6
505#define NOOFCOLS_MASK 0x000000C0
506#define CHANSIZE_SHIFT 8
507#define CHANSIZE_MASK 0x00000100
Alex Deucherd2800ee2012-03-20 17:18:13 -0400508#define CHANSIZE_OVERRIDE (1 << 11)
Alex Deucher0a96d722012-03-20 17:18:11 -0400509#define NOOFGROUPS_SHIFT 12
510#define NOOFGROUPS_MASK 0x00001000
511
Alex Deuchera9e61412013-06-25 17:56:16 -0400512#define MC_ARB_DRAM_TIMING 0x2774
513#define MC_ARB_DRAM_TIMING2 0x2778
514
515#define MC_ARB_BURST_TIME 0x2808
516#define STATE0(x) ((x) << 0)
517#define STATE0_MASK (0x1f << 0)
518#define STATE0_SHIFT 0
519#define STATE1(x) ((x) << 5)
520#define STATE1_MASK (0x1f << 5)
521#define STATE1_SHIFT 5
522#define STATE2(x) ((x) << 10)
523#define STATE2_MASK (0x1f << 10)
524#define STATE2_SHIFT 10
525#define STATE3(x) ((x) << 15)
526#define STATE3_MASK (0x1f << 15)
527#define STATE3_SHIFT 15
528
Alex Deucherd5693762013-10-28 10:56:23 -0400529#define MC_SEQ_TRAIN_WAKEUP_CNTL 0x28e8
Alex Deucher8b074dd2012-03-20 17:18:18 -0400530#define TRAIN_DONE_D0 (1 << 30)
531#define TRAIN_DONE_D1 (1 << 31)
532
533#define MC_SEQ_SUP_CNTL 0x28c8
534#define RUN_MASK (1 << 0)
535#define MC_SEQ_SUP_PGM 0x28cc
Alex Deuchera9e61412013-06-25 17:56:16 -0400536#define MC_PMG_AUTO_CMD 0x28d0
Alex Deucher8b074dd2012-03-20 17:18:18 -0400537
538#define MC_IO_PAD_CNTL_D0 0x29d0
539#define MEM_FALL_OUT_CMD (1 << 8)
540
Alex Deuchera9e61412013-06-25 17:56:16 -0400541#define MC_SEQ_RAS_TIMING 0x28a0
542#define MC_SEQ_CAS_TIMING 0x28a4
543#define MC_SEQ_MISC_TIMING 0x28a8
544#define MC_SEQ_MISC_TIMING2 0x28ac
545#define MC_SEQ_PMG_TIMING 0x28b0
546#define MC_SEQ_RD_CTL_D0 0x28b4
547#define MC_SEQ_RD_CTL_D1 0x28b8
548#define MC_SEQ_WR_CTL_D0 0x28bc
549#define MC_SEQ_WR_CTL_D1 0x28c0
550
Alex Deucherd719cef2013-02-15 16:49:59 -0500551#define MC_SEQ_MISC0 0x2a00
Alex Deuchera9e61412013-06-25 17:56:16 -0400552#define MC_SEQ_MISC0_VEN_ID_SHIFT 8
553#define MC_SEQ_MISC0_VEN_ID_MASK 0x00000f00
554#define MC_SEQ_MISC0_VEN_ID_VALUE 3
555#define MC_SEQ_MISC0_REV_ID_SHIFT 12
556#define MC_SEQ_MISC0_REV_ID_MASK 0x0000f000
557#define MC_SEQ_MISC0_REV_ID_VALUE 1
558#define MC_SEQ_MISC0_GDDR5_SHIFT 28
559#define MC_SEQ_MISC0_GDDR5_MASK 0xf0000000
560#define MC_SEQ_MISC0_GDDR5_VALUE 5
561#define MC_SEQ_MISC1 0x2a04
562#define MC_SEQ_RESERVE_M 0x2a08
563#define MC_PMG_CMD_EMRS 0x2a0c
Alex Deucherd719cef2013-02-15 16:49:59 -0500564
Alex Deucher8b074dd2012-03-20 17:18:18 -0400565#define MC_SEQ_IO_DEBUG_INDEX 0x2a44
566#define MC_SEQ_IO_DEBUG_DATA 0x2a48
567
Alex Deuchera9e61412013-06-25 17:56:16 -0400568#define MC_SEQ_MISC5 0x2a54
569#define MC_SEQ_MISC6 0x2a58
570
571#define MC_SEQ_MISC7 0x2a64
572
573#define MC_SEQ_RAS_TIMING_LP 0x2a6c
574#define MC_SEQ_CAS_TIMING_LP 0x2a70
575#define MC_SEQ_MISC_TIMING_LP 0x2a74
576#define MC_SEQ_MISC_TIMING2_LP 0x2a78
577#define MC_SEQ_WR_CTL_D0_LP 0x2a7c
578#define MC_SEQ_WR_CTL_D1_LP 0x2a80
579#define MC_SEQ_PMG_CMD_EMRS_LP 0x2a84
580#define MC_SEQ_PMG_CMD_MRS_LP 0x2a88
581
582#define MC_PMG_CMD_MRS 0x2aac
583
584#define MC_SEQ_RD_CTL_D0_LP 0x2b1c
585#define MC_SEQ_RD_CTL_D1_LP 0x2b20
586
587#define MC_PMG_CMD_MRS1 0x2b44
588#define MC_SEQ_PMG_CMD_MRS1_LP 0x2b48
589#define MC_SEQ_PMG_TIMING_LP 0x2b4c
590
591#define MC_SEQ_WR_CTL_2 0x2b54
592#define MC_SEQ_WR_CTL_2_LP 0x2b58
593#define MC_PMG_CMD_MRS2 0x2b5c
594#define MC_SEQ_PMG_CMD_MRS2_LP 0x2b60
595
596#define MCLK_PWRMGT_CNTL 0x2ba0
597# define DLL_SPEED(x) ((x) << 0)
598# define DLL_SPEED_MASK (0x1f << 0)
599# define DLL_READY (1 << 6)
600# define MC_INT_CNTL (1 << 7)
601# define MRDCK0_PDNB (1 << 8)
602# define MRDCK1_PDNB (1 << 9)
603# define MRDCK0_RESET (1 << 16)
604# define MRDCK1_RESET (1 << 17)
605# define DLL_READY_READ (1 << 24)
606#define DLL_CNTL 0x2ba4
607# define MRDCK0_BYPASS (1 << 24)
608# define MRDCK1_BYPASS (1 << 25)
609
Alex Deucher4a5c8ea2013-11-15 16:35:55 -0500610#define MPLL_CNTL_MODE 0x2bb0
611# define MPLL_MCLK_SEL (1 << 11)
Alex Deuchera9e61412013-06-25 17:56:16 -0400612#define MPLL_FUNC_CNTL 0x2bb4
613#define BWCTRL(x) ((x) << 20)
614#define BWCTRL_MASK (0xff << 20)
615#define MPLL_FUNC_CNTL_1 0x2bb8
616#define VCO_MODE(x) ((x) << 0)
617#define VCO_MODE_MASK (3 << 0)
618#define CLKFRAC(x) ((x) << 4)
619#define CLKFRAC_MASK (0xfff << 4)
620#define CLKF(x) ((x) << 16)
621#define CLKF_MASK (0xfff << 16)
622#define MPLL_FUNC_CNTL_2 0x2bbc
623#define MPLL_AD_FUNC_CNTL 0x2bc0
624#define YCLK_POST_DIV(x) ((x) << 0)
625#define YCLK_POST_DIV_MASK (7 << 0)
626#define MPLL_DQ_FUNC_CNTL 0x2bc4
627#define YCLK_SEL(x) ((x) << 4)
628#define YCLK_SEL_MASK (1 << 4)
629
630#define MPLL_SS1 0x2bcc
631#define CLKV(x) ((x) << 0)
632#define CLKV_MASK (0x3ffffff << 0)
633#define MPLL_SS2 0x2bd0
634#define CLKS(x) ((x) << 0)
635#define CLKS_MASK (0xfff << 0)
636
Alex Deucher0a96d722012-03-20 17:18:11 -0400637#define HDP_HOST_PATH_CNTL 0x2C00
Alex Deuchere16866e2013-08-08 19:34:07 -0400638#define CLOCK_GATING_DIS (1 << 23)
Alex Deucherd2800ee2012-03-20 17:18:13 -0400639#define HDP_NONSURFACE_BASE 0x2C04
640#define HDP_NONSURFACE_INFO 0x2C08
641#define HDP_NONSURFACE_SIZE 0x2C0C
Alex Deucher0a96d722012-03-20 17:18:11 -0400642
643#define HDP_ADDR_CONFIG 0x2F48
644#define HDP_MISC_CNTL 0x2F4C
645#define HDP_FLUSH_INVALIDATE_CACHE (1 << 0)
Alex Deuchere16866e2013-08-08 19:34:07 -0400646#define HDP_MEM_POWER_LS 0x2F50
647#define HDP_LS_ENABLE (1 << 0)
Alex Deucher0a96d722012-03-20 17:18:11 -0400648
Alex Deucherf8f84ac2013-03-07 12:56:35 -0500649#define ATC_MISC_CG 0x3350
650
Alex Deucher25a857f2012-03-20 17:18:22 -0400651#define IH_RB_CNTL 0x3e00
652# define IH_RB_ENABLE (1 << 0)
653# define IH_IB_SIZE(x) ((x) << 1) /* log2 */
654# define IH_RB_FULL_DRAIN_ENABLE (1 << 6)
655# define IH_WPTR_WRITEBACK_ENABLE (1 << 8)
656# define IH_WPTR_WRITEBACK_TIMER(x) ((x) << 9) /* log2 */
657# define IH_WPTR_OVERFLOW_ENABLE (1 << 16)
658# define IH_WPTR_OVERFLOW_CLEAR (1 << 31)
659#define IH_RB_BASE 0x3e04
660#define IH_RB_RPTR 0x3e08
661#define IH_RB_WPTR 0x3e0c
662# define RB_OVERFLOW (1 << 0)
663# define WPTR_OFFSET_MASK 0x3fffc
664#define IH_RB_WPTR_ADDR_HI 0x3e10
665#define IH_RB_WPTR_ADDR_LO 0x3e14
666#define IH_CNTL 0x3e18
667# define ENABLE_INTR (1 << 0)
668# define IH_MC_SWAP(x) ((x) << 1)
669# define IH_MC_SWAP_NONE 0
670# define IH_MC_SWAP_16BIT 1
671# define IH_MC_SWAP_32BIT 2
672# define IH_MC_SWAP_64BIT 3
673# define RPTR_REARM (1 << 4)
674# define MC_WRREQ_CREDIT(x) ((x) << 15)
675# define MC_WR_CLEAN_CNT(x) ((x) << 20)
676# define MC_VMID(x) ((x) << 25)
677
Alex Deucherd2800ee2012-03-20 17:18:13 -0400678#define CONFIG_MEMSIZE 0x5428
679
Alex Deucher25a857f2012-03-20 17:18:22 -0400680#define INTERRUPT_CNTL 0x5468
681# define IH_DUMMY_RD_OVERRIDE (1 << 0)
682# define IH_DUMMY_RD_EN (1 << 1)
683# define IH_REQ_NONSNOOP_EN (1 << 3)
684# define GEN_IH_INT_EN (1 << 8)
685#define INTERRUPT_CNTL2 0x546c
686
Alex Deucherd2800ee2012-03-20 17:18:13 -0400687#define HDP_MEM_COHERENCY_FLUSH_CNTL 0x5480
688
Alex Deucher0a96d722012-03-20 17:18:11 -0400689#define BIF_FB_EN 0x5490
690#define FB_READ_EN (1 << 0)
691#define FB_WRITE_EN (1 << 1)
Alex Deucher43b3cd92012-03-20 17:18:00 -0400692
Alex Deucherd2800ee2012-03-20 17:18:13 -0400693#define HDP_REG_COHERENCY_FLUSH_CNTL 0x54A0
694
Alex Deucherb5306022013-07-31 16:51:33 -0400695/* DCE6 ELD audio interface */
696#define AZ_F0_CODEC_ENDPOINT_INDEX 0x5E00
697# define AZ_ENDPOINT_REG_INDEX(x) (((x) & 0xff) << 0)
698# define AZ_ENDPOINT_REG_WRITE_EN (1 << 8)
699#define AZ_F0_CODEC_ENDPOINT_DATA 0x5E04
700
701#define AZ_F0_CODEC_PIN_CONTROL_CHANNEL_SPEAKER 0x25
702#define SPEAKER_ALLOCATION(x) (((x) & 0x7f) << 0)
703#define SPEAKER_ALLOCATION_MASK (0x7f << 0)
704#define SPEAKER_ALLOCATION_SHIFT 0
705#define HDMI_CONNECTION (1 << 16)
706#define DP_CONNECTION (1 << 17)
707
708#define AZ_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR0 0x28 /* LPCM */
709#define AZ_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR1 0x29 /* AC3 */
710#define AZ_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR2 0x2A /* MPEG1 */
711#define AZ_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR3 0x2B /* MP3 */
712#define AZ_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR4 0x2C /* MPEG2 */
713#define AZ_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR5 0x2D /* AAC */
714#define AZ_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR6 0x2E /* DTS */
715#define AZ_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR7 0x2F /* ATRAC */
716#define AZ_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR8 0x30 /* one bit audio - leave at 0 (default) */
717#define AZ_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR9 0x31 /* Dolby Digital */
718#define AZ_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR10 0x32 /* DTS-HD */
719#define AZ_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR11 0x33 /* MAT-MLP */
720#define AZ_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR12 0x34 /* DTS */
721#define AZ_F0_CODEC_PIN_CONTROL_AUDIO_DESCRIPTOR13 0x35 /* WMA Pro */
722# define MAX_CHANNELS(x) (((x) & 0x7) << 0)
723/* max channels minus one. 7 = 8 channels */
724# define SUPPORTED_FREQUENCIES(x) (((x) & 0xff) << 8)
725# define DESCRIPTOR_BYTE_2(x) (((x) & 0xff) << 16)
726# define SUPPORTED_FREQUENCIES_STEREO(x) (((x) & 0xff) << 24) /* LPCM only */
727/* SUPPORTED_FREQUENCIES, SUPPORTED_FREQUENCIES_STEREO
728 * bit0 = 32 kHz
729 * bit1 = 44.1 kHz
730 * bit2 = 48 kHz
731 * bit3 = 88.2 kHz
732 * bit4 = 96 kHz
733 * bit5 = 176.4 kHz
734 * bit6 = 192 kHz
735 */
Alex Deucherb1880252013-10-10 18:03:06 -0400736
737#define AZ_F0_CODEC_PIN_CONTROL_RESPONSE_LIPSYNC 0x37
738# define VIDEO_LIPSYNC(x) (((x) & 0xff) << 0)
739# define AUDIO_LIPSYNC(x) (((x) & 0xff) << 8)
740/* VIDEO_LIPSYNC, AUDIO_LIPSYNC
741 * 0 = invalid
742 * x = legal delay value
743 * 255 = sync not supported
744 */
745#define AZ_F0_CODEC_PIN_CONTROL_RESPONSE_HBR 0x38
746# define HBR_CAPABLE (1 << 0) /* enabled by default */
747
748#define AZ_F0_CODEC_PIN_CONTROL_SINK_INFO0 0x3a
749# define MANUFACTURER_ID(x) (((x) & 0xffff) << 0)
750# define PRODUCT_ID(x) (((x) & 0xffff) << 16)
751#define AZ_F0_CODEC_PIN_CONTROL_SINK_INFO1 0x3b
752# define SINK_DESCRIPTION_LEN(x) (((x) & 0xff) << 0)
753#define AZ_F0_CODEC_PIN_CONTROL_SINK_INFO2 0x3c
754# define PORT_ID0(x) (((x) & 0xffffffff) << 0)
755#define AZ_F0_CODEC_PIN_CONTROL_SINK_INFO3 0x3d
756# define PORT_ID1(x) (((x) & 0xffffffff) << 0)
757#define AZ_F0_CODEC_PIN_CONTROL_SINK_INFO4 0x3e
758# define DESCRIPTION0(x) (((x) & 0xff) << 0)
759# define DESCRIPTION1(x) (((x) & 0xff) << 8)
760# define DESCRIPTION2(x) (((x) & 0xff) << 16)
761# define DESCRIPTION3(x) (((x) & 0xff) << 24)
762#define AZ_F0_CODEC_PIN_CONTROL_SINK_INFO5 0x3f
763# define DESCRIPTION4(x) (((x) & 0xff) << 0)
764# define DESCRIPTION5(x) (((x) & 0xff) << 8)
765# define DESCRIPTION6(x) (((x) & 0xff) << 16)
766# define DESCRIPTION7(x) (((x) & 0xff) << 24)
767#define AZ_F0_CODEC_PIN_CONTROL_SINK_INFO6 0x40
768# define DESCRIPTION8(x) (((x) & 0xff) << 0)
769# define DESCRIPTION9(x) (((x) & 0xff) << 8)
770# define DESCRIPTION10(x) (((x) & 0xff) << 16)
771# define DESCRIPTION11(x) (((x) & 0xff) << 24)
772#define AZ_F0_CODEC_PIN_CONTROL_SINK_INFO7 0x41
773# define DESCRIPTION12(x) (((x) & 0xff) << 0)
774# define DESCRIPTION13(x) (((x) & 0xff) << 8)
775# define DESCRIPTION14(x) (((x) & 0xff) << 16)
776# define DESCRIPTION15(x) (((x) & 0xff) << 24)
777#define AZ_F0_CODEC_PIN_CONTROL_SINK_INFO8 0x42
778# define DESCRIPTION16(x) (((x) & 0xff) << 0)
779# define DESCRIPTION17(x) (((x) & 0xff) << 8)
780
Alex Deucherf68fdbe2014-09-18 16:19:04 -0400781#define AZ_F0_CODEC_PIN_CONTROL_HOT_PLUG_CONTROL 0x54
Alex Deucherb5306022013-07-31 16:51:33 -0400782# define AUDIO_ENABLED (1 << 31)
783
784#define AZ_F0_CODEC_PIN_CONTROL_RESPONSE_CONFIGURATION_DEFAULT 0x56
785#define PORT_CONNECTIVITY_MASK (3 << 30)
786#define PORT_CONNECTIVITY_SHIFT 30
787
Alex Deucher43b3cd92012-03-20 17:18:00 -0400788#define DC_LB_MEMORY_SPLIT 0x6b0c
789#define DC_LB_MEMORY_CONFIG(x) ((x) << 20)
790
791#define PRIORITY_A_CNT 0x6b18
792#define PRIORITY_MARK_MASK 0x7fff
793#define PRIORITY_OFF (1 << 16)
794#define PRIORITY_ALWAYS_ON (1 << 20)
795#define PRIORITY_B_CNT 0x6b1c
796
797#define DPG_PIPE_ARBITRATION_CONTROL3 0x6cc8
798# define LATENCY_WATERMARK_MASK(x) ((x) << 16)
799#define DPG_PIPE_LATENCY_CONTROL 0x6ccc
800# define LATENCY_LOW_WATERMARK(x) ((x) << 0)
801# define LATENCY_HIGH_WATERMARK(x) ((x) << 16)
802
Alex Deucher25a857f2012-03-20 17:18:22 -0400803/* 0x6bb8, 0x77b8, 0x103b8, 0x10fb8, 0x11bb8, 0x127b8 */
804#define VLINE_STATUS 0x6bb8
805# define VLINE_OCCURRED (1 << 0)
806# define VLINE_ACK (1 << 4)
807# define VLINE_STAT (1 << 12)
808# define VLINE_INTERRUPT (1 << 16)
809# define VLINE_INTERRUPT_TYPE (1 << 17)
810/* 0x6bbc, 0x77bc, 0x103bc, 0x10fbc, 0x11bbc, 0x127bc */
811#define VBLANK_STATUS 0x6bbc
812# define VBLANK_OCCURRED (1 << 0)
813# define VBLANK_ACK (1 << 4)
814# define VBLANK_STAT (1 << 12)
815# define VBLANK_INTERRUPT (1 << 16)
816# define VBLANK_INTERRUPT_TYPE (1 << 17)
817
818/* 0x6b40, 0x7740, 0x10340, 0x10f40, 0x11b40, 0x12740 */
819#define INT_MASK 0x6b40
820# define VBLANK_INT_MASK (1 << 0)
821# define VLINE_INT_MASK (1 << 4)
822
823#define DISP_INTERRUPT_STATUS 0x60f4
824# define LB_D1_VLINE_INTERRUPT (1 << 2)
825# define LB_D1_VBLANK_INTERRUPT (1 << 3)
826# define DC_HPD1_INTERRUPT (1 << 17)
827# define DC_HPD1_RX_INTERRUPT (1 << 18)
828# define DACA_AUTODETECT_INTERRUPT (1 << 22)
829# define DACB_AUTODETECT_INTERRUPT (1 << 23)
830# define DC_I2C_SW_DONE_INTERRUPT (1 << 24)
831# define DC_I2C_HW_DONE_INTERRUPT (1 << 25)
832#define DISP_INTERRUPT_STATUS_CONTINUE 0x60f8
833# define LB_D2_VLINE_INTERRUPT (1 << 2)
834# define LB_D2_VBLANK_INTERRUPT (1 << 3)
835# define DC_HPD2_INTERRUPT (1 << 17)
836# define DC_HPD2_RX_INTERRUPT (1 << 18)
837# define DISP_TIMER_INTERRUPT (1 << 24)
838#define DISP_INTERRUPT_STATUS_CONTINUE2 0x60fc
839# define LB_D3_VLINE_INTERRUPT (1 << 2)
840# define LB_D3_VBLANK_INTERRUPT (1 << 3)
841# define DC_HPD3_INTERRUPT (1 << 17)
842# define DC_HPD3_RX_INTERRUPT (1 << 18)
843#define DISP_INTERRUPT_STATUS_CONTINUE3 0x6100
844# define LB_D4_VLINE_INTERRUPT (1 << 2)
845# define LB_D4_VBLANK_INTERRUPT (1 << 3)
846# define DC_HPD4_INTERRUPT (1 << 17)
847# define DC_HPD4_RX_INTERRUPT (1 << 18)
848#define DISP_INTERRUPT_STATUS_CONTINUE4 0x614c
849# define LB_D5_VLINE_INTERRUPT (1 << 2)
850# define LB_D5_VBLANK_INTERRUPT (1 << 3)
851# define DC_HPD5_INTERRUPT (1 << 17)
852# define DC_HPD5_RX_INTERRUPT (1 << 18)
853#define DISP_INTERRUPT_STATUS_CONTINUE5 0x6150
854# define LB_D6_VLINE_INTERRUPT (1 << 2)
855# define LB_D6_VBLANK_INTERRUPT (1 << 3)
856# define DC_HPD6_INTERRUPT (1 << 17)
857# define DC_HPD6_RX_INTERRUPT (1 << 18)
858
859/* 0x6858, 0x7458, 0x10058, 0x10c58, 0x11858, 0x12458 */
860#define GRPH_INT_STATUS 0x6858
861# define GRPH_PFLIP_INT_OCCURRED (1 << 0)
862# define GRPH_PFLIP_INT_CLEAR (1 << 8)
863/* 0x685c, 0x745c, 0x1005c, 0x10c5c, 0x1185c, 0x1245c */
864#define GRPH_INT_CONTROL 0x685c
865# define GRPH_PFLIP_INT_MASK (1 << 0)
866# define GRPH_PFLIP_INT_TYPE (1 << 8)
867
Alex Deuchere9a321c2014-01-27 11:54:44 -0500868#define DAC_AUTODETECT_INT_CONTROL 0x67c8
Alex Deucher25a857f2012-03-20 17:18:22 -0400869
870#define DC_HPD1_INT_STATUS 0x601c
871#define DC_HPD2_INT_STATUS 0x6028
872#define DC_HPD3_INT_STATUS 0x6034
873#define DC_HPD4_INT_STATUS 0x6040
874#define DC_HPD5_INT_STATUS 0x604c
875#define DC_HPD6_INT_STATUS 0x6058
876# define DC_HPDx_INT_STATUS (1 << 0)
877# define DC_HPDx_SENSE (1 << 1)
878# define DC_HPDx_RX_INT_STATUS (1 << 8)
879
880#define DC_HPD1_INT_CONTROL 0x6020
881#define DC_HPD2_INT_CONTROL 0x602c
882#define DC_HPD3_INT_CONTROL 0x6038
883#define DC_HPD4_INT_CONTROL 0x6044
884#define DC_HPD5_INT_CONTROL 0x6050
885#define DC_HPD6_INT_CONTROL 0x605c
886# define DC_HPDx_INT_ACK (1 << 0)
887# define DC_HPDx_INT_POLARITY (1 << 8)
888# define DC_HPDx_INT_EN (1 << 16)
889# define DC_HPDx_RX_INT_ACK (1 << 20)
890# define DC_HPDx_RX_INT_EN (1 << 24)
891
892#define DC_HPD1_CONTROL 0x6024
893#define DC_HPD2_CONTROL 0x6030
894#define DC_HPD3_CONTROL 0x603c
895#define DC_HPD4_CONTROL 0x6048
896#define DC_HPD5_CONTROL 0x6054
897#define DC_HPD6_CONTROL 0x6060
898# define DC_HPDx_CONNECTION_TIMER(x) ((x) << 0)
899# define DC_HPDx_RX_INT_TIMER(x) ((x) << 16)
900# define DC_HPDx_EN (1 << 28)
901
Alex Deuchera9e61412013-06-25 17:56:16 -0400902#define DPG_PIPE_STUTTER_CONTROL 0x6cd4
903# define STUTTER_ENABLE (1 << 0)
904
Alex Deucher25a857f2012-03-20 17:18:22 -0400905/* 0x6e98, 0x7a98, 0x10698, 0x11298, 0x11e98, 0x12a98 */
906#define CRTC_STATUS_FRAME_COUNT 0x6e98
907
Slava Grigoreva85d6822014-12-05 13:38:31 -0500908/* Audio clocks */
909#define DCCG_AUDIO_DTO_SOURCE 0x05ac
910# define DCCG_AUDIO_DTO0_SOURCE_SEL(x) ((x) << 0) /* crtc0 - crtc5 */
911# define DCCG_AUDIO_DTO_SEL (1 << 4) /* 0=dto0 1=dto1 */
912
913#define DCCG_AUDIO_DTO0_PHASE 0x05b0
914#define DCCG_AUDIO_DTO0_MODULE 0x05b4
Slava Grigorev2afa3262015-03-02 12:05:29 -0500915#define DCCG_AUDIO_DTO1_PHASE 0x05c0
916#define DCCG_AUDIO_DTO1_MODULE 0x05c4
Slava Grigoreva85d6822014-12-05 13:38:31 -0500917
Alex Deucherb5306022013-07-31 16:51:33 -0400918#define AFMT_AUDIO_SRC_CONTROL 0x713c
919#define AFMT_AUDIO_SRC_SELECT(x) (((x) & 7) << 0)
920/* AFMT_AUDIO_SRC_SELECT
921 * 0 = stream0
922 * 1 = stream1
923 * 2 = stream2
924 * 3 = stream3
925 * 4 = stream4
926 * 5 = stream5
927 */
928
Alex Deucher0a96d722012-03-20 17:18:11 -0400929#define GRBM_CNTL 0x8000
930#define GRBM_READ_TIMEOUT(x) ((x) << 0)
931
Alex Deucherc476dde2012-03-20 17:18:12 -0400932#define GRBM_STATUS2 0x8008
933#define RLC_RQ_PENDING (1 << 0)
934#define RLC_BUSY (1 << 8)
935#define TC_BUSY (1 << 9)
936
937#define GRBM_STATUS 0x8010
938#define CMDFIFO_AVAIL_MASK 0x0000000F
939#define RING2_RQ_PENDING (1 << 4)
940#define SRBM_RQ_PENDING (1 << 5)
941#define RING1_RQ_PENDING (1 << 6)
942#define CF_RQ_PENDING (1 << 7)
943#define PF_RQ_PENDING (1 << 8)
944#define GDS_DMA_RQ_PENDING (1 << 9)
945#define GRBM_EE_BUSY (1 << 10)
946#define DB_CLEAN (1 << 12)
947#define CB_CLEAN (1 << 13)
948#define TA_BUSY (1 << 14)
949#define GDS_BUSY (1 << 15)
950#define VGT_BUSY (1 << 17)
951#define IA_BUSY_NO_DMA (1 << 18)
952#define IA_BUSY (1 << 19)
953#define SX_BUSY (1 << 20)
954#define SPI_BUSY (1 << 22)
955#define BCI_BUSY (1 << 23)
956#define SC_BUSY (1 << 24)
957#define PA_BUSY (1 << 25)
958#define DB_BUSY (1 << 26)
959#define CP_COHERENCY_BUSY (1 << 28)
960#define CP_BUSY (1 << 29)
961#define CB_BUSY (1 << 30)
962#define GUI_ACTIVE (1 << 31)
963#define GRBM_STATUS_SE0 0x8014
964#define GRBM_STATUS_SE1 0x8018
965#define SE_DB_CLEAN (1 << 1)
966#define SE_CB_CLEAN (1 << 2)
967#define SE_BCI_BUSY (1 << 22)
968#define SE_VGT_BUSY (1 << 23)
969#define SE_PA_BUSY (1 << 24)
970#define SE_TA_BUSY (1 << 25)
971#define SE_SX_BUSY (1 << 26)
972#define SE_SPI_BUSY (1 << 27)
973#define SE_SC_BUSY (1 << 29)
974#define SE_DB_BUSY (1 << 30)
975#define SE_CB_BUSY (1 << 31)
976
977#define GRBM_SOFT_RESET 0x8020
978#define SOFT_RESET_CP (1 << 0)
979#define SOFT_RESET_CB (1 << 1)
980#define SOFT_RESET_RLC (1 << 2)
981#define SOFT_RESET_DB (1 << 3)
982#define SOFT_RESET_GDS (1 << 4)
983#define SOFT_RESET_PA (1 << 5)
984#define SOFT_RESET_SC (1 << 6)
985#define SOFT_RESET_BCI (1 << 7)
986#define SOFT_RESET_SPI (1 << 8)
987#define SOFT_RESET_SX (1 << 10)
988#define SOFT_RESET_TC (1 << 11)
989#define SOFT_RESET_TA (1 << 12)
990#define SOFT_RESET_VGT (1 << 14)
991#define SOFT_RESET_IA (1 << 15)
992
Alex Deucher498dd8b2012-03-20 17:18:15 -0400993#define GRBM_GFX_INDEX 0x802C
Alex Deucher1a8ca752012-06-01 18:58:22 -0400994#define INSTANCE_INDEX(x) ((x) << 0)
995#define SH_INDEX(x) ((x) << 8)
996#define SE_INDEX(x) ((x) << 16)
997#define SH_BROADCAST_WRITES (1 << 29)
998#define INSTANCE_BROADCAST_WRITES (1 << 30)
999#define SE_BROADCAST_WRITES (1 << 31)
Alex Deucher498dd8b2012-03-20 17:18:15 -04001000
Alex Deucher25a857f2012-03-20 17:18:22 -04001001#define GRBM_INT_CNTL 0x8060
1002# define RDERR_INT_ENABLE (1 << 0)
1003# define GUI_IDLE_INT_ENABLE (1 << 19)
1004
Alex Deucherf418b882012-11-08 10:13:24 -05001005#define CP_STRMOUT_CNTL 0x84FC
Alex Deucher48c0c902012-03-20 17:18:19 -04001006#define SCRATCH_REG0 0x8500
1007#define SCRATCH_REG1 0x8504
1008#define SCRATCH_REG2 0x8508
1009#define SCRATCH_REG3 0x850C
1010#define SCRATCH_REG4 0x8510
1011#define SCRATCH_REG5 0x8514
1012#define SCRATCH_REG6 0x8518
1013#define SCRATCH_REG7 0x851C
1014
1015#define SCRATCH_UMSK 0x8540
1016#define SCRATCH_ADDR 0x8544
1017
1018#define CP_SEM_WAIT_TIMER 0x85BC
1019
1020#define CP_SEM_INCOMPLETE_TIMER_CNTL 0x85C8
1021
Alex Deucherc476dde2012-03-20 17:18:12 -04001022#define CP_ME_CNTL 0x86D8
1023#define CP_CE_HALT (1 << 24)
1024#define CP_PFP_HALT (1 << 26)
1025#define CP_ME_HALT (1 << 28)
1026
Alex Deucher2ece2e82012-03-20 17:18:20 -04001027#define CP_COHER_CNTL2 0x85E8
1028
Alex Deucher48c0c902012-03-20 17:18:19 -04001029#define CP_RB2_RPTR 0x86f8
1030#define CP_RB1_RPTR 0x86fc
Alex Deucherc476dde2012-03-20 17:18:12 -04001031#define CP_RB0_RPTR 0x8700
Alex Deucher48c0c902012-03-20 17:18:19 -04001032#define CP_RB_WPTR_DELAY 0x8704
Alex Deucherc476dde2012-03-20 17:18:12 -04001033
Alex Deucher0a96d722012-03-20 17:18:11 -04001034#define CP_QUEUE_THRESHOLDS 0x8760
1035#define ROQ_IB1_START(x) ((x) << 0)
1036#define ROQ_IB2_START(x) ((x) << 8)
1037#define CP_MEQ_THRESHOLDS 0x8764
1038#define MEQ1_START(x) ((x) << 0)
1039#define MEQ2_START(x) ((x) << 8)
1040
1041#define CP_PERFMON_CNTL 0x87FC
1042
Alex Deucher498dd8b2012-03-20 17:18:15 -04001043#define VGT_VTX_VECT_EJECT_REG 0x88B0
1044
Alex Deucher0a96d722012-03-20 17:18:11 -04001045#define VGT_CACHE_INVALIDATION 0x88C4
1046#define CACHE_INVALIDATION(x) ((x) << 0)
1047#define VC_ONLY 0
1048#define TC_ONLY 1
1049#define VC_AND_TC 2
1050#define AUTO_INVLD_EN(x) ((x) << 6)
1051#define NO_AUTO 0
1052#define ES_AUTO 1
1053#define GS_AUTO 2
1054#define ES_AND_GS_AUTO 3
Alex Deucher498dd8b2012-03-20 17:18:15 -04001055#define VGT_ESGS_RING_SIZE 0x88C8
1056#define VGT_GSVS_RING_SIZE 0x88CC
Alex Deucher0a96d722012-03-20 17:18:11 -04001057
1058#define VGT_GS_VERTEX_REUSE 0x88D4
1059
Alex Deucher498dd8b2012-03-20 17:18:15 -04001060#define VGT_PRIMITIVE_TYPE 0x8958
1061#define VGT_INDEX_TYPE 0x895C
1062
1063#define VGT_NUM_INDICES 0x8970
Alex Deucher0a96d722012-03-20 17:18:11 -04001064#define VGT_NUM_INSTANCES 0x8974
1065
Alex Deucher498dd8b2012-03-20 17:18:15 -04001066#define VGT_TF_RING_SIZE 0x8988
1067
1068#define VGT_HS_OFFCHIP_PARAM 0x89B0
1069
1070#define VGT_TF_MEMORY_BASE 0x89B8
1071
Alex Deucher0a96d722012-03-20 17:18:11 -04001072#define CC_GC_SHADER_ARRAY_CONFIG 0x89bc
Alex Deucher1a8ca752012-06-01 18:58:22 -04001073#define INACTIVE_CUS_MASK 0xFFFF0000
1074#define INACTIVE_CUS_SHIFT 16
Alex Deucher0a96d722012-03-20 17:18:11 -04001075#define GC_USER_SHADER_ARRAY_CONFIG 0x89c0
1076
1077#define PA_CL_ENHANCE 0x8A14
1078#define CLIP_VTX_REORDER_ENA (1 << 0)
1079#define NUM_CLIP_SEQ(x) ((x) << 1)
1080
Alex Deucher498dd8b2012-03-20 17:18:15 -04001081#define PA_SU_LINE_STIPPLE_VALUE 0x8A60
1082
Alex Deucher0a96d722012-03-20 17:18:11 -04001083#define PA_SC_LINE_STIPPLE_STATE 0x8B10
1084
1085#define PA_SC_FORCE_EOV_MAX_CNTS 0x8B24
1086#define FORCE_EOV_MAX_CLK_CNT(x) ((x) << 0)
1087#define FORCE_EOV_MAX_REZ_CNT(x) ((x) << 16)
1088
1089#define PA_SC_FIFO_SIZE 0x8BCC
1090#define SC_FRONTEND_PRIM_FIFO_SIZE(x) ((x) << 0)
1091#define SC_BACKEND_PRIM_FIFO_SIZE(x) ((x) << 6)
1092#define SC_HIZ_TILE_FIFO_SIZE(x) ((x) << 15)
1093#define SC_EARLYZ_TILE_FIFO_SIZE(x) ((x) << 23)
1094
Alex Deucher498dd8b2012-03-20 17:18:15 -04001095#define PA_SC_ENHANCE 0x8BF0
1096
Alex Deucher0a96d722012-03-20 17:18:11 -04001097#define SQ_CONFIG 0x8C00
1098
Alex Deucher498dd8b2012-03-20 17:18:15 -04001099#define SQC_CACHES 0x8C08
1100
Alex Deuchera9e61412013-06-25 17:56:16 -04001101#define SQ_POWER_THROTTLE 0x8e58
1102#define MIN_POWER(x) ((x) << 0)
1103#define MIN_POWER_MASK (0x3fff << 0)
1104#define MIN_POWER_SHIFT 0
1105#define MAX_POWER(x) ((x) << 16)
1106#define MAX_POWER_MASK (0x3fff << 16)
1107#define MAX_POWER_SHIFT 0
1108#define SQ_POWER_THROTTLE2 0x8e5c
1109#define MAX_POWER_DELTA(x) ((x) << 0)
1110#define MAX_POWER_DELTA_MASK (0x3fff << 0)
1111#define MAX_POWER_DELTA_SHIFT 0
1112#define STI_SIZE(x) ((x) << 16)
1113#define STI_SIZE_MASK (0x3ff << 16)
1114#define STI_SIZE_SHIFT 16
1115#define LTI_RATIO(x) ((x) << 27)
1116#define LTI_RATIO_MASK (0xf << 27)
1117#define LTI_RATIO_SHIFT 27
1118
Alex Deucher0a96d722012-03-20 17:18:11 -04001119#define SX_DEBUG_1 0x9060
1120
Alex Deucher498dd8b2012-03-20 17:18:15 -04001121#define SPI_STATIC_THREAD_MGMT_1 0x90E0
1122#define SPI_STATIC_THREAD_MGMT_2 0x90E4
1123#define SPI_STATIC_THREAD_MGMT_3 0x90E8
1124#define SPI_PS_MAX_WAVE_ID 0x90EC
1125
1126#define SPI_CONFIG_CNTL 0x9100
1127
Alex Deucher0a96d722012-03-20 17:18:11 -04001128#define SPI_CONFIG_CNTL_1 0x913C
1129#define VTX_DONE_DELAY(x) ((x) << 0)
1130#define INTERP_ONE_PRIM_PER_ROW (1 << 4)
1131
1132#define CGTS_TCC_DISABLE 0x9148
1133#define CGTS_USER_TCC_DISABLE 0x914C
1134#define TCC_DISABLE_MASK 0xFFFF0000
1135#define TCC_DISABLE_SHIFT 16
Alex Deucherf8f84ac2013-03-07 12:56:35 -05001136#define CGTS_SM_CTRL_REG 0x9150
1137#define OVERRIDE (1 << 21)
1138#define LS_OVERRIDE (1 << 22)
Alex Deucher0a96d722012-03-20 17:18:11 -04001139
Alex Deucherd719cef2013-02-15 16:49:59 -05001140#define SPI_LB_CU_MASK 0x9354
1141
Alex Deucher498dd8b2012-03-20 17:18:15 -04001142#define TA_CNTL_AUX 0x9508
1143
Alex Deucher0a96d722012-03-20 17:18:11 -04001144#define CC_RB_BACKEND_DISABLE 0x98F4
1145#define BACKEND_DISABLE(x) ((x) << 16)
1146#define GB_ADDR_CONFIG 0x98F8
1147#define NUM_PIPES(x) ((x) << 0)
1148#define NUM_PIPES_MASK 0x00000007
1149#define NUM_PIPES_SHIFT 0
1150#define PIPE_INTERLEAVE_SIZE(x) ((x) << 4)
1151#define PIPE_INTERLEAVE_SIZE_MASK 0x00000070
1152#define PIPE_INTERLEAVE_SIZE_SHIFT 4
1153#define NUM_SHADER_ENGINES(x) ((x) << 12)
1154#define NUM_SHADER_ENGINES_MASK 0x00003000
1155#define NUM_SHADER_ENGINES_SHIFT 12
1156#define SHADER_ENGINE_TILE_SIZE(x) ((x) << 16)
1157#define SHADER_ENGINE_TILE_SIZE_MASK 0x00070000
1158#define SHADER_ENGINE_TILE_SIZE_SHIFT 16
1159#define NUM_GPUS(x) ((x) << 20)
1160#define NUM_GPUS_MASK 0x00700000
1161#define NUM_GPUS_SHIFT 20
1162#define MULTI_GPU_TILE_SIZE(x) ((x) << 24)
1163#define MULTI_GPU_TILE_SIZE_MASK 0x03000000
1164#define MULTI_GPU_TILE_SIZE_SHIFT 24
1165#define ROW_SIZE(x) ((x) << 28)
1166#define ROW_SIZE_MASK 0x30000000
1167#define ROW_SIZE_SHIFT 28
1168
1169#define GB_TILE_MODE0 0x9910
1170# define MICRO_TILE_MODE(x) ((x) << 0)
1171# define ADDR_SURF_DISPLAY_MICRO_TILING 0
1172# define ADDR_SURF_THIN_MICRO_TILING 1
1173# define ADDR_SURF_DEPTH_MICRO_TILING 2
1174# define ARRAY_MODE(x) ((x) << 2)
1175# define ARRAY_LINEAR_GENERAL 0
1176# define ARRAY_LINEAR_ALIGNED 1
1177# define ARRAY_1D_TILED_THIN1 2
1178# define ARRAY_2D_TILED_THIN1 4
1179# define PIPE_CONFIG(x) ((x) << 6)
1180# define ADDR_SURF_P2 0
1181# define ADDR_SURF_P4_8x16 4
1182# define ADDR_SURF_P4_16x16 5
1183# define ADDR_SURF_P4_16x32 6
1184# define ADDR_SURF_P4_32x32 7
1185# define ADDR_SURF_P8_16x16_8x16 8
1186# define ADDR_SURF_P8_16x32_8x16 9
1187# define ADDR_SURF_P8_32x32_8x16 10
1188# define ADDR_SURF_P8_16x32_16x16 11
1189# define ADDR_SURF_P8_32x32_16x16 12
1190# define ADDR_SURF_P8_32x32_16x32 13
1191# define ADDR_SURF_P8_32x64_32x32 14
1192# define TILE_SPLIT(x) ((x) << 11)
1193# define ADDR_SURF_TILE_SPLIT_64B 0
1194# define ADDR_SURF_TILE_SPLIT_128B 1
1195# define ADDR_SURF_TILE_SPLIT_256B 2
1196# define ADDR_SURF_TILE_SPLIT_512B 3
1197# define ADDR_SURF_TILE_SPLIT_1KB 4
1198# define ADDR_SURF_TILE_SPLIT_2KB 5
1199# define ADDR_SURF_TILE_SPLIT_4KB 6
1200# define BANK_WIDTH(x) ((x) << 14)
1201# define ADDR_SURF_BANK_WIDTH_1 0
1202# define ADDR_SURF_BANK_WIDTH_2 1
1203# define ADDR_SURF_BANK_WIDTH_4 2
1204# define ADDR_SURF_BANK_WIDTH_8 3
1205# define BANK_HEIGHT(x) ((x) << 16)
1206# define ADDR_SURF_BANK_HEIGHT_1 0
1207# define ADDR_SURF_BANK_HEIGHT_2 1
1208# define ADDR_SURF_BANK_HEIGHT_4 2
1209# define ADDR_SURF_BANK_HEIGHT_8 3
1210# define MACRO_TILE_ASPECT(x) ((x) << 18)
1211# define ADDR_SURF_MACRO_ASPECT_1 0
1212# define ADDR_SURF_MACRO_ASPECT_2 1
1213# define ADDR_SURF_MACRO_ASPECT_4 2
1214# define ADDR_SURF_MACRO_ASPECT_8 3
1215# define NUM_BANKS(x) ((x) << 20)
1216# define ADDR_SURF_2_BANK 0
1217# define ADDR_SURF_4_BANK 1
1218# define ADDR_SURF_8_BANK 2
1219# define ADDR_SURF_16_BANK 3
1220
1221#define CB_PERFCOUNTER0_SELECT0 0x9a20
1222#define CB_PERFCOUNTER0_SELECT1 0x9a24
1223#define CB_PERFCOUNTER1_SELECT0 0x9a28
1224#define CB_PERFCOUNTER1_SELECT1 0x9a2c
1225#define CB_PERFCOUNTER2_SELECT0 0x9a30
1226#define CB_PERFCOUNTER2_SELECT1 0x9a34
1227#define CB_PERFCOUNTER3_SELECT0 0x9a38
1228#define CB_PERFCOUNTER3_SELECT1 0x9a3c
1229
Alex Deucherf8f84ac2013-03-07 12:56:35 -05001230#define CB_CGTT_SCLK_CTRL 0x9a60
1231
Alex Deucher0a96d722012-03-20 17:18:11 -04001232#define GC_USER_RB_BACKEND_DISABLE 0x9B7C
1233#define BACKEND_DISABLE_MASK 0x00FF0000
1234#define BACKEND_DISABLE_SHIFT 16
1235
1236#define TCP_CHAN_STEER_LO 0xac0c
1237#define TCP_CHAN_STEER_HI 0xac10
1238
Alex Deucher48c0c902012-03-20 17:18:19 -04001239#define CP_RB0_BASE 0xC100
1240#define CP_RB0_CNTL 0xC104
1241#define RB_BUFSZ(x) ((x) << 0)
1242#define RB_BLKSZ(x) ((x) << 8)
1243#define BUF_SWAP_32BIT (2 << 16)
1244#define RB_NO_UPDATE (1 << 27)
1245#define RB_RPTR_WR_ENA (1 << 31)
1246
1247#define CP_RB0_RPTR_ADDR 0xC10C
1248#define CP_RB0_RPTR_ADDR_HI 0xC110
1249#define CP_RB0_WPTR 0xC114
1250
1251#define CP_PFP_UCODE_ADDR 0xC150
1252#define CP_PFP_UCODE_DATA 0xC154
1253#define CP_ME_RAM_RADDR 0xC158
1254#define CP_ME_RAM_WADDR 0xC15C
1255#define CP_ME_RAM_DATA 0xC160
1256
1257#define CP_CE_UCODE_ADDR 0xC168
1258#define CP_CE_UCODE_DATA 0xC16C
1259
1260#define CP_RB1_BASE 0xC180
1261#define CP_RB1_CNTL 0xC184
1262#define CP_RB1_RPTR_ADDR 0xC188
1263#define CP_RB1_RPTR_ADDR_HI 0xC18C
1264#define CP_RB1_WPTR 0xC190
1265#define CP_RB2_BASE 0xC194
1266#define CP_RB2_CNTL 0xC198
1267#define CP_RB2_RPTR_ADDR 0xC19C
1268#define CP_RB2_RPTR_ADDR_HI 0xC1A0
1269#define CP_RB2_WPTR 0xC1A4
Alex Deucher25a857f2012-03-20 17:18:22 -04001270#define CP_INT_CNTL_RING0 0xC1A8
1271#define CP_INT_CNTL_RING1 0xC1AC
1272#define CP_INT_CNTL_RING2 0xC1B0
1273# define CNTX_BUSY_INT_ENABLE (1 << 19)
1274# define CNTX_EMPTY_INT_ENABLE (1 << 20)
1275# define WAIT_MEM_SEM_INT_ENABLE (1 << 21)
1276# define TIME_STAMP_INT_ENABLE (1 << 26)
1277# define CP_RINGID2_INT_ENABLE (1 << 29)
1278# define CP_RINGID1_INT_ENABLE (1 << 30)
1279# define CP_RINGID0_INT_ENABLE (1 << 31)
1280#define CP_INT_STATUS_RING0 0xC1B4
1281#define CP_INT_STATUS_RING1 0xC1B8
1282#define CP_INT_STATUS_RING2 0xC1BC
1283# define WAIT_MEM_SEM_INT_STAT (1 << 21)
1284# define TIME_STAMP_INT_STAT (1 << 26)
1285# define CP_RINGID2_INT_STAT (1 << 29)
1286# define CP_RINGID1_INT_STAT (1 << 30)
1287# define CP_RINGID0_INT_STAT (1 << 31)
Alex Deucher48c0c902012-03-20 17:18:19 -04001288
Alex Deucherf8f84ac2013-03-07 12:56:35 -05001289#define CP_MEM_SLP_CNTL 0xC1E4
1290# define CP_MEM_LS_EN (1 << 0)
1291
Alex Deucher48c0c902012-03-20 17:18:19 -04001292#define CP_DEBUG 0xC1FC
1293
Alex Deucher347e7592012-03-20 17:18:21 -04001294#define RLC_CNTL 0xC300
1295# define RLC_ENABLE (1 << 0)
1296#define RLC_RL_BASE 0xC304
1297#define RLC_RL_SIZE 0xC308
1298#define RLC_LB_CNTL 0xC30C
Alex Deucherd719cef2013-02-15 16:49:59 -05001299# define LOAD_BALANCE_ENABLE (1 << 0)
Alex Deucher347e7592012-03-20 17:18:21 -04001300#define RLC_SAVE_AND_RESTORE_BASE 0xC310
1301#define RLC_LB_CNTR_MAX 0xC314
1302#define RLC_LB_CNTR_INIT 0xC318
1303
1304#define RLC_CLEAR_STATE_RESTORE_BASE 0xC320
1305
1306#define RLC_UCODE_ADDR 0xC32C
1307#define RLC_UCODE_DATA 0xC330
1308
Marek Olšák6759a0a2012-08-09 16:34:17 +02001309#define RLC_GPU_CLOCK_COUNT_LSB 0xC338
1310#define RLC_GPU_CLOCK_COUNT_MSB 0xC33C
1311#define RLC_CAPTURE_GPU_CLOCK_COUNT 0xC340
Alex Deucher347e7592012-03-20 17:18:21 -04001312#define RLC_MC_CNTL 0xC344
1313#define RLC_UCODE_CNTL 0xC348
Alex Deucherd719cef2013-02-15 16:49:59 -05001314#define RLC_STAT 0xC34C
1315# define RLC_BUSY_STATUS (1 << 0)
1316# define GFX_POWER_STATUS (1 << 1)
1317# define GFX_CLOCK_STATUS (1 << 2)
1318# define GFX_LS_STATUS (1 << 3)
1319
Alex Deucherf8f84ac2013-03-07 12:56:35 -05001320#define RLC_PG_CNTL 0xC35C
1321# define GFX_PG_ENABLE (1 << 0)
1322# define GFX_PG_SRC (1 << 1)
1323
1324#define RLC_CGTT_MGCG_OVERRIDE 0xC400
1325#define RLC_CGCG_CGLS_CTRL 0xC404
1326# define CGCG_EN (1 << 0)
1327# define CGLS_EN (1 << 1)
1328
1329#define RLC_TTOP_D 0xC414
1330# define RLC_PUD(x) ((x) << 0)
1331# define RLC_PUD_MASK (0xff << 0)
1332# define RLC_PDD(x) ((x) << 8)
1333# define RLC_PDD_MASK (0xff << 8)
1334# define RLC_TTPD(x) ((x) << 16)
1335# define RLC_TTPD_MASK (0xff << 16)
1336# define RLC_MSD(x) ((x) << 24)
1337# define RLC_MSD_MASK (0xff << 24)
1338
Alex Deucherd719cef2013-02-15 16:49:59 -05001339#define RLC_LB_INIT_CU_MASK 0xC41C
1340
Alex Deucherf8f84ac2013-03-07 12:56:35 -05001341#define RLC_PG_AO_CU_MASK 0xC42C
1342#define RLC_MAX_PG_CU 0xC430
1343# define MAX_PU_CU(x) ((x) << 0)
1344# define MAX_PU_CU_MASK (0xff << 0)
1345#define RLC_AUTO_PG_CTRL 0xC434
1346# define AUTO_PG_EN (1 << 0)
1347# define GRBM_REG_SGIT(x) ((x) << 3)
1348# define GRBM_REG_SGIT_MASK (0xffff << 3)
1349# define PG_AFTER_GRBM_REG_ST(x) ((x) << 19)
1350# define PG_AFTER_GRBM_REG_ST_MASK (0x1fff << 19)
1351
1352#define RLC_SERDES_WR_MASTER_MASK_0 0xC454
1353#define RLC_SERDES_WR_MASTER_MASK_1 0xC458
1354#define RLC_SERDES_WR_CTRL 0xC45C
1355
Alex Deucherd719cef2013-02-15 16:49:59 -05001356#define RLC_SERDES_MASTER_BUSY_0 0xC464
1357#define RLC_SERDES_MASTER_BUSY_1 0xC468
1358
Alex Deucherf8f84ac2013-03-07 12:56:35 -05001359#define RLC_GCPM_GENERAL_3 0xC478
1360
1361#define DB_RENDER_CONTROL 0x28000
1362
Alex Deucherd719cef2013-02-15 16:49:59 -05001363#define DB_DEPTH_INFO 0x2803c
Alex Deucher347e7592012-03-20 17:18:21 -04001364
Alex Deucher1a8ca752012-06-01 18:58:22 -04001365#define PA_SC_RASTER_CONFIG 0x28350
1366# define RASTER_CONFIG_RB_MAP_0 0
1367# define RASTER_CONFIG_RB_MAP_1 1
1368# define RASTER_CONFIG_RB_MAP_2 2
1369# define RASTER_CONFIG_RB_MAP_3 3
1370
Alex Deucher2ece2e82012-03-20 17:18:20 -04001371#define VGT_EVENT_INITIATOR 0x28a90
1372# define SAMPLE_STREAMOUTSTATS1 (1 << 0)
1373# define SAMPLE_STREAMOUTSTATS2 (2 << 0)
1374# define SAMPLE_STREAMOUTSTATS3 (3 << 0)
1375# define CACHE_FLUSH_TS (4 << 0)
1376# define CACHE_FLUSH (6 << 0)
1377# define CS_PARTIAL_FLUSH (7 << 0)
1378# define VGT_STREAMOUT_RESET (10 << 0)
1379# define END_OF_PIPE_INCR_DE (11 << 0)
1380# define END_OF_PIPE_IB_END (12 << 0)
1381# define RST_PIX_CNT (13 << 0)
1382# define VS_PARTIAL_FLUSH (15 << 0)
1383# define PS_PARTIAL_FLUSH (16 << 0)
1384# define CACHE_FLUSH_AND_INV_TS_EVENT (20 << 0)
1385# define ZPASS_DONE (21 << 0)
1386# define CACHE_FLUSH_AND_INV_EVENT (22 << 0)
1387# define PERFCOUNTER_START (23 << 0)
1388# define PERFCOUNTER_STOP (24 << 0)
1389# define PIPELINESTAT_START (25 << 0)
1390# define PIPELINESTAT_STOP (26 << 0)
1391# define PERFCOUNTER_SAMPLE (27 << 0)
1392# define SAMPLE_PIPELINESTAT (30 << 0)
1393# define SAMPLE_STREAMOUTSTATS (32 << 0)
1394# define RESET_VTX_CNT (33 << 0)
1395# define VGT_FLUSH (36 << 0)
1396# define BOTTOM_OF_PIPE_TS (40 << 0)
1397# define DB_CACHE_FLUSH_AND_INV (42 << 0)
1398# define FLUSH_AND_INV_DB_DATA_TS (43 << 0)
1399# define FLUSH_AND_INV_DB_META (44 << 0)
1400# define FLUSH_AND_INV_CB_DATA_TS (45 << 0)
1401# define FLUSH_AND_INV_CB_META (46 << 0)
1402# define CS_DONE (47 << 0)
1403# define PS_DONE (48 << 0)
1404# define FLUSH_AND_INV_CB_PIXEL_DATA (49 << 0)
1405# define THREAD_TRACE_START (51 << 0)
1406# define THREAD_TRACE_STOP (52 << 0)
1407# define THREAD_TRACE_FLUSH (54 << 0)
1408# define THREAD_TRACE_FINISH (55 << 0)
1409
Alex Deuchere0bcf162013-02-15 11:56:59 -05001410/* PIF PHY0 registers idx/data 0x8/0xc */
1411#define PB0_PIF_CNTL 0x10
1412# define LS2_EXIT_TIME(x) ((x) << 17)
1413# define LS2_EXIT_TIME_MASK (0x7 << 17)
1414# define LS2_EXIT_TIME_SHIFT 17
1415#define PB0_PIF_PAIRING 0x11
1416# define MULTI_PIF (1 << 25)
1417#define PB0_PIF_PWRDOWN_0 0x12
1418# define PLL_POWER_STATE_IN_TXS2_0(x) ((x) << 7)
1419# define PLL_POWER_STATE_IN_TXS2_0_MASK (0x7 << 7)
1420# define PLL_POWER_STATE_IN_TXS2_0_SHIFT 7
1421# define PLL_POWER_STATE_IN_OFF_0(x) ((x) << 10)
1422# define PLL_POWER_STATE_IN_OFF_0_MASK (0x7 << 10)
1423# define PLL_POWER_STATE_IN_OFF_0_SHIFT 10
1424# define PLL_RAMP_UP_TIME_0(x) ((x) << 24)
1425# define PLL_RAMP_UP_TIME_0_MASK (0x7 << 24)
1426# define PLL_RAMP_UP_TIME_0_SHIFT 24
1427#define PB0_PIF_PWRDOWN_1 0x13
1428# define PLL_POWER_STATE_IN_TXS2_1(x) ((x) << 7)
1429# define PLL_POWER_STATE_IN_TXS2_1_MASK (0x7 << 7)
1430# define PLL_POWER_STATE_IN_TXS2_1_SHIFT 7
1431# define PLL_POWER_STATE_IN_OFF_1(x) ((x) << 10)
1432# define PLL_POWER_STATE_IN_OFF_1_MASK (0x7 << 10)
1433# define PLL_POWER_STATE_IN_OFF_1_SHIFT 10
1434# define PLL_RAMP_UP_TIME_1(x) ((x) << 24)
1435# define PLL_RAMP_UP_TIME_1_MASK (0x7 << 24)
1436# define PLL_RAMP_UP_TIME_1_SHIFT 24
1437
1438#define PB0_PIF_PWRDOWN_2 0x17
1439# define PLL_POWER_STATE_IN_TXS2_2(x) ((x) << 7)
1440# define PLL_POWER_STATE_IN_TXS2_2_MASK (0x7 << 7)
1441# define PLL_POWER_STATE_IN_TXS2_2_SHIFT 7
1442# define PLL_POWER_STATE_IN_OFF_2(x) ((x) << 10)
1443# define PLL_POWER_STATE_IN_OFF_2_MASK (0x7 << 10)
1444# define PLL_POWER_STATE_IN_OFF_2_SHIFT 10
1445# define PLL_RAMP_UP_TIME_2(x) ((x) << 24)
1446# define PLL_RAMP_UP_TIME_2_MASK (0x7 << 24)
1447# define PLL_RAMP_UP_TIME_2_SHIFT 24
1448#define PB0_PIF_PWRDOWN_3 0x18
1449# define PLL_POWER_STATE_IN_TXS2_3(x) ((x) << 7)
1450# define PLL_POWER_STATE_IN_TXS2_3_MASK (0x7 << 7)
1451# define PLL_POWER_STATE_IN_TXS2_3_SHIFT 7
1452# define PLL_POWER_STATE_IN_OFF_3(x) ((x) << 10)
1453# define PLL_POWER_STATE_IN_OFF_3_MASK (0x7 << 10)
1454# define PLL_POWER_STATE_IN_OFF_3_SHIFT 10
1455# define PLL_RAMP_UP_TIME_3(x) ((x) << 24)
1456# define PLL_RAMP_UP_TIME_3_MASK (0x7 << 24)
1457# define PLL_RAMP_UP_TIME_3_SHIFT 24
1458/* PIF PHY1 registers idx/data 0x10/0x14 */
1459#define PB1_PIF_CNTL 0x10
1460#define PB1_PIF_PAIRING 0x11
1461#define PB1_PIF_PWRDOWN_0 0x12
1462#define PB1_PIF_PWRDOWN_1 0x13
1463
1464#define PB1_PIF_PWRDOWN_2 0x17
1465#define PB1_PIF_PWRDOWN_3 0x18
Alex Deucherb9d305d2013-02-14 17:16:51 -05001466/* PCIE registers idx/data 0x30/0x34 */
Alex Deuchere0bcf162013-02-15 11:56:59 -05001467#define PCIE_CNTL2 0x1c /* PCIE */
1468# define SLV_MEM_LS_EN (1 << 16)
Alex Deuchere16866e2013-08-08 19:34:07 -04001469# define SLV_MEM_AGGRESSIVE_LS_EN (1 << 17)
Alex Deuchere0bcf162013-02-15 11:56:59 -05001470# define MST_MEM_LS_EN (1 << 18)
1471# define REPLAY_MEM_LS_EN (1 << 19)
Alex Deucherb9d305d2013-02-14 17:16:51 -05001472#define PCIE_LC_STATUS1 0x28 /* PCIE */
Alex Deuchere0bcf162013-02-15 11:56:59 -05001473# define LC_REVERSE_RCVR (1 << 0)
1474# define LC_REVERSE_XMIT (1 << 1)
Alex Deucherb9d305d2013-02-14 17:16:51 -05001475# define LC_OPERATING_LINK_WIDTH_MASK (0x7 << 2)
1476# define LC_OPERATING_LINK_WIDTH_SHIFT 2
1477# define LC_DETECTED_LINK_WIDTH_MASK (0x7 << 5)
1478# define LC_DETECTED_LINK_WIDTH_SHIFT 5
1479
Alex Deuchere0bcf162013-02-15 11:56:59 -05001480#define PCIE_P_CNTL 0x40 /* PCIE */
1481# define P_IGNORE_EDB_ERR (1 << 6)
1482
Alex Deucherb9d305d2013-02-14 17:16:51 -05001483/* PCIE PORT registers idx/data 0x38/0x3c */
Alex Deuchere0bcf162013-02-15 11:56:59 -05001484#define PCIE_LC_CNTL 0xa0
1485# define LC_L0S_INACTIVITY(x) ((x) << 8)
1486# define LC_L0S_INACTIVITY_MASK (0xf << 8)
1487# define LC_L0S_INACTIVITY_SHIFT 8
1488# define LC_L1_INACTIVITY(x) ((x) << 12)
1489# define LC_L1_INACTIVITY_MASK (0xf << 12)
1490# define LC_L1_INACTIVITY_SHIFT 12
1491# define LC_PMI_TO_L1_DIS (1 << 16)
1492# define LC_ASPM_TO_L1_DIS (1 << 24)
Alex Deucherb9d305d2013-02-14 17:16:51 -05001493#define PCIE_LC_LINK_WIDTH_CNTL 0xa2 /* PCIE_P */
1494# define LC_LINK_WIDTH_SHIFT 0
1495# define LC_LINK_WIDTH_MASK 0x7
1496# define LC_LINK_WIDTH_X0 0
1497# define LC_LINK_WIDTH_X1 1
1498# define LC_LINK_WIDTH_X2 2
1499# define LC_LINK_WIDTH_X4 3
1500# define LC_LINK_WIDTH_X8 4
1501# define LC_LINK_WIDTH_X16 6
1502# define LC_LINK_WIDTH_RD_SHIFT 4
1503# define LC_LINK_WIDTH_RD_MASK 0x70
1504# define LC_RECONFIG_ARC_MISSING_ESCAPE (1 << 7)
1505# define LC_RECONFIG_NOW (1 << 8)
1506# define LC_RENEGOTIATION_SUPPORT (1 << 9)
1507# define LC_RENEGOTIATE_EN (1 << 10)
1508# define LC_SHORT_RECONFIG_EN (1 << 11)
1509# define LC_UPCONFIGURE_SUPPORT (1 << 12)
1510# define LC_UPCONFIGURE_DIS (1 << 13)
Alex Deuchere0bcf162013-02-15 11:56:59 -05001511# define LC_DYN_LANES_PWR_STATE(x) ((x) << 21)
1512# define LC_DYN_LANES_PWR_STATE_MASK (0x3 << 21)
1513# define LC_DYN_LANES_PWR_STATE_SHIFT 21
1514#define PCIE_LC_N_FTS_CNTL 0xa3 /* PCIE_P */
1515# define LC_XMIT_N_FTS(x) ((x) << 0)
1516# define LC_XMIT_N_FTS_MASK (0xff << 0)
1517# define LC_XMIT_N_FTS_SHIFT 0
1518# define LC_XMIT_N_FTS_OVERRIDE_EN (1 << 8)
1519# define LC_N_FTS_MASK (0xff << 24)
Alex Deucherb9d305d2013-02-14 17:16:51 -05001520#define PCIE_LC_SPEED_CNTL 0xa4 /* PCIE_P */
1521# define LC_GEN2_EN_STRAP (1 << 0)
1522# define LC_GEN3_EN_STRAP (1 << 1)
1523# define LC_TARGET_LINK_SPEED_OVERRIDE_EN (1 << 2)
1524# define LC_TARGET_LINK_SPEED_OVERRIDE_MASK (0x3 << 3)
1525# define LC_TARGET_LINK_SPEED_OVERRIDE_SHIFT 3
1526# define LC_FORCE_EN_SW_SPEED_CHANGE (1 << 5)
1527# define LC_FORCE_DIS_SW_SPEED_CHANGE (1 << 6)
1528# define LC_FORCE_EN_HW_SPEED_CHANGE (1 << 7)
1529# define LC_FORCE_DIS_HW_SPEED_CHANGE (1 << 8)
1530# define LC_INITIATE_LINK_SPEED_CHANGE (1 << 9)
1531# define LC_SPEED_CHANGE_ATTEMPTS_ALLOWED_MASK (0x3 << 10)
1532# define LC_SPEED_CHANGE_ATTEMPTS_ALLOWED_SHIFT 10
1533# define LC_CURRENT_DATA_RATE_MASK (0x3 << 13) /* 0/1/2 = gen1/2/3 */
1534# define LC_CURRENT_DATA_RATE_SHIFT 13
1535# define LC_CLR_FAILED_SPD_CHANGE_CNT (1 << 16)
1536# define LC_OTHER_SIDE_EVER_SENT_GEN2 (1 << 18)
1537# define LC_OTHER_SIDE_SUPPORTS_GEN2 (1 << 19)
1538# define LC_OTHER_SIDE_EVER_SENT_GEN3 (1 << 20)
1539# define LC_OTHER_SIDE_SUPPORTS_GEN3 (1 << 21)
Alex Deuchere0bcf162013-02-15 11:56:59 -05001540
1541#define PCIE_LC_CNTL2 0xb1
1542# define LC_ALLOW_PDWN_IN_L1 (1 << 17)
1543# define LC_ALLOW_PDWN_IN_L23 (1 << 18)
1544
1545#define PCIE_LC_CNTL3 0xb5 /* PCIE_P */
1546# define LC_GO_TO_RECOVERY (1 << 30)
Alex Deucherb9d305d2013-02-14 17:16:51 -05001547#define PCIE_LC_CNTL4 0xb6 /* PCIE_P */
1548# define LC_REDO_EQ (1 << 5)
1549# define LC_SET_QUIESCE (1 << 13)
1550
Alex Deucherd2800ee2012-03-20 17:18:13 -04001551/*
Christian Königf2ba57b2013-04-08 12:41:29 +02001552 * UVD
1553 */
Christian König9a210592013-04-08 12:41:37 +02001554#define UVD_UDEC_ADDR_CONFIG 0xEF4C
1555#define UVD_UDEC_DB_ADDR_CONFIG 0xEF50
1556#define UVD_UDEC_DBW_ADDR_CONFIG 0xEF54
Christian Königf2ba57b2013-04-08 12:41:29 +02001557#define UVD_RBC_RB_RPTR 0xF690
1558#define UVD_RBC_RB_WPTR 0xF694
Alex Deucher4af692f2014-10-01 10:03:31 -04001559#define UVD_STATUS 0xf6bc
Christian Königf2ba57b2013-04-08 12:41:29 +02001560
Alex Deucherf8f84ac2013-03-07 12:56:35 -05001561#define UVD_CGC_CTRL 0xF4B0
1562# define DCM (1 << 0)
1563# define CG_DT(x) ((x) << 2)
1564# define CG_DT_MASK (0xf << 2)
1565# define CLK_OD(x) ((x) << 6)
1566# define CLK_OD_MASK (0x1f << 6)
1567
1568 /* UVD CTX indirect */
1569#define UVD_CGC_MEM_CTRL 0xC0
1570#define UVD_CGC_CTRL2 0xC1
1571# define DYN_OR_EN (1 << 0)
1572# define DYN_RR_EN (1 << 1)
1573# define G_DIV_ID(x) ((x) << 2)
1574# define G_DIV_ID_MASK (0x7 << 2)
1575
Christian Königf2ba57b2013-04-08 12:41:29 +02001576/*
Alex Deucherd2800ee2012-03-20 17:18:13 -04001577 * PM4
1578 */
Ilija Hadzic4e872ae2013-01-02 18:27:48 -05001579#define PACKET0(reg, n) ((RADEON_PACKET_TYPE0 << 30) | \
Alex Deucherd2800ee2012-03-20 17:18:13 -04001580 (((reg) >> 2) & 0xFFFF) | \
1581 ((n) & 0x3FFF) << 16)
1582#define CP_PACKET2 0x80000000
1583#define PACKET2_PAD_SHIFT 0
1584#define PACKET2_PAD_MASK (0x3fffffff << 0)
1585
1586#define PACKET2(v) (CP_PACKET2 | REG_SET(PACKET2_PAD, (v)))
1587
Ilija Hadzic4e872ae2013-01-02 18:27:48 -05001588#define PACKET3(op, n) ((RADEON_PACKET_TYPE3 << 30) | \
Alex Deucherd2800ee2012-03-20 17:18:13 -04001589 (((op) & 0xFF) << 8) | \
1590 ((n) & 0x3FFF) << 16)
1591
Alex Deucher48c0c902012-03-20 17:18:19 -04001592#define PACKET3_COMPUTE(op, n) (PACKET3(op, n) | 1 << 1)
1593
Alex Deucherd2800ee2012-03-20 17:18:13 -04001594/* Packet 3 types */
1595#define PACKET3_NOP 0x10
1596#define PACKET3_SET_BASE 0x11
1597#define PACKET3_BASE_INDEX(x) ((x) << 0)
1598#define GDS_PARTITION_BASE 2
1599#define CE_PARTITION_BASE 3
1600#define PACKET3_CLEAR_STATE 0x12
1601#define PACKET3_INDEX_BUFFER_SIZE 0x13
1602#define PACKET3_DISPATCH_DIRECT 0x15
1603#define PACKET3_DISPATCH_INDIRECT 0x16
1604#define PACKET3_ALLOC_GDS 0x1B
1605#define PACKET3_WRITE_GDS_RAM 0x1C
1606#define PACKET3_ATOMIC_GDS 0x1D
1607#define PACKET3_ATOMIC 0x1E
1608#define PACKET3_OCCLUSION_QUERY 0x1F
1609#define PACKET3_SET_PREDICATION 0x20
1610#define PACKET3_REG_RMW 0x21
1611#define PACKET3_COND_EXEC 0x22
1612#define PACKET3_PRED_EXEC 0x23
1613#define PACKET3_DRAW_INDIRECT 0x24
1614#define PACKET3_DRAW_INDEX_INDIRECT 0x25
1615#define PACKET3_INDEX_BASE 0x26
1616#define PACKET3_DRAW_INDEX_2 0x27
1617#define PACKET3_CONTEXT_CONTROL 0x28
1618#define PACKET3_INDEX_TYPE 0x2A
1619#define PACKET3_DRAW_INDIRECT_MULTI 0x2C
1620#define PACKET3_DRAW_INDEX_AUTO 0x2D
1621#define PACKET3_DRAW_INDEX_IMMD 0x2E
1622#define PACKET3_NUM_INSTANCES 0x2F
1623#define PACKET3_DRAW_INDEX_MULTI_AUTO 0x30
1624#define PACKET3_INDIRECT_BUFFER_CONST 0x31
1625#define PACKET3_INDIRECT_BUFFER 0x32
1626#define PACKET3_STRMOUT_BUFFER_UPDATE 0x34
1627#define PACKET3_DRAW_INDEX_OFFSET_2 0x35
1628#define PACKET3_DRAW_INDEX_MULTI_ELEMENT 0x36
1629#define PACKET3_WRITE_DATA 0x37
Alex Deucher76c44f22012-10-02 14:39:18 -04001630#define WRITE_DATA_DST_SEL(x) ((x) << 8)
1631 /* 0 - register
1632 * 1 - memory (sync - via GRBM)
1633 * 2 - tc/l2
1634 * 3 - gds
1635 * 4 - reserved
1636 * 5 - memory (async - direct)
1637 */
1638#define WR_ONE_ADDR (1 << 16)
1639#define WR_CONFIRM (1 << 20)
1640#define WRITE_DATA_ENGINE_SEL(x) ((x) << 30)
1641 /* 0 - me
1642 * 1 - pfp
1643 * 2 - ce
1644 */
Alex Deucherd2800ee2012-03-20 17:18:13 -04001645#define PACKET3_DRAW_INDEX_INDIRECT_MULTI 0x38
1646#define PACKET3_MEM_SEMAPHORE 0x39
1647#define PACKET3_MPEG_INDEX 0x3A
1648#define PACKET3_COPY_DW 0x3B
1649#define PACKET3_WAIT_REG_MEM 0x3C
Alex Deucherd474ea72015-01-05 19:54:50 -05001650#define WAIT_REG_MEM_FUNCTION(x) ((x) << 0)
1651 /* 0 - always
1652 * 1 - <
1653 * 2 - <=
1654 * 3 - ==
1655 * 4 - !=
1656 * 5 - >=
1657 * 6 - >
1658 */
1659#define WAIT_REG_MEM_MEM_SPACE(x) ((x) << 4)
1660 /* 0 - reg
1661 * 1 - mem
1662 */
1663#define WAIT_REG_MEM_ENGINE(x) ((x) << 8)
1664 /* 0 - me
1665 * 1 - pfp
1666 */
Alex Deucherd2800ee2012-03-20 17:18:13 -04001667#define PACKET3_MEM_WRITE 0x3D
1668#define PACKET3_COPY_DATA 0x40
Alex Deucherb997a8b2012-12-03 18:07:25 -05001669#define PACKET3_CP_DMA 0x41
1670/* 1. header
1671 * 2. SRC_ADDR_LO or DATA [31:0]
1672 * 3. CP_SYNC [31] | SRC_SEL [30:29] | ENGINE [27] | DST_SEL [21:20] |
1673 * SRC_ADDR_HI [7:0]
1674 * 4. DST_ADDR_LO [31:0]
1675 * 5. DST_ADDR_HI [7:0]
1676 * 6. COMMAND [30:21] | BYTE_COUNT [20:0]
1677 */
1678# define PACKET3_CP_DMA_DST_SEL(x) ((x) << 20)
Alex Deucheraa3e1462013-10-01 16:40:45 -04001679 /* 0 - DST_ADDR
Alex Deucherb997a8b2012-12-03 18:07:25 -05001680 * 1 - GDS
1681 */
1682# define PACKET3_CP_DMA_ENGINE(x) ((x) << 27)
1683 /* 0 - ME
1684 * 1 - PFP
1685 */
1686# define PACKET3_CP_DMA_SRC_SEL(x) ((x) << 29)
1687 /* 0 - SRC_ADDR
1688 * 1 - GDS
1689 * 2 - DATA
1690 */
1691# define PACKET3_CP_DMA_CP_SYNC (1 << 31)
1692/* COMMAND */
1693# define PACKET3_CP_DMA_DIS_WC (1 << 21)
Alex Deucheraa3e1462013-10-01 16:40:45 -04001694# define PACKET3_CP_DMA_CMD_SRC_SWAP(x) ((x) << 22)
Alex Deucherb997a8b2012-12-03 18:07:25 -05001695 /* 0 - none
1696 * 1 - 8 in 16
1697 * 2 - 8 in 32
1698 * 3 - 8 in 64
1699 */
1700# define PACKET3_CP_DMA_CMD_DST_SWAP(x) ((x) << 24)
1701 /* 0 - none
1702 * 1 - 8 in 16
1703 * 2 - 8 in 32
1704 * 3 - 8 in 64
1705 */
1706# define PACKET3_CP_DMA_CMD_SAS (1 << 26)
1707 /* 0 - memory
1708 * 1 - register
1709 */
1710# define PACKET3_CP_DMA_CMD_DAS (1 << 27)
1711 /* 0 - memory
1712 * 1 - register
1713 */
1714# define PACKET3_CP_DMA_CMD_SAIC (1 << 28)
1715# define PACKET3_CP_DMA_CMD_DAIC (1 << 29)
1716# define PACKET3_CP_DMA_CMD_RAW_WAIT (1 << 30)
Alex Deucherd2800ee2012-03-20 17:18:13 -04001717#define PACKET3_PFP_SYNC_ME 0x42
1718#define PACKET3_SURFACE_SYNC 0x43
1719# define PACKET3_DEST_BASE_0_ENA (1 << 0)
1720# define PACKET3_DEST_BASE_1_ENA (1 << 1)
1721# define PACKET3_CB0_DEST_BASE_ENA (1 << 6)
1722# define PACKET3_CB1_DEST_BASE_ENA (1 << 7)
1723# define PACKET3_CB2_DEST_BASE_ENA (1 << 8)
1724# define PACKET3_CB3_DEST_BASE_ENA (1 << 9)
1725# define PACKET3_CB4_DEST_BASE_ENA (1 << 10)
1726# define PACKET3_CB5_DEST_BASE_ENA (1 << 11)
1727# define PACKET3_CB6_DEST_BASE_ENA (1 << 12)
1728# define PACKET3_CB7_DEST_BASE_ENA (1 << 13)
1729# define PACKET3_DB_DEST_BASE_ENA (1 << 14)
1730# define PACKET3_DEST_BASE_2_ENA (1 << 19)
1731# define PACKET3_DEST_BASE_3_ENA (1 << 21)
1732# define PACKET3_TCL1_ACTION_ENA (1 << 22)
1733# define PACKET3_TC_ACTION_ENA (1 << 23)
1734# define PACKET3_CB_ACTION_ENA (1 << 25)
1735# define PACKET3_DB_ACTION_ENA (1 << 26)
1736# define PACKET3_SH_KCACHE_ACTION_ENA (1 << 27)
1737# define PACKET3_SH_ICACHE_ACTION_ENA (1 << 29)
1738#define PACKET3_ME_INITIALIZE 0x44
1739#define PACKET3_ME_INITIALIZE_DEVICE_ID(x) ((x) << 16)
1740#define PACKET3_COND_WRITE 0x45
1741#define PACKET3_EVENT_WRITE 0x46
Alex Deucher2ece2e82012-03-20 17:18:20 -04001742#define EVENT_TYPE(x) ((x) << 0)
1743#define EVENT_INDEX(x) ((x) << 8)
1744 /* 0 - any non-TS event
1745 * 1 - ZPASS_DONE
1746 * 2 - SAMPLE_PIPELINESTAT
1747 * 3 - SAMPLE_STREAMOUTSTAT*
1748 * 4 - *S_PARTIAL_FLUSH
1749 * 5 - EOP events
1750 * 6 - EOS events
1751 * 7 - CACHE_FLUSH, CACHE_FLUSH_AND_INV_EVENT
1752 */
1753#define INV_L2 (1 << 20)
1754 /* INV TC L2 cache when EVENT_INDEX = 7 */
Alex Deucherd2800ee2012-03-20 17:18:13 -04001755#define PACKET3_EVENT_WRITE_EOP 0x47
Alex Deucher2ece2e82012-03-20 17:18:20 -04001756#define DATA_SEL(x) ((x) << 29)
1757 /* 0 - discard
1758 * 1 - send low 32bit data
1759 * 2 - send 64bit data
1760 * 3 - send 64bit counter value
1761 */
1762#define INT_SEL(x) ((x) << 24)
1763 /* 0 - none
1764 * 1 - interrupt only (DATA_SEL = 0)
1765 * 2 - interrupt when data write is confirmed
1766 */
Alex Deucherd2800ee2012-03-20 17:18:13 -04001767#define PACKET3_EVENT_WRITE_EOS 0x48
1768#define PACKET3_PREAMBLE_CNTL 0x4A
1769# define PACKET3_PREAMBLE_BEGIN_CLEAR_STATE (2 << 28)
1770# define PACKET3_PREAMBLE_END_CLEAR_STATE (3 << 28)
1771#define PACKET3_ONE_REG_WRITE 0x57
1772#define PACKET3_LOAD_CONFIG_REG 0x5F
1773#define PACKET3_LOAD_CONTEXT_REG 0x60
1774#define PACKET3_LOAD_SH_REG 0x61
1775#define PACKET3_SET_CONFIG_REG 0x68
1776#define PACKET3_SET_CONFIG_REG_START 0x00008000
1777#define PACKET3_SET_CONFIG_REG_END 0x0000b000
1778#define PACKET3_SET_CONTEXT_REG 0x69
1779#define PACKET3_SET_CONTEXT_REG_START 0x00028000
1780#define PACKET3_SET_CONTEXT_REG_END 0x00029000
1781#define PACKET3_SET_CONTEXT_REG_INDIRECT 0x73
1782#define PACKET3_SET_RESOURCE_INDIRECT 0x74
1783#define PACKET3_SET_SH_REG 0x76
1784#define PACKET3_SET_SH_REG_START 0x0000b000
1785#define PACKET3_SET_SH_REG_END 0x0000c000
1786#define PACKET3_SET_SH_REG_OFFSET 0x77
1787#define PACKET3_ME_WRITE 0x7A
1788#define PACKET3_SCRATCH_RAM_WRITE 0x7D
1789#define PACKET3_SCRATCH_RAM_READ 0x7E
1790#define PACKET3_CE_WRITE 0x7F
1791#define PACKET3_LOAD_CONST_RAM 0x80
1792#define PACKET3_WRITE_CONST_RAM 0x81
1793#define PACKET3_WRITE_CONST_RAM_OFFSET 0x82
1794#define PACKET3_DUMP_CONST_RAM 0x83
1795#define PACKET3_INCREMENT_CE_COUNTER 0x84
1796#define PACKET3_INCREMENT_DE_COUNTER 0x85
1797#define PACKET3_WAIT_ON_CE_COUNTER 0x86
1798#define PACKET3_WAIT_ON_DE_COUNTER 0x87
1799#define PACKET3_WAIT_ON_DE_COUNTER_DIFF 0x88
1800#define PACKET3_SET_CE_DE_COUNTERS 0x89
1801#define PACKET3_WAIT_ON_AVAIL_BUFFER 0x8A
Alex Deuchera85a7da42012-07-17 14:02:29 -04001802#define PACKET3_SWITCH_BUFFER 0x8B
Alex Deucher0a96d722012-03-20 17:18:11 -04001803
Alex Deucher8c5fd7e2012-12-04 15:28:18 -05001804/* ASYNC DMA - first instance at 0xd000, second at 0xd800 */
1805#define DMA0_REGISTER_OFFSET 0x0 /* not a register */
1806#define DMA1_REGISTER_OFFSET 0x800 /* not a register */
1807
1808#define DMA_RB_CNTL 0xd000
1809# define DMA_RB_ENABLE (1 << 0)
1810# define DMA_RB_SIZE(x) ((x) << 1) /* log2 */
1811# define DMA_RB_SWAP_ENABLE (1 << 9) /* 8IN32 */
1812# define DMA_RPTR_WRITEBACK_ENABLE (1 << 12)
1813# define DMA_RPTR_WRITEBACK_SWAP_ENABLE (1 << 13) /* 8IN32 */
1814# define DMA_RPTR_WRITEBACK_TIMER(x) ((x) << 16) /* log2 */
1815#define DMA_RB_BASE 0xd004
1816#define DMA_RB_RPTR 0xd008
1817#define DMA_RB_WPTR 0xd00c
1818
1819#define DMA_RB_RPTR_ADDR_HI 0xd01c
1820#define DMA_RB_RPTR_ADDR_LO 0xd020
1821
1822#define DMA_IB_CNTL 0xd024
1823# define DMA_IB_ENABLE (1 << 0)
1824# define DMA_IB_SWAP_ENABLE (1 << 4)
1825#define DMA_IB_RPTR 0xd028
1826#define DMA_CNTL 0xd02c
1827# define TRAP_ENABLE (1 << 0)
1828# define SEM_INCOMPLETE_INT_ENABLE (1 << 1)
1829# define SEM_WAIT_INT_ENABLE (1 << 2)
1830# define DATA_SWAP_ENABLE (1 << 3)
1831# define FENCE_SWAP_ENABLE (1 << 4)
1832# define CTXEMPTY_INT_ENABLE (1 << 28)
Jerome Glisseeaaa6982013-01-02 15:12:15 -05001833#define DMA_STATUS_REG 0xd034
1834# define DMA_IDLE (1 << 0)
Alex Deucher8c5fd7e2012-12-04 15:28:18 -05001835#define DMA_TILING_CONFIG 0xd0b8
1836
Alex Deuchere16866e2013-08-08 19:34:07 -04001837#define DMA_POWER_CNTL 0xd0bc
1838# define MEM_POWER_OVERRIDE (1 << 8)
1839#define DMA_CLK_CTRL 0xd0c0
1840
Alex Deucherf8f84ac2013-03-07 12:56:35 -05001841#define DMA_PG 0xd0d4
1842# define PG_CNTL_ENABLE (1 << 0)
1843#define DMA_PGFSM_CONFIG 0xd0d8
1844#define DMA_PGFSM_WRITE 0xd0dc
1845
Alex Deucher8c5fd7e2012-12-04 15:28:18 -05001846#define DMA_PACKET(cmd, b, t, s, n) ((((cmd) & 0xF) << 28) | \
1847 (((b) & 0x1) << 26) | \
1848 (((t) & 0x1) << 23) | \
1849 (((s) & 0x1) << 22) | \
1850 (((n) & 0xFFFFF) << 0))
Alex Deucherdeab48f2012-10-22 12:32:54 -04001851
1852#define DMA_IB_PACKET(cmd, vmid, n) ((((cmd) & 0xF) << 28) | \
1853 (((vmid) & 0xF) << 20) | \
1854 (((n) & 0xFFFFF) << 0))
1855
1856#define DMA_PTE_PDE_PACKET(n) ((2 << 28) | \
1857 (1 << 26) | \
1858 (1 << 21) | \
1859 (((n) & 0xFFFFF) << 0))
1860
Alex Deucher8c5fd7e2012-12-04 15:28:18 -05001861/* async DMA Packet types */
1862#define DMA_PACKET_WRITE 0x2
1863#define DMA_PACKET_COPY 0x3
1864#define DMA_PACKET_INDIRECT_BUFFER 0x4
1865#define DMA_PACKET_SEMAPHORE 0x5
1866#define DMA_PACKET_FENCE 0x6
1867#define DMA_PACKET_TRAP 0x7
1868#define DMA_PACKET_SRBM_WRITE 0x9
1869#define DMA_PACKET_CONSTANT_FILL 0xd
Alex Deucherd474ea72015-01-05 19:54:50 -05001870#define DMA_PACKET_POLL_REG_MEM 0xe
Alex Deucher8c5fd7e2012-12-04 15:28:18 -05001871#define DMA_PACKET_NOP 0xf
1872
Christian Königd93f7932013-05-23 12:10:04 +02001873#define VCE_STATUS 0x20004
1874#define VCE_VCPU_CNTL 0x20014
1875#define VCE_CLK_EN (1 << 0)
1876#define VCE_VCPU_CACHE_OFFSET0 0x20024
1877#define VCE_VCPU_CACHE_SIZE0 0x20028
1878#define VCE_VCPU_CACHE_OFFSET1 0x2002c
1879#define VCE_VCPU_CACHE_SIZE1 0x20030
1880#define VCE_VCPU_CACHE_OFFSET2 0x20034
1881#define VCE_VCPU_CACHE_SIZE2 0x20038
Christian Königa918efa2015-05-11 22:01:53 +02001882#define VCE_VCPU_SCRATCH7 0x200dc
Christian Königd93f7932013-05-23 12:10:04 +02001883#define VCE_SOFT_RESET 0x20120
1884#define VCE_ECPU_SOFT_RESET (1 << 0)
1885#define VCE_FME_SOFT_RESET (1 << 2)
1886#define VCE_RB_BASE_LO2 0x2016c
1887#define VCE_RB_BASE_HI2 0x20170
1888#define VCE_RB_SIZE2 0x20174
1889#define VCE_RB_RPTR2 0x20178
1890#define VCE_RB_WPTR2 0x2017c
1891#define VCE_RB_BASE_LO 0x20180
1892#define VCE_RB_BASE_HI 0x20184
1893#define VCE_RB_SIZE 0x20188
1894#define VCE_RB_RPTR 0x2018c
1895#define VCE_RB_WPTR 0x20190
1896#define VCE_CLOCK_GATING_A 0x202f8
Alex Deucherd55a43a2015-05-11 22:01:54 +02001897# define CGC_DYN_CLOCK_MODE (1 << 16)
Christian Königd93f7932013-05-23 12:10:04 +02001898#define VCE_CLOCK_GATING_B 0x202fc
1899#define VCE_UENC_CLOCK_GATING 0x205bc
1900#define VCE_UENC_REG_CLOCK_GATING 0x205c0
1901#define VCE_FW_REG_STATUS 0x20e10
1902# define VCE_FW_REG_STATUS_BUSY (1 << 0)
1903# define VCE_FW_REG_STATUS_PASS (1 << 3)
1904# define VCE_FW_REG_STATUS_DONE (1 << 11)
1905#define VCE_LMI_FW_START_KEYSEL 0x20e18
1906#define VCE_LMI_FW_PERIODIC_CTRL 0x20e20
1907#define VCE_LMI_CTRL2 0x20e74
1908#define VCE_LMI_CTRL 0x20e98
1909#define VCE_LMI_VM_CTRL 0x20ea0
1910#define VCE_LMI_SWAP_CNTL 0x20eb4
1911#define VCE_LMI_SWAP_CNTL1 0x20eb8
1912#define VCE_LMI_CACHE_CTRL 0x20ef4
1913
1914#define VCE_CMD_NO_OP 0x00000000
1915#define VCE_CMD_END 0x00000001
1916#define VCE_CMD_IB 0x00000002
1917#define VCE_CMD_FENCE 0x00000003
1918#define VCE_CMD_TRAP 0x00000004
1919#define VCE_CMD_IB_AUTO 0x00000005
1920#define VCE_CMD_SEMAPHORE 0x00000006
1921
Christian Königb7af6302015-05-11 22:01:49 +02001922/* discrete vce clocks */
1923#define CG_VCEPLL_FUNC_CNTL 0xc0030600
1924# define VCEPLL_RESET_MASK 0x00000001
1925# define VCEPLL_SLEEP_MASK 0x00000002
1926# define VCEPLL_BYPASS_EN_MASK 0x00000004
1927# define VCEPLL_CTLREQ_MASK 0x00000008
1928# define VCEPLL_VCO_MODE_MASK 0x00000600
1929# define VCEPLL_REF_DIV_MASK 0x003F0000
1930# define VCEPLL_CTLACK_MASK 0x40000000
1931# define VCEPLL_CTLACK2_MASK 0x80000000
1932#define CG_VCEPLL_FUNC_CNTL_2 0xc0030601
1933# define VCEPLL_PDIV_A(x) ((x) << 0)
1934# define VCEPLL_PDIV_A_MASK 0x0000007F
1935# define VCEPLL_PDIV_B(x) ((x) << 8)
1936# define VCEPLL_PDIV_B_MASK 0x00007F00
1937# define EVCLK_SRC_SEL(x) ((x) << 20)
1938# define EVCLK_SRC_SEL_MASK 0x01F00000
1939# define ECCLK_SRC_SEL(x) ((x) << 25)
1940# define ECCLK_SRC_SEL_MASK 0x3E000000
1941#define CG_VCEPLL_FUNC_CNTL_3 0xc0030602
1942# define VCEPLL_FB_DIV(x) ((x) << 0)
1943# define VCEPLL_FB_DIV_MASK 0x01FFFFFF
1944#define CG_VCEPLL_FUNC_CNTL_4 0xc0030603
1945#define CG_VCEPLL_FUNC_CNTL_5 0xc0030604
1946#define CG_VCEPLL_SPREAD_SPECTRUM 0xc0030606
1947# define VCEPLL_SSEN_MASK 0x00000001
1948
Alex Deucher43b3cd92012-03-20 17:18:00 -04001949#endif