blob: c084cadcbf2156f8f51b05d21b5ae79407bc6853 [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 */
David Howells760285e2012-10-02 18:01:07 +010028#include <drm/drmP.h>
29#include <drm/drm_crtc_helper.h>
30#include <drm/radeon_drm.h>
Jerome Glisse771fe6b2009-06-05 14:42:42 +020031#include "radeon_reg.h"
Jerome Glisse771fe6b2009-06-05 14:42:42 +020032#include "radeon.h"
33#include "atom.h"
34
Dave Airlie10ebc0b2012-09-17 14:40:31 +100035#include <linux/pm_runtime.h>
36
Christian Koenigfb982572012-05-17 01:33:30 +020037#define RADEON_WAIT_IDLE_TIMEOUT 200
38
Alex Deucherb73ba982012-07-17 14:02:35 -040039/**
40 * radeon_driver_irq_handler_kms - irq handler for KMS
41 *
Daniel Vettere9f0d762013-12-11 11:34:42 +010042 * @int irq, void *arg: args
Alex Deucherb73ba982012-07-17 14:02:35 -040043 *
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 */
Daniel Vettere9f0d762013-12-11 11:34:42 +010048irqreturn_t radeon_driver_irq_handler_kms(int irq, void *arg)
Jerome Glisse771fe6b2009-06-05 14:42:42 +020049{
50 struct drm_device *dev = (struct drm_device *) arg;
51 struct radeon_device *rdev = dev->dev_private;
Dave Airlie10ebc0b2012-09-17 14:40:31 +100052 irqreturn_t ret;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020053
Dave Airlie10ebc0b2012-09-17 14:40:31 +100054 ret = radeon_irq_process(rdev);
55 if (ret == IRQ_HANDLED)
56 pm_runtime_mark_last_busy(dev->dev);
57 return ret;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020058}
59
Alex Deucherd4877cf2009-12-04 16:56:37 -050060/*
61 * Handle hotplug events outside the interrupt handler proper.
62 */
Alex Deucherb73ba982012-07-17 14:02:35 -040063/**
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 */
Alex Deucherd4877cf2009-12-04 16:56:37 -050074static void radeon_hotplug_work_func(struct work_struct *work)
75{
76 struct radeon_device *rdev = container_of(work, struct radeon_device,
Lyudecb5d4162015-12-03 18:26:07 -050077 hotplug_work.work);
Alex Deucherd4877cf2009-12-04 16:56:37 -050078 struct drm_device *dev = rdev->ddev;
79 struct drm_mode_config *mode_config = &dev->mode_config;
80 struct drm_connector *connector;
81
Dave Airlie7f98ca42015-08-20 10:13:55 +100082 /* 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
Alex Deucher39fa10f2015-05-15 11:48:52 -040087 mutex_lock(&mode_config->mutex);
Alex Deucherd4877cf2009-12-04 16:56:37 -050088 if (mode_config->num_connector) {
89 list_for_each_entry(connector, &mode_config->connector_list, head)
90 radeon_connector_hotplug(connector);
91 }
Alex Deucher39fa10f2015-05-15 11:48:52 -040092 mutex_unlock(&mode_config->mutex);
Alex Deucherd4877cf2009-12-04 16:56:37 -050093 /* Just fire off a uevent and let userspace tell us what to do */
Dave Airlieeb1f8e42010-05-07 06:42:51 +000094 drm_helper_hpd_irq_event(dev);
Alex Deucherd4877cf2009-12-04 16:56:37 -050095}
96
Dave Airliede6284a2015-02-24 09:23:56 +100097static void radeon_dp_work_func(struct work_struct *work)
98{
Dave Airlie9843ead2015-02-24 09:24:04 +100099 struct radeon_device *rdev = container_of(work, struct radeon_device,
100 dp_work);
101 struct drm_device *dev = rdev->ddev;
102 struct drm_mode_config *mode_config = &dev->mode_config;
103 struct drm_connector *connector;
104
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);
109 }
Dave Airliede6284a2015-02-24 09:23:56 +1000110}
Alex Deucherb73ba982012-07-17 14:02:35 -0400111/**
112 * radeon_driver_irq_preinstall_kms - drm irq preinstall callback
113 *
114 * @dev: drm dev pointer
115 *
116 * Gets the hw ready to enable irqs (all asics).
117 * This function disables all interrupt sources on the GPU.
118 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200119void radeon_driver_irq_preinstall_kms(struct drm_device *dev)
120{
121 struct radeon_device *rdev = dev->dev_private;
Christian Koenigfb982572012-05-17 01:33:30 +0200122 unsigned long irqflags;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200123 unsigned i;
124
Christian Koenigfb982572012-05-17 01:33:30 +0200125 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200126 /* Disable *all* interrupts */
Alex Deucher1b370782011-11-17 20:13:28 -0500127 for (i = 0; i < RADEON_NUM_RINGS; i++)
Christian Koenig736fc372012-05-17 19:52:00 +0200128 atomic_set(&rdev->irq.ring_int[i], 0);
Alex Deucher4a6369e2013-04-12 14:04:10 -0400129 rdev->irq.dpm_thermal = false;
Ilija Hadzic54bd52062011-10-26 15:43:58 -0400130 for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
Alex Deucher9e7b4142010-03-16 17:08:06 -0400131 rdev->irq.hpd[i] = false;
Ilija Hadzic54bd52062011-10-26 15:43:58 -0400132 for (i = 0; i < RADEON_MAX_CRTCS; i++) {
133 rdev->irq.crtc_vblank_int[i] = false;
Christian Koenig736fc372012-05-17 19:52:00 +0200134 atomic_set(&rdev->irq.pflip[i], 0);
Alex Deucherf122c612012-03-30 08:59:57 -0400135 rdev->irq.afmt[i] = false;
Alex Deucher6f34be52010-11-21 10:59:01 -0500136 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200137 radeon_irq_set(rdev);
Christian Koenigfb982572012-05-17 01:33:30 +0200138 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200139 /* Clear bits */
140 radeon_irq_process(rdev);
141}
142
Alex Deucherb73ba982012-07-17 14:02:35 -0400143/**
144 * radeon_driver_irq_postinstall_kms - drm irq preinstall callback
145 *
146 * @dev: drm dev pointer
147 *
148 * Handles stuff to be done after enabling irqs (all asics).
149 * Returns 0 on success.
150 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200151int radeon_driver_irq_postinstall_kms(struct drm_device *dev)
152{
Michel Dänzerb0b9bb42015-05-26 17:53:39 +0900153 struct radeon_device *rdev = dev->dev_private;
154
155 if (ASIC_IS_AVIVO(rdev))
156 dev->max_vblank_count = 0x00ffffff;
157 else
158 dev->max_vblank_count = 0x001fffff;
159
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200160 return 0;
161}
162
Alex Deucherb73ba982012-07-17 14:02:35 -0400163/**
164 * radeon_driver_irq_uninstall_kms - drm irq uninstall callback
165 *
166 * @dev: drm dev pointer
167 *
168 * This function disables all interrupt sources on the GPU (all asics).
169 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200170void radeon_driver_irq_uninstall_kms(struct drm_device *dev)
171{
172 struct radeon_device *rdev = dev->dev_private;
Christian Koenigfb982572012-05-17 01:33:30 +0200173 unsigned long irqflags;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200174 unsigned i;
175
176 if (rdev == NULL) {
177 return;
178 }
Christian Koenigfb982572012-05-17 01:33:30 +0200179 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200180 /* Disable *all* interrupts */
Alex Deucher1b370782011-11-17 20:13:28 -0500181 for (i = 0; i < RADEON_NUM_RINGS; i++)
Christian Koenig736fc372012-05-17 19:52:00 +0200182 atomic_set(&rdev->irq.ring_int[i], 0);
Alex Deucher4a6369e2013-04-12 14:04:10 -0400183 rdev->irq.dpm_thermal = false;
Ilija Hadzic54bd52062011-10-26 15:43:58 -0400184 for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
Jerome Glisse003e69f2010-01-07 15:39:14 +0100185 rdev->irq.hpd[i] = false;
Ilija Hadzic54bd52062011-10-26 15:43:58 -0400186 for (i = 0; i < RADEON_MAX_CRTCS; i++) {
187 rdev->irq.crtc_vblank_int[i] = false;
Christian Koenig736fc372012-05-17 19:52:00 +0200188 atomic_set(&rdev->irq.pflip[i], 0);
Alex Deucherf122c612012-03-30 08:59:57 -0400189 rdev->irq.afmt[i] = false;
Alex Deucher6f34be52010-11-21 10:59:01 -0500190 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200191 radeon_irq_set(rdev);
Christian Koenigfb982572012-05-17 01:33:30 +0200192 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200193}
194
Alex Deucherb73ba982012-07-17 14:02:35 -0400195/**
196 * radeon_msi_ok - asic specific msi checks
197 *
198 * @rdev: radeon device pointer
199 *
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.
204 */
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400205static bool radeon_msi_ok(struct radeon_device *rdev)
206{
207 /* RV370/RV380 was first asic with MSI support */
208 if (rdev->family < CHIP_RV380)
209 return false;
210
211 /* MSIs don't work on AGP */
212 if (rdev->flags & RADEON_IS_AGP)
213 return false;
214
Benjamin Herrenschmidt91ed6fd2014-10-03 15:18:59 +1000215 /*
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
219 */
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;
223 }
224
Alex Deuchera18cee12011-11-01 14:20:30 -0400225 /* force MSI on */
226 if (radeon_msi == 1)
227 return true;
228 else if (radeon_msi == 0)
229 return false;
230
Alex Deucherb3621052011-10-25 15:11:08 -0400231 /* Quirks */
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))
236 return true;
237
Alex Deucher01e718e2011-11-01 14:14:18 -0400238 /* Dell RS690 only seems to work with MSIs. */
239 if ((rdev->pdev->device == 0x791f) &&
240 (rdev->pdev->subsystem_vendor == 0x1028) &&
Alex Deucher44517c42012-01-15 08:51:12 -0500241 (rdev->pdev->subsystem_device == 0x01fc))
242 return true;
243
244 /* Dell RS690 only seems to work with MSIs. */
245 if ((rdev->pdev->device == 0x791f) &&
246 (rdev->pdev->subsystem_vendor == 0x1028) &&
Alex Deucher01e718e2011-11-01 14:14:18 -0400247 (rdev->pdev->subsystem_device == 0x01fd))
248 return true;
249
Alex Deucher3a6d59d2012-09-26 12:31:45 -0400250 /* 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))
254 return true;
255
Alex Deucherfb6ca6d2012-09-26 12:40:45 -0400256 /* try and enable MSIs by default on all RS690s */
257 if (rdev->family == CHIP_RS690)
258 return true;
259
Dave Airlie16a5e322012-04-13 11:14:50 +0100260 /* RV515 seems to have MSI issues where it loses
261 * MSI rearms occasionally. This leads to lockups and freezes.
262 * disable it by default.
263 */
264 if (rdev->family == CHIP_RV515)
265 return false;
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400266 if (rdev->flags & RADEON_IS_IGP) {
267 /* APUs work fine with MSIs */
268 if (rdev->family >= CHIP_PALM)
269 return true;
270 /* lots of IGPs have problems with MSIs */
271 return false;
272 }
273
274 return true;
275}
276
Alex Deucherb73ba982012-07-17 14:02:35 -0400277/**
278 * radeon_irq_kms_init - init driver interrupt info
279 *
280 * @rdev: radeon device pointer
281 *
282 * Sets up the work irq handlers, vblank init, MSIs, etc. (all asics).
283 * Returns 0 for success, error for failure.
284 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200285int radeon_irq_kms_init(struct radeon_device *rdev)
286{
287 int r = 0;
288
Christian Koenigfb982572012-05-17 01:33:30 +0200289 spin_lock_init(&rdev->irq.lock);
Alex Deucher9e7b4142010-03-16 17:08:06 -0400290 r = drm_vblank_init(rdev->ddev, rdev->num_crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200291 if (r) {
292 return r;
293 }
Michel Dänzer978ccad2016-03-31 15:46:42 +0900294
Alex Deucher3e5cb982009-10-16 12:21:24 -0400295 /* enable msi */
296 rdev->msi_enabled = 0;
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400297
298 if (radeon_msi_ok(rdev)) {
Alex Deucher3e5cb982009-10-16 12:21:24 -0400299 int ret = pci_enable_msi(rdev->pdev);
Alex Deucherd8f60cf2009-12-01 13:43:46 -0500300 if (!ret) {
Alex Deucher3e5cb982009-10-16 12:21:24 -0400301 rdev->msi_enabled = 1;
Alex Deucherda7be682010-08-12 18:05:34 -0400302 dev_info(rdev->dev, "radeon: using MSI.\n");
Alex Deucherd8f60cf2009-12-01 13:43:46 -0500303 }
Alex Deucher3e5cb982009-10-16 12:21:24 -0400304 }
Sergey Senozhatskya01c34f2013-07-14 14:03:27 +0300305
Lyudecb5d4162015-12-03 18:26:07 -0500306 INIT_DELAYED_WORK(&rdev->hotplug_work, radeon_hotplug_work_func);
Dave Airliede6284a2015-02-24 09:23:56 +1000307 INIT_WORK(&rdev->dp_work, radeon_dp_work_func);
Sergey Senozhatskya01c34f2013-07-14 14:03:27 +0300308 INIT_WORK(&rdev->audio_work, r600_audio_update_hdmi);
Sergey Senozhatskya01c34f2013-07-14 14:03:27 +0300309
Sergey Senozhatsky27c505c2013-08-29 12:29:35 +0300310 rdev->irq.installed = true;
Daniel Vetterbb0f1b52013-11-03 21:09:27 +0100311 r = drm_irq_install(rdev->ddev, rdev->ddev->pdev->irq);
Sergey Senozhatsky27c505c2013-08-29 12:29:35 +0300312 if (r) {
313 rdev->irq.installed = false;
Lyudecb5d4162015-12-03 18:26:07 -0500314 flush_delayed_work(&rdev->hotplug_work);
Sergey Senozhatsky27c505c2013-08-29 12:29:35 +0300315 return r;
316 }
317
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200318 DRM_INFO("radeon: irq initialized.\n");
319 return 0;
320}
321
Alex Deucherb73ba982012-07-17 14:02:35 -0400322/**
Masanari Iidacf2fbdd2013-03-16 20:53:05 +0900323 * radeon_irq_kms_fini - tear down driver interrupt info
Alex Deucherb73ba982012-07-17 14:02:35 -0400324 *
325 * @rdev: radeon device pointer
326 *
327 * Tears down the work irq handlers, vblank handlers, MSIs, etc. (all asics).
328 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200329void radeon_irq_kms_fini(struct radeon_device *rdev)
330{
Jerome Glisse003e69f2010-01-07 15:39:14 +0100331 drm_vblank_cleanup(rdev->ddev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200332 if (rdev->irq.installed) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200333 drm_irq_uninstall(rdev->ddev);
Jerome Glisse003e69f2010-01-07 15:39:14 +0100334 rdev->irq.installed = false;
Alex Deucher3e5cb982009-10-16 12:21:24 -0400335 if (rdev->msi_enabled)
336 pci_disable_msi(rdev->pdev);
Lyudecb5d4162015-12-03 18:26:07 -0500337 flush_delayed_work(&rdev->hotplug_work);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200338 }
339}
Dave Airlie1614f8b2009-12-01 16:04:56 +1000340
Alex Deucherb73ba982012-07-17 14:02:35 -0400341/**
342 * radeon_irq_kms_sw_irq_get - enable software interrupt
343 *
344 * @rdev: radeon device pointer
345 * @ring: ring whose interrupt you want to enable
346 *
347 * Enables the software interrupt for a specific ring (all asics).
348 * The software interrupt is generally used to signal a fence on
349 * a particular ring.
350 */
Alex Deucher1b370782011-11-17 20:13:28 -0500351void radeon_irq_kms_sw_irq_get(struct radeon_device *rdev, int ring)
Dave Airlie1614f8b2009-12-01 16:04:56 +1000352{
353 unsigned long irqflags;
354
Christian Koenig736fc372012-05-17 19:52:00 +0200355 if (!rdev->ddev->irq_enabled)
356 return;
357
358 if (atomic_inc_return(&rdev->irq.ring_int[ring]) == 1) {
359 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Dave Airlie1614f8b2009-12-01 16:04:56 +1000360 radeon_irq_set(rdev);
Christian Koenig736fc372012-05-17 19:52:00 +0200361 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Dave Airlie1614f8b2009-12-01 16:04:56 +1000362 }
Dave Airlie1614f8b2009-12-01 16:04:56 +1000363}
364
Alex Deucherb73ba982012-07-17 14:02:35 -0400365/**
Maarten Lankhorst954605c2014-01-09 11:03:12 +0100366 * radeon_irq_kms_sw_irq_get_delayed - enable software interrupt
367 *
368 * @rdev: radeon device pointer
369 * @ring: ring whose interrupt you want to enable
370 *
371 * Enables the software interrupt for a specific ring (all asics).
372 * The software interrupt is generally used to signal a fence on
373 * a particular ring.
374 */
375bool radeon_irq_kms_sw_irq_get_delayed(struct radeon_device *rdev, int ring)
376{
377 return atomic_inc_return(&rdev->irq.ring_int[ring]) == 1;
378}
379
380/**
Alex Deucherb73ba982012-07-17 14:02:35 -0400381 * radeon_irq_kms_sw_irq_put - disable software interrupt
382 *
383 * @rdev: radeon device pointer
384 * @ring: ring whose interrupt you want to disable
385 *
386 * Disables the software interrupt for a specific ring (all asics).
387 * The software interrupt is generally used to signal a fence on
388 * a particular ring.
389 */
Alex Deucher1b370782011-11-17 20:13:28 -0500390void radeon_irq_kms_sw_irq_put(struct radeon_device *rdev, int ring)
Dave Airlie1614f8b2009-12-01 16:04:56 +1000391{
392 unsigned long irqflags;
393
Christian Koenig736fc372012-05-17 19:52:00 +0200394 if (!rdev->ddev->irq_enabled)
395 return;
396
397 if (atomic_dec_and_test(&rdev->irq.ring_int[ring])) {
398 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Dave Airlie1614f8b2009-12-01 16:04:56 +1000399 radeon_irq_set(rdev);
Christian Koenig736fc372012-05-17 19:52:00 +0200400 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Dave Airlie1614f8b2009-12-01 16:04:56 +1000401 }
Dave Airlie1614f8b2009-12-01 16:04:56 +1000402}
403
Alex Deucherb73ba982012-07-17 14:02:35 -0400404/**
405 * radeon_irq_kms_pflip_irq_get - enable pageflip interrupt
406 *
407 * @rdev: radeon device pointer
408 * @crtc: crtc whose interrupt you want to enable
409 *
410 * Enables the pageflip interrupt for a specific crtc (all asics).
411 * For pageflips we use the vblank interrupt source.
412 */
Alex Deucher6f34be52010-11-21 10:59:01 -0500413void radeon_irq_kms_pflip_irq_get(struct radeon_device *rdev, int crtc)
414{
415 unsigned long irqflags;
416
417 if (crtc < 0 || crtc >= rdev->num_crtc)
418 return;
419
Christian Koenig736fc372012-05-17 19:52:00 +0200420 if (!rdev->ddev->irq_enabled)
421 return;
422
423 if (atomic_inc_return(&rdev->irq.pflip[crtc]) == 1) {
424 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Alex Deucher6f34be52010-11-21 10:59:01 -0500425 radeon_irq_set(rdev);
Christian Koenig736fc372012-05-17 19:52:00 +0200426 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Alex Deucher6f34be52010-11-21 10:59:01 -0500427 }
Alex Deucher6f34be52010-11-21 10:59:01 -0500428}
429
Alex Deucherb73ba982012-07-17 14:02:35 -0400430/**
431 * radeon_irq_kms_pflip_irq_put - disable pageflip interrupt
432 *
433 * @rdev: radeon device pointer
434 * @crtc: crtc whose interrupt you want to disable
435 *
436 * Disables the pageflip interrupt for a specific crtc (all asics).
437 * For pageflips we use the vblank interrupt source.
438 */
Alex Deucher6f34be52010-11-21 10:59:01 -0500439void radeon_irq_kms_pflip_irq_put(struct radeon_device *rdev, int crtc)
440{
441 unsigned long irqflags;
442
443 if (crtc < 0 || crtc >= rdev->num_crtc)
444 return;
445
Christian Koenig736fc372012-05-17 19:52:00 +0200446 if (!rdev->ddev->irq_enabled)
447 return;
448
449 if (atomic_dec_and_test(&rdev->irq.pflip[crtc])) {
450 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Alex Deucher6f34be52010-11-21 10:59:01 -0500451 radeon_irq_set(rdev);
Christian Koenig736fc372012-05-17 19:52:00 +0200452 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Alex Deucher6f34be52010-11-21 10:59:01 -0500453 }
Alex Deucher6f34be52010-11-21 10:59:01 -0500454}
455
Alex Deucherb73ba982012-07-17 14:02:35 -0400456/**
457 * radeon_irq_kms_enable_afmt - enable audio format change interrupt
458 *
459 * @rdev: radeon device pointer
460 * @block: afmt block whose interrupt you want to enable
461 *
462 * Enables the afmt change interrupt for a specific afmt block (all asics).
463 */
Christian Koenigfb982572012-05-17 01:33:30 +0200464void radeon_irq_kms_enable_afmt(struct radeon_device *rdev, int block)
465{
466 unsigned long irqflags;
467
Alex Deuchercc9945b2013-02-26 16:17:33 -0500468 if (!rdev->ddev->irq_enabled)
469 return;
470
Christian Koenigfb982572012-05-17 01:33:30 +0200471 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);
475
476}
477
Alex Deucherb73ba982012-07-17 14:02:35 -0400478/**
479 * radeon_irq_kms_disable_afmt - disable audio format change interrupt
480 *
481 * @rdev: radeon device pointer
482 * @block: afmt block whose interrupt you want to disable
483 *
484 * Disables the afmt change interrupt for a specific afmt block (all asics).
485 */
Christian Koenigfb982572012-05-17 01:33:30 +0200486void radeon_irq_kms_disable_afmt(struct radeon_device *rdev, int block)
487{
488 unsigned long irqflags;
489
Alex Deuchercc9945b2013-02-26 16:17:33 -0500490 if (!rdev->ddev->irq_enabled)
491 return;
492
Christian Koenigfb982572012-05-17 01:33:30 +0200493 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);
497}
498
Alex Deucherb73ba982012-07-17 14:02:35 -0400499/**
500 * radeon_irq_kms_enable_hpd - enable hotplug detect interrupt
501 *
502 * @rdev: radeon device pointer
503 * @hpd_mask: mask of hpd pins you want to enable.
504 *
505 * Enables the hotplug detect interrupt for a specific hpd pin (all asics).
506 */
Christian Koenigfb982572012-05-17 01:33:30 +0200507void radeon_irq_kms_enable_hpd(struct radeon_device *rdev, unsigned hpd_mask)
508{
509 unsigned long irqflags;
510 int i;
511
Alex Deuchercc9945b2013-02-26 16:17:33 -0500512 if (!rdev->ddev->irq_enabled)
513 return;
514
Christian Koenigfb982572012-05-17 01:33:30 +0200515 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);
520}
521
Alex Deucherb73ba982012-07-17 14:02:35 -0400522/**
523 * radeon_irq_kms_disable_hpd - disable hotplug detect interrupt
524 *
525 * @rdev: radeon device pointer
526 * @hpd_mask: mask of hpd pins you want to disable.
527 *
528 * Disables the hotplug detect interrupt for a specific hpd pin (all asics).
529 */
Christian Koenigfb982572012-05-17 01:33:30 +0200530void radeon_irq_kms_disable_hpd(struct radeon_device *rdev, unsigned hpd_mask)
531{
532 unsigned long irqflags;
533 int i;
534
Alex Deuchercc9945b2013-02-26 16:17:33 -0500535 if (!rdev->ddev->irq_enabled)
536 return;
537
Christian Koenigfb982572012-05-17 01:33:30 +0200538 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);
543}
544