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 <drm/drmP.h>
29 #include <drm/drm_crtc_helper.h>
30 #include <drm/radeon_drm.h>
31 #include "radeon_reg.h"
32 #include "radeon.h"
33 #include "atom.h"
34
35 #include <linux/pm_runtime.h>
36
37 #define RADEON_WAIT_IDLE_TIMEOUT 200
38
39 /**
40 * radeon_driver_irq_handler_kms - irq handler for KMS
41 *
42 * @int irq, void *arg: args
43 *
44 * This is the irq handler for the radeon KMS driver (all asics).
45 * radeon_irq_process is a macro that points to the per-asic
46 * irq handler callback.
47 */
radeon_driver_irq_handler_kms(int irq,void * arg)48 irqreturn_t radeon_driver_irq_handler_kms(int irq, void *arg)
49 {
50 struct drm_device *dev = (struct drm_device *) arg;
51 struct radeon_device *rdev = dev->dev_private;
52 irqreturn_t ret;
53
54 ret = radeon_irq_process(rdev);
55 if (ret == IRQ_HANDLED)
56 pm_runtime_mark_last_busy(dev->dev);
57 return ret;
58 }
59
60 /*
61 * Handle hotplug events outside the interrupt handler proper.
62 */
63 /**
64 * radeon_hotplug_work_func - display hotplug work handler
65 *
66 * @work: work struct
67 *
68 * This is the hot plug event work handler (all asics).
69 * The work gets scheduled from the irq handler if there
70 * was a hot plug interrupt. It walks the connector table
71 * and calls the hotplug handler for each one, then sends
72 * a drm hotplug event to alert userspace.
73 */
radeon_hotplug_work_func(struct work_struct * work)74 static void radeon_hotplug_work_func(struct work_struct *work)
75 {
76 struct radeon_device *rdev = container_of(work, struct radeon_device,
77 hotplug_work);
78 struct drm_device *dev = rdev->ddev;
79 struct drm_mode_config *mode_config = &dev->mode_config;
80 struct drm_connector *connector;
81
82 /* we can race here at startup, some boards seem to trigger
83 * hotplug irqs when they shouldn't. */
84 if (!rdev->mode_info.mode_config_initialized)
85 return;
86
87 mutex_lock(&mode_config->mutex);
88 if (mode_config->num_connector) {
89 list_for_each_entry(connector, &mode_config->connector_list, head)
90 radeon_connector_hotplug(connector);
91 }
92 mutex_unlock(&mode_config->mutex);
93 /* Just fire off a uevent and let userspace tell us what to do */
94 drm_helper_hpd_irq_event(dev);
95 }
96
97 /**
98 * radeon_driver_irq_preinstall_kms - drm irq preinstall callback
99 *
100 * @dev: drm dev pointer
101 *
102 * Gets the hw ready to enable irqs (all asics).
103 * This function disables all interrupt sources on the GPU.
104 */
radeon_driver_irq_preinstall_kms(struct drm_device * dev)105 void radeon_driver_irq_preinstall_kms(struct drm_device *dev)
106 {
107 struct radeon_device *rdev = dev->dev_private;
108 unsigned long irqflags;
109 unsigned i;
110
111 spin_lock_irqsave(&rdev->irq.lock, irqflags);
112 /* Disable *all* interrupts */
113 for (i = 0; i < RADEON_NUM_RINGS; i++)
114 atomic_set(&rdev->irq.ring_int[i], 0);
115 rdev->irq.dpm_thermal = false;
116 for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
117 rdev->irq.hpd[i] = false;
118 for (i = 0; i < RADEON_MAX_CRTCS; i++) {
119 rdev->irq.crtc_vblank_int[i] = false;
120 atomic_set(&rdev->irq.pflip[i], 0);
121 rdev->irq.afmt[i] = false;
122 }
123 radeon_irq_set(rdev);
124 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
125 /* Clear bits */
126 radeon_irq_process(rdev);
127 }
128
129 /**
130 * radeon_driver_irq_postinstall_kms - drm irq preinstall callback
131 *
132 * @dev: drm dev pointer
133 *
134 * Handles stuff to be done after enabling irqs (all asics).
135 * Returns 0 on success.
136 */
radeon_driver_irq_postinstall_kms(struct drm_device * dev)137 int radeon_driver_irq_postinstall_kms(struct drm_device *dev)
138 {
139 dev->max_vblank_count = 0x001fffff;
140 return 0;
141 }
142
143 /**
144 * radeon_driver_irq_uninstall_kms - drm irq uninstall callback
145 *
146 * @dev: drm dev pointer
147 *
148 * This function disables all interrupt sources on the GPU (all asics).
149 */
radeon_driver_irq_uninstall_kms(struct drm_device * dev)150 void radeon_driver_irq_uninstall_kms(struct drm_device *dev)
151 {
152 struct radeon_device *rdev = dev->dev_private;
153 unsigned long irqflags;
154 unsigned i;
155
156 if (rdev == NULL) {
157 return;
158 }
159 spin_lock_irqsave(&rdev->irq.lock, irqflags);
160 /* Disable *all* interrupts */
161 for (i = 0; i < RADEON_NUM_RINGS; i++)
162 atomic_set(&rdev->irq.ring_int[i], 0);
163 rdev->irq.dpm_thermal = false;
164 for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
165 rdev->irq.hpd[i] = false;
166 for (i = 0; i < RADEON_MAX_CRTCS; i++) {
167 rdev->irq.crtc_vblank_int[i] = false;
168 atomic_set(&rdev->irq.pflip[i], 0);
169 rdev->irq.afmt[i] = false;
170 }
171 radeon_irq_set(rdev);
172 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
173 }
174
175 /**
176 * radeon_msi_ok - asic specific msi checks
177 *
178 * @rdev: radeon device pointer
179 *
180 * Handles asic specific MSI checks to determine if
181 * MSIs should be enabled on a particular chip (all asics).
182 * Returns true if MSIs should be enabled, false if MSIs
183 * should not be enabled.
184 */
radeon_msi_ok(struct radeon_device * rdev)185 static bool radeon_msi_ok(struct radeon_device *rdev)
186 {
187 /* RV370/RV380 was first asic with MSI support */
188 if (rdev->family < CHIP_RV380)
189 return false;
190
191 /* MSIs don't work on AGP */
192 if (rdev->flags & RADEON_IS_AGP)
193 return false;
194
195 /*
196 * Older chips have a HW limitation, they can only generate 40 bits
197 * of address for "64-bit" MSIs which breaks on some platforms, notably
198 * IBM POWER servers, so we limit them
199 */
200 if (rdev->family < CHIP_BONAIRE) {
201 dev_info(rdev->dev, "radeon: MSI limited to 32-bit\n");
202 rdev->pdev->no_64bit_msi = 1;
203 }
204
205 /* force MSI on */
206 if (radeon_msi == 1)
207 return true;
208 else if (radeon_msi == 0)
209 return false;
210
211 /* Quirks */
212 /* HP RS690 only seems to work with MSIs. */
213 if ((rdev->pdev->device == 0x791f) &&
214 (rdev->pdev->subsystem_vendor == 0x103c) &&
215 (rdev->pdev->subsystem_device == 0x30c2))
216 return true;
217
218 /* Dell RS690 only seems to work with MSIs. */
219 if ((rdev->pdev->device == 0x791f) &&
220 (rdev->pdev->subsystem_vendor == 0x1028) &&
221 (rdev->pdev->subsystem_device == 0x01fc))
222 return true;
223
224 /* Dell RS690 only seems to work with MSIs. */
225 if ((rdev->pdev->device == 0x791f) &&
226 (rdev->pdev->subsystem_vendor == 0x1028) &&
227 (rdev->pdev->subsystem_device == 0x01fd))
228 return true;
229
230 /* Gateway RS690 only seems to work with MSIs. */
231 if ((rdev->pdev->device == 0x791f) &&
232 (rdev->pdev->subsystem_vendor == 0x107b) &&
233 (rdev->pdev->subsystem_device == 0x0185))
234 return true;
235
236 /* try and enable MSIs by default on all RS690s */
237 if (rdev->family == CHIP_RS690)
238 return true;
239
240 /* RV515 seems to have MSI issues where it loses
241 * MSI rearms occasionally. This leads to lockups and freezes.
242 * disable it by default.
243 */
244 if (rdev->family == CHIP_RV515)
245 return false;
246 if (rdev->flags & RADEON_IS_IGP) {
247 /* APUs work fine with MSIs */
248 if (rdev->family >= CHIP_PALM)
249 return true;
250 /* lots of IGPs have problems with MSIs */
251 return false;
252 }
253
254 return true;
255 }
256
257 /**
258 * radeon_irq_kms_init - init driver interrupt info
259 *
260 * @rdev: radeon device pointer
261 *
262 * Sets up the work irq handlers, vblank init, MSIs, etc. (all asics).
263 * Returns 0 for success, error for failure.
264 */
radeon_irq_kms_init(struct radeon_device * rdev)265 int radeon_irq_kms_init(struct radeon_device *rdev)
266 {
267 int r = 0;
268
269 spin_lock_init(&rdev->irq.lock);
270 r = drm_vblank_init(rdev->ddev, rdev->num_crtc);
271 if (r) {
272 return r;
273 }
274 /* enable msi */
275 rdev->msi_enabled = 0;
276
277 if (radeon_msi_ok(rdev)) {
278 int ret = pci_enable_msi(rdev->pdev);
279 if (!ret) {
280 rdev->msi_enabled = 1;
281 dev_info(rdev->dev, "radeon: using MSI.\n");
282 }
283 }
284
285 INIT_WORK(&rdev->hotplug_work, radeon_hotplug_work_func);
286 INIT_WORK(&rdev->audio_work, r600_audio_update_hdmi);
287
288 rdev->irq.installed = true;
289 r = drm_irq_install(rdev->ddev, rdev->ddev->pdev->irq);
290 if (r) {
291 rdev->irq.installed = false;
292 flush_work(&rdev->hotplug_work);
293 return r;
294 }
295
296 DRM_INFO("radeon: irq initialized.\n");
297 return 0;
298 }
299
300 /**
301 * radeon_irq_kms_fini - tear down driver interrupt info
302 *
303 * @rdev: radeon device pointer
304 *
305 * Tears down the work irq handlers, vblank handlers, MSIs, etc. (all asics).
306 */
radeon_irq_kms_fini(struct radeon_device * rdev)307 void radeon_irq_kms_fini(struct radeon_device *rdev)
308 {
309 drm_vblank_cleanup(rdev->ddev);
310 if (rdev->irq.installed) {
311 drm_irq_uninstall(rdev->ddev);
312 rdev->irq.installed = false;
313 if (rdev->msi_enabled)
314 pci_disable_msi(rdev->pdev);
315 flush_work(&rdev->hotplug_work);
316 }
317 }
318
319 /**
320 * radeon_irq_kms_sw_irq_get - enable software interrupt
321 *
322 * @rdev: radeon device pointer
323 * @ring: ring whose interrupt you want to enable
324 *
325 * Enables the software interrupt for a specific ring (all asics).
326 * The software interrupt is generally used to signal a fence on
327 * a particular ring.
328 */
radeon_irq_kms_sw_irq_get(struct radeon_device * rdev,int ring)329 void radeon_irq_kms_sw_irq_get(struct radeon_device *rdev, int ring)
330 {
331 unsigned long irqflags;
332
333 if (!rdev->ddev->irq_enabled)
334 return;
335
336 if (atomic_inc_return(&rdev->irq.ring_int[ring]) == 1) {
337 spin_lock_irqsave(&rdev->irq.lock, irqflags);
338 radeon_irq_set(rdev);
339 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
340 }
341 }
342
343 /**
344 * radeon_irq_kms_sw_irq_get_delayed - enable software interrupt
345 *
346 * @rdev: radeon device pointer
347 * @ring: ring whose interrupt you want to enable
348 *
349 * Enables the software interrupt for a specific ring (all asics).
350 * The software interrupt is generally used to signal a fence on
351 * a particular ring.
352 */
radeon_irq_kms_sw_irq_get_delayed(struct radeon_device * rdev,int ring)353 bool radeon_irq_kms_sw_irq_get_delayed(struct radeon_device *rdev, int ring)
354 {
355 return atomic_inc_return(&rdev->irq.ring_int[ring]) == 1;
356 }
357
358 /**
359 * radeon_irq_kms_sw_irq_put - disable software interrupt
360 *
361 * @rdev: radeon device pointer
362 * @ring: ring whose interrupt you want to disable
363 *
364 * Disables the software interrupt for a specific ring (all asics).
365 * The software interrupt is generally used to signal a fence on
366 * a particular ring.
367 */
radeon_irq_kms_sw_irq_put(struct radeon_device * rdev,int ring)368 void radeon_irq_kms_sw_irq_put(struct radeon_device *rdev, int ring)
369 {
370 unsigned long irqflags;
371
372 if (!rdev->ddev->irq_enabled)
373 return;
374
375 if (atomic_dec_and_test(&rdev->irq.ring_int[ring])) {
376 spin_lock_irqsave(&rdev->irq.lock, irqflags);
377 radeon_irq_set(rdev);
378 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
379 }
380 }
381
382 /**
383 * radeon_irq_kms_pflip_irq_get - enable pageflip interrupt
384 *
385 * @rdev: radeon device pointer
386 * @crtc: crtc whose interrupt you want to enable
387 *
388 * Enables the pageflip interrupt for a specific crtc (all asics).
389 * For pageflips we use the vblank interrupt source.
390 */
radeon_irq_kms_pflip_irq_get(struct radeon_device * rdev,int crtc)391 void radeon_irq_kms_pflip_irq_get(struct radeon_device *rdev, int crtc)
392 {
393 unsigned long irqflags;
394
395 if (crtc < 0 || crtc >= rdev->num_crtc)
396 return;
397
398 if (!rdev->ddev->irq_enabled)
399 return;
400
401 if (atomic_inc_return(&rdev->irq.pflip[crtc]) == 1) {
402 spin_lock_irqsave(&rdev->irq.lock, irqflags);
403 radeon_irq_set(rdev);
404 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
405 }
406 }
407
408 /**
409 * radeon_irq_kms_pflip_irq_put - disable pageflip interrupt
410 *
411 * @rdev: radeon device pointer
412 * @crtc: crtc whose interrupt you want to disable
413 *
414 * Disables the pageflip interrupt for a specific crtc (all asics).
415 * For pageflips we use the vblank interrupt source.
416 */
radeon_irq_kms_pflip_irq_put(struct radeon_device * rdev,int crtc)417 void radeon_irq_kms_pflip_irq_put(struct radeon_device *rdev, int crtc)
418 {
419 unsigned long irqflags;
420
421 if (crtc < 0 || crtc >= rdev->num_crtc)
422 return;
423
424 if (!rdev->ddev->irq_enabled)
425 return;
426
427 if (atomic_dec_and_test(&rdev->irq.pflip[crtc])) {
428 spin_lock_irqsave(&rdev->irq.lock, irqflags);
429 radeon_irq_set(rdev);
430 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
431 }
432 }
433
434 /**
435 * radeon_irq_kms_enable_afmt - enable audio format change interrupt
436 *
437 * @rdev: radeon device pointer
438 * @block: afmt block whose interrupt you want to enable
439 *
440 * Enables the afmt change interrupt for a specific afmt block (all asics).
441 */
radeon_irq_kms_enable_afmt(struct radeon_device * rdev,int block)442 void radeon_irq_kms_enable_afmt(struct radeon_device *rdev, int block)
443 {
444 unsigned long irqflags;
445
446 if (!rdev->ddev->irq_enabled)
447 return;
448
449 spin_lock_irqsave(&rdev->irq.lock, irqflags);
450 rdev->irq.afmt[block] = true;
451 radeon_irq_set(rdev);
452 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
453
454 }
455
456 /**
457 * radeon_irq_kms_disable_afmt - disable audio format change interrupt
458 *
459 * @rdev: radeon device pointer
460 * @block: afmt block whose interrupt you want to disable
461 *
462 * Disables the afmt change interrupt for a specific afmt block (all asics).
463 */
radeon_irq_kms_disable_afmt(struct radeon_device * rdev,int block)464 void radeon_irq_kms_disable_afmt(struct radeon_device *rdev, int block)
465 {
466 unsigned long irqflags;
467
468 if (!rdev->ddev->irq_enabled)
469 return;
470
471 spin_lock_irqsave(&rdev->irq.lock, irqflags);
472 rdev->irq.afmt[block] = false;
473 radeon_irq_set(rdev);
474 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
475 }
476
477 /**
478 * radeon_irq_kms_enable_hpd - enable hotplug detect interrupt
479 *
480 * @rdev: radeon device pointer
481 * @hpd_mask: mask of hpd pins you want to enable.
482 *
483 * Enables the hotplug detect interrupt for a specific hpd pin (all asics).
484 */
radeon_irq_kms_enable_hpd(struct radeon_device * rdev,unsigned hpd_mask)485 void radeon_irq_kms_enable_hpd(struct radeon_device *rdev, unsigned hpd_mask)
486 {
487 unsigned long irqflags;
488 int i;
489
490 if (!rdev->ddev->irq_enabled)
491 return;
492
493 spin_lock_irqsave(&rdev->irq.lock, irqflags);
494 for (i = 0; i < RADEON_MAX_HPD_PINS; ++i)
495 rdev->irq.hpd[i] |= !!(hpd_mask & (1 << i));
496 radeon_irq_set(rdev);
497 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
498 }
499
500 /**
501 * radeon_irq_kms_disable_hpd - disable hotplug detect interrupt
502 *
503 * @rdev: radeon device pointer
504 * @hpd_mask: mask of hpd pins you want to disable.
505 *
506 * Disables the hotplug detect interrupt for a specific hpd pin (all asics).
507 */
radeon_irq_kms_disable_hpd(struct radeon_device * rdev,unsigned hpd_mask)508 void radeon_irq_kms_disable_hpd(struct radeon_device *rdev, unsigned hpd_mask)
509 {
510 unsigned long irqflags;
511 int i;
512
513 if (!rdev->ddev->irq_enabled)
514 return;
515
516 spin_lock_irqsave(&rdev->irq.lock, irqflags);
517 for (i = 0; i < RADEON_MAX_HPD_PINS; ++i)
518 rdev->irq.hpd[i] &= !(hpd_mask & (1 << i));
519 radeon_irq_set(rdev);
520 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
521 }
522
523