blob: 1b7528df7f7f8ddedce860f028c339b2cf2e09a7 [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);
Daniel Vetter2babdc82016-12-14 00:08:04 +010088 list_for_each_entry(connector, &mode_config->connector_list, head)
89 radeon_connector_hotplug(connector);
Alex Deucher39fa10f2015-05-15 11:48:52 -040090 mutex_unlock(&mode_config->mutex);
Alex Deucherd4877cf2009-12-04 16:56:37 -050091 /* Just fire off a uevent and let userspace tell us what to do */
Dave Airlieeb1f8e42010-05-07 06:42:51 +000092 drm_helper_hpd_irq_event(dev);
Alex Deucherd4877cf2009-12-04 16:56:37 -050093}
94
Dave Airliede6284a2015-02-24 09:23:56 +100095static void radeon_dp_work_func(struct work_struct *work)
96{
Dave Airlie9843ead2015-02-24 09:24:04 +100097 struct radeon_device *rdev = container_of(work, struct radeon_device,
98 dp_work);
99 struct drm_device *dev = rdev->ddev;
100 struct drm_mode_config *mode_config = &dev->mode_config;
101 struct drm_connector *connector;
102
103 /* this should take a mutex */
Daniel Vetter2babdc82016-12-14 00:08:04 +0100104 list_for_each_entry(connector, &mode_config->connector_list, head)
105 radeon_connector_hotplug(connector);
Dave Airliede6284a2015-02-24 09:23:56 +1000106}
Alex Deucherb73ba982012-07-17 14:02:35 -0400107/**
108 * radeon_driver_irq_preinstall_kms - drm irq preinstall callback
109 *
110 * @dev: drm dev pointer
111 *
112 * Gets the hw ready to enable irqs (all asics).
113 * This function disables all interrupt sources on the GPU.
114 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200115void radeon_driver_irq_preinstall_kms(struct drm_device *dev)
116{
117 struct radeon_device *rdev = dev->dev_private;
Christian Koenigfb982572012-05-17 01:33:30 +0200118 unsigned long irqflags;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200119 unsigned i;
120
Christian Koenigfb982572012-05-17 01:33:30 +0200121 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200122 /* Disable *all* interrupts */
Alex Deucher1b370782011-11-17 20:13:28 -0500123 for (i = 0; i < RADEON_NUM_RINGS; i++)
Christian Koenig736fc372012-05-17 19:52:00 +0200124 atomic_set(&rdev->irq.ring_int[i], 0);
Alex Deucher4a6369e2013-04-12 14:04:10 -0400125 rdev->irq.dpm_thermal = false;
Ilija Hadzic54bd5202011-10-26 15:43:58 -0400126 for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
Alex Deucher9e7b4142010-03-16 17:08:06 -0400127 rdev->irq.hpd[i] = false;
Ilija Hadzic54bd5202011-10-26 15:43:58 -0400128 for (i = 0; i < RADEON_MAX_CRTCS; i++) {
129 rdev->irq.crtc_vblank_int[i] = false;
Christian Koenig736fc372012-05-17 19:52:00 +0200130 atomic_set(&rdev->irq.pflip[i], 0);
Alex Deucherf122c612012-03-30 08:59:57 -0400131 rdev->irq.afmt[i] = false;
Alex Deucher6f34be52010-11-21 10:59:01 -0500132 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200133 radeon_irq_set(rdev);
Christian Koenigfb982572012-05-17 01:33:30 +0200134 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200135 /* Clear bits */
136 radeon_irq_process(rdev);
137}
138
Alex Deucherb73ba982012-07-17 14:02:35 -0400139/**
140 * radeon_driver_irq_postinstall_kms - drm irq preinstall callback
141 *
142 * @dev: drm dev pointer
143 *
144 * Handles stuff to be done after enabling irqs (all asics).
145 * Returns 0 on success.
146 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200147int radeon_driver_irq_postinstall_kms(struct drm_device *dev)
148{
Michel Dänzerb0b9bb42015-05-26 17:53:39 +0900149 struct radeon_device *rdev = dev->dev_private;
150
151 if (ASIC_IS_AVIVO(rdev))
152 dev->max_vblank_count = 0x00ffffff;
153 else
154 dev->max_vblank_count = 0x001fffff;
155
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200156 return 0;
157}
158
Alex Deucherb73ba982012-07-17 14:02:35 -0400159/**
160 * radeon_driver_irq_uninstall_kms - drm irq uninstall callback
161 *
162 * @dev: drm dev pointer
163 *
164 * This function disables all interrupt sources on the GPU (all asics).
165 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200166void radeon_driver_irq_uninstall_kms(struct drm_device *dev)
167{
168 struct radeon_device *rdev = dev->dev_private;
Christian Koenigfb982572012-05-17 01:33:30 +0200169 unsigned long irqflags;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200170 unsigned i;
171
172 if (rdev == NULL) {
173 return;
174 }
Christian Koenigfb982572012-05-17 01:33:30 +0200175 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200176 /* Disable *all* interrupts */
Alex Deucher1b370782011-11-17 20:13:28 -0500177 for (i = 0; i < RADEON_NUM_RINGS; i++)
Christian Koenig736fc372012-05-17 19:52:00 +0200178 atomic_set(&rdev->irq.ring_int[i], 0);
Alex Deucher4a6369e2013-04-12 14:04:10 -0400179 rdev->irq.dpm_thermal = false;
Ilija Hadzic54bd5202011-10-26 15:43:58 -0400180 for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
Jerome Glisse003e69f2010-01-07 15:39:14 +0100181 rdev->irq.hpd[i] = false;
Ilija Hadzic54bd5202011-10-26 15:43:58 -0400182 for (i = 0; i < RADEON_MAX_CRTCS; i++) {
183 rdev->irq.crtc_vblank_int[i] = false;
Christian Koenig736fc372012-05-17 19:52:00 +0200184 atomic_set(&rdev->irq.pflip[i], 0);
Alex Deucherf122c612012-03-30 08:59:57 -0400185 rdev->irq.afmt[i] = false;
Alex Deucher6f34be52010-11-21 10:59:01 -0500186 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200187 radeon_irq_set(rdev);
Christian Koenigfb982572012-05-17 01:33:30 +0200188 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200189}
190
Alex Deucherb73ba982012-07-17 14:02:35 -0400191/**
192 * radeon_msi_ok - asic specific msi checks
193 *
194 * @rdev: radeon device pointer
195 *
196 * Handles asic specific MSI checks to determine if
197 * MSIs should be enabled on a particular chip (all asics).
198 * Returns true if MSIs should be enabled, false if MSIs
199 * should not be enabled.
200 */
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400201static bool radeon_msi_ok(struct radeon_device *rdev)
202{
203 /* RV370/RV380 was first asic with MSI support */
204 if (rdev->family < CHIP_RV380)
205 return false;
206
207 /* MSIs don't work on AGP */
208 if (rdev->flags & RADEON_IS_AGP)
209 return false;
210
Benjamin Herrenschmidt91ed6fd2014-10-03 15:18:59 +1000211 /*
212 * Older chips have a HW limitation, they can only generate 40 bits
213 * of address for "64-bit" MSIs which breaks on some platforms, notably
214 * IBM POWER servers, so we limit them
215 */
216 if (rdev->family < CHIP_BONAIRE) {
217 dev_info(rdev->dev, "radeon: MSI limited to 32-bit\n");
218 rdev->pdev->no_64bit_msi = 1;
219 }
220
Alex Deuchera18cee12011-11-01 14:20:30 -0400221 /* force MSI on */
222 if (radeon_msi == 1)
223 return true;
224 else if (radeon_msi == 0)
225 return false;
226
Alex Deucherb3621052011-10-25 15:11:08 -0400227 /* Quirks */
228 /* HP RS690 only seems to work with MSIs. */
229 if ((rdev->pdev->device == 0x791f) &&
230 (rdev->pdev->subsystem_vendor == 0x103c) &&
231 (rdev->pdev->subsystem_device == 0x30c2))
232 return true;
233
Alex Deucher01e718e2011-11-01 14:14:18 -0400234 /* Dell RS690 only seems to work with MSIs. */
235 if ((rdev->pdev->device == 0x791f) &&
236 (rdev->pdev->subsystem_vendor == 0x1028) &&
Alex Deucher44517c42012-01-15 08:51:12 -0500237 (rdev->pdev->subsystem_device == 0x01fc))
238 return true;
239
240 /* Dell RS690 only seems to work with MSIs. */
241 if ((rdev->pdev->device == 0x791f) &&
242 (rdev->pdev->subsystem_vendor == 0x1028) &&
Alex Deucher01e718e2011-11-01 14:14:18 -0400243 (rdev->pdev->subsystem_device == 0x01fd))
244 return true;
245
Alex Deucher3a6d59d2012-09-26 12:31:45 -0400246 /* Gateway RS690 only seems to work with MSIs. */
247 if ((rdev->pdev->device == 0x791f) &&
248 (rdev->pdev->subsystem_vendor == 0x107b) &&
249 (rdev->pdev->subsystem_device == 0x0185))
250 return true;
251
Alex Deucherfb6ca6d2012-09-26 12:40:45 -0400252 /* try and enable MSIs by default on all RS690s */
253 if (rdev->family == CHIP_RS690)
254 return true;
255
Dave Airlie16a5e322012-04-13 11:14:50 +0100256 /* RV515 seems to have MSI issues where it loses
257 * MSI rearms occasionally. This leads to lockups and freezes.
258 * disable it by default.
259 */
260 if (rdev->family == CHIP_RV515)
261 return false;
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400262 if (rdev->flags & RADEON_IS_IGP) {
263 /* APUs work fine with MSIs */
264 if (rdev->family >= CHIP_PALM)
265 return true;
266 /* lots of IGPs have problems with MSIs */
267 return false;
268 }
269
270 return true;
271}
272
Alex Deucherb73ba982012-07-17 14:02:35 -0400273/**
274 * radeon_irq_kms_init - init driver interrupt info
275 *
276 * @rdev: radeon device pointer
277 *
278 * Sets up the work irq handlers, vblank init, MSIs, etc. (all asics).
279 * Returns 0 for success, error for failure.
280 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200281int radeon_irq_kms_init(struct radeon_device *rdev)
282{
283 int r = 0;
284
Christian Koenigfb982572012-05-17 01:33:30 +0200285 spin_lock_init(&rdev->irq.lock);
Alex Deucher9e7b4142010-03-16 17:08:06 -0400286 r = drm_vblank_init(rdev->ddev, rdev->num_crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200287 if (r) {
288 return r;
289 }
Michel Dänzer978ccad2016-03-31 15:46:42 +0900290
Alex Deucher3e5cb982009-10-16 12:21:24 -0400291 /* enable msi */
292 rdev->msi_enabled = 0;
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400293
294 if (radeon_msi_ok(rdev)) {
Alex Deucher3e5cb982009-10-16 12:21:24 -0400295 int ret = pci_enable_msi(rdev->pdev);
Alex Deucherd8f60cf2009-12-01 13:43:46 -0500296 if (!ret) {
Alex Deucher3e5cb982009-10-16 12:21:24 -0400297 rdev->msi_enabled = 1;
Alex Deucherda7be682010-08-12 18:05:34 -0400298 dev_info(rdev->dev, "radeon: using MSI.\n");
Alex Deucherd8f60cf2009-12-01 13:43:46 -0500299 }
Alex Deucher3e5cb982009-10-16 12:21:24 -0400300 }
Sergey Senozhatskya01c34f2013-07-14 14:03:27 +0300301
Lyudecb5d4162015-12-03 18:26:07 -0500302 INIT_DELAYED_WORK(&rdev->hotplug_work, radeon_hotplug_work_func);
Dave Airliede6284a2015-02-24 09:23:56 +1000303 INIT_WORK(&rdev->dp_work, radeon_dp_work_func);
Sergey Senozhatskya01c34f2013-07-14 14:03:27 +0300304 INIT_WORK(&rdev->audio_work, r600_audio_update_hdmi);
Sergey Senozhatskya01c34f2013-07-14 14:03:27 +0300305
Sergey Senozhatsky27c505c2013-08-29 12:29:35 +0300306 rdev->irq.installed = true;
Daniel Vetterbb0f1b52013-11-03 21:09:27 +0100307 r = drm_irq_install(rdev->ddev, rdev->ddev->pdev->irq);
Sergey Senozhatsky27c505c2013-08-29 12:29:35 +0300308 if (r) {
309 rdev->irq.installed = false;
Lyudecb5d4162015-12-03 18:26:07 -0500310 flush_delayed_work(&rdev->hotplug_work);
Sergey Senozhatsky27c505c2013-08-29 12:29:35 +0300311 return r;
312 }
313
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200314 DRM_INFO("radeon: irq initialized.\n");
315 return 0;
316}
317
Alex Deucherb73ba982012-07-17 14:02:35 -0400318/**
Masanari Iidacf2fbdd2013-03-16 20:53:05 +0900319 * radeon_irq_kms_fini - tear down driver interrupt info
Alex Deucherb73ba982012-07-17 14:02:35 -0400320 *
321 * @rdev: radeon device pointer
322 *
323 * Tears down the work irq handlers, vblank handlers, MSIs, etc. (all asics).
324 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200325void radeon_irq_kms_fini(struct radeon_device *rdev)
326{
Jerome Glisse003e69f2010-01-07 15:39:14 +0100327 drm_vblank_cleanup(rdev->ddev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200328 if (rdev->irq.installed) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200329 drm_irq_uninstall(rdev->ddev);
Jerome Glisse003e69f2010-01-07 15:39:14 +0100330 rdev->irq.installed = false;
Alex Deucher3e5cb982009-10-16 12:21:24 -0400331 if (rdev->msi_enabled)
332 pci_disable_msi(rdev->pdev);
Lyudecb5d4162015-12-03 18:26:07 -0500333 flush_delayed_work(&rdev->hotplug_work);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200334 }
335}
Dave Airlie1614f8b2009-12-01 16:04:56 +1000336
Alex Deucherb73ba982012-07-17 14:02:35 -0400337/**
338 * radeon_irq_kms_sw_irq_get - enable software interrupt
339 *
340 * @rdev: radeon device pointer
341 * @ring: ring whose interrupt you want to enable
342 *
343 * Enables the software interrupt for a specific ring (all asics).
344 * The software interrupt is generally used to signal a fence on
345 * a particular ring.
346 */
Alex Deucher1b370782011-11-17 20:13:28 -0500347void radeon_irq_kms_sw_irq_get(struct radeon_device *rdev, int ring)
Dave Airlie1614f8b2009-12-01 16:04:56 +1000348{
349 unsigned long irqflags;
350
Christian Koenig736fc372012-05-17 19:52:00 +0200351 if (!rdev->ddev->irq_enabled)
352 return;
353
354 if (atomic_inc_return(&rdev->irq.ring_int[ring]) == 1) {
355 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Dave Airlie1614f8b2009-12-01 16:04:56 +1000356 radeon_irq_set(rdev);
Christian Koenig736fc372012-05-17 19:52:00 +0200357 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Dave Airlie1614f8b2009-12-01 16:04:56 +1000358 }
Dave Airlie1614f8b2009-12-01 16:04:56 +1000359}
360
Alex Deucherb73ba982012-07-17 14:02:35 -0400361/**
Maarten Lankhorst954605c2014-01-09 11:03:12 +0100362 * radeon_irq_kms_sw_irq_get_delayed - enable software interrupt
363 *
364 * @rdev: radeon device pointer
365 * @ring: ring whose interrupt you want to enable
366 *
367 * Enables the software interrupt for a specific ring (all asics).
368 * The software interrupt is generally used to signal a fence on
369 * a particular ring.
370 */
371bool radeon_irq_kms_sw_irq_get_delayed(struct radeon_device *rdev, int ring)
372{
373 return atomic_inc_return(&rdev->irq.ring_int[ring]) == 1;
374}
375
376/**
Alex Deucherb73ba982012-07-17 14:02:35 -0400377 * radeon_irq_kms_sw_irq_put - disable software interrupt
378 *
379 * @rdev: radeon device pointer
380 * @ring: ring whose interrupt you want to disable
381 *
382 * Disables the software interrupt for a specific ring (all asics).
383 * The software interrupt is generally used to signal a fence on
384 * a particular ring.
385 */
Alex Deucher1b370782011-11-17 20:13:28 -0500386void radeon_irq_kms_sw_irq_put(struct radeon_device *rdev, int ring)
Dave Airlie1614f8b2009-12-01 16:04:56 +1000387{
388 unsigned long irqflags;
389
Christian Koenig736fc372012-05-17 19:52:00 +0200390 if (!rdev->ddev->irq_enabled)
391 return;
392
393 if (atomic_dec_and_test(&rdev->irq.ring_int[ring])) {
394 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Dave Airlie1614f8b2009-12-01 16:04:56 +1000395 radeon_irq_set(rdev);
Christian Koenig736fc372012-05-17 19:52:00 +0200396 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Dave Airlie1614f8b2009-12-01 16:04:56 +1000397 }
Dave Airlie1614f8b2009-12-01 16:04:56 +1000398}
399
Alex Deucherb73ba982012-07-17 14:02:35 -0400400/**
401 * radeon_irq_kms_pflip_irq_get - enable pageflip interrupt
402 *
403 * @rdev: radeon device pointer
404 * @crtc: crtc whose interrupt you want to enable
405 *
406 * Enables the pageflip interrupt for a specific crtc (all asics).
407 * For pageflips we use the vblank interrupt source.
408 */
Alex Deucher6f34be52010-11-21 10:59:01 -0500409void radeon_irq_kms_pflip_irq_get(struct radeon_device *rdev, int crtc)
410{
411 unsigned long irqflags;
412
413 if (crtc < 0 || crtc >= rdev->num_crtc)
414 return;
415
Christian Koenig736fc372012-05-17 19:52:00 +0200416 if (!rdev->ddev->irq_enabled)
417 return;
418
419 if (atomic_inc_return(&rdev->irq.pflip[crtc]) == 1) {
420 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Alex Deucher6f34be52010-11-21 10:59:01 -0500421 radeon_irq_set(rdev);
Christian Koenig736fc372012-05-17 19:52:00 +0200422 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Alex Deucher6f34be52010-11-21 10:59:01 -0500423 }
Alex Deucher6f34be52010-11-21 10:59:01 -0500424}
425
Alex Deucherb73ba982012-07-17 14:02:35 -0400426/**
427 * radeon_irq_kms_pflip_irq_put - disable pageflip interrupt
428 *
429 * @rdev: radeon device pointer
430 * @crtc: crtc whose interrupt you want to disable
431 *
432 * Disables the pageflip interrupt for a specific crtc (all asics).
433 * For pageflips we use the vblank interrupt source.
434 */
Alex Deucher6f34be52010-11-21 10:59:01 -0500435void radeon_irq_kms_pflip_irq_put(struct radeon_device *rdev, int crtc)
436{
437 unsigned long irqflags;
438
439 if (crtc < 0 || crtc >= rdev->num_crtc)
440 return;
441
Christian Koenig736fc372012-05-17 19:52:00 +0200442 if (!rdev->ddev->irq_enabled)
443 return;
444
445 if (atomic_dec_and_test(&rdev->irq.pflip[crtc])) {
446 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Alex Deucher6f34be52010-11-21 10:59:01 -0500447 radeon_irq_set(rdev);
Christian Koenig736fc372012-05-17 19:52:00 +0200448 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Alex Deucher6f34be52010-11-21 10:59:01 -0500449 }
Alex Deucher6f34be52010-11-21 10:59:01 -0500450}
451
Alex Deucherb73ba982012-07-17 14:02:35 -0400452/**
453 * radeon_irq_kms_enable_afmt - enable audio format change interrupt
454 *
455 * @rdev: radeon device pointer
456 * @block: afmt block whose interrupt you want to enable
457 *
458 * Enables the afmt change interrupt for a specific afmt block (all asics).
459 */
Christian Koenigfb982572012-05-17 01:33:30 +0200460void radeon_irq_kms_enable_afmt(struct radeon_device *rdev, int block)
461{
462 unsigned long irqflags;
463
Alex Deuchercc9945b2013-02-26 16:17:33 -0500464 if (!rdev->ddev->irq_enabled)
465 return;
466
Christian Koenigfb982572012-05-17 01:33:30 +0200467 spin_lock_irqsave(&rdev->irq.lock, irqflags);
468 rdev->irq.afmt[block] = true;
469 radeon_irq_set(rdev);
470 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
471
472}
473
Alex Deucherb73ba982012-07-17 14:02:35 -0400474/**
475 * radeon_irq_kms_disable_afmt - disable audio format change interrupt
476 *
477 * @rdev: radeon device pointer
478 * @block: afmt block whose interrupt you want to disable
479 *
480 * Disables the afmt change interrupt for a specific afmt block (all asics).
481 */
Christian Koenigfb982572012-05-17 01:33:30 +0200482void radeon_irq_kms_disable_afmt(struct radeon_device *rdev, int block)
483{
484 unsigned long irqflags;
485
Alex Deuchercc9945b2013-02-26 16:17:33 -0500486 if (!rdev->ddev->irq_enabled)
487 return;
488
Christian Koenigfb982572012-05-17 01:33:30 +0200489 spin_lock_irqsave(&rdev->irq.lock, irqflags);
490 rdev->irq.afmt[block] = false;
491 radeon_irq_set(rdev);
492 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
493}
494
Alex Deucherb73ba982012-07-17 14:02:35 -0400495/**
496 * radeon_irq_kms_enable_hpd - enable hotplug detect interrupt
497 *
498 * @rdev: radeon device pointer
499 * @hpd_mask: mask of hpd pins you want to enable.
500 *
501 * Enables the hotplug detect interrupt for a specific hpd pin (all asics).
502 */
Christian Koenigfb982572012-05-17 01:33:30 +0200503void radeon_irq_kms_enable_hpd(struct radeon_device *rdev, unsigned hpd_mask)
504{
505 unsigned long irqflags;
506 int i;
507
Alex Deuchercc9945b2013-02-26 16:17:33 -0500508 if (!rdev->ddev->irq_enabled)
509 return;
510
Christian Koenigfb982572012-05-17 01:33:30 +0200511 spin_lock_irqsave(&rdev->irq.lock, irqflags);
512 for (i = 0; i < RADEON_MAX_HPD_PINS; ++i)
513 rdev->irq.hpd[i] |= !!(hpd_mask & (1 << i));
514 radeon_irq_set(rdev);
515 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
516}
517
Alex Deucherb73ba982012-07-17 14:02:35 -0400518/**
519 * radeon_irq_kms_disable_hpd - disable hotplug detect interrupt
520 *
521 * @rdev: radeon device pointer
522 * @hpd_mask: mask of hpd pins you want to disable.
523 *
524 * Disables the hotplug detect interrupt for a specific hpd pin (all asics).
525 */
Christian Koenigfb982572012-05-17 01:33:30 +0200526void radeon_irq_kms_disable_hpd(struct radeon_device *rdev, unsigned hpd_mask)
527{
528 unsigned long irqflags;
529 int i;
530
Alex Deuchercc9945b2013-02-26 16:17:33 -0500531 if (!rdev->ddev->irq_enabled)
532 return;
533
Christian Koenigfb982572012-05-17 01:33:30 +0200534 spin_lock_irqsave(&rdev->irq.lock, irqflags);
535 for (i = 0; i < RADEON_MAX_HPD_PINS; ++i)
536 rdev->irq.hpd[i] &= !(hpd_mask & (1 << i));
537 radeon_irq_set(rdev);
538 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
539}
540