blob: 1162bfa464f3036192854f4d0f3f363eb1ee8cff [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,
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
Alex Deucher39fa10f2015-05-15 11:48:52 -040082 mutex_lock(&mode_config->mutex);
Alex Deucherd4877cf2009-12-04 16:56:37 -050083 if (mode_config->num_connector) {
84 list_for_each_entry(connector, &mode_config->connector_list, head)
85 radeon_connector_hotplug(connector);
86 }
Alex Deucher39fa10f2015-05-15 11:48:52 -040087 mutex_unlock(&mode_config->mutex);
Alex Deucherd4877cf2009-12-04 16:56:37 -050088 /* Just fire off a uevent and let userspace tell us what to do */
Dave Airlieeb1f8e42010-05-07 06:42:51 +000089 drm_helper_hpd_irq_event(dev);
Alex Deucherd4877cf2009-12-04 16:56:37 -050090}
91
Dave Airliede6284a2015-02-24 09:23:56 +100092static void radeon_dp_work_func(struct work_struct *work)
93{
Dave Airlie9843ead2015-02-24 09:24:04 +100094 struct radeon_device *rdev = container_of(work, struct radeon_device,
95 dp_work);
96 struct drm_device *dev = rdev->ddev;
97 struct drm_mode_config *mode_config = &dev->mode_config;
98 struct drm_connector *connector;
99
100 /* this should take a mutex */
101 if (mode_config->num_connector) {
102 list_for_each_entry(connector, &mode_config->connector_list, head)
103 radeon_connector_hotplug(connector);
104 }
Dave Airliede6284a2015-02-24 09:23:56 +1000105}
Alex Deucherb73ba982012-07-17 14:02:35 -0400106/**
107 * radeon_driver_irq_preinstall_kms - drm irq preinstall callback
108 *
109 * @dev: drm dev pointer
110 *
111 * Gets the hw ready to enable irqs (all asics).
112 * This function disables all interrupt sources on the GPU.
113 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200114void radeon_driver_irq_preinstall_kms(struct drm_device *dev)
115{
116 struct radeon_device *rdev = dev->dev_private;
Christian Koenigfb982572012-05-17 01:33:30 +0200117 unsigned long irqflags;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200118 unsigned i;
119
Christian Koenigfb982572012-05-17 01:33:30 +0200120 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200121 /* Disable *all* interrupts */
Alex Deucher1b370782011-11-17 20:13:28 -0500122 for (i = 0; i < RADEON_NUM_RINGS; i++)
Christian Koenig736fc372012-05-17 19:52:00 +0200123 atomic_set(&rdev->irq.ring_int[i], 0);
Alex Deucher4a6369e2013-04-12 14:04:10 -0400124 rdev->irq.dpm_thermal = false;
Ilija Hadzic54bd5202011-10-26 15:43:58 -0400125 for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
Alex Deucher9e7b4142010-03-16 17:08:06 -0400126 rdev->irq.hpd[i] = false;
Ilija Hadzic54bd5202011-10-26 15:43:58 -0400127 for (i = 0; i < RADEON_MAX_CRTCS; i++) {
128 rdev->irq.crtc_vblank_int[i] = false;
Christian Koenig736fc372012-05-17 19:52:00 +0200129 atomic_set(&rdev->irq.pflip[i], 0);
Alex Deucherf122c612012-03-30 08:59:57 -0400130 rdev->irq.afmt[i] = false;
Alex Deucher6f34be52010-11-21 10:59:01 -0500131 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200132 radeon_irq_set(rdev);
Christian Koenigfb982572012-05-17 01:33:30 +0200133 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200134 /* Clear bits */
135 radeon_irq_process(rdev);
136}
137
Alex Deucherb73ba982012-07-17 14:02:35 -0400138/**
139 * radeon_driver_irq_postinstall_kms - drm irq preinstall callback
140 *
141 * @dev: drm dev pointer
142 *
143 * Handles stuff to be done after enabling irqs (all asics).
144 * Returns 0 on success.
145 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200146int radeon_driver_irq_postinstall_kms(struct drm_device *dev)
147{
Michel Dänzerb0b9bb42015-05-26 17:53:39 +0900148 struct radeon_device *rdev = dev->dev_private;
149
150 if (ASIC_IS_AVIVO(rdev))
151 dev->max_vblank_count = 0x00ffffff;
152 else
153 dev->max_vblank_count = 0x001fffff;
154
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200155 return 0;
156}
157
Alex Deucherb73ba982012-07-17 14:02:35 -0400158/**
159 * radeon_driver_irq_uninstall_kms - drm irq uninstall callback
160 *
161 * @dev: drm dev pointer
162 *
163 * This function disables all interrupt sources on the GPU (all asics).
164 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200165void radeon_driver_irq_uninstall_kms(struct drm_device *dev)
166{
167 struct radeon_device *rdev = dev->dev_private;
Christian Koenigfb982572012-05-17 01:33:30 +0200168 unsigned long irqflags;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200169 unsigned i;
170
171 if (rdev == NULL) {
172 return;
173 }
Christian Koenigfb982572012-05-17 01:33:30 +0200174 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200175 /* Disable *all* interrupts */
Alex Deucher1b370782011-11-17 20:13:28 -0500176 for (i = 0; i < RADEON_NUM_RINGS; i++)
Christian Koenig736fc372012-05-17 19:52:00 +0200177 atomic_set(&rdev->irq.ring_int[i], 0);
Alex Deucher4a6369e2013-04-12 14:04:10 -0400178 rdev->irq.dpm_thermal = false;
Ilija Hadzic54bd5202011-10-26 15:43:58 -0400179 for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
Jerome Glisse003e69f2010-01-07 15:39:14 +0100180 rdev->irq.hpd[i] = false;
Ilija Hadzic54bd5202011-10-26 15:43:58 -0400181 for (i = 0; i < RADEON_MAX_CRTCS; i++) {
182 rdev->irq.crtc_vblank_int[i] = false;
Christian Koenig736fc372012-05-17 19:52:00 +0200183 atomic_set(&rdev->irq.pflip[i], 0);
Alex Deucherf122c612012-03-30 08:59:57 -0400184 rdev->irq.afmt[i] = false;
Alex Deucher6f34be52010-11-21 10:59:01 -0500185 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200186 radeon_irq_set(rdev);
Christian Koenigfb982572012-05-17 01:33:30 +0200187 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200188}
189
Alex Deucherb73ba982012-07-17 14:02:35 -0400190/**
191 * radeon_msi_ok - asic specific msi checks
192 *
193 * @rdev: radeon device pointer
194 *
195 * Handles asic specific MSI checks to determine if
196 * MSIs should be enabled on a particular chip (all asics).
197 * Returns true if MSIs should be enabled, false if MSIs
198 * should not be enabled.
199 */
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400200static bool radeon_msi_ok(struct radeon_device *rdev)
201{
202 /* RV370/RV380 was first asic with MSI support */
203 if (rdev->family < CHIP_RV380)
204 return false;
205
206 /* MSIs don't work on AGP */
207 if (rdev->flags & RADEON_IS_AGP)
208 return false;
209
Benjamin Herrenschmidt91ed6fd2014-10-03 15:18:59 +1000210 /*
211 * Older chips have a HW limitation, they can only generate 40 bits
212 * of address for "64-bit" MSIs which breaks on some platforms, notably
213 * IBM POWER servers, so we limit them
214 */
215 if (rdev->family < CHIP_BONAIRE) {
216 dev_info(rdev->dev, "radeon: MSI limited to 32-bit\n");
217 rdev->pdev->no_64bit_msi = 1;
218 }
219
Alex Deuchera18cee12011-11-01 14:20:30 -0400220 /* force MSI on */
221 if (radeon_msi == 1)
222 return true;
223 else if (radeon_msi == 0)
224 return false;
225
Alex Deucherb3621052011-10-25 15:11:08 -0400226 /* Quirks */
227 /* HP RS690 only seems to work with MSIs. */
228 if ((rdev->pdev->device == 0x791f) &&
229 (rdev->pdev->subsystem_vendor == 0x103c) &&
230 (rdev->pdev->subsystem_device == 0x30c2))
231 return true;
232
Alex Deucher01e718e2011-11-01 14:14:18 -0400233 /* Dell RS690 only seems to work with MSIs. */
234 if ((rdev->pdev->device == 0x791f) &&
235 (rdev->pdev->subsystem_vendor == 0x1028) &&
Alex Deucher44517c42012-01-15 08:51:12 -0500236 (rdev->pdev->subsystem_device == 0x01fc))
237 return true;
238
239 /* Dell RS690 only seems to work with MSIs. */
240 if ((rdev->pdev->device == 0x791f) &&
241 (rdev->pdev->subsystem_vendor == 0x1028) &&
Alex Deucher01e718e2011-11-01 14:14:18 -0400242 (rdev->pdev->subsystem_device == 0x01fd))
243 return true;
244
Alex Deucher3a6d59d2012-09-26 12:31:45 -0400245 /* Gateway RS690 only seems to work with MSIs. */
246 if ((rdev->pdev->device == 0x791f) &&
247 (rdev->pdev->subsystem_vendor == 0x107b) &&
248 (rdev->pdev->subsystem_device == 0x0185))
249 return true;
250
Alex Deucherfb6ca6d2012-09-26 12:40:45 -0400251 /* try and enable MSIs by default on all RS690s */
252 if (rdev->family == CHIP_RS690)
253 return true;
254
Dave Airlie16a5e322012-04-13 11:14:50 +0100255 /* RV515 seems to have MSI issues where it loses
256 * MSI rearms occasionally. This leads to lockups and freezes.
257 * disable it by default.
258 */
259 if (rdev->family == CHIP_RV515)
260 return false;
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400261 if (rdev->flags & RADEON_IS_IGP) {
262 /* APUs work fine with MSIs */
263 if (rdev->family >= CHIP_PALM)
264 return true;
265 /* lots of IGPs have problems with MSIs */
266 return false;
267 }
268
269 return true;
270}
271
Alex Deucherb73ba982012-07-17 14:02:35 -0400272/**
273 * radeon_irq_kms_init - init driver interrupt info
274 *
275 * @rdev: radeon device pointer
276 *
277 * Sets up the work irq handlers, vblank init, MSIs, etc. (all asics).
278 * Returns 0 for success, error for failure.
279 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200280int radeon_irq_kms_init(struct radeon_device *rdev)
281{
282 int r = 0;
283
Christian Koenigfb982572012-05-17 01:33:30 +0200284 spin_lock_init(&rdev->irq.lock);
Alex Deucher9e7b4142010-03-16 17:08:06 -0400285 r = drm_vblank_init(rdev->ddev, rdev->num_crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200286 if (r) {
287 return r;
288 }
Alex Deucher3e5cb982009-10-16 12:21:24 -0400289 /* enable msi */
290 rdev->msi_enabled = 0;
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400291
292 if (radeon_msi_ok(rdev)) {
Alex Deucher3e5cb982009-10-16 12:21:24 -0400293 int ret = pci_enable_msi(rdev->pdev);
Alex Deucherd8f60cf2009-12-01 13:43:46 -0500294 if (!ret) {
Alex Deucher3e5cb982009-10-16 12:21:24 -0400295 rdev->msi_enabled = 1;
Alex Deucherda7be682010-08-12 18:05:34 -0400296 dev_info(rdev->dev, "radeon: using MSI.\n");
Alex Deucherd8f60cf2009-12-01 13:43:46 -0500297 }
Alex Deucher3e5cb982009-10-16 12:21:24 -0400298 }
Sergey Senozhatskya01c34f2013-07-14 14:03:27 +0300299
300 INIT_WORK(&rdev->hotplug_work, radeon_hotplug_work_func);
Dave Airliede6284a2015-02-24 09:23:56 +1000301 INIT_WORK(&rdev->dp_work, radeon_dp_work_func);
Sergey Senozhatskya01c34f2013-07-14 14:03:27 +0300302 INIT_WORK(&rdev->audio_work, r600_audio_update_hdmi);
Sergey Senozhatskya01c34f2013-07-14 14:03:27 +0300303
Sergey Senozhatsky27c505c2013-08-29 12:29:35 +0300304 rdev->irq.installed = true;
Daniel Vetterbb0f1b52013-11-03 21:09:27 +0100305 r = drm_irq_install(rdev->ddev, rdev->ddev->pdev->irq);
Sergey Senozhatsky27c505c2013-08-29 12:29:35 +0300306 if (r) {
307 rdev->irq.installed = false;
308 flush_work(&rdev->hotplug_work);
309 return r;
310 }
311
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200312 DRM_INFO("radeon: irq initialized.\n");
313 return 0;
314}
315
Alex Deucherb73ba982012-07-17 14:02:35 -0400316/**
Masanari Iidacf2fbdd2013-03-16 20:53:05 +0900317 * radeon_irq_kms_fini - tear down driver interrupt info
Alex Deucherb73ba982012-07-17 14:02:35 -0400318 *
319 * @rdev: radeon device pointer
320 *
321 * Tears down the work irq handlers, vblank handlers, MSIs, etc. (all asics).
322 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200323void radeon_irq_kms_fini(struct radeon_device *rdev)
324{
Jerome Glisse003e69f2010-01-07 15:39:14 +0100325 drm_vblank_cleanup(rdev->ddev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200326 if (rdev->irq.installed) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200327 drm_irq_uninstall(rdev->ddev);
Jerome Glisse003e69f2010-01-07 15:39:14 +0100328 rdev->irq.installed = false;
Alex Deucher3e5cb982009-10-16 12:21:24 -0400329 if (rdev->msi_enabled)
330 pci_disable_msi(rdev->pdev);
Sergey Senozhatskya01c34f2013-07-14 14:03:27 +0300331 flush_work(&rdev->hotplug_work);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200332 }
333}
Dave Airlie1614f8b2009-12-01 16:04:56 +1000334
Alex Deucherb73ba982012-07-17 14:02:35 -0400335/**
336 * radeon_irq_kms_sw_irq_get - enable software interrupt
337 *
338 * @rdev: radeon device pointer
339 * @ring: ring whose interrupt you want to enable
340 *
341 * Enables the software interrupt for a specific ring (all asics).
342 * The software interrupt is generally used to signal a fence on
343 * a particular ring.
344 */
Alex Deucher1b370782011-11-17 20:13:28 -0500345void radeon_irq_kms_sw_irq_get(struct radeon_device *rdev, int ring)
Dave Airlie1614f8b2009-12-01 16:04:56 +1000346{
347 unsigned long irqflags;
348
Christian Koenig736fc372012-05-17 19:52:00 +0200349 if (!rdev->ddev->irq_enabled)
350 return;
351
352 if (atomic_inc_return(&rdev->irq.ring_int[ring]) == 1) {
353 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Dave Airlie1614f8b2009-12-01 16:04:56 +1000354 radeon_irq_set(rdev);
Christian Koenig736fc372012-05-17 19:52:00 +0200355 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Dave Airlie1614f8b2009-12-01 16:04:56 +1000356 }
Dave Airlie1614f8b2009-12-01 16:04:56 +1000357}
358
Alex Deucherb73ba982012-07-17 14:02:35 -0400359/**
Maarten Lankhorst954605c2014-01-09 11:03:12 +0100360 * radeon_irq_kms_sw_irq_get_delayed - enable software interrupt
361 *
362 * @rdev: radeon device pointer
363 * @ring: ring whose interrupt you want to enable
364 *
365 * Enables the software interrupt for a specific ring (all asics).
366 * The software interrupt is generally used to signal a fence on
367 * a particular ring.
368 */
369bool radeon_irq_kms_sw_irq_get_delayed(struct radeon_device *rdev, int ring)
370{
371 return atomic_inc_return(&rdev->irq.ring_int[ring]) == 1;
372}
373
374/**
Alex Deucherb73ba982012-07-17 14:02:35 -0400375 * radeon_irq_kms_sw_irq_put - disable software interrupt
376 *
377 * @rdev: radeon device pointer
378 * @ring: ring whose interrupt you want to disable
379 *
380 * Disables the software interrupt for a specific ring (all asics).
381 * The software interrupt is generally used to signal a fence on
382 * a particular ring.
383 */
Alex Deucher1b370782011-11-17 20:13:28 -0500384void radeon_irq_kms_sw_irq_put(struct radeon_device *rdev, int ring)
Dave Airlie1614f8b2009-12-01 16:04:56 +1000385{
386 unsigned long irqflags;
387
Christian Koenig736fc372012-05-17 19:52:00 +0200388 if (!rdev->ddev->irq_enabled)
389 return;
390
391 if (atomic_dec_and_test(&rdev->irq.ring_int[ring])) {
392 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Dave Airlie1614f8b2009-12-01 16:04:56 +1000393 radeon_irq_set(rdev);
Christian Koenig736fc372012-05-17 19:52:00 +0200394 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Dave Airlie1614f8b2009-12-01 16:04:56 +1000395 }
Dave Airlie1614f8b2009-12-01 16:04:56 +1000396}
397
Alex Deucherb73ba982012-07-17 14:02:35 -0400398/**
399 * radeon_irq_kms_pflip_irq_get - enable pageflip interrupt
400 *
401 * @rdev: radeon device pointer
402 * @crtc: crtc whose interrupt you want to enable
403 *
404 * Enables the pageflip interrupt for a specific crtc (all asics).
405 * For pageflips we use the vblank interrupt source.
406 */
Alex Deucher6f34be52010-11-21 10:59:01 -0500407void radeon_irq_kms_pflip_irq_get(struct radeon_device *rdev, int crtc)
408{
409 unsigned long irqflags;
410
411 if (crtc < 0 || crtc >= rdev->num_crtc)
412 return;
413
Christian Koenig736fc372012-05-17 19:52:00 +0200414 if (!rdev->ddev->irq_enabled)
415 return;
416
417 if (atomic_inc_return(&rdev->irq.pflip[crtc]) == 1) {
418 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Alex Deucher6f34be52010-11-21 10:59:01 -0500419 radeon_irq_set(rdev);
Christian Koenig736fc372012-05-17 19:52:00 +0200420 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Alex Deucher6f34be52010-11-21 10:59:01 -0500421 }
Alex Deucher6f34be52010-11-21 10:59:01 -0500422}
423
Alex Deucherb73ba982012-07-17 14:02:35 -0400424/**
425 * radeon_irq_kms_pflip_irq_put - disable pageflip interrupt
426 *
427 * @rdev: radeon device pointer
428 * @crtc: crtc whose interrupt you want to disable
429 *
430 * Disables the pageflip interrupt for a specific crtc (all asics).
431 * For pageflips we use the vblank interrupt source.
432 */
Alex Deucher6f34be52010-11-21 10:59:01 -0500433void radeon_irq_kms_pflip_irq_put(struct radeon_device *rdev, int crtc)
434{
435 unsigned long irqflags;
436
437 if (crtc < 0 || crtc >= rdev->num_crtc)
438 return;
439
Christian Koenig736fc372012-05-17 19:52:00 +0200440 if (!rdev->ddev->irq_enabled)
441 return;
442
443 if (atomic_dec_and_test(&rdev->irq.pflip[crtc])) {
444 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Alex Deucher6f34be52010-11-21 10:59:01 -0500445 radeon_irq_set(rdev);
Christian Koenig736fc372012-05-17 19:52:00 +0200446 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Alex Deucher6f34be52010-11-21 10:59:01 -0500447 }
Alex Deucher6f34be52010-11-21 10:59:01 -0500448}
449
Alex Deucherb73ba982012-07-17 14:02:35 -0400450/**
451 * radeon_irq_kms_enable_afmt - enable audio format change interrupt
452 *
453 * @rdev: radeon device pointer
454 * @block: afmt block whose interrupt you want to enable
455 *
456 * Enables the afmt change interrupt for a specific afmt block (all asics).
457 */
Christian Koenigfb982572012-05-17 01:33:30 +0200458void radeon_irq_kms_enable_afmt(struct radeon_device *rdev, int block)
459{
460 unsigned long irqflags;
461
Alex Deuchercc9945b2013-02-26 16:17:33 -0500462 if (!rdev->ddev->irq_enabled)
463 return;
464
Christian Koenigfb982572012-05-17 01:33:30 +0200465 spin_lock_irqsave(&rdev->irq.lock, irqflags);
466 rdev->irq.afmt[block] = true;
467 radeon_irq_set(rdev);
468 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
469
470}
471
Alex Deucherb73ba982012-07-17 14:02:35 -0400472/**
473 * radeon_irq_kms_disable_afmt - disable audio format change interrupt
474 *
475 * @rdev: radeon device pointer
476 * @block: afmt block whose interrupt you want to disable
477 *
478 * Disables the afmt change interrupt for a specific afmt block (all asics).
479 */
Christian Koenigfb982572012-05-17 01:33:30 +0200480void radeon_irq_kms_disable_afmt(struct radeon_device *rdev, int block)
481{
482 unsigned long irqflags;
483
Alex Deuchercc9945b2013-02-26 16:17:33 -0500484 if (!rdev->ddev->irq_enabled)
485 return;
486
Christian Koenigfb982572012-05-17 01:33:30 +0200487 spin_lock_irqsave(&rdev->irq.lock, irqflags);
488 rdev->irq.afmt[block] = false;
489 radeon_irq_set(rdev);
490 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
491}
492
Alex Deucherb73ba982012-07-17 14:02:35 -0400493/**
494 * radeon_irq_kms_enable_hpd - enable hotplug detect interrupt
495 *
496 * @rdev: radeon device pointer
497 * @hpd_mask: mask of hpd pins you want to enable.
498 *
499 * Enables the hotplug detect interrupt for a specific hpd pin (all asics).
500 */
Christian Koenigfb982572012-05-17 01:33:30 +0200501void radeon_irq_kms_enable_hpd(struct radeon_device *rdev, unsigned hpd_mask)
502{
503 unsigned long irqflags;
504 int i;
505
Alex Deuchercc9945b2013-02-26 16:17:33 -0500506 if (!rdev->ddev->irq_enabled)
507 return;
508
Christian Koenigfb982572012-05-17 01:33:30 +0200509 spin_lock_irqsave(&rdev->irq.lock, irqflags);
510 for (i = 0; i < RADEON_MAX_HPD_PINS; ++i)
511 rdev->irq.hpd[i] |= !!(hpd_mask & (1 << i));
512 radeon_irq_set(rdev);
513 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
514}
515
Alex Deucherb73ba982012-07-17 14:02:35 -0400516/**
517 * radeon_irq_kms_disable_hpd - disable hotplug detect interrupt
518 *
519 * @rdev: radeon device pointer
520 * @hpd_mask: mask of hpd pins you want to disable.
521 *
522 * Disables the hotplug detect interrupt for a specific hpd pin (all asics).
523 */
Christian Koenigfb982572012-05-17 01:33:30 +0200524void radeon_irq_kms_disable_hpd(struct radeon_device *rdev, unsigned hpd_mask)
525{
526 unsigned long irqflags;
527 int i;
528
Alex Deuchercc9945b2013-02-26 16:17:33 -0500529 if (!rdev->ddev->irq_enabled)
530 return;
531
Christian Koenigfb982572012-05-17 01:33:30 +0200532 spin_lock_irqsave(&rdev->irq.lock, irqflags);
533 for (i = 0; i < RADEON_MAX_HPD_PINS; ++i)
534 rdev->irq.hpd[i] &= !(hpd_mask & (1 << i));
535 radeon_irq_set(rdev);
536 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
537}
538