blob: 17ecff1000e793a5037bdba63f6e1662431c2636 [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>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020030#include "drmP.h"
31#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)) {
95 printk(KERN_WARNING "Failed to wait GUI idle while "
96 "programming pipes. Bad things might happen.\n");
97 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +020098 /* get max number of pipes */
Alex Deucherd75ee3b2011-01-24 23:24:59 -050099 gb_pipe_select = RREG32(R400_GB_PIPE_SELECT);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200100 num_pipes = ((gb_pipe_select >> 12) & 3) + 1;
Tormod Volden94f7bf62010-04-22 16:57:32 -0400101
102 /* SE chips have 1 pipe */
103 if ((rdev->pdev->device == 0x5e4c) ||
104 (rdev->pdev->device == 0x5e4f))
105 num_pipes = 1;
106
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200107 rdev->num_gb_pipes = num_pipes;
108 tmp = 0;
109 switch (num_pipes) {
110 default:
111 /* force to 1 pipe */
112 num_pipes = 1;
113 case 1:
114 tmp = (0 << 1);
115 break;
116 case 2:
117 tmp = (3 << 1);
118 break;
119 case 3:
120 tmp = (6 << 1);
121 break;
122 case 4:
123 tmp = (7 << 1);
124 break;
125 }
Alex Deucher4612dc92010-02-05 01:58:28 -0500126 WREG32(R500_SU_REG_DEST, (1 << num_pipes) - 1);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200127 /* Sub pixel 1/12 so we can have 4K rendering according to doc */
Alex Deucher4612dc92010-02-05 01:58:28 -0500128 tmp |= R300_TILE_SIZE_16 | R300_ENABLE_TILING;
129 WREG32(R300_GB_TILE_CONFIG, tmp);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200130 if (r100_gui_wait_for_idle(rdev)) {
131 printk(KERN_WARNING "Failed to wait GUI idle while "
132 "programming pipes. Bad things might happen.\n");
133 }
134
Alex Deucher4612dc92010-02-05 01:58:28 -0500135 tmp = RREG32(R300_DST_PIPE_CONFIG);
136 WREG32(R300_DST_PIPE_CONFIG, tmp | R300_PIPE_AUTO_CONFIG);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200137
138 WREG32(R300_RB2D_DSTCACHE_MODE,
139 RREG32(R300_RB2D_DSTCACHE_MODE) |
140 R300_DC_AUTOFLUSH_ENABLE |
141 R300_DC_DC_DISABLE_IGNORE_PE);
142
143 if (r100_gui_wait_for_idle(rdev)) {
144 printk(KERN_WARNING "Failed to wait GUI idle while "
145 "programming pipes. Bad things might happen.\n");
146 }
Alex Deucherf779b3e2009-08-19 19:11:39 -0400147
148 if (rdev->family == CHIP_RV530) {
149 tmp = RREG32(RV530_GB_PIPE_SELECT2);
150 if ((tmp & 3) == 3)
151 rdev->num_z_pipes = 2;
152 else
153 rdev->num_z_pipes = 1;
154 } else
155 rdev->num_z_pipes = 1;
156
157 DRM_INFO("radeon: %d quad pipes, %d z pipes initialized.\n",
158 rdev->num_gb_pipes, rdev->num_z_pipes);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200159}
160
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200161u32 r420_mc_rreg(struct radeon_device *rdev, u32 reg)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200162{
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200163 u32 r;
164
165 WREG32(R_0001F8_MC_IND_INDEX, S_0001F8_MC_IND_ADDR(reg));
166 r = RREG32(R_0001FC_MC_IND_DATA);
167 return r;
168}
169
170void r420_mc_wreg(struct radeon_device *rdev, u32 reg, u32 v)
171{
172 WREG32(R_0001F8_MC_IND_INDEX, S_0001F8_MC_IND_ADDR(reg) |
173 S_0001F8_MC_IND_WR_EN(1));
174 WREG32(R_0001FC_MC_IND_DATA, v);
175}
176
177static void r420_debugfs(struct radeon_device *rdev)
178{
179 if (r100_debugfs_rbbm_init(rdev)) {
180 DRM_ERROR("Failed to register debugfs file for RBBM !\n");
181 }
182 if (r420_debugfs_pipes_info_init(rdev)) {
183 DRM_ERROR("Failed to register debugfs file for pipes !\n");
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200184 }
185}
186
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200187static void r420_clock_resume(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200188{
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200189 u32 sclk_cntl;
Jerome Glisseca6ffc62009-10-01 10:20:52 +0200190
191 if (radeon_dynclks != -1 && radeon_dynclks)
192 radeon_atom_set_clock_gating(rdev, 1);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200193 sclk_cntl = RREG32_PLL(R_00000D_SCLK_CNTL);
194 sclk_cntl |= S_00000D_FORCE_CP(1) | S_00000D_FORCE_VIP(1);
195 if (rdev->family == CHIP_R420)
196 sclk_cntl |= S_00000D_FORCE_PX(1) | S_00000D_FORCE_TX(1);
197 WREG32_PLL(R_00000D_SCLK_CNTL, sclk_cntl);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200198}
199
Corbin Simpson62cdc0c2010-01-06 19:28:48 +0100200static void r420_cp_errata_init(struct radeon_device *rdev)
201{
Christian Könige32eb502011-10-23 12:56:27 +0200202 struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
Christian König7b1f2482011-09-23 15:11:23 +0200203
Corbin Simpson62cdc0c2010-01-06 19:28:48 +0100204 /* RV410 and R420 can lock up if CP DMA to host memory happens
205 * while the 2D engine is busy.
206 *
207 * The proper workaround is to queue a RESYNC at the beginning
208 * of the CP init, apparently.
209 */
210 radeon_scratch_get(rdev, &rdev->config.r300.resync_scratch);
Christian Könige32eb502011-10-23 12:56:27 +0200211 radeon_ring_lock(rdev, ring, 8);
212 radeon_ring_write(ring, PACKET0(R300_CP_RESYNC_ADDR, 1));
213 radeon_ring_write(ring, rdev->config.r300.resync_scratch);
214 radeon_ring_write(ring, 0xDEADBEEF);
215 radeon_ring_unlock_commit(rdev, ring);
Corbin Simpson62cdc0c2010-01-06 19:28:48 +0100216}
217
218static void r420_cp_errata_fini(struct radeon_device *rdev)
219{
Christian Könige32eb502011-10-23 12:56:27 +0200220 struct radeon_ring *ring = &rdev->ring[RADEON_RING_TYPE_GFX_INDEX];
Christian König7b1f2482011-09-23 15:11:23 +0200221
Corbin Simpson62cdc0c2010-01-06 19:28:48 +0100222 /* Catch the RESYNC we dispatched all the way back,
223 * at the very beginning of the CP init.
224 */
Christian Könige32eb502011-10-23 12:56:27 +0200225 radeon_ring_lock(rdev, ring, 8);
226 radeon_ring_write(ring, PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0));
227 radeon_ring_write(ring, R300_RB3D_DC_FINISH);
228 radeon_ring_unlock_commit(rdev, ring);
Corbin Simpson62cdc0c2010-01-06 19:28:48 +0100229 radeon_scratch_free(rdev, rdev->config.r300.resync_scratch);
230}
231
Dave Airliefc30b8e2009-09-18 15:19:37 +1000232static int r420_startup(struct radeon_device *rdev)
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200233{
234 int r;
235
Alex Deucher92cde002009-12-04 10:55:12 -0500236 /* set common regs */
237 r100_set_common_regs(rdev);
238 /* program mc */
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200239 r300_mc_program(rdev);
Jerome Glisseca6ffc62009-10-01 10:20:52 +0200240 /* Resume clock */
241 r420_clock_resume(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200242 /* Initialize GART (initialize after TTM so we can allocate
243 * memory through TTM but finalize after TTM) */
Jerome Glisse4aac0472009-09-14 18:29:49 +0200244 if (rdev->flags & RADEON_IS_PCIE) {
245 r = rv370_pcie_gart_enable(rdev);
246 if (r)
247 return r;
248 }
249 if (rdev->flags & RADEON_IS_PCI) {
250 r = r100_pci_gart_enable(rdev);
251 if (r)
252 return r;
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200253 }
254 r420_pipes_init(rdev);
Alex Deucher724c80e2010-08-27 18:25:25 -0400255
256 /* allocate wb buffer */
257 r = radeon_wb_init(rdev);
258 if (r)
259 return r;
260
Jerome Glisse30eb77f2011-11-20 20:45:34 +0000261 r = radeon_fence_driver_start_ring(rdev, RADEON_RING_TYPE_GFX_INDEX);
262 if (r) {
263 dev_err(rdev->dev, "failed initializing CP fences (%d).\n", r);
264 return r;
265 }
266
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200267 /* Enable IRQ */
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200268 r100_irq_set(rdev);
Jerome Glissecafe6602010-01-07 12:39:21 +0100269 rdev->config.r300.hdp_cntl = RREG32(RADEON_HOST_PATH_CNTL);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200270 /* 1M ring buffer */
271 r = r100_cp_init(rdev, 1024 * 1024);
272 if (r) {
Paul Bolleec4f2ac2011-01-28 23:32:04 +0100273 dev_err(rdev->dev, "failed initializing CP (%d).\n", r);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200274 return r;
275 }
Corbin Simpson62cdc0c2010-01-06 19:28:48 +0100276 r420_cp_errata_init(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200277 r = r100_ib_init(rdev);
278 if (r) {
Paul Bolleec4f2ac2011-01-28 23:32:04 +0100279 dev_err(rdev->dev, "failed initializing IB (%d).\n", r);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200280 return r;
281 }
282 return 0;
283}
284
Dave Airliefc30b8e2009-09-18 15:19:37 +1000285int r420_resume(struct radeon_device *rdev)
286{
287 /* Make sur GART are not working */
288 if (rdev->flags & RADEON_IS_PCIE)
289 rv370_pcie_gart_disable(rdev);
290 if (rdev->flags & RADEON_IS_PCI)
291 r100_pci_gart_disable(rdev);
292 /* Resume clock before doing reset */
293 r420_clock_resume(rdev);
294 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
Jerome Glissea2d07b72010-03-09 14:45:11 +0000295 if (radeon_asic_reset(rdev)) {
Dave Airliefc30b8e2009-09-18 15:19:37 +1000296 dev_warn(rdev->dev, "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
297 RREG32(R_000E40_RBBM_STATUS),
298 RREG32(R_0007C0_CP_STAT));
299 }
300 /* check if cards are posted or not */
301 if (rdev->is_atom_bios) {
302 atom_asic_init(rdev->mode_info.atom_context);
303 } else {
304 radeon_combios_asic_init(rdev->ddev);
305 }
306 /* Resume clock after posting */
307 r420_clock_resume(rdev);
Dave Airlie550e2d92009-12-09 14:15:38 +1000308 /* Initialize surface registers */
309 radeon_surface_init(rdev);
Dave Airliefc30b8e2009-09-18 15:19:37 +1000310 return r420_startup(rdev);
311}
312
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200313int r420_suspend(struct radeon_device *rdev)
314{
Corbin Simpson62cdc0c2010-01-06 19:28:48 +0100315 r420_cp_errata_fini(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200316 r100_cp_disable(rdev);
Alex Deucher724c80e2010-08-27 18:25:25 -0400317 radeon_wb_disable(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200318 r100_irq_disable(rdev);
Jerome Glisse4aac0472009-09-14 18:29:49 +0200319 if (rdev->flags & RADEON_IS_PCIE)
320 rv370_pcie_gart_disable(rdev);
321 if (rdev->flags & RADEON_IS_PCI)
322 r100_pci_gart_disable(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200323 return 0;
324}
325
326void r420_fini(struct radeon_device *rdev)
327{
328 r100_cp_fini(rdev);
Alex Deucher724c80e2010-08-27 18:25:25 -0400329 radeon_wb_fini(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200330 r100_ib_fini(rdev);
331 radeon_gem_fini(rdev);
Jerome Glisse4aac0472009-09-14 18:29:49 +0200332 if (rdev->flags & RADEON_IS_PCIE)
333 rv370_pcie_gart_fini(rdev);
334 if (rdev->flags & RADEON_IS_PCI)
335 r100_pci_gart_fini(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200336 radeon_agp_fini(rdev);
337 radeon_irq_kms_fini(rdev);
338 radeon_fence_driver_fini(rdev);
Jerome Glisse4c788672009-11-20 14:29:23 +0100339 radeon_bo_fini(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200340 if (rdev->is_atom_bios) {
341 radeon_atombios_fini(rdev);
342 } else {
343 radeon_combios_fini(rdev);
344 }
345 kfree(rdev->bios);
346 rdev->bios = NULL;
347}
348
349int r420_init(struct radeon_device *rdev)
350{
351 int r;
352
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200353 /* Initialize scratch registers */
354 radeon_scratch_init(rdev);
355 /* Initialize surface registers */
356 radeon_surface_init(rdev);
357 /* TODO: disable VGA need to use VGA request */
Dave Airlie4c712e62010-07-15 12:13:50 +1000358 /* restore some register to sane defaults */
359 r100_restore_sanity(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200360 /* BIOS*/
361 if (!radeon_get_bios(rdev)) {
362 if (ASIC_IS_AVIVO(rdev))
363 return -EINVAL;
364 }
365 if (rdev->is_atom_bios) {
366 r = radeon_atombios_init(rdev);
367 if (r) {
368 return r;
369 }
370 } else {
371 r = radeon_combios_init(rdev);
372 if (r) {
373 return r;
374 }
375 }
376 /* Reset gpu before posting otherwise ATOM will enter infinite loop */
Jerome Glissea2d07b72010-03-09 14:45:11 +0000377 if (radeon_asic_reset(rdev)) {
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200378 dev_warn(rdev->dev,
379 "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
380 RREG32(R_000E40_RBBM_STATUS),
381 RREG32(R_0007C0_CP_STAT));
382 }
383 /* check if cards are posted or not */
Dave Airlie72542d72009-12-01 14:06:31 +1000384 if (radeon_boot_test_post_card(rdev) == false)
385 return -EINVAL;
386
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200387 /* Initialize clocks */
388 radeon_get_clock_info(rdev->ddev);
Jerome Glissed594e462010-02-17 21:54:29 +0000389 /* initialize AGP */
390 if (rdev->flags & RADEON_IS_AGP) {
391 r = radeon_agp_init(rdev);
392 if (r) {
393 radeon_agp_disable(rdev);
394 }
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200395 }
Jerome Glissed594e462010-02-17 21:54:29 +0000396 /* initialize memory controller */
397 r300_mc_init(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200398 r420_debugfs(rdev);
399 /* Fence driver */
Jerome Glisse30eb77f2011-11-20 20:45:34 +0000400 r = radeon_fence_driver_init(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200401 if (r) {
402 return r;
403 }
404 r = radeon_irq_kms_init(rdev);
405 if (r) {
406 return r;
407 }
408 /* Memory manager */
Jerome Glisse4c788672009-11-20 14:29:23 +0100409 r = radeon_bo_init(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200410 if (r) {
411 return r;
412 }
Dave Airlie17e15b02009-11-05 15:36:53 +1000413 if (rdev->family == CHIP_R420)
414 r100_enable_bm(rdev);
415
Jerome Glisse4aac0472009-09-14 18:29:49 +0200416 if (rdev->flags & RADEON_IS_PCIE) {
417 r = rv370_pcie_gart_init(rdev);
418 if (r)
419 return r;
420 }
421 if (rdev->flags & RADEON_IS_PCI) {
422 r = r100_pci_gart_init(rdev);
423 if (r)
424 return r;
425 }
Alex Deucher804c7552010-01-08 15:58:49 -0500426 r420_set_reg_safe(rdev);
Jerome Glisse733289c2009-09-16 15:24:21 +0200427 rdev->accel_working = true;
Dave Airliefc30b8e2009-09-18 15:19:37 +1000428 r = r420_startup(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200429 if (r) {
430 /* Somethings want wront with the accel init stop accel */
431 dev_err(rdev->dev, "Disabling GPU acceleration\n");
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200432 r100_cp_fini(rdev);
Alex Deucher724c80e2010-08-27 18:25:25 -0400433 radeon_wb_fini(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200434 r100_ib_fini(rdev);
Jerome Glisse655efd32010-02-02 11:51:45 +0100435 radeon_irq_kms_fini(rdev);
Jerome Glisse4aac0472009-09-14 18:29:49 +0200436 if (rdev->flags & RADEON_IS_PCIE)
437 rv370_pcie_gart_fini(rdev);
438 if (rdev->flags & RADEON_IS_PCI)
439 r100_pci_gart_fini(rdev);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200440 radeon_agp_fini(rdev);
Jerome Glisse733289c2009-09-16 15:24:21 +0200441 rdev->accel_working = false;
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200442 }
443 return 0;
444}
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200445
446/*
447 * Debugfs info
448 */
449#if defined(CONFIG_DEBUG_FS)
450static int r420_debugfs_pipes_info(struct seq_file *m, void *data)
451{
452 struct drm_info_node *node = (struct drm_info_node *) m->private;
453 struct drm_device *dev = node->minor->dev;
454 struct radeon_device *rdev = dev->dev_private;
455 uint32_t tmp;
456
457 tmp = RREG32(R400_GB_PIPE_SELECT);
458 seq_printf(m, "GB_PIPE_SELECT 0x%08x\n", tmp);
459 tmp = RREG32(R300_GB_TILE_CONFIG);
460 seq_printf(m, "GB_TILE_CONFIG 0x%08x\n", tmp);
461 tmp = RREG32(R300_DST_PIPE_CONFIG);
462 seq_printf(m, "DST_PIPE_CONFIG 0x%08x\n", tmp);
463 return 0;
464}
465
466static struct drm_info_list r420_pipes_info_list[] = {
467 {"r420_pipes_info", r420_debugfs_pipes_info, 0, NULL},
468};
469#endif
470
471int r420_debugfs_pipes_info_init(struct radeon_device *rdev)
472{
473#if defined(CONFIG_DEBUG_FS)
474 return radeon_debugfs_add_files(rdev, r420_pipes_info_list, 1);
475#else
476 return 0;
477#endif
478}