blob: 3eb0c4f9f7960d2fbcfbbd86de480f9fcc97f914 [file] [log] [blame]
Jerome Glisse771fe6b2009-06-05 14:42:42 +02001/*
2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
5 *
6 * Permission is hereby granted, free of charge, to any person obtaining a
7 * copy of this software and associated documentation files (the "Software"),
8 * to deal in the Software without restriction, including without limitation
9 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10 * and/or sell copies of the Software, and to permit persons to whom the
11 * Software is furnished to do so, subject to the following conditions:
12 *
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
15 *
16 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
19 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22 * OTHER DEALINGS IN THE SOFTWARE.
23 *
24 * Authors: Dave Airlie
25 * Alex Deucher
26 * Jerome Glisse
27 */
28#include <linux/seq_file.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090029#include <linux/slab.h>
David Howells760285e2012-10-02 18:01:07 +010030#include <drm/drmP.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020031#include "radeon_reg.h"
32#include "radeon.h"
Daniel Vettere6990372010-03-11 21:19:17 +000033#include "radeon_asic.h"
Jerome Glisse9f022dd2009-09-11 15:35:22 +020034#include "atom.h"
Corbin Simpson62cdc0c2010-01-06 19:28:48 +010035#include "r100d.h"
Jerome Glisse905b6822009-09-09 22:24:20 +020036#include "r420d.h"
Alex Deucher804c7552010-01-08 15:58:49 -050037#include "r420_reg_safe.h"
38
Alex Deucherce8f5372010-05-07 15:10:16 -040039void r420_pm_init_profile(struct radeon_device *rdev)
40{
41 /* default */
42 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_ps_idx = rdev->pm.default_power_state_index;
43 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index;
44 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_off_cm_idx = 0;
45 rdev->pm.profiles[PM_PROFILE_DEFAULT_IDX].dpms_on_cm_idx = 0;
46 /* low sh */
47 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_ps_idx = 0;
Alex Deucherc9e75b22010-06-02 17:56:01 -040048 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_ps_idx = 0;
Alex Deucherce8f5372010-05-07 15:10:16 -040049 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_off_cm_idx = 0;
50 rdev->pm.profiles[PM_PROFILE_LOW_SH_IDX].dpms_on_cm_idx = 0;
Alex Deucherc9e75b22010-06-02 17:56:01 -040051 /* mid sh */
52 rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_ps_idx = 0;
53 rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_ps_idx = 1;
54 rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_off_cm_idx = 0;
55 rdev->pm.profiles[PM_PROFILE_MID_SH_IDX].dpms_on_cm_idx = 0;
Alex Deucherce8f5372010-05-07 15:10:16 -040056 /* high sh */
57 rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_off_ps_idx = 0;
58 rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index;
59 rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_off_cm_idx = 0;
60 rdev->pm.profiles[PM_PROFILE_HIGH_SH_IDX].dpms_on_cm_idx = 0;
61 /* low mh */
62 rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_off_ps_idx = 0;
63 rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index;
64 rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_off_cm_idx = 0;
65 rdev->pm.profiles[PM_PROFILE_LOW_MH_IDX].dpms_on_cm_idx = 0;
Alex Deucherc9e75b22010-06-02 17:56:01 -040066 /* mid mh */
67 rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_off_ps_idx = 0;
68 rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index;
69 rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_off_cm_idx = 0;
70 rdev->pm.profiles[PM_PROFILE_MID_MH_IDX].dpms_on_cm_idx = 0;
Alex Deucherce8f5372010-05-07 15:10:16 -040071 /* high mh */
72 rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_off_ps_idx = 0;
73 rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_on_ps_idx = rdev->pm.default_power_state_index;
74 rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_off_cm_idx = 0;
75 rdev->pm.profiles[PM_PROFILE_HIGH_MH_IDX].dpms_on_cm_idx = 0;
76}
77
Alex Deucher804c7552010-01-08 15:58:49 -050078static void r420_set_reg_safe(struct radeon_device *rdev)
79{
80 rdev->config.r300.reg_safe_bm = r420_reg_safe_bm;
81 rdev->config.r300.reg_safe_bm_size = ARRAY_SIZE(r420_reg_safe_bm);
82}
Jerome Glisse771fe6b2009-06-05 14:42:42 +020083
Jerome Glisse771fe6b2009-06-05 14:42:42 +020084void r420_pipes_init(struct radeon_device *rdev)
85{
86 unsigned tmp;
87 unsigned gb_pipe_select;
88 unsigned num_pipes;
89
90 /* GA_ENHANCE workaround TCL deadlock issue */
Alex Deucher4612dc92010-02-05 01:58:28 -050091 WREG32(R300_GA_ENHANCE, R300_GA_DEADLOCK_CNTL | R300_GA_FASTSYNC_CNTL |
92 (1 << 2) | (1 << 3));
Dave Airlie18a4cd2e2009-09-21 14:15:10 +100093 /* add idle wait as per freedesktop.org bug 24041 */
94 if (r100_gui_wait_for_idle(rdev)) {
Joe Perches7ca85292017-02-28 04:55:52 -080095 pr_warn("Failed to wait GUI idle while programming pipes. Bad things might happen.\n");
Dave Airlie18a4cd2e2009-09-21 14:15:10 +100096 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +020097 /* get max number of pipes */
Alex Deucherd75ee3b2011-01-24 23:24:59 -050098 gb_pipe_select = RREG32(R400_GB_PIPE_SELECT);
Jerome Glisse771fe6b2009-06-05 14:42:42 +020099 num_pipes = ((gb_pipe_select >> 12) & 3) + 1;
Tormod Volden94f7bf62010-04-22 16:57:32 -0400100
101 /* SE chips have 1 pipe */
102 if ((rdev->pdev->device == 0x5e4c) ||
103 (rdev->pdev->device == 0x5e4f))
104 num_pipes = 1;
105
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200106 rdev->num_gb_pipes = num_pipes;
107 tmp = 0;
108 switch (num_pipes) {
109 default:
110 /* force to 1 pipe */
111 num_pipes = 1;
112 case 1:
113 tmp = (0 << 1);
114 break;
115 case 2:
116 tmp = (3 << 1);
117 break;
118 case 3:
119 tmp = (6 << 1);
120 break;
121 case 4:
122 tmp = (7 << 1);
123 break;
124 }
Alex Deucher4612dc92010-02-05 01:58:28 -0500125 WREG32(R500_SU_REG_DEST, (1 << num_pipes) - 1);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200126 /* Sub pixel 1/12 so we can have 4K rendering according to doc */
Alex Deucher4612dc92010-02-05 01:58:28 -0500127 tmp |= R300_TILE_SIZE_16 | R300_ENABLE_TILING;
128 WREG32(R300_GB_TILE_CONFIG, tmp);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200129 if (r100_gui_wait_for_idle(rdev)) {
Joe Perches7ca85292017-02-28 04:55:52 -0800130 pr_warn("Failed to wait GUI idle while programming pipes. Bad things might happen.\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200131 }
132
Alex Deucher4612dc92010-02-05 01:58:28 -0500133 tmp = RREG32(R300_DST_PIPE_CONFIG);
134 WREG32(R300_DST_PIPE_CONFIG, tmp | R300_PIPE_AUTO_CONFIG);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200135
136 WREG32(R300_RB2D_DSTCACHE_MODE,
137 RREG32(R300_RB2D_DSTCACHE_MODE) |
138 R300_DC_AUTOFLUSH_ENABLE |
139 R300_DC_DC_DISABLE_IGNORE_PE);
140
141 if (r100_gui_wait_for_idle(rdev)) {
Joe Perches7ca85292017-02-28 04:55:52 -0800142 pr_warn("Failed to wait GUI idle while programming pipes. Bad things might happen.\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200143 }
Alex Deucherf779b3e2009-08-19 19:11:39 -0400144
145 if (rdev->family == CHIP_RV530) {
146 tmp = RREG32(RV530_GB_PIPE_SELECT2);
147 if ((tmp & 3) == 3)
148 rdev->num_z_pipes = 2;
149 else
150 rdev->num_z_pipes = 1;
151 } else
152 rdev->num_z_pipes = 1;
153
154 DRM_INFO("radeon: %d quad pipes, %d z pipes initialized.\n",
155 rdev->num_gb_pipes, rdev->num_z_pipes);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200156}
157
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200158u32 r420_mc_rreg(struct radeon_device *rdev, u32 reg)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200159{
Alex Deucher0a5b7b02013-09-03 19:00:09 -0400160 unsigned long flags;
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200161 u32 r;
162
Alex Deucher0a5b7b02013-09-03 19:00:09 -0400163 spin_lock_irqsave(&rdev->mc_idx_lock, flags);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200164 WREG32(R_0001F8_MC_IND_INDEX, S_0001F8_MC_IND_ADDR(reg));
165 r = RREG32(R_0001FC_MC_IND_DATA);
Alex Deucher0a5b7b02013-09-03 19:00:09 -0400166 spin_unlock_irqrestore(&rdev->mc_idx_lock, flags);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200167 return r;
168}
169
170void r420_mc_wreg(struct radeon_device *rdev, u32 reg, u32 v)
171{
Alex Deucher0a5b7b02013-09-03 19:00:09 -0400172 unsigned long flags;
173
174 spin_lock_irqsave(&rdev->mc_idx_lock, flags);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200175 WREG32(R_0001F8_MC_IND_INDEX, S_0001F8_MC_IND_ADDR(reg) |
176 S_0001F8_MC_IND_WR_EN(1));
177 WREG32(R_0001FC_MC_IND_DATA, v);
Alex Deucher0a5b7b02013-09-03 19:00:09 -0400178 spin_unlock_irqrestore(&rdev->mc_idx_lock, flags);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200179}
180
181static void r420_debugfs(struct radeon_device *rdev)
182{
183 if (r100_debugfs_rbbm_init(rdev)) {
184 DRM_ERROR("Failed to register debugfs file for RBBM !\n");
185 }
186 if (r420_debugfs_pipes_info_init(rdev)) {
187 DRM_ERROR("Failed to register debugfs file for pipes !\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200188 }
189}
190
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200191static void r420_clock_resume(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200192{
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200193 u32 sclk_cntl;
Jerome Glisseca6ffc62009-10-01 10:20:52 +0200194
195 if (radeon_dynclks != -1 && radeon_dynclks)
196 radeon_atom_set_clock_gating(rdev, 1);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200197 sclk_cntl = RREG32_PLL(R_00000D_SCLK_CNTL);
198 sclk_cntl |= S_00000D_FORCE_CP(1) | S_00000D_FORCE_VIP(1);
199 if (rdev->family == CHIP_R420)
200 sclk_cntl |= S_00000D_FORCE_PX(1) | S_00000D_FORCE_TX(1);
201 WREG32_PLL(R_00000D_SCLK_CNTL, sclk_cntl);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200202}
203
Corbin Simpson62cdc0c2010-01-06 19:28:48 +0100204static void r420_cp_errata_init(struct radeon_device *rdev)
205{
Christian Könige32eb502011-10-23 12:56:27 +0200206 struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
Christian König7b1f2482011-09-23 15:11:23 +0200207
Corbin Simpson62cdc0c2010-01-06 19:28:48 +0100208 /* RV410 and R420 can lock up if CP DMA to host memory happens
209 * while the 2D engine is busy.
210 *
211 * The proper workaround is to queue a RESYNC at the beginning
212 * of the CP init, apparently.
213 */
214 radeon_scratch_get(rdev, &rdev->config.r300.resync_scratch);
Christian Könige32eb502011-10-23 12:56:27 +0200215 radeon_ring_lock(rdev, ring, 8);
216 radeon_ring_write(ring, PACKET0(R300_CP_RESYNC_ADDR, 1));
217 radeon_ring_write(ring, rdev->config.r300.resync_scratch);
218 radeon_ring_write(ring, 0xDEADBEEF);
Michel Dänzer1538a9e2014-08-18 17:34:55 +0900219 radeon_ring_unlock_commit(rdev, ring, false);
Corbin Simpson62cdc0c2010-01-06 19:28:48 +0100220}
221
222static void r420_cp_errata_fini(struct radeon_device *rdev)
223{
Christian Könige32eb502011-10-23 12:56:27 +0200224 struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
Christian König7b1f2482011-09-23 15:11:23 +0200225
Corbin Simpson62cdc0c2010-01-06 19:28:48 +0100226 /* Catch the RESYNC we dispatched all the way back,
227 * at the very beginning of the CP init.
228 */
Christian Könige32eb502011-10-23 12:56:27 +0200229 radeon_ring_lock(rdev, ring, 8);
230 radeon_ring_write(ring, PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0));
231 radeon_ring_write(ring, R300_RB3D_DC_FINISH);
Michel Dänzer1538a9e2014-08-18 17:34:55 +0900232 radeon_ring_unlock_commit(rdev, ring, false);
Corbin Simpson62cdc0c2010-01-06 19:28:48 +0100233 radeon_scratch_free(rdev, rdev->config.r300.resync_scratch);
234}
235
Dave Airliefc30b8e2009-09-18 15:19:37 +1000236static int r420_startup(struct radeon_device *rdev)
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200237{
238 int r;
239
Alex Deucher92cde002009-12-04 10:55:12 -0500240 /* set common regs */
241 r100_set_common_regs(rdev);
242 /* program mc */
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200243 r300_mc_program(rdev);
Jerome Glisseca6ffc62009-10-01 10:20:52 +0200244 /* Resume clock */
245 r420_clock_resume(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200246 /* Initialize GART (initialize after TTM so we can allocate
247 * memory through TTM but finalize after TTM) */
Jerome Glisse4aac0472009-09-14 18:29:49 +0200248 if (rdev->flags & RADEON_IS_PCIE) {
249 r = rv370_pcie_gart_enable(rdev);
250 if (r)
251 return r;
252 }
253 if (rdev->flags & RADEON_IS_PCI) {
254 r = r100_pci_gart_enable(rdev);
255 if (r)
256 return r;
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200257 }
258 r420_pipes_init(rdev);
Alex Deucher724c80e2010-08-27 18:25:25 -0400259
260 /* allocate wb buffer */
261 r = radeon_wb_init(rdev);
262 if (r)
263 return r;
264
Jerome Glisse30eb77f2011-11-20 20:45:34 +0000265 r = radeon_fence_driver_start_ring(rdev, RADEON_RING_TYPE_GFX_INDEX);
266 if (r) {
267 dev_err(rdev->dev, "failed initializing CP fences (%d).\n", r);
268 return r;
269 }
270
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200271 /* Enable IRQ */
Adis Hamziće49f3952013-06-02 16:47:54 +0200272 if (!rdev->irq.installed) {
273 r = radeon_irq_kms_init(rdev);
274 if (r)
275 return r;
276 }
277
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200278 r100_irq_set(rdev);
Jerome Glissecafe6602010-01-07 12:39:21 +0100279 rdev->config.r300.hdp_cntl = RREG32(RADEON_HOST_PATH_CNTL);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200280 /* 1M ring buffer */
281 r = r100_cp_init(rdev, 1024 * 1024);
282 if (r) {
Paul Bolleec4f2ac2011-01-28 23:32:04 +0100283 dev_err(rdev->dev, "failed initializing CP (%d).\n", r);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200284 return r;
285 }
Corbin Simpson62cdc0c2010-01-06 19:28:48 +0100286 r420_cp_errata_init(rdev);
Jerome Glisseb15ba512011-11-15 11:48:34 -0500287
Christian König2898c342012-07-05 11:55:34 +0200288 r = radeon_ib_pool_init(rdev);
289 if (r) {
290 dev_err(rdev->dev, "IB initialization failed (%d).\n", r);
Jerome Glisseb15ba512011-11-15 11:48:34 -0500291 return r;
Christian König2898c342012-07-05 11:55:34 +0200292 }
Jerome Glisseb15ba512011-11-15 11:48:34 -0500293
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200294 return 0;
295}
296
Dave Airliefc30b8e2009-09-18 15:19:37 +1000297int r420_resume(struct radeon_device *rdev)
298{
Jerome Glisse6b7746e2012-02-20 17:57:20 -0500299 int r;
300
Dave Airliefc30b8e2009-09-18 15:19:37 +1000301 /* Make sur GART are not working */
302 if (rdev->flags & RADEON_IS_PCIE)
303 rv370_pcie_gart_disable(rdev);
304 if (rdev->flags & RADEON_IS_PCI)
305 r100_pci_gart_disable(rdev);
306 /* Resume clock before doing reset */
307 r420_clock_resume(rdev);
308 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
Jerome Glissea2d07b72010-03-09 14:45:11 +0000309 if (radeon_asic_reset(rdev)) {
Dave Airliefc30b8e2009-09-18 15:19:37 +1000310 dev_warn(rdev->dev, "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
311 RREG32(R_000E40_RBBM_STATUS),
312 RREG32(R_0007C0_CP_STAT));
313 }
314 /* check if cards are posted or not */
315 if (rdev->is_atom_bios) {
316 atom_asic_init(rdev->mode_info.atom_context);
317 } else {
318 radeon_combios_asic_init(rdev->ddev);
319 }
320 /* Resume clock after posting */
321 r420_clock_resume(rdev);
Dave Airlie550e2d92009-12-09 14:15:38 +1000322 /* Initialize surface registers */
323 radeon_surface_init(rdev);
Jerome Glisseb15ba512011-11-15 11:48:34 -0500324
325 rdev->accel_working = true;
Jerome Glisse6b7746e2012-02-20 17:57:20 -0500326 r = r420_startup(rdev);
327 if (r) {
328 rdev->accel_working = false;
329 }
330 return r;
Dave Airliefc30b8e2009-09-18 15:19:37 +1000331}
332
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200333int r420_suspend(struct radeon_device *rdev)
334{
Alex Deucher6c7bcce2013-12-18 14:07:14 -0500335 radeon_pm_suspend(rdev);
Corbin Simpson62cdc0c2010-01-06 19:28:48 +0100336 r420_cp_errata_fini(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200337 r100_cp_disable(rdev);
Alex Deucher724c80e2010-08-27 18:25:25 -0400338 radeon_wb_disable(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200339 r100_irq_disable(rdev);
Jerome Glisse4aac0472009-09-14 18:29:49 +0200340 if (rdev->flags & RADEON_IS_PCIE)
341 rv370_pcie_gart_disable(rdev);
342 if (rdev->flags & RADEON_IS_PCI)
343 r100_pci_gart_disable(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200344 return 0;
345}
346
347void r420_fini(struct radeon_device *rdev)
348{
Alex Deucher6c7bcce2013-12-18 14:07:14 -0500349 radeon_pm_fini(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200350 r100_cp_fini(rdev);
Alex Deucher724c80e2010-08-27 18:25:25 -0400351 radeon_wb_fini(rdev);
Christian König2898c342012-07-05 11:55:34 +0200352 radeon_ib_pool_fini(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200353 radeon_gem_fini(rdev);
Jerome Glisse4aac0472009-09-14 18:29:49 +0200354 if (rdev->flags & RADEON_IS_PCIE)
355 rv370_pcie_gart_fini(rdev);
356 if (rdev->flags & RADEON_IS_PCI)
357 r100_pci_gart_fini(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200358 radeon_agp_fini(rdev);
359 radeon_irq_kms_fini(rdev);
360 radeon_fence_driver_fini(rdev);
Jerome Glisse4c788672009-11-20 14:29:23 +0100361 radeon_bo_fini(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200362 if (rdev->is_atom_bios) {
363 radeon_atombios_fini(rdev);
364 } else {
365 radeon_combios_fini(rdev);
366 }
367 kfree(rdev->bios);
368 rdev->bios = NULL;
369}
370
371int r420_init(struct radeon_device *rdev)
372{
373 int r;
374
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200375 /* Initialize scratch registers */
376 radeon_scratch_init(rdev);
377 /* Initialize surface registers */
378 radeon_surface_init(rdev);
379 /* TODO: disable VGA need to use VGA request */
Dave Airlie4c712e62010-07-15 12:13:50 +1000380 /* restore some register to sane defaults */
381 r100_restore_sanity(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200382 /* BIOS*/
383 if (!radeon_get_bios(rdev)) {
384 if (ASIC_IS_AVIVO(rdev))
385 return -EINVAL;
386 }
387 if (rdev->is_atom_bios) {
388 r = radeon_atombios_init(rdev);
389 if (r) {
390 return r;
391 }
392 } else {
393 r = radeon_combios_init(rdev);
394 if (r) {
395 return r;
396 }
397 }
398 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
Jerome Glissea2d07b72010-03-09 14:45:11 +0000399 if (radeon_asic_reset(rdev)) {
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200400 dev_warn(rdev->dev,
401 "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
402 RREG32(R_000E40_RBBM_STATUS),
403 RREG32(R_0007C0_CP_STAT));
404 }
405 /* check if cards are posted or not */
Dave Airlie72542d72009-12-01 14:06:31 +1000406 if (radeon_boot_test_post_card(rdev) == false)
407 return -EINVAL;
408
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200409 /* Initialize clocks */
410 radeon_get_clock_info(rdev->ddev);
Jerome Glissed594e462010-02-17 21:54:29 +0000411 /* initialize AGP */
412 if (rdev->flags & RADEON_IS_AGP) {
413 r = radeon_agp_init(rdev);
414 if (r) {
415 radeon_agp_disable(rdev);
416 }
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200417 }
Jerome Glissed594e462010-02-17 21:54:29 +0000418 /* initialize memory controller */
419 r300_mc_init(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200420 r420_debugfs(rdev);
421 /* Fence driver */
Jerome Glisse30eb77f2011-11-20 20:45:34 +0000422 r = radeon_fence_driver_init(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200423 if (r) {
424 return r;
425 }
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200426 /* Memory manager */
Jerome Glisse4c788672009-11-20 14:29:23 +0100427 r = radeon_bo_init(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200428 if (r) {
429 return r;
430 }
Dave Airlie17e15b02009-11-05 15:36:53 +1000431 if (rdev->family == CHIP_R420)
432 r100_enable_bm(rdev);
433
Jerome Glisse4aac0472009-09-14 18:29:49 +0200434 if (rdev->flags & RADEON_IS_PCIE) {
435 r = rv370_pcie_gart_init(rdev);
436 if (r)
437 return r;
438 }
439 if (rdev->flags & RADEON_IS_PCI) {
440 r = r100_pci_gart_init(rdev);
441 if (r)
442 return r;
443 }
Alex Deucher804c7552010-01-08 15:58:49 -0500444 r420_set_reg_safe(rdev);
Jerome Glisseb15ba512011-11-15 11:48:34 -0500445
Alex Deucher6c7bcce2013-12-18 14:07:14 -0500446 /* Initialize power management */
447 radeon_pm_init(rdev);
448
Jerome Glisse733289c2009-09-16 15:24:21 +0200449 rdev->accel_working = true;
Dave Airliefc30b8e2009-09-18 15:19:37 +1000450 r = r420_startup(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200451 if (r) {
452 /* Somethings want wront with the accel init stop accel */
453 dev_err(rdev->dev, "Disabling GPU acceleration\n");
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200454 r100_cp_fini(rdev);
Alex Deucher724c80e2010-08-27 18:25:25 -0400455 radeon_wb_fini(rdev);
Christian König2898c342012-07-05 11:55:34 +0200456 radeon_ib_pool_fini(rdev);
Jerome Glisse655efd32010-02-02 11:51:45 +0100457 radeon_irq_kms_fini(rdev);
Jerome Glisse4aac0472009-09-14 18:29:49 +0200458 if (rdev->flags & RADEON_IS_PCIE)
459 rv370_pcie_gart_fini(rdev);
460 if (rdev->flags & RADEON_IS_PCI)
461 r100_pci_gart_fini(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200462 radeon_agp_fini(rdev);
Jerome Glisse733289c2009-09-16 15:24:21 +0200463 rdev->accel_working = false;
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200464 }
465 return 0;
466}
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200467
468/*
469 * Debugfs info
470 */
471#if defined(CONFIG_DEBUG_FS)
472static int r420_debugfs_pipes_info(struct seq_file *m, void *data)
473{
474 struct drm_info_node *node = (struct drm_info_node *) m->private;
475 struct drm_device *dev = node->minor->dev;
476 struct radeon_device *rdev = dev->dev_private;
477 uint32_t tmp;
478
479 tmp = RREG32(R400_GB_PIPE_SELECT);
480 seq_printf(m, "GB_PIPE_SELECT 0x%08x\n", tmp);
481 tmp = RREG32(R300_GB_TILE_CONFIG);
482 seq_printf(m, "GB_TILE_CONFIG 0x%08x\n", tmp);
483 tmp = RREG32(R300_DST_PIPE_CONFIG);
484 seq_printf(m, "DST_PIPE_CONFIG 0x%08x\n", tmp);
485 return 0;
486}
487
488static struct drm_info_list r420_pipes_info_list[] = {
489 {"r420_pipes_info", r420_debugfs_pipes_info, 0, NULL},
490};
491#endif
492
493int r420_debugfs_pipes_info_init(struct radeon_device *rdev)
494{
495#if defined(CONFIG_DEBUG_FS)
496 return radeon_debugfs_add_files(rdev, r420_pipes_info_list, 1);
497#else
498 return 0;
499#endif
500}