blob: 90e8883494ada1c7ad751727400857fe1cd71067 [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/console.h>
29#include <drm/drmP.h>
30#include <drm/drm_crtc_helper.h>
31#include <drm/radeon_drm.h>
Dave Airlie28d52042009-09-21 14:33:58 +100032#include <linux/vgaarb.h>
Dave Airlie6a9ee8a2010-02-01 15:38:10 +100033#include <linux/vga_switcheroo.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020034#include "radeon_reg.h"
35#include "radeon.h"
Jerome Glisse771fe6b2009-06-05 14:42:42 +020036#include "atom.h"
37
38/*
Michel Dänzerb1e3a6d2009-06-23 16:12:54 +020039 * Clear GPU surface registers.
40 */
Jerome Glisse3ce0a232009-09-08 10:10:24 +100041void radeon_surface_init(struct radeon_device *rdev)
Michel Dänzerb1e3a6d2009-06-23 16:12:54 +020042{
43 /* FIXME: check this out */
44 if (rdev->family < CHIP_R600) {
45 int i;
46
Dave Airlie550e2d92009-12-09 14:15:38 +100047 for (i = 0; i < RADEON_GEM_MAX_SURFACES; i++) {
48 if (rdev->surface_regs[i].bo)
49 radeon_bo_get_surface_reg(rdev->surface_regs[i].bo);
50 else
51 radeon_clear_surface_reg(rdev, i);
Michel Dänzerb1e3a6d2009-06-23 16:12:54 +020052 }
Dave Airliee024e112009-06-24 09:48:08 +100053 /* enable surfaces */
54 WREG32(RADEON_SURFACE_CNTL, 0);
Michel Dänzerb1e3a6d2009-06-23 16:12:54 +020055 }
56}
57
58/*
Jerome Glisse771fe6b2009-06-05 14:42:42 +020059 * GPU scratch registers helpers function.
60 */
Jerome Glisse3ce0a232009-09-08 10:10:24 +100061void radeon_scratch_init(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +020062{
63 int i;
64
65 /* FIXME: check this out */
66 if (rdev->family < CHIP_R300) {
67 rdev->scratch.num_reg = 5;
68 } else {
69 rdev->scratch.num_reg = 7;
70 }
71 for (i = 0; i < rdev->scratch.num_reg; i++) {
72 rdev->scratch.free[i] = true;
73 rdev->scratch.reg[i] = RADEON_SCRATCH_REG0 + (i * 4);
74 }
75}
76
77int radeon_scratch_get(struct radeon_device *rdev, uint32_t *reg)
78{
79 int i;
80
81 for (i = 0; i < rdev->scratch.num_reg; i++) {
82 if (rdev->scratch.free[i]) {
83 rdev->scratch.free[i] = false;
84 *reg = rdev->scratch.reg[i];
85 return 0;
86 }
87 }
88 return -EINVAL;
89}
90
91void radeon_scratch_free(struct radeon_device *rdev, uint32_t reg)
92{
93 int i;
94
95 for (i = 0; i < rdev->scratch.num_reg; i++) {
96 if (rdev->scratch.reg[i] == reg) {
97 rdev->scratch.free[i] = true;
98 return;
99 }
100 }
101}
102
Jerome Glissed594e462010-02-17 21:54:29 +0000103/**
104 * radeon_vram_location - try to find VRAM location
105 * @rdev: radeon device structure holding all necessary informations
106 * @mc: memory controller structure holding memory informations
107 * @base: base address at which to put VRAM
108 *
109 * Function will place try to place VRAM at base address provided
110 * as parameter (which is so far either PCI aperture address or
111 * for IGP TOM base address).
112 *
113 * If there is not enough space to fit the unvisible VRAM in the 32bits
114 * address space then we limit the VRAM size to the aperture.
115 *
116 * If we are using AGP and if the AGP aperture doesn't allow us to have
117 * room for all the VRAM than we restrict the VRAM to the PCI aperture
118 * size and print a warning.
119 *
120 * This function will never fails, worst case are limiting VRAM.
121 *
122 * Note: GTT start, end, size should be initialized before calling this
123 * function on AGP platform.
124 *
125 * Note: We don't explictly enforce VRAM start to be aligned on VRAM size,
126 * this shouldn't be a problem as we are using the PCI aperture as a reference.
127 * Otherwise this would be needed for rv280, all r3xx, and all r4xx, but
128 * not IGP.
129 *
130 * Note: we use mc_vram_size as on some board we need to program the mc to
131 * cover the whole aperture even if VRAM size is inferior to aperture size
132 * Novell bug 204882 + along with lots of ubuntu ones
133 *
134 * Note: when limiting vram it's safe to overwritte real_vram_size because
135 * we are not in case where real_vram_size is inferior to mc_vram_size (ie
136 * note afected by bogus hw of Novell bug 204882 + along with lots of ubuntu
137 * ones)
138 *
139 * Note: IGP TOM addr should be the same as the aperture addr, we don't
140 * explicitly check for that thought.
141 *
142 * FIXME: when reducing VRAM size align new size on power of 2.
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200143 */
Jerome Glissed594e462010-02-17 21:54:29 +0000144void radeon_vram_location(struct radeon_device *rdev, struct radeon_mc *mc, u64 base)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200145{
Jerome Glissed594e462010-02-17 21:54:29 +0000146 mc->vram_start = base;
147 if (mc->mc_vram_size > (0xFFFFFFFF - base + 1)) {
148 dev_warn(rdev->dev, "limiting VRAM to PCI aperture size\n");
149 mc->real_vram_size = mc->aper_size;
150 mc->mc_vram_size = mc->aper_size;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200151 }
Jerome Glissed594e462010-02-17 21:54:29 +0000152 mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
153 if (rdev->flags & RADEON_IS_AGP && mc->vram_end > mc->gtt_start && mc->vram_end <= mc->gtt_end) {
154 dev_warn(rdev->dev, "limiting VRAM to PCI aperture size\n");
155 mc->real_vram_size = mc->aper_size;
156 mc->mc_vram_size = mc->aper_size;
157 }
158 mc->vram_end = mc->vram_start + mc->mc_vram_size - 1;
159 dev_info(rdev->dev, "VRAM: %lluM 0x%08llX - 0x%08llX (%lluM used)\n",
160 mc->mc_vram_size >> 20, mc->vram_start,
161 mc->vram_end, mc->real_vram_size >> 20);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200162}
163
Jerome Glissed594e462010-02-17 21:54:29 +0000164/**
165 * radeon_gtt_location - try to find GTT location
166 * @rdev: radeon device structure holding all necessary informations
167 * @mc: memory controller structure holding memory informations
168 *
169 * Function will place try to place GTT before or after VRAM.
170 *
171 * If GTT size is bigger than space left then we ajust GTT size.
172 * Thus function will never fails.
173 *
174 * FIXME: when reducing GTT size align new size on power of 2.
175 */
176void radeon_gtt_location(struct radeon_device *rdev, struct radeon_mc *mc)
177{
178 u64 size_af, size_bf;
179
180 size_af = 0xFFFFFFFF - mc->vram_end;
181 size_bf = mc->vram_start;
182 if (size_bf > size_af) {
183 if (mc->gtt_size > size_bf) {
184 dev_warn(rdev->dev, "limiting GTT\n");
185 mc->gtt_size = size_bf;
186 }
187 mc->gtt_start = mc->vram_start - mc->gtt_size;
188 } else {
189 if (mc->gtt_size > size_af) {
190 dev_warn(rdev->dev, "limiting GTT\n");
191 mc->gtt_size = size_af;
192 }
193 mc->gtt_start = mc->vram_end + 1;
194 }
195 mc->gtt_end = mc->gtt_start + mc->gtt_size - 1;
196 dev_info(rdev->dev, "GTT: %lluM 0x%08llX - 0x%08llX\n",
197 mc->gtt_size >> 20, mc->gtt_start, mc->gtt_end);
198}
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200199
200/*
201 * GPU helpers function.
202 */
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200203bool radeon_card_posted(struct radeon_device *rdev)
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200204{
205 uint32_t reg;
206
207 /* first check CRTCs */
Alex Deucherbcc1c2a2010-01-12 17:54:34 -0500208 if (ASIC_IS_DCE4(rdev)) {
209 reg = RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC0_REGISTER_OFFSET) |
210 RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC1_REGISTER_OFFSET) |
211 RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC2_REGISTER_OFFSET) |
212 RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC3_REGISTER_OFFSET) |
213 RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC4_REGISTER_OFFSET) |
214 RREG32(EVERGREEN_CRTC_CONTROL + EVERGREEN_CRTC5_REGISTER_OFFSET);
215 if (reg & EVERGREEN_CRTC_MASTER_EN)
216 return true;
217 } else if (ASIC_IS_AVIVO(rdev)) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200218 reg = RREG32(AVIVO_D1CRTC_CONTROL) |
219 RREG32(AVIVO_D2CRTC_CONTROL);
220 if (reg & AVIVO_CRTC_EN) {
221 return true;
222 }
223 } else {
224 reg = RREG32(RADEON_CRTC_GEN_CNTL) |
225 RREG32(RADEON_CRTC2_GEN_CNTL);
226 if (reg & RADEON_CRTC_EN) {
227 return true;
228 }
229 }
230
231 /* then check MEM_SIZE, in case the crtcs are off */
232 if (rdev->family >= CHIP_R600)
233 reg = RREG32(R600_CONFIG_MEMSIZE);
234 else
235 reg = RREG32(RADEON_CONFIG_MEMSIZE);
236
237 if (reg)
238 return true;
239
240 return false;
241
242}
243
Alex Deucherf47299c2010-03-16 20:54:38 -0400244void radeon_update_bandwidth_info(struct radeon_device *rdev)
245{
246 fixed20_12 a;
247 u32 sclk, mclk;
248
249 if (rdev->flags & RADEON_IS_IGP) {
250 sclk = radeon_get_engine_clock(rdev);
251 mclk = rdev->clock.default_mclk;
252
253 a.full = rfixed_const(100);
254 rdev->pm.sclk.full = rfixed_const(sclk);
255 rdev->pm.sclk.full = rfixed_div(rdev->pm.sclk, a);
256 rdev->pm.mclk.full = rfixed_const(mclk);
257 rdev->pm.mclk.full = rfixed_div(rdev->pm.mclk, a);
258
259 a.full = rfixed_const(16);
260 /* core_bandwidth = sclk(Mhz) * 16 */
261 rdev->pm.core_bandwidth.full = rfixed_div(rdev->pm.sclk, a);
262 } else {
263 sclk = radeon_get_engine_clock(rdev);
264 mclk = radeon_get_memory_clock(rdev);
265
266 a.full = rfixed_const(100);
267 rdev->pm.sclk.full = rfixed_const(sclk);
268 rdev->pm.sclk.full = rfixed_div(rdev->pm.sclk, a);
269 rdev->pm.mclk.full = rfixed_const(mclk);
270 rdev->pm.mclk.full = rfixed_div(rdev->pm.mclk, a);
271 }
272}
273
Dave Airlie72542d72009-12-01 14:06:31 +1000274bool radeon_boot_test_post_card(struct radeon_device *rdev)
275{
276 if (radeon_card_posted(rdev))
277 return true;
278
279 if (rdev->bios) {
280 DRM_INFO("GPU not posted. posting now...\n");
281 if (rdev->is_atom_bios)
282 atom_asic_init(rdev->mode_info.atom_context);
283 else
284 radeon_combios_asic_init(rdev->ddev);
285 return true;
286 } else {
287 dev_err(rdev->dev, "Card not posted and no BIOS - ignoring\n");
288 return false;
289 }
290}
291
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000292int radeon_dummy_page_init(struct radeon_device *rdev)
293{
Dave Airlie82568562010-02-05 16:00:07 +1000294 if (rdev->dummy_page.page)
295 return 0;
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000296 rdev->dummy_page.page = alloc_page(GFP_DMA32 | GFP_KERNEL | __GFP_ZERO);
297 if (rdev->dummy_page.page == NULL)
298 return -ENOMEM;
299 rdev->dummy_page.addr = pci_map_page(rdev->pdev, rdev->dummy_page.page,
300 0, PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
301 if (!rdev->dummy_page.addr) {
302 __free_page(rdev->dummy_page.page);
303 rdev->dummy_page.page = NULL;
304 return -ENOMEM;
305 }
306 return 0;
307}
308
309void radeon_dummy_page_fini(struct radeon_device *rdev)
310{
311 if (rdev->dummy_page.page == NULL)
312 return;
313 pci_unmap_page(rdev->pdev, rdev->dummy_page.addr,
314 PAGE_SIZE, PCI_DMA_BIDIRECTIONAL);
315 __free_page(rdev->dummy_page.page);
316 rdev->dummy_page.page = NULL;
317}
318
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200319
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200320/* ATOM accessor methods */
321static uint32_t cail_pll_read(struct card_info *info, uint32_t reg)
322{
323 struct radeon_device *rdev = info->dev->dev_private;
324 uint32_t r;
325
326 r = rdev->pll_rreg(rdev, reg);
327 return r;
328}
329
330static void cail_pll_write(struct card_info *info, uint32_t reg, uint32_t val)
331{
332 struct radeon_device *rdev = info->dev->dev_private;
333
334 rdev->pll_wreg(rdev, reg, val);
335}
336
337static uint32_t cail_mc_read(struct card_info *info, uint32_t reg)
338{
339 struct radeon_device *rdev = info->dev->dev_private;
340 uint32_t r;
341
342 r = rdev->mc_rreg(rdev, reg);
343 return r;
344}
345
346static void cail_mc_write(struct card_info *info, uint32_t reg, uint32_t val)
347{
348 struct radeon_device *rdev = info->dev->dev_private;
349
350 rdev->mc_wreg(rdev, reg, val);
351}
352
353static void cail_reg_write(struct card_info *info, uint32_t reg, uint32_t val)
354{
355 struct radeon_device *rdev = info->dev->dev_private;
356
357 WREG32(reg*4, val);
358}
359
360static uint32_t cail_reg_read(struct card_info *info, uint32_t reg)
361{
362 struct radeon_device *rdev = info->dev->dev_private;
363 uint32_t r;
364
365 r = RREG32(reg*4);
366 return r;
367}
368
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200369int radeon_atombios_init(struct radeon_device *rdev)
370{
Mathias Fröhlich61c4b242009-10-27 15:08:01 -0400371 struct card_info *atom_card_info =
372 kzalloc(sizeof(struct card_info), GFP_KERNEL);
373
374 if (!atom_card_info)
375 return -ENOMEM;
376
377 rdev->mode_info.atom_card_info = atom_card_info;
378 atom_card_info->dev = rdev->ddev;
379 atom_card_info->reg_read = cail_reg_read;
380 atom_card_info->reg_write = cail_reg_write;
381 atom_card_info->mc_read = cail_mc_read;
382 atom_card_info->mc_write = cail_mc_write;
383 atom_card_info->pll_read = cail_pll_read;
384 atom_card_info->pll_write = cail_pll_write;
385
386 rdev->mode_info.atom_context = atom_parse(atom_card_info, rdev->bios);
Rafał Miłeckic31ad972009-12-17 00:00:46 +0100387 mutex_init(&rdev->mode_info.atom_context->mutex);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200388 radeon_atom_initialize_bios_scratch_regs(rdev->ddev);
Dave Airlied904ef92009-11-17 06:29:46 +1000389 atom_allocate_fb_scratch(rdev->mode_info.atom_context);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200390 return 0;
391}
392
393void radeon_atombios_fini(struct radeon_device *rdev)
394{
Jerome Glisse4a04a842009-12-09 17:39:16 +0100395 if (rdev->mode_info.atom_context) {
396 kfree(rdev->mode_info.atom_context->scratch);
397 kfree(rdev->mode_info.atom_context);
398 }
Mathias Fröhlich61c4b242009-10-27 15:08:01 -0400399 kfree(rdev->mode_info.atom_card_info);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200400}
401
402int radeon_combios_init(struct radeon_device *rdev)
403{
404 radeon_combios_initialize_bios_scratch_regs(rdev->ddev);
405 return 0;
406}
407
408void radeon_combios_fini(struct radeon_device *rdev)
409{
410}
411
Dave Airlie28d52042009-09-21 14:33:58 +1000412/* if we get transitioned to only one device, tak VGA back */
413static unsigned int radeon_vga_set_decode(void *cookie, bool state)
414{
415 struct radeon_device *rdev = cookie;
Dave Airlie28d52042009-09-21 14:33:58 +1000416 radeon_vga_set_state(rdev, state);
417 if (state)
418 return VGA_RSRC_LEGACY_IO | VGA_RSRC_LEGACY_MEM |
419 VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
420 else
421 return VGA_RSRC_NORMAL_IO | VGA_RSRC_NORMAL_MEM;
422}
Dave Airliec1176d62009-10-08 14:03:05 +1000423
Jerome Glisse36421332009-12-11 21:18:34 +0100424void radeon_check_arguments(struct radeon_device *rdev)
425{
426 /* vramlimit must be a power of two */
427 switch (radeon_vram_limit) {
428 case 0:
429 case 4:
430 case 8:
431 case 16:
432 case 32:
433 case 64:
434 case 128:
435 case 256:
436 case 512:
437 case 1024:
438 case 2048:
439 case 4096:
440 break;
441 default:
442 dev_warn(rdev->dev, "vram limit (%d) must be a power of 2\n",
443 radeon_vram_limit);
444 radeon_vram_limit = 0;
445 break;
446 }
447 radeon_vram_limit = radeon_vram_limit << 20;
448 /* gtt size must be power of two and greater or equal to 32M */
449 switch (radeon_gart_size) {
450 case 4:
451 case 8:
452 case 16:
453 dev_warn(rdev->dev, "gart size (%d) too small forcing to 512M\n",
454 radeon_gart_size);
455 radeon_gart_size = 512;
456 break;
457 case 32:
458 case 64:
459 case 128:
460 case 256:
461 case 512:
462 case 1024:
463 case 2048:
464 case 4096:
465 break;
466 default:
467 dev_warn(rdev->dev, "gart size (%d) must be a power of 2\n",
468 radeon_gart_size);
469 radeon_gart_size = 512;
470 break;
471 }
472 rdev->mc.gtt_size = radeon_gart_size * 1024 * 1024;
473 /* AGP mode can only be -1, 1, 2, 4, 8 */
474 switch (radeon_agpmode) {
475 case -1:
476 case 0:
477 case 1:
478 case 2:
479 case 4:
480 case 8:
481 break;
482 default:
483 dev_warn(rdev->dev, "invalid AGP mode %d (valid mode: "
484 "-1, 0, 1, 2, 4, 8)\n", radeon_agpmode);
485 radeon_agpmode = 0;
486 break;
487 }
488}
489
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000490static void radeon_switcheroo_set_state(struct pci_dev *pdev, enum vga_switcheroo_state state)
491{
492 struct drm_device *dev = pci_get_drvdata(pdev);
493 struct radeon_device *rdev = dev->dev_private;
494 pm_message_t pmm = { .event = PM_EVENT_SUSPEND };
495 if (state == VGA_SWITCHEROO_ON) {
496 printk(KERN_INFO "radeon: switched on\n");
497 /* don't suspend or resume card normally */
498 rdev->powered_down = false;
499 radeon_resume_kms(dev);
500 } else {
501 printk(KERN_INFO "radeon: switched off\n");
502 radeon_suspend_kms(dev, pmm);
503 /* don't suspend or resume card normally */
504 rdev->powered_down = true;
505 }
506}
507
508static bool radeon_switcheroo_can_switch(struct pci_dev *pdev)
509{
510 struct drm_device *dev = pci_get_drvdata(pdev);
511 bool can_switch;
512
513 spin_lock(&dev->count_lock);
514 can_switch = (dev->open_count == 0);
515 spin_unlock(&dev->count_lock);
516 return can_switch;
517}
518
519
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200520int radeon_device_init(struct radeon_device *rdev,
521 struct drm_device *ddev,
522 struct pci_dev *pdev,
523 uint32_t flags)
524{
Jerome Glisse6cf8a3f2009-09-10 21:46:48 +0200525 int r;
Dave Airliead49f502009-07-10 22:36:26 +1000526 int dma_bits;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200527
528 DRM_INFO("radeon: Initializing kernel modesetting.\n");
529 rdev->shutdown = false;
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200530 rdev->dev = &pdev->dev;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200531 rdev->ddev = ddev;
532 rdev->pdev = pdev;
533 rdev->flags = flags;
534 rdev->family = flags & RADEON_FAMILY_MASK;
535 rdev->is_atom_bios = false;
536 rdev->usec_timeout = RADEON_MAX_USEC_TIMEOUT;
537 rdev->mc.gtt_size = radeon_gart_size * 1024 * 1024;
538 rdev->gpu_lockup = false;
Jerome Glisse733289c2009-09-16 15:24:21 +0200539 rdev->accel_working = false;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200540 /* mutex initialization are all done here so we
541 * can recall function without having locking issues */
542 mutex_init(&rdev->cs_mutex);
543 mutex_init(&rdev->ib_pool.mutex);
544 mutex_init(&rdev->cp.mutex);
Alex Deucher40bacf12009-12-23 03:23:21 -0500545 mutex_init(&rdev->dc_hw_i2c_mutex);
Alex Deucherd8f60cf2009-12-01 13:43:46 -0500546 if (rdev->family >= CHIP_R600)
547 spin_lock_init(&rdev->ih.lock);
Jerome Glisse4c788672009-11-20 14:29:23 +0100548 mutex_init(&rdev->gem.mutex);
Rafał Miłeckic913e232009-12-22 23:02:16 +0100549 mutex_init(&rdev->pm.mutex);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200550 rwlock_init(&rdev->fence_drv.lock);
Jerome Glisse9f022dd2009-09-11 15:35:22 +0200551 INIT_LIST_HEAD(&rdev->gem.objects);
Rafał Miłecki73a6d3f2010-01-08 00:22:47 +0100552 init_waitqueue_head(&rdev->irq.vblank_queue);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200553
Alex Deucherd4877cf2009-12-04 16:56:37 -0500554 /* setup workqueue */
555 rdev->wq = create_workqueue("radeon");
556 if (rdev->wq == NULL)
557 return -ENOMEM;
558
Jerome Glisse4aac0472009-09-14 18:29:49 +0200559 /* Set asic functions */
560 r = radeon_asic_init(rdev);
Jerome Glisse36421332009-12-11 21:18:34 +0100561 if (r)
Jerome Glisse4aac0472009-09-14 18:29:49 +0200562 return r;
Jerome Glisse36421332009-12-11 21:18:34 +0100563 radeon_check_arguments(rdev);
Jerome Glisse4aac0472009-09-14 18:29:49 +0200564
Alex Deucherf95df9c2010-03-21 14:02:25 -0400565 /* all of the newer IGP chips have an internal gart
566 * However some rs4xx report as AGP, so remove that here.
567 */
568 if ((rdev->family >= CHIP_RS400) &&
569 (rdev->flags & RADEON_IS_IGP)) {
570 rdev->flags &= ~RADEON_IS_AGP;
571 }
572
Jerome Glisse30256a32009-11-30 17:47:59 +0100573 if (rdev->flags & RADEON_IS_AGP && radeon_agpmode == -1) {
Jerome Glisseb574f252009-10-06 19:04:29 +0200574 radeon_agp_disable(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200575 }
576
Dave Airliead49f502009-07-10 22:36:26 +1000577 /* set DMA mask + need_dma32 flags.
578 * PCIE - can handle 40-bits.
579 * IGP - can handle 40-bits (in theory)
580 * AGP - generally dma32 is safest
581 * PCI - only dma32
582 */
583 rdev->need_dma32 = false;
584 if (rdev->flags & RADEON_IS_AGP)
585 rdev->need_dma32 = true;
586 if (rdev->flags & RADEON_IS_PCI)
587 rdev->need_dma32 = true;
588
589 dma_bits = rdev->need_dma32 ? 32 : 40;
590 r = pci_set_dma_mask(rdev->pdev, DMA_BIT_MASK(dma_bits));
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200591 if (r) {
592 printk(KERN_WARNING "radeon: No suitable DMA available.\n");
593 }
594
595 /* Registers mapping */
596 /* TODO: block userspace mapping of io register */
597 rdev->rmmio_base = drm_get_resource_start(rdev->ddev, 2);
598 rdev->rmmio_size = drm_get_resource_len(rdev->ddev, 2);
599 rdev->rmmio = ioremap(rdev->rmmio_base, rdev->rmmio_size);
600 if (rdev->rmmio == NULL) {
601 return -ENOMEM;
602 }
603 DRM_INFO("register mmio base: 0x%08X\n", (uint32_t)rdev->rmmio_base);
604 DRM_INFO("register mmio size: %u\n", (unsigned)rdev->rmmio_size);
605
Dave Airlie28d52042009-09-21 14:33:58 +1000606 /* if we have > 1 VGA cards, then disable the radeon VGA resources */
Dave Airlie93239ea2009-10-28 11:09:58 +1000607 /* this will fail for cards that aren't VGA class devices, just
608 * ignore it */
609 vga_client_register(rdev->pdev, rdev, NULL, radeon_vga_set_decode);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000610 vga_switcheroo_register_client(rdev->pdev,
611 radeon_switcheroo_set_state,
612 radeon_switcheroo_can_switch);
Dave Airlie28d52042009-09-21 14:33:58 +1000613
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000614 r = radeon_init(rdev);
Jerome Glisseb574f252009-10-06 19:04:29 +0200615 if (r)
Jerome Glisse3ce0a232009-09-08 10:10:24 +1000616 return r;
Michel Dänzerb1e3a6d2009-06-23 16:12:54 +0200617
Jerome Glisseb574f252009-10-06 19:04:29 +0200618 if (rdev->flags & RADEON_IS_AGP && !rdev->accel_working) {
619 /* Acceleration not working on AGP card try again
620 * with fallback to PCI or PCIE GART
621 */
Jerome Glisse1a029b72009-10-06 19:04:30 +0200622 radeon_gpu_reset(rdev);
Jerome Glisseb574f252009-10-06 19:04:29 +0200623 radeon_fini(rdev);
624 radeon_agp_disable(rdev);
625 r = radeon_init(rdev);
Jerome Glisse4aac0472009-09-14 18:29:49 +0200626 if (r)
627 return r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200628 }
Michel Dänzerecc0b322009-07-21 11:23:57 +0200629 if (radeon_testing) {
630 radeon_test_moves(rdev);
631 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200632 if (radeon_benchmarking) {
633 radeon_benchmark(rdev);
634 }
Jerome Glisse6cf8a3f2009-09-10 21:46:48 +0200635 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200636}
637
638void radeon_device_fini(struct radeon_device *rdev)
639{
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200640 DRM_INFO("radeon: finishing device.\n");
641 rdev->shutdown = true;
Jerome Glisse62a8ea32009-10-01 18:02:11 +0200642 radeon_fini(rdev);
Alex Deucherd4877cf2009-12-04 16:56:37 -0500643 destroy_workqueue(rdev->wq);
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000644 vga_switcheroo_unregister_client(rdev->pdev);
Dave Airliec1176d62009-10-08 14:03:05 +1000645 vga_client_register(rdev->pdev, NULL, NULL, NULL);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200646 iounmap(rdev->rmmio);
647 rdev->rmmio = NULL;
648}
649
650
651/*
652 * Suspend & resume.
653 */
654int radeon_suspend_kms(struct drm_device *dev, pm_message_t state)
655{
Darren Jenkins875c1862009-12-30 12:18:30 +1100656 struct radeon_device *rdev;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200657 struct drm_crtc *crtc;
Jerome Glisse4c788672009-11-20 14:29:23 +0100658 int r;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200659
Darren Jenkins875c1862009-12-30 12:18:30 +1100660 if (dev == NULL || dev->dev_private == NULL) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200661 return -ENODEV;
662 }
663 if (state.event == PM_EVENT_PRETHAW) {
664 return 0;
665 }
Darren Jenkins875c1862009-12-30 12:18:30 +1100666 rdev = dev->dev_private;
667
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000668 if (rdev->powered_down)
669 return 0;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200670 /* unpin the front buffers */
671 list_for_each_entry(crtc, &dev->mode_config.crtc_list, head) {
672 struct radeon_framebuffer *rfb = to_radeon_framebuffer(crtc->fb);
Jerome Glisse4c788672009-11-20 14:29:23 +0100673 struct radeon_bo *robj;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200674
675 if (rfb == NULL || rfb->obj == NULL) {
676 continue;
677 }
678 robj = rfb->obj->driver_private;
Dave Airlie38651672010-03-30 05:34:13 +0000679 /* don't unpin kernel fb objects */
680 if (!radeon_fbdev_robj_is_fb(rdev, robj)) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100681 r = radeon_bo_reserve(robj, false);
Dave Airlie38651672010-03-30 05:34:13 +0000682 if (r == 0) {
Jerome Glisse4c788672009-11-20 14:29:23 +0100683 radeon_bo_unpin(robj);
684 radeon_bo_unreserve(robj);
685 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200686 }
687 }
688 /* evict vram memory */
Jerome Glisse4c788672009-11-20 14:29:23 +0100689 radeon_bo_evict_vram(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200690 /* wait for gpu to finish processing current batch */
691 radeon_fence_wait_last(rdev);
692
Yang Zhaof657c2a2009-09-15 12:21:01 +1000693 radeon_save_bios_scratch_regs(rdev);
694
Jerome Glisse62a8ea32009-10-01 18:02:11 +0200695 radeon_suspend(rdev);
Alex Deucherd4877cf2009-12-04 16:56:37 -0500696 radeon_hpd_fini(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200697 /* evict remaining vram memory */
Jerome Glisse4c788672009-11-20 14:29:23 +0100698 radeon_bo_evict_vram(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200699
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200700 pci_save_state(dev->pdev);
701 if (state.event == PM_EVENT_SUSPEND) {
702 /* Shut down the device */
703 pci_disable_device(dev->pdev);
704 pci_set_power_state(dev->pdev, PCI_D3hot);
705 }
706 acquire_console_sem();
Dave Airlie38651672010-03-30 05:34:13 +0000707 radeon_fbdev_set_suspend(rdev, 1);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200708 release_console_sem();
709 return 0;
710}
711
712int radeon_resume_kms(struct drm_device *dev)
713{
714 struct radeon_device *rdev = dev->dev_private;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200715
Dave Airlie6a9ee8a2010-02-01 15:38:10 +1000716 if (rdev->powered_down)
717 return 0;
718
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200719 acquire_console_sem();
720 pci_set_power_state(dev->pdev, PCI_D0);
721 pci_restore_state(dev->pdev);
722 if (pci_enable_device(dev->pdev)) {
723 release_console_sem();
724 return -1;
725 }
726 pci_set_master(dev->pdev);
Dave Airlie0ebf1712009-11-05 15:39:10 +1000727 /* resume AGP if in use */
728 radeon_agp_resume(rdev);
Jerome Glisse62a8ea32009-10-01 18:02:11 +0200729 radeon_resume(rdev);
Yang Zhaof657c2a2009-09-15 12:21:01 +1000730 radeon_restore_bios_scratch_regs(rdev);
Dave Airlie38651672010-03-30 05:34:13 +0000731 radeon_fbdev_set_suspend(rdev, 0);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200732 release_console_sem();
733
Alex Deucherd4877cf2009-12-04 16:56:37 -0500734 /* reset hpd state */
735 radeon_hpd_init(rdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200736 /* blat the mode back in */
737 drm_helper_resume_force_mode(dev);
738 return 0;
739}
740
741
742/*
743 * Debugfs
744 */
745struct radeon_debugfs {
746 struct drm_info_list *files;
747 unsigned num_files;
748};
749static struct radeon_debugfs _radeon_debugfs[RADEON_DEBUGFS_MAX_NUM_FILES];
750static unsigned _radeon_debugfs_count = 0;
751
752int radeon_debugfs_add_files(struct radeon_device *rdev,
753 struct drm_info_list *files,
754 unsigned nfiles)
755{
756 unsigned i;
757
758 for (i = 0; i < _radeon_debugfs_count; i++) {
759 if (_radeon_debugfs[i].files == files) {
760 /* Already registered */
761 return 0;
762 }
763 }
764 if ((_radeon_debugfs_count + nfiles) > RADEON_DEBUGFS_MAX_NUM_FILES) {
765 DRM_ERROR("Reached maximum number of debugfs files.\n");
766 DRM_ERROR("Report so we increase RADEON_DEBUGFS_MAX_NUM_FILES.\n");
767 return -EINVAL;
768 }
769 _radeon_debugfs[_radeon_debugfs_count].files = files;
770 _radeon_debugfs[_radeon_debugfs_count].num_files = nfiles;
771 _radeon_debugfs_count++;
772#if defined(CONFIG_DEBUG_FS)
773 drm_debugfs_create_files(files, nfiles,
774 rdev->ddev->control->debugfs_root,
775 rdev->ddev->control);
776 drm_debugfs_create_files(files, nfiles,
777 rdev->ddev->primary->debugfs_root,
778 rdev->ddev->primary);
779#endif
780 return 0;
781}
782
783#if defined(CONFIG_DEBUG_FS)
784int radeon_debugfs_init(struct drm_minor *minor)
785{
786 return 0;
787}
788
789void radeon_debugfs_cleanup(struct drm_minor *minor)
790{
791 unsigned i;
792
793 for (i = 0; i < _radeon_debugfs_count; i++) {
794 drm_debugfs_remove_files(_radeon_debugfs[i].files,
795 _radeon_debugfs[i].num_files, minor);
796 }
797}
798#endif