2 * Copyright 2008 Advanced Micro Devices, Inc.
3 * Copyright 2008 Red Hat Inc.
4 * Copyright 2009 Jerome Glisse.
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:
13 * The above copyright notice and this permission notice shall be included in
14 * all copies or substantial portions of the Software.
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.
24 * Authors: Dave Airlie
29 #include <drm/drm_crtc_helper.h>
30 #include <drm/radeon_drm.h>
31 #include "radeon_reg.h"
35 #include <linux/pm_runtime.h>
37 #define RADEON_WAIT_IDLE_TIMEOUT 200
40 * radeon_driver_irq_handler_kms - irq handler for KMS
42 * @int irq, void *arg: args
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.
48 irqreturn_t
radeon_driver_irq_handler_kms(int irq
, void *arg
)
50 struct drm_device
*dev
= (struct drm_device
*) arg
;
51 struct radeon_device
*rdev
= dev
->dev_private
;
54 ret
= radeon_irq_process(rdev
);
55 if (ret
== IRQ_HANDLED
)
56 pm_runtime_mark_last_busy(dev
->dev
);
61 * Handle hotplug events outside the interrupt handler proper.
64 * radeon_hotplug_work_func - display hotplug work handler
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.
74 static void radeon_hotplug_work_func(struct work_struct
*work
)
76 struct radeon_device
*rdev
= container_of(work
, struct radeon_device
,
78 struct drm_device
*dev
= rdev
->ddev
;
79 struct drm_mode_config
*mode_config
= &dev
->mode_config
;
80 struct drm_connector
*connector
;
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
)
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
);
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
);
97 static void radeon_dp_work_func(struct work_struct
*work
)
99 struct radeon_device
*rdev
= container_of(work
, struct radeon_device
,
101 struct drm_device
*dev
= rdev
->ddev
;
102 struct drm_mode_config
*mode_config
= &dev
->mode_config
;
103 struct drm_connector
*connector
;
105 /* this should take a mutex */
106 if (mode_config
->num_connector
) {
107 list_for_each_entry(connector
, &mode_config
->connector_list
, head
)
108 radeon_connector_hotplug(connector
);
112 * radeon_driver_irq_preinstall_kms - drm irq preinstall callback
114 * @dev: drm dev pointer
116 * Gets the hw ready to enable irqs (all asics).
117 * This function disables all interrupt sources on the GPU.
119 void radeon_driver_irq_preinstall_kms(struct drm_device
*dev
)
121 struct radeon_device
*rdev
= dev
->dev_private
;
122 unsigned long irqflags
;
125 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
126 /* Disable *all* interrupts */
127 for (i
= 0; i
< RADEON_NUM_RINGS
; i
++)
128 atomic_set(&rdev
->irq
.ring_int
[i
], 0);
129 rdev
->irq
.dpm_thermal
= false;
130 for (i
= 0; i
< RADEON_MAX_HPD_PINS
; i
++)
131 rdev
->irq
.hpd
[i
] = false;
132 for (i
= 0; i
< RADEON_MAX_CRTCS
; i
++) {
133 rdev
->irq
.crtc_vblank_int
[i
] = false;
134 atomic_set(&rdev
->irq
.pflip
[i
], 0);
135 rdev
->irq
.afmt
[i
] = false;
137 radeon_irq_set(rdev
);
138 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
140 radeon_irq_process(rdev
);
144 * radeon_driver_irq_postinstall_kms - drm irq preinstall callback
146 * @dev: drm dev pointer
148 * Handles stuff to be done after enabling irqs (all asics).
149 * Returns 0 on success.
151 int radeon_driver_irq_postinstall_kms(struct drm_device
*dev
)
153 struct radeon_device
*rdev
= dev
->dev_private
;
155 if (ASIC_IS_AVIVO(rdev
))
156 dev
->max_vblank_count
= 0x00ffffff;
158 dev
->max_vblank_count
= 0x001fffff;
164 * radeon_driver_irq_uninstall_kms - drm irq uninstall callback
166 * @dev: drm dev pointer
168 * This function disables all interrupt sources on the GPU (all asics).
170 void radeon_driver_irq_uninstall_kms(struct drm_device
*dev
)
172 struct radeon_device
*rdev
= dev
->dev_private
;
173 unsigned long irqflags
;
179 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
180 /* Disable *all* interrupts */
181 for (i
= 0; i
< RADEON_NUM_RINGS
; i
++)
182 atomic_set(&rdev
->irq
.ring_int
[i
], 0);
183 rdev
->irq
.dpm_thermal
= false;
184 for (i
= 0; i
< RADEON_MAX_HPD_PINS
; i
++)
185 rdev
->irq
.hpd
[i
] = false;
186 for (i
= 0; i
< RADEON_MAX_CRTCS
; i
++) {
187 rdev
->irq
.crtc_vblank_int
[i
] = false;
188 atomic_set(&rdev
->irq
.pflip
[i
], 0);
189 rdev
->irq
.afmt
[i
] = false;
191 radeon_irq_set(rdev
);
192 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
196 * radeon_msi_ok - asic specific msi checks
198 * @rdev: radeon device pointer
200 * Handles asic specific MSI checks to determine if
201 * MSIs should be enabled on a particular chip (all asics).
202 * Returns true if MSIs should be enabled, false if MSIs
203 * should not be enabled.
205 static bool radeon_msi_ok(struct radeon_device
*rdev
)
207 /* RV370/RV380 was first asic with MSI support */
208 if (rdev
->family
< CHIP_RV380
)
211 /* MSIs don't work on AGP */
212 if (rdev
->flags
& RADEON_IS_AGP
)
216 * Older chips have a HW limitation, they can only generate 40 bits
217 * of address for "64-bit" MSIs which breaks on some platforms, notably
218 * IBM POWER servers, so we limit them
220 if (rdev
->family
< CHIP_BONAIRE
) {
221 dev_info(rdev
->dev
, "radeon: MSI limited to 32-bit\n");
222 rdev
->pdev
->no_64bit_msi
= 1;
228 else if (radeon_msi
== 0)
232 /* HP RS690 only seems to work with MSIs. */
233 if ((rdev
->pdev
->device
== 0x791f) &&
234 (rdev
->pdev
->subsystem_vendor
== 0x103c) &&
235 (rdev
->pdev
->subsystem_device
== 0x30c2))
238 /* Dell RS690 only seems to work with MSIs. */
239 if ((rdev
->pdev
->device
== 0x791f) &&
240 (rdev
->pdev
->subsystem_vendor
== 0x1028) &&
241 (rdev
->pdev
->subsystem_device
== 0x01fc))
244 /* Dell RS690 only seems to work with MSIs. */
245 if ((rdev
->pdev
->device
== 0x791f) &&
246 (rdev
->pdev
->subsystem_vendor
== 0x1028) &&
247 (rdev
->pdev
->subsystem_device
== 0x01fd))
250 /* Gateway RS690 only seems to work with MSIs. */
251 if ((rdev
->pdev
->device
== 0x791f) &&
252 (rdev
->pdev
->subsystem_vendor
== 0x107b) &&
253 (rdev
->pdev
->subsystem_device
== 0x0185))
256 /* try and enable MSIs by default on all RS690s */
257 if (rdev
->family
== CHIP_RS690
)
260 /* RV515 seems to have MSI issues where it loses
261 * MSI rearms occasionally. This leads to lockups and freezes.
262 * disable it by default.
264 if (rdev
->family
== CHIP_RV515
)
266 if (rdev
->flags
& RADEON_IS_IGP
) {
267 /* APUs work fine with MSIs */
268 if (rdev
->family
>= CHIP_PALM
)
270 /* lots of IGPs have problems with MSIs */
278 * radeon_irq_kms_init - init driver interrupt info
280 * @rdev: radeon device pointer
282 * Sets up the work irq handlers, vblank init, MSIs, etc. (all asics).
283 * Returns 0 for success, error for failure.
285 int radeon_irq_kms_init(struct radeon_device
*rdev
)
289 spin_lock_init(&rdev
->irq
.lock
);
290 r
= drm_vblank_init(rdev
->ddev
, rdev
->num_crtc
);
296 rdev
->msi_enabled
= 0;
298 if (radeon_msi_ok(rdev
)) {
299 int ret
= pci_enable_msi(rdev
->pdev
);
301 rdev
->msi_enabled
= 1;
302 dev_info(rdev
->dev
, "radeon: using MSI.\n");
306 INIT_DELAYED_WORK(&rdev
->hotplug_work
, radeon_hotplug_work_func
);
307 INIT_WORK(&rdev
->dp_work
, radeon_dp_work_func
);
308 INIT_WORK(&rdev
->audio_work
, r600_audio_update_hdmi
);
310 rdev
->irq
.installed
= true;
311 r
= drm_irq_install(rdev
->ddev
, rdev
->ddev
->pdev
->irq
);
313 rdev
->irq
.installed
= false;
314 flush_delayed_work(&rdev
->hotplug_work
);
318 DRM_INFO("radeon: irq initialized.\n");
323 * radeon_irq_kms_fini - tear down driver interrupt info
325 * @rdev: radeon device pointer
327 * Tears down the work irq handlers, vblank handlers, MSIs, etc. (all asics).
329 void radeon_irq_kms_fini(struct radeon_device
*rdev
)
331 drm_vblank_cleanup(rdev
->ddev
);
332 if (rdev
->irq
.installed
) {
333 drm_irq_uninstall(rdev
->ddev
);
334 rdev
->irq
.installed
= false;
335 if (rdev
->msi_enabled
)
336 pci_disable_msi(rdev
->pdev
);
337 flush_delayed_work(&rdev
->hotplug_work
);
342 * radeon_irq_kms_sw_irq_get - enable software interrupt
344 * @rdev: radeon device pointer
345 * @ring: ring whose interrupt you want to enable
347 * Enables the software interrupt for a specific ring (all asics).
348 * The software interrupt is generally used to signal a fence on
351 void radeon_irq_kms_sw_irq_get(struct radeon_device
*rdev
, int ring
)
353 unsigned long irqflags
;
355 if (!rdev
->ddev
->irq_enabled
)
358 if (atomic_inc_return(&rdev
->irq
.ring_int
[ring
]) == 1) {
359 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
360 radeon_irq_set(rdev
);
361 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
366 * radeon_irq_kms_sw_irq_get_delayed - enable software interrupt
368 * @rdev: radeon device pointer
369 * @ring: ring whose interrupt you want to enable
371 * Enables the software interrupt for a specific ring (all asics).
372 * The software interrupt is generally used to signal a fence on
375 bool radeon_irq_kms_sw_irq_get_delayed(struct radeon_device
*rdev
, int ring
)
377 return atomic_inc_return(&rdev
->irq
.ring_int
[ring
]) == 1;
381 * radeon_irq_kms_sw_irq_put - disable software interrupt
383 * @rdev: radeon device pointer
384 * @ring: ring whose interrupt you want to disable
386 * Disables the software interrupt for a specific ring (all asics).
387 * The software interrupt is generally used to signal a fence on
390 void radeon_irq_kms_sw_irq_put(struct radeon_device
*rdev
, int ring
)
392 unsigned long irqflags
;
394 if (!rdev
->ddev
->irq_enabled
)
397 if (atomic_dec_and_test(&rdev
->irq
.ring_int
[ring
])) {
398 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
399 radeon_irq_set(rdev
);
400 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
405 * radeon_irq_kms_pflip_irq_get - enable pageflip interrupt
407 * @rdev: radeon device pointer
408 * @crtc: crtc whose interrupt you want to enable
410 * Enables the pageflip interrupt for a specific crtc (all asics).
411 * For pageflips we use the vblank interrupt source.
413 void radeon_irq_kms_pflip_irq_get(struct radeon_device
*rdev
, int crtc
)
415 unsigned long irqflags
;
417 if (crtc
< 0 || crtc
>= rdev
->num_crtc
)
420 if (!rdev
->ddev
->irq_enabled
)
423 if (atomic_inc_return(&rdev
->irq
.pflip
[crtc
]) == 1) {
424 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
425 radeon_irq_set(rdev
);
426 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
431 * radeon_irq_kms_pflip_irq_put - disable pageflip interrupt
433 * @rdev: radeon device pointer
434 * @crtc: crtc whose interrupt you want to disable
436 * Disables the pageflip interrupt for a specific crtc (all asics).
437 * For pageflips we use the vblank interrupt source.
439 void radeon_irq_kms_pflip_irq_put(struct radeon_device
*rdev
, int crtc
)
441 unsigned long irqflags
;
443 if (crtc
< 0 || crtc
>= rdev
->num_crtc
)
446 if (!rdev
->ddev
->irq_enabled
)
449 if (atomic_dec_and_test(&rdev
->irq
.pflip
[crtc
])) {
450 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
451 radeon_irq_set(rdev
);
452 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
457 * radeon_irq_kms_enable_afmt - enable audio format change interrupt
459 * @rdev: radeon device pointer
460 * @block: afmt block whose interrupt you want to enable
462 * Enables the afmt change interrupt for a specific afmt block (all asics).
464 void radeon_irq_kms_enable_afmt(struct radeon_device
*rdev
, int block
)
466 unsigned long irqflags
;
468 if (!rdev
->ddev
->irq_enabled
)
471 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
472 rdev
->irq
.afmt
[block
] = true;
473 radeon_irq_set(rdev
);
474 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
479 * radeon_irq_kms_disable_afmt - disable audio format change interrupt
481 * @rdev: radeon device pointer
482 * @block: afmt block whose interrupt you want to disable
484 * Disables the afmt change interrupt for a specific afmt block (all asics).
486 void radeon_irq_kms_disable_afmt(struct radeon_device
*rdev
, int block
)
488 unsigned long irqflags
;
490 if (!rdev
->ddev
->irq_enabled
)
493 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
494 rdev
->irq
.afmt
[block
] = false;
495 radeon_irq_set(rdev
);
496 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
500 * radeon_irq_kms_enable_hpd - enable hotplug detect interrupt
502 * @rdev: radeon device pointer
503 * @hpd_mask: mask of hpd pins you want to enable.
505 * Enables the hotplug detect interrupt for a specific hpd pin (all asics).
507 void radeon_irq_kms_enable_hpd(struct radeon_device
*rdev
, unsigned hpd_mask
)
509 unsigned long irqflags
;
512 if (!rdev
->ddev
->irq_enabled
)
515 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
516 for (i
= 0; i
< RADEON_MAX_HPD_PINS
; ++i
)
517 rdev
->irq
.hpd
[i
] |= !!(hpd_mask
& (1 << i
));
518 radeon_irq_set(rdev
);
519 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
523 * radeon_irq_kms_disable_hpd - disable hotplug detect interrupt
525 * @rdev: radeon device pointer
526 * @hpd_mask: mask of hpd pins you want to disable.
528 * Disables the hotplug detect interrupt for a specific hpd pin (all asics).
530 void radeon_irq_kms_disable_hpd(struct radeon_device
*rdev
, unsigned hpd_mask
)
532 unsigned long irqflags
;
535 if (!rdev
->ddev
->irq_enabled
)
538 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
539 for (i
= 0; i
< RADEON_MAX_HPD_PINS
; ++i
)
540 rdev
->irq
.hpd
[i
] &= !(hpd_mask
& (1 << i
));
541 radeon_irq_set(rdev
);
542 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);