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 <linux/pci.h>
30 #include <linux/pm_runtime.h>
32 #include <drm/drm_crtc_helper.h>
33 #include <drm/drm_device.h>
34 #include <drm/drm_irq.h>
35 #include <drm/drm_probe_helper.h>
36 #include <drm/drm_vblank.h>
37 #include <drm/radeon_drm.h>
41 #include "radeon_kms.h"
42 #include "radeon_reg.h"
45 #define RADEON_WAIT_IDLE_TIMEOUT 200
48 * radeon_driver_irq_handler_kms - irq handler for KMS
50 * This is the irq handler for the radeon KMS driver (all asics).
51 * radeon_irq_process is a macro that points to the per-asic
52 * irq handler callback.
54 irqreturn_t
radeon_driver_irq_handler_kms(int irq
, void *arg
)
56 struct drm_device
*dev
= (struct drm_device
*) arg
;
57 struct radeon_device
*rdev
= dev
->dev_private
;
60 ret
= radeon_irq_process(rdev
);
61 if (ret
== IRQ_HANDLED
)
62 pm_runtime_mark_last_busy(dev
->dev
);
67 * Handle hotplug events outside the interrupt handler proper.
70 * radeon_hotplug_work_func - display hotplug work handler
74 * This is the hot plug event work handler (all asics).
75 * The work gets scheduled from the irq handler if there
76 * was a hot plug interrupt. It walks the connector table
77 * and calls the hotplug handler for each one, then sends
78 * a drm hotplug event to alert userspace.
80 static void radeon_hotplug_work_func(struct work_struct
*work
)
82 struct radeon_device
*rdev
= container_of(work
, struct radeon_device
,
84 struct drm_device
*dev
= rdev
->ddev
;
85 struct drm_mode_config
*mode_config
= &dev
->mode_config
;
86 struct drm_connector
*connector
;
88 /* we can race here at startup, some boards seem to trigger
89 * hotplug irqs when they shouldn't. */
90 if (!rdev
->mode_info
.mode_config_initialized
)
93 mutex_lock(&mode_config
->mutex
);
94 list_for_each_entry(connector
, &mode_config
->connector_list
, head
)
95 radeon_connector_hotplug(connector
);
96 mutex_unlock(&mode_config
->mutex
);
97 /* Just fire off a uevent and let userspace tell us what to do */
98 drm_helper_hpd_irq_event(dev
);
101 static void radeon_dp_work_func(struct work_struct
*work
)
103 struct radeon_device
*rdev
= container_of(work
, struct radeon_device
,
105 struct drm_device
*dev
= rdev
->ddev
;
106 struct drm_mode_config
*mode_config
= &dev
->mode_config
;
107 struct drm_connector
*connector
;
109 /* this should take a mutex */
110 list_for_each_entry(connector
, &mode_config
->connector_list
, head
)
111 radeon_connector_hotplug(connector
);
114 * radeon_driver_irq_preinstall_kms - drm irq preinstall callback
116 * @dev: drm dev pointer
118 * Gets the hw ready to enable irqs (all asics).
119 * This function disables all interrupt sources on the GPU.
121 void radeon_driver_irq_preinstall_kms(struct drm_device
*dev
)
123 struct radeon_device
*rdev
= dev
->dev_private
;
124 unsigned long irqflags
;
127 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
128 /* Disable *all* interrupts */
129 for (i
= 0; i
< RADEON_NUM_RINGS
; i
++)
130 atomic_set(&rdev
->irq
.ring_int
[i
], 0);
131 rdev
->irq
.dpm_thermal
= false;
132 for (i
= 0; i
< RADEON_MAX_HPD_PINS
; i
++)
133 rdev
->irq
.hpd
[i
] = false;
134 for (i
= 0; i
< RADEON_MAX_CRTCS
; i
++) {
135 rdev
->irq
.crtc_vblank_int
[i
] = false;
136 atomic_set(&rdev
->irq
.pflip
[i
], 0);
137 rdev
->irq
.afmt
[i
] = false;
139 radeon_irq_set(rdev
);
140 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
142 radeon_irq_process(rdev
);
146 * radeon_driver_irq_postinstall_kms - drm irq preinstall callback
148 * @dev: drm dev pointer
150 * Handles stuff to be done after enabling irqs (all asics).
151 * Returns 0 on success.
153 int radeon_driver_irq_postinstall_kms(struct drm_device
*dev
)
155 struct radeon_device
*rdev
= dev
->dev_private
;
157 if (ASIC_IS_AVIVO(rdev
))
158 dev
->max_vblank_count
= 0x00ffffff;
160 dev
->max_vblank_count
= 0x001fffff;
166 * radeon_driver_irq_uninstall_kms - drm irq uninstall callback
168 * @dev: drm dev pointer
170 * This function disables all interrupt sources on the GPU (all asics).
172 void radeon_driver_irq_uninstall_kms(struct drm_device
*dev
)
174 struct radeon_device
*rdev
= dev
->dev_private
;
175 unsigned long irqflags
;
181 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
182 /* Disable *all* interrupts */
183 for (i
= 0; i
< RADEON_NUM_RINGS
; i
++)
184 atomic_set(&rdev
->irq
.ring_int
[i
], 0);
185 rdev
->irq
.dpm_thermal
= false;
186 for (i
= 0; i
< RADEON_MAX_HPD_PINS
; i
++)
187 rdev
->irq
.hpd
[i
] = false;
188 for (i
= 0; i
< RADEON_MAX_CRTCS
; i
++) {
189 rdev
->irq
.crtc_vblank_int
[i
] = false;
190 atomic_set(&rdev
->irq
.pflip
[i
], 0);
191 rdev
->irq
.afmt
[i
] = false;
193 radeon_irq_set(rdev
);
194 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
198 * radeon_msi_ok - asic specific msi checks
200 * @rdev: radeon device pointer
202 * Handles asic specific MSI checks to determine if
203 * MSIs should be enabled on a particular chip (all asics).
204 * Returns true if MSIs should be enabled, false if MSIs
205 * should not be enabled.
207 static bool radeon_msi_ok(struct radeon_device
*rdev
)
209 /* RV370/RV380 was first asic with MSI support */
210 if (rdev
->family
< CHIP_RV380
)
213 /* MSIs don't work on AGP */
214 if (rdev
->flags
& RADEON_IS_AGP
)
218 * Older chips have a HW limitation, they can only generate 40 bits
219 * of address for "64-bit" MSIs which breaks on some platforms, notably
220 * IBM POWER servers, so we limit them
222 if (rdev
->family
< CHIP_BONAIRE
) {
223 dev_info(rdev
->dev
, "radeon: MSI limited to 32-bit\n");
224 rdev
->pdev
->no_64bit_msi
= 1;
230 else if (radeon_msi
== 0)
234 /* HP RS690 only seems to work with MSIs. */
235 if ((rdev
->pdev
->device
== 0x791f) &&
236 (rdev
->pdev
->subsystem_vendor
== 0x103c) &&
237 (rdev
->pdev
->subsystem_device
== 0x30c2))
240 /* Dell RS690 only seems to work with MSIs. */
241 if ((rdev
->pdev
->device
== 0x791f) &&
242 (rdev
->pdev
->subsystem_vendor
== 0x1028) &&
243 (rdev
->pdev
->subsystem_device
== 0x01fc))
246 /* Dell RS690 only seems to work with MSIs. */
247 if ((rdev
->pdev
->device
== 0x791f) &&
248 (rdev
->pdev
->subsystem_vendor
== 0x1028) &&
249 (rdev
->pdev
->subsystem_device
== 0x01fd))
252 /* Gateway RS690 only seems to work with MSIs. */
253 if ((rdev
->pdev
->device
== 0x791f) &&
254 (rdev
->pdev
->subsystem_vendor
== 0x107b) &&
255 (rdev
->pdev
->subsystem_device
== 0x0185))
258 /* try and enable MSIs by default on all RS690s */
259 if (rdev
->family
== CHIP_RS690
)
262 /* RV515 seems to have MSI issues where it loses
263 * MSI rearms occasionally. This leads to lockups and freezes.
264 * disable it by default.
266 if (rdev
->family
== CHIP_RV515
)
268 if (rdev
->flags
& RADEON_IS_IGP
) {
269 /* APUs work fine with MSIs */
270 if (rdev
->family
>= CHIP_PALM
)
272 /* lots of IGPs have problems with MSIs */
280 * radeon_irq_kms_init - init driver interrupt info
282 * @rdev: radeon device pointer
284 * Sets up the work irq handlers, vblank init, MSIs, etc. (all asics).
285 * Returns 0 for success, error for failure.
287 int radeon_irq_kms_init(struct radeon_device
*rdev
)
291 spin_lock_init(&rdev
->irq
.lock
);
293 /* Disable vblank irqs aggressively for power-saving */
294 rdev
->ddev
->vblank_disable_immediate
= true;
296 r
= drm_vblank_init(rdev
->ddev
, rdev
->num_crtc
);
302 rdev
->msi_enabled
= 0;
304 if (radeon_msi_ok(rdev
)) {
305 int ret
= pci_enable_msi(rdev
->pdev
);
307 rdev
->msi_enabled
= 1;
308 dev_info(rdev
->dev
, "radeon: using MSI.\n");
312 INIT_DELAYED_WORK(&rdev
->hotplug_work
, radeon_hotplug_work_func
);
313 INIT_WORK(&rdev
->dp_work
, radeon_dp_work_func
);
314 INIT_WORK(&rdev
->audio_work
, r600_audio_update_hdmi
);
316 rdev
->irq
.installed
= true;
317 r
= drm_irq_install(rdev
->ddev
, rdev
->ddev
->pdev
->irq
);
319 rdev
->irq
.installed
= false;
320 flush_delayed_work(&rdev
->hotplug_work
);
324 DRM_INFO("radeon: irq initialized.\n");
329 * radeon_irq_kms_fini - tear down driver interrupt info
331 * @rdev: radeon device pointer
333 * Tears down the work irq handlers, vblank handlers, MSIs, etc. (all asics).
335 void radeon_irq_kms_fini(struct radeon_device
*rdev
)
337 if (rdev
->irq
.installed
) {
338 drm_irq_uninstall(rdev
->ddev
);
339 rdev
->irq
.installed
= false;
340 if (rdev
->msi_enabled
)
341 pci_disable_msi(rdev
->pdev
);
342 flush_delayed_work(&rdev
->hotplug_work
);
347 * radeon_irq_kms_sw_irq_get - enable software interrupt
349 * @rdev: radeon device pointer
350 * @ring: ring whose interrupt you want to enable
352 * Enables the software interrupt for a specific ring (all asics).
353 * The software interrupt is generally used to signal a fence on
356 void radeon_irq_kms_sw_irq_get(struct radeon_device
*rdev
, int ring
)
358 unsigned long irqflags
;
360 if (!rdev
->ddev
->irq_enabled
)
363 if (atomic_inc_return(&rdev
->irq
.ring_int
[ring
]) == 1) {
364 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
365 radeon_irq_set(rdev
);
366 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
371 * radeon_irq_kms_sw_irq_get_delayed - enable software interrupt
373 * @rdev: radeon device pointer
374 * @ring: ring whose interrupt you want to enable
376 * Enables the software interrupt for a specific ring (all asics).
377 * The software interrupt is generally used to signal a fence on
380 bool radeon_irq_kms_sw_irq_get_delayed(struct radeon_device
*rdev
, int ring
)
382 return atomic_inc_return(&rdev
->irq
.ring_int
[ring
]) == 1;
386 * radeon_irq_kms_sw_irq_put - disable software interrupt
388 * @rdev: radeon device pointer
389 * @ring: ring whose interrupt you want to disable
391 * Disables the software interrupt for a specific ring (all asics).
392 * The software interrupt is generally used to signal a fence on
395 void radeon_irq_kms_sw_irq_put(struct radeon_device
*rdev
, int ring
)
397 unsigned long irqflags
;
399 if (!rdev
->ddev
->irq_enabled
)
402 if (atomic_dec_and_test(&rdev
->irq
.ring_int
[ring
])) {
403 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
404 radeon_irq_set(rdev
);
405 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
410 * radeon_irq_kms_pflip_irq_get - enable pageflip interrupt
412 * @rdev: radeon device pointer
413 * @crtc: crtc whose interrupt you want to enable
415 * Enables the pageflip interrupt for a specific crtc (all asics).
416 * For pageflips we use the vblank interrupt source.
418 void radeon_irq_kms_pflip_irq_get(struct radeon_device
*rdev
, int crtc
)
420 unsigned long irqflags
;
422 if (crtc
< 0 || crtc
>= rdev
->num_crtc
)
425 if (!rdev
->ddev
->irq_enabled
)
428 if (atomic_inc_return(&rdev
->irq
.pflip
[crtc
]) == 1) {
429 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
430 radeon_irq_set(rdev
);
431 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
436 * radeon_irq_kms_pflip_irq_put - disable pageflip interrupt
438 * @rdev: radeon device pointer
439 * @crtc: crtc whose interrupt you want to disable
441 * Disables the pageflip interrupt for a specific crtc (all asics).
442 * For pageflips we use the vblank interrupt source.
444 void radeon_irq_kms_pflip_irq_put(struct radeon_device
*rdev
, int crtc
)
446 unsigned long irqflags
;
448 if (crtc
< 0 || crtc
>= rdev
->num_crtc
)
451 if (!rdev
->ddev
->irq_enabled
)
454 if (atomic_dec_and_test(&rdev
->irq
.pflip
[crtc
])) {
455 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
456 radeon_irq_set(rdev
);
457 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
462 * radeon_irq_kms_enable_afmt - enable audio format change interrupt
464 * @rdev: radeon device pointer
465 * @block: afmt block whose interrupt you want to enable
467 * Enables the afmt change interrupt for a specific afmt block (all asics).
469 void radeon_irq_kms_enable_afmt(struct radeon_device
*rdev
, int block
)
471 unsigned long irqflags
;
473 if (!rdev
->ddev
->irq_enabled
)
476 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
477 rdev
->irq
.afmt
[block
] = true;
478 radeon_irq_set(rdev
);
479 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
484 * radeon_irq_kms_disable_afmt - disable audio format change interrupt
486 * @rdev: radeon device pointer
487 * @block: afmt block whose interrupt you want to disable
489 * Disables the afmt change interrupt for a specific afmt block (all asics).
491 void radeon_irq_kms_disable_afmt(struct radeon_device
*rdev
, int block
)
493 unsigned long irqflags
;
495 if (!rdev
->ddev
->irq_enabled
)
498 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
499 rdev
->irq
.afmt
[block
] = false;
500 radeon_irq_set(rdev
);
501 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
505 * radeon_irq_kms_enable_hpd - enable hotplug detect interrupt
507 * @rdev: radeon device pointer
508 * @hpd_mask: mask of hpd pins you want to enable.
510 * Enables the hotplug detect interrupt for a specific hpd pin (all asics).
512 void radeon_irq_kms_enable_hpd(struct radeon_device
*rdev
, unsigned hpd_mask
)
514 unsigned long irqflags
;
517 if (!rdev
->ddev
->irq_enabled
)
520 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
521 for (i
= 0; i
< RADEON_MAX_HPD_PINS
; ++i
)
522 rdev
->irq
.hpd
[i
] |= !!(hpd_mask
& (1 << i
));
523 radeon_irq_set(rdev
);
524 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
528 * radeon_irq_kms_disable_hpd - disable hotplug detect interrupt
530 * @rdev: radeon device pointer
531 * @hpd_mask: mask of hpd pins you want to disable.
533 * Disables the hotplug detect interrupt for a specific hpd pin (all asics).
535 void radeon_irq_kms_disable_hpd(struct radeon_device
*rdev
, unsigned hpd_mask
)
537 unsigned long irqflags
;
540 if (!rdev
->ddev
->irq_enabled
)
543 spin_lock_irqsave(&rdev
->irq
.lock
, irqflags
);
544 for (i
= 0; i
< RADEON_MAX_HPD_PINS
; ++i
)
545 rdev
->irq
.hpd
[i
] &= !(hpd_mask
& (1 << i
));
546 radeon_irq_set(rdev
);
547 spin_unlock_irqrestore(&rdev
->irq
.lock
, irqflags
);
551 * radeon_irq_kms_set_irq_n_enabled - helper for updating interrupt enable registers
553 * @rdev: radeon device pointer
554 * @reg: the register to write to enable/disable interrupts
555 * @mask: the mask that enables the interrupts
556 * @enable: whether to enable or disable the interrupt register
557 * @name: the name of the interrupt register to print to the kernel log
558 * @n: the number of the interrupt register to print to the kernel log
560 * Helper for updating the enable state of interrupt registers. Checks whether
561 * or not the interrupt matches the enable state we want. If it doesn't, then
562 * we update it and print a debugging message to the kernel log indicating the
563 * new state of the interrupt register.
565 * Used for updating sequences of interrupts registers like HPD1, HPD2, etc.
567 void radeon_irq_kms_set_irq_n_enabled(struct radeon_device
*rdev
,
569 bool enable
, const char *name
, unsigned n
)
571 u32 tmp
= RREG32(reg
);
573 /* Interrupt state didn't change */
574 if (!!(tmp
& mask
) == enable
)
578 DRM_DEBUG("%s%d interrupts enabled\n", name
, n
);
579 WREG32(reg
, tmp
|= mask
);
581 DRM_DEBUG("%s%d interrupts disabled\n", name
, n
);
582 WREG32(reg
, tmp
& ~mask
);