Subversion Repositories Kolibri OS

Rev

Rev 1403 | Rev 1412 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
1179 serge 1
/*
2
 * Copyright 2008 Advanced Micro Devices, Inc.
3
 * Copyright 2008 Red Hat Inc.
4
 * Copyright 2009 Jerome Glisse.
5
 *
6
 * Permission is hereby granted, free of charge, to any person obtaining a
7
 * copy of this software and associated documentation files (the "Software"),
8
 * to deal in the Software without restriction, including without limitation
9
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
10
 * and/or sell copies of the Software, and to permit persons to whom the
11
 * Software is furnished to do so, subject to the following conditions:
12
 *
13
 * The above copyright notice and this permission notice shall be included in
14
 * all copies or substantial portions of the Software.
15
 *
16
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
17
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
18
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
19
 * THE COPYRIGHT HOLDER(S) OR AUTHOR(S) BE LIABLE FOR ANY CLAIM, DAMAGES OR
20
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
21
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR
22
 * OTHER DEALINGS IN THE SOFTWARE.
23
 *
24
 * Authors: Dave Airlie
25
 *          Alex Deucher
26
 *          Jerome Glisse
27
 */
28
#include 
29
#include "drmP.h"
30
#include "radeon_reg.h"
31
#include "radeon.h"
32
#include "atom.h"
1403 serge 33
#include "r100d.h"
1179 serge 34
#include "r420d.h"
1403 serge 35
#include "r420_reg_safe.h"
1179 serge 36
 
1403 serge 37
static void r420_set_reg_safe(struct radeon_device *rdev)
38
{
39
	rdev->config.r300.reg_safe_bm = r420_reg_safe_bm;
40
	rdev->config.r300.reg_safe_bm_size = ARRAY_SIZE(r420_reg_safe_bm);
41
}
42
 
1179 serge 43
int r420_mc_init(struct radeon_device *rdev)
44
{
45
	int r;
46
 
47
	/* Setup GPU memory space */
48
	rdev->mc.vram_location = 0xFFFFFFFFUL;
49
	rdev->mc.gtt_location = 0xFFFFFFFFUL;
1221 serge 50
	if (rdev->flags & RADEON_IS_AGP) {
51
		r = radeon_agp_init(rdev);
52
		if (r) {
1403 serge 53
			radeon_agp_disable(rdev);
1221 serge 54
		} else {
55
			rdev->mc.gtt_location = rdev->mc.agp_base;
56
		}
57
	}
1179 serge 58
	r = radeon_mc_setup(rdev);
59
	if (r) {
60
		return r;
61
	}
62
	return 0;
63
}
64
 
65
void r420_pipes_init(struct radeon_device *rdev)
66
{
67
	unsigned tmp;
68
	unsigned gb_pipe_select;
69
	unsigned num_pipes;
70
 
71
	/* GA_ENHANCE workaround TCL deadlock issue */
72
	WREG32(0x4274, (1 << 0) | (1 << 1) | (1 << 2) | (1 << 3));
73
	/* add idle wait as per freedesktop.org bug 24041 */
74
	if (r100_gui_wait_for_idle(rdev)) {
75
		printk(KERN_WARNING "Failed to wait GUI idle while "
76
		       "programming pipes. Bad things might happen.\n");
77
	}
78
	/* get max number of pipes */
79
	gb_pipe_select = RREG32(0x402C);
80
	num_pipes = ((gb_pipe_select >> 12) & 3) + 1;
81
	rdev->num_gb_pipes = num_pipes;
82
	tmp = 0;
83
	switch (num_pipes) {
84
	default:
85
		/* force to 1 pipe */
86
		num_pipes = 1;
87
	case 1:
88
		tmp = (0 << 1);
89
		break;
90
	case 2:
91
		tmp = (3 << 1);
92
		break;
93
	case 3:
94
		tmp = (6 << 1);
95
		break;
96
	case 4:
97
		tmp = (7 << 1);
98
		break;
99
	}
100
	WREG32(0x42C8, (1 << num_pipes) - 1);
101
	/* Sub pixel 1/12 so we can have 4K rendering according to doc */
102
	tmp |= (1 << 4) | (1 << 0);
103
	WREG32(0x4018, tmp);
104
	if (r100_gui_wait_for_idle(rdev)) {
105
		printk(KERN_WARNING "Failed to wait GUI idle while "
106
		       "programming pipes. Bad things might happen.\n");
107
	}
108
 
109
	tmp = RREG32(0x170C);
110
	WREG32(0x170C, tmp | (1 << 31));
111
 
112
	WREG32(R300_RB2D_DSTCACHE_MODE,
113
	       RREG32(R300_RB2D_DSTCACHE_MODE) |
114
	       R300_DC_AUTOFLUSH_ENABLE |
115
	       R300_DC_DC_DISABLE_IGNORE_PE);
116
 
117
	if (r100_gui_wait_for_idle(rdev)) {
118
		printk(KERN_WARNING "Failed to wait GUI idle while "
119
		       "programming pipes. Bad things might happen.\n");
120
	}
121
 
122
	if (rdev->family == CHIP_RV530) {
123
		tmp = RREG32(RV530_GB_PIPE_SELECT2);
124
		if ((tmp & 3) == 3)
125
			rdev->num_z_pipes = 2;
126
		else
127
			rdev->num_z_pipes = 1;
128
	} else
129
		rdev->num_z_pipes = 1;
130
 
131
	DRM_INFO("radeon: %d quad pipes, %d z pipes initialized.\n",
132
		 rdev->num_gb_pipes, rdev->num_z_pipes);
133
}
134
 
135
u32 r420_mc_rreg(struct radeon_device *rdev, u32 reg)
136
{
137
	u32 r;
138
 
139
	WREG32(R_0001F8_MC_IND_INDEX, S_0001F8_MC_IND_ADDR(reg));
140
	r = RREG32(R_0001FC_MC_IND_DATA);
141
	return r;
142
}
143
 
144
void r420_mc_wreg(struct radeon_device *rdev, u32 reg, u32 v)
145
{
146
	WREG32(R_0001F8_MC_IND_INDEX, S_0001F8_MC_IND_ADDR(reg) |
147
		S_0001F8_MC_IND_WR_EN(1));
148
	WREG32(R_0001FC_MC_IND_DATA, v);
149
}
150
 
151
static void r420_debugfs(struct radeon_device *rdev)
152
{
153
	if (r100_debugfs_rbbm_init(rdev)) {
154
		DRM_ERROR("Failed to register debugfs file for RBBM !\n");
155
	}
156
	if (r420_debugfs_pipes_info_init(rdev)) {
157
		DRM_ERROR("Failed to register debugfs file for pipes !\n");
158
	}
159
}
160
 
161
static void r420_clock_resume(struct radeon_device *rdev)
162
{
163
	u32 sclk_cntl;
1221 serge 164
 
165
	if (radeon_dynclks != -1 && radeon_dynclks)
166
		radeon_atom_set_clock_gating(rdev, 1);
1179 serge 167
	sclk_cntl = RREG32_PLL(R_00000D_SCLK_CNTL);
168
	sclk_cntl |= S_00000D_FORCE_CP(1) | S_00000D_FORCE_VIP(1);
169
	if (rdev->family == CHIP_R420)
170
		sclk_cntl |= S_00000D_FORCE_PX(1) | S_00000D_FORCE_TX(1);
171
	WREG32_PLL(R_00000D_SCLK_CNTL, sclk_cntl);
172
}
173
 
1403 serge 174
static void r420_cp_errata_init(struct radeon_device *rdev)
175
{
176
	/* RV410 and R420 can lock up if CP DMA to host memory happens
177
	 * while the 2D engine is busy.
178
	 *
179
	 * The proper workaround is to queue a RESYNC at the beginning
180
	 * of the CP init, apparently.
181
	 */
182
	radeon_scratch_get(rdev, &rdev->config.r300.resync_scratch);
183
	radeon_ring_lock(rdev, 8);
184
	radeon_ring_write(rdev, PACKET0(R300_CP_RESYNC_ADDR, 1));
185
	radeon_ring_write(rdev, rdev->config.r300.resync_scratch);
186
	radeon_ring_write(rdev, 0xDEADBEEF);
187
	radeon_ring_unlock_commit(rdev);
188
}
189
 
190
static void r420_cp_errata_fini(struct radeon_device *rdev)
191
{
192
	/* Catch the RESYNC we dispatched all the way back,
193
	 * at the very beginning of the CP init.
194
	 */
195
	radeon_ring_lock(rdev, 8);
196
	radeon_ring_write(rdev, PACKET0(R300_RB3D_DSTCACHE_CTLSTAT, 0));
197
	radeon_ring_write(rdev, R300_RB3D_DC_FINISH);
198
	radeon_ring_unlock_commit(rdev);
199
	radeon_scratch_free(rdev, rdev->config.r300.resync_scratch);
200
}
201
 
1179 serge 202
static int r420_startup(struct radeon_device *rdev)
203
{
204
	int r;
205
 
1321 serge 206
	/* set common regs */
207
	r100_set_common_regs(rdev);
208
	/* program mc */
1179 serge 209
	r300_mc_program(rdev);
1221 serge 210
	/* Resume clock */
211
	r420_clock_resume(rdev);
1179 serge 212
	/* Initialize GART (initialize after TTM so we can allocate
213
	 * memory through TTM but finalize after TTM) */
214
	if (rdev->flags & RADEON_IS_PCIE) {
215
		r = rv370_pcie_gart_enable(rdev);
216
		if (r)
217
			return r;
218
	}
219
	if (rdev->flags & RADEON_IS_PCI) {
220
		r = r100_pci_gart_enable(rdev);
221
		if (r)
222
			return r;
223
	}
224
	r420_pipes_init(rdev);
225
	/* Enable IRQ */
226
//	r100_irq_set(rdev);
1403 serge 227
	rdev->config.r300.hdp_cntl = RREG32(RADEON_HOST_PATH_CNTL);
1179 serge 228
	/* 1M ring buffer */
1221 serge 229
//	r = r100_cp_init(rdev, 1024 * 1024);
230
//	if (r) {
231
//		dev_err(rdev->dev, "failled initializing CP (%d).\n", r);
232
//		return r;
233
//	}
1179 serge 234
//	r = r100_wb_init(rdev);
235
//	if (r) {
236
//		dev_err(rdev->dev, "failled initializing WB (%d).\n", r);
237
//	}
238
//	r = r100_ib_init(rdev);
239
//	if (r) {
240
//		dev_err(rdev->dev, "failled initializing IB (%d).\n", r);
241
//		return r;
242
//	}
243
	return 0;
244
}
245
 
246
int r420_resume(struct radeon_device *rdev)
247
{
248
	/* Make sur GART are not working */
249
	if (rdev->flags & RADEON_IS_PCIE)
250
		rv370_pcie_gart_disable(rdev);
251
	if (rdev->flags & RADEON_IS_PCI)
252
		r100_pci_gart_disable(rdev);
253
	/* Resume clock before doing reset */
254
	r420_clock_resume(rdev);
255
	/* Reset gpu before posting otherwise ATOM will enter infinite loop */
256
	if (radeon_gpu_reset(rdev)) {
257
		dev_warn(rdev->dev, "GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
258
			RREG32(R_000E40_RBBM_STATUS),
259
			RREG32(R_0007C0_CP_STAT));
260
	}
261
	/* check if cards are posted or not */
262
	if (rdev->is_atom_bios) {
263
		atom_asic_init(rdev->mode_info.atom_context);
264
	} else {
265
		radeon_combios_asic_init(rdev->ddev);
266
	}
267
	/* Resume clock after posting */
268
	r420_clock_resume(rdev);
1321 serge 269
	/* Initialize surface registers */
270
	radeon_surface_init(rdev);
1179 serge 271
	return r420_startup(rdev);
272
}
273
 
274
 
275
 
276
int r420_init(struct radeon_device *rdev)
277
{
278
	int r;
279
 
280
	/* Initialize scratch registers */
281
	radeon_scratch_init(rdev);
282
	/* Initialize surface registers */
283
	radeon_surface_init(rdev);
284
	/* TODO: disable VGA need to use VGA request */
285
	/* BIOS*/
286
	if (!radeon_get_bios(rdev)) {
287
		if (ASIC_IS_AVIVO(rdev))
288
			return -EINVAL;
289
	}
290
	if (rdev->is_atom_bios) {
291
		r = radeon_atombios_init(rdev);
292
		if (r) {
293
			return r;
294
		}
295
	} else {
296
		r = radeon_combios_init(rdev);
297
		if (r) {
298
			return r;
299
		}
300
	}
301
	/* Reset gpu before posting otherwise ATOM will enter infinite loop */
302
	if (radeon_gpu_reset(rdev)) {
303
		dev_warn(rdev->dev,
304
			"GPU reset failed ! (0xE40=0x%08X, 0x7C0=0x%08X)\n",
305
			RREG32(R_000E40_RBBM_STATUS),
306
			RREG32(R_0007C0_CP_STAT));
307
	}
308
	/* check if cards are posted or not */
1321 serge 309
	if (radeon_boot_test_post_card(rdev) == false)
310
		return -EINVAL;
311
 
1179 serge 312
	/* Initialize clocks */
313
	radeon_get_clock_info(rdev->ddev);
1268 serge 314
	/* Initialize power management */
315
	radeon_pm_init(rdev);
1179 serge 316
	/* Get vram informations */
317
	r300_vram_info(rdev);
318
	/* Initialize memory controller (also test AGP) */
319
	r = r420_mc_init(rdev);
320
	if (r) {
321
		return r;
322
	}
323
	r420_debugfs(rdev);
324
	/* Fence driver */
325
//	r = radeon_fence_driver_init(rdev);
326
//	if (r) {
327
//		return r;
328
//	}
329
//	r = radeon_irq_kms_init(rdev);
330
//	if (r) {
331
//		return r;
332
//	}
333
	/* Memory manager */
1321 serge 334
	r = radeon_bo_init(rdev);
1179 serge 335
	if (r) {
336
		return r;
337
	}
1321 serge 338
	if (rdev->family == CHIP_R420)
339
		r100_enable_bm(rdev);
340
 
1179 serge 341
	if (rdev->flags & RADEON_IS_PCIE) {
342
		r = rv370_pcie_gart_init(rdev);
343
		if (r)
344
			return r;
345
	}
346
	if (rdev->flags & RADEON_IS_PCI) {
347
		r = r100_pci_gart_init(rdev);
348
		if (r)
349
			return r;
350
	}
1404 serge 351
	r420_set_reg_safe(rdev);
1179 serge 352
	rdev->accel_working = true;
353
	r = r420_startup(rdev);
354
	if (r) {
355
		/* Somethings want wront with the accel init stop accel */
356
		dev_err(rdev->dev, "Disabling GPU acceleration\n");
1221 serge 357
//       r420_suspend(rdev);
1179 serge 358
//		r100_cp_fini(rdev);
359
//		r100_wb_fini(rdev);
360
//		r100_ib_fini(rdev);
361
		if (rdev->flags & RADEON_IS_PCIE)
362
			rv370_pcie_gart_fini(rdev);
363
		if (rdev->flags & RADEON_IS_PCI)
364
			r100_pci_gart_fini(rdev);
365
//		radeon_agp_fini(rdev);
366
		rdev->accel_working = false;
367
	}
368
	return 0;
369
}
370
 
371
/*
372
 * Debugfs info
373
 */
374
#if defined(CONFIG_DEBUG_FS)
375
static int r420_debugfs_pipes_info(struct seq_file *m, void *data)
376
{
377
	struct drm_info_node *node = (struct drm_info_node *) m->private;
378
	struct drm_device *dev = node->minor->dev;
379
	struct radeon_device *rdev = dev->dev_private;
380
	uint32_t tmp;
381
 
382
	tmp = RREG32(R400_GB_PIPE_SELECT);
383
	seq_printf(m, "GB_PIPE_SELECT 0x%08x\n", tmp);
384
	tmp = RREG32(R300_GB_TILE_CONFIG);
385
	seq_printf(m, "GB_TILE_CONFIG 0x%08x\n", tmp);
386
	tmp = RREG32(R300_DST_PIPE_CONFIG);
387
	seq_printf(m, "DST_PIPE_CONFIG 0x%08x\n", tmp);
388
	return 0;
389
}
390
 
391
static struct drm_info_list r420_pipes_info_list[] = {
392
	{"r420_pipes_info", r420_debugfs_pipes_info, 0, NULL},
393
};
394
#endif
395
 
396
int r420_debugfs_pipes_info_init(struct radeon_device *rdev)
397
{
398
#if defined(CONFIG_DEBUG_FS)
399
	return radeon_debugfs_add_files(rdev, r420_pipes_info_list, 1);
400
#else
401
	return 0;
402
#endif
403
}