blob: 00fc59762e0df3bba0758d1f18e90328e5726635 [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
82 if (mode_config->num_connector) {
83 list_for_each_entry(connector, &mode_config->connector_list, head)
84 radeon_connector_hotplug(connector);
85 }
86 /* Just fire off a uevent and let userspace tell us what to do */
Dave Airlieeb1f8e42010-05-07 06:42:51 +000087 drm_helper_hpd_irq_event(dev);
Alex Deucherd4877cf2009-12-04 16:56:37 -050088}
89
Alex Deucherb73ba982012-07-17 14:02:35 -040090/**
91 * radeon_driver_irq_preinstall_kms - drm irq preinstall callback
92 *
93 * @dev: drm dev pointer
94 *
95 * Gets the hw ready to enable irqs (all asics).
96 * This function disables all interrupt sources on the GPU.
97 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +020098void radeon_driver_irq_preinstall_kms(struct drm_device *dev)
99{
100 struct radeon_device *rdev = dev->dev_private;
Christian Koenigfb982572012-05-17 01:33:30 +0200101 unsigned long irqflags;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200102 unsigned i;
103
Christian Koenigfb982572012-05-17 01:33:30 +0200104 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200105 /* Disable *all* interrupts */
Alex Deucher1b370782011-11-17 20:13:28 -0500106 for (i = 0; i < RADEON_NUM_RINGS; i++)
Christian Koenig736fc372012-05-17 19:52:00 +0200107 atomic_set(&rdev->irq.ring_int[i], 0);
Alex Deucher4a6369e2013-04-12 14:04:10 -0400108 rdev->irq.dpm_thermal = false;
Ilija Hadzic54bd5202011-10-26 15:43:58 -0400109 for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
Alex Deucher9e7b4142010-03-16 17:08:06 -0400110 rdev->irq.hpd[i] = false;
Ilija Hadzic54bd5202011-10-26 15:43:58 -0400111 for (i = 0; i < RADEON_MAX_CRTCS; i++) {
112 rdev->irq.crtc_vblank_int[i] = false;
Christian Koenig736fc372012-05-17 19:52:00 +0200113 atomic_set(&rdev->irq.pflip[i], 0);
Alex Deucherf122c612012-03-30 08:59:57 -0400114 rdev->irq.afmt[i] = false;
Alex Deucher6f34be52010-11-21 10:59:01 -0500115 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200116 radeon_irq_set(rdev);
Christian Koenigfb982572012-05-17 01:33:30 +0200117 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200118 /* Clear bits */
119 radeon_irq_process(rdev);
120}
121
Alex Deucherb73ba982012-07-17 14:02:35 -0400122/**
123 * radeon_driver_irq_postinstall_kms - drm irq preinstall callback
124 *
125 * @dev: drm dev pointer
126 *
127 * Handles stuff to be done after enabling irqs (all asics).
128 * Returns 0 on success.
129 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200130int radeon_driver_irq_postinstall_kms(struct drm_device *dev)
131{
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200132 dev->max_vblank_count = 0x001fffff;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200133 return 0;
134}
135
Alex Deucherb73ba982012-07-17 14:02:35 -0400136/**
137 * radeon_driver_irq_uninstall_kms - drm irq uninstall callback
138 *
139 * @dev: drm dev pointer
140 *
141 * This function disables all interrupt sources on the GPU (all asics).
142 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200143void radeon_driver_irq_uninstall_kms(struct drm_device *dev)
144{
145 struct radeon_device *rdev = dev->dev_private;
Christian Koenigfb982572012-05-17 01:33:30 +0200146 unsigned long irqflags;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200147 unsigned i;
148
149 if (rdev == NULL) {
150 return;
151 }
Christian Koenigfb982572012-05-17 01:33:30 +0200152 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200153 /* Disable *all* interrupts */
Alex Deucher1b370782011-11-17 20:13:28 -0500154 for (i = 0; i < RADEON_NUM_RINGS; i++)
Christian Koenig736fc372012-05-17 19:52:00 +0200155 atomic_set(&rdev->irq.ring_int[i], 0);
Alex Deucher4a6369e2013-04-12 14:04:10 -0400156 rdev->irq.dpm_thermal = false;
Ilija Hadzic54bd5202011-10-26 15:43:58 -0400157 for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
Jerome Glisse003e69f2010-01-07 15:39:14 +0100158 rdev->irq.hpd[i] = false;
Ilija Hadzic54bd5202011-10-26 15:43:58 -0400159 for (i = 0; i < RADEON_MAX_CRTCS; i++) {
160 rdev->irq.crtc_vblank_int[i] = false;
Christian Koenig736fc372012-05-17 19:52:00 +0200161 atomic_set(&rdev->irq.pflip[i], 0);
Alex Deucherf122c612012-03-30 08:59:57 -0400162 rdev->irq.afmt[i] = false;
Alex Deucher6f34be52010-11-21 10:59:01 -0500163 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200164 radeon_irq_set(rdev);
Christian Koenigfb982572012-05-17 01:33:30 +0200165 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200166}
167
Alex Deucherb73ba982012-07-17 14:02:35 -0400168/**
169 * radeon_msi_ok - asic specific msi checks
170 *
171 * @rdev: radeon device pointer
172 *
173 * Handles asic specific MSI checks to determine if
174 * MSIs should be enabled on a particular chip (all asics).
175 * Returns true if MSIs should be enabled, false if MSIs
176 * should not be enabled.
177 */
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400178static bool radeon_msi_ok(struct radeon_device *rdev)
179{
180 /* RV370/RV380 was first asic with MSI support */
181 if (rdev->family < CHIP_RV380)
182 return false;
183
184 /* MSIs don't work on AGP */
185 if (rdev->flags & RADEON_IS_AGP)
186 return false;
187
Benjamin Herrenschmidt91ed6fd2014-10-03 15:18:59 +1000188 /*
189 * Older chips have a HW limitation, they can only generate 40 bits
190 * of address for "64-bit" MSIs which breaks on some platforms, notably
191 * IBM POWER servers, so we limit them
192 */
193 if (rdev->family < CHIP_BONAIRE) {
194 dev_info(rdev->dev, "radeon: MSI limited to 32-bit\n");
195 rdev->pdev->no_64bit_msi = 1;
196 }
197
Alex Deuchera18cee12011-11-01 14:20:30 -0400198 /* force MSI on */
199 if (radeon_msi == 1)
200 return true;
201 else if (radeon_msi == 0)
202 return false;
203
Alex Deucherb3621052011-10-25 15:11:08 -0400204 /* Quirks */
205 /* HP RS690 only seems to work with MSIs. */
206 if ((rdev->pdev->device == 0x791f) &&
207 (rdev->pdev->subsystem_vendor == 0x103c) &&
208 (rdev->pdev->subsystem_device == 0x30c2))
209 return true;
210
Alex Deucher01e718e2011-11-01 14:14:18 -0400211 /* Dell RS690 only seems to work with MSIs. */
212 if ((rdev->pdev->device == 0x791f) &&
213 (rdev->pdev->subsystem_vendor == 0x1028) &&
Alex Deucher44517c42012-01-15 08:51:12 -0500214 (rdev->pdev->subsystem_device == 0x01fc))
215 return true;
216
217 /* Dell RS690 only seems to work with MSIs. */
218 if ((rdev->pdev->device == 0x791f) &&
219 (rdev->pdev->subsystem_vendor == 0x1028) &&
Alex Deucher01e718e2011-11-01 14:14:18 -0400220 (rdev->pdev->subsystem_device == 0x01fd))
221 return true;
222
Alex Deucher3a6d59d2012-09-26 12:31:45 -0400223 /* Gateway RS690 only seems to work with MSIs. */
224 if ((rdev->pdev->device == 0x791f) &&
225 (rdev->pdev->subsystem_vendor == 0x107b) &&
226 (rdev->pdev->subsystem_device == 0x0185))
227 return true;
228
Alex Deucherfb6ca6d2012-09-26 12:40:45 -0400229 /* try and enable MSIs by default on all RS690s */
230 if (rdev->family == CHIP_RS690)
231 return true;
232
Dave Airlie16a5e322012-04-13 11:14:50 +0100233 /* RV515 seems to have MSI issues where it loses
234 * MSI rearms occasionally. This leads to lockups and freezes.
235 * disable it by default.
236 */
237 if (rdev->family == CHIP_RV515)
238 return false;
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400239 if (rdev->flags & RADEON_IS_IGP) {
240 /* APUs work fine with MSIs */
241 if (rdev->family >= CHIP_PALM)
242 return true;
243 /* lots of IGPs have problems with MSIs */
244 return false;
245 }
246
247 return true;
248}
249
Alex Deucherb73ba982012-07-17 14:02:35 -0400250/**
251 * radeon_irq_kms_init - init driver interrupt info
252 *
253 * @rdev: radeon device pointer
254 *
255 * Sets up the work irq handlers, vblank init, MSIs, etc. (all asics).
256 * Returns 0 for success, error for failure.
257 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200258int radeon_irq_kms_init(struct radeon_device *rdev)
259{
260 int r = 0;
261
Christian Koenigfb982572012-05-17 01:33:30 +0200262 spin_lock_init(&rdev->irq.lock);
Alex Deucher9e7b4142010-03-16 17:08:06 -0400263 r = drm_vblank_init(rdev->ddev, rdev->num_crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200264 if (r) {
265 return r;
266 }
Alex Deucher3e5cb982009-10-16 12:21:24 -0400267 /* enable msi */
268 rdev->msi_enabled = 0;
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400269
270 if (radeon_msi_ok(rdev)) {
Alex Deucher3e5cb982009-10-16 12:21:24 -0400271 int ret = pci_enable_msi(rdev->pdev);
Alex Deucherd8f60cf2009-12-01 13:43:46 -0500272 if (!ret) {
Alex Deucher3e5cb982009-10-16 12:21:24 -0400273 rdev->msi_enabled = 1;
Alex Deucherda7be682010-08-12 18:05:34 -0400274 dev_info(rdev->dev, "radeon: using MSI.\n");
Alex Deucherd8f60cf2009-12-01 13:43:46 -0500275 }
Alex Deucher3e5cb982009-10-16 12:21:24 -0400276 }
Sergey Senozhatskya01c34f2013-07-14 14:03:27 +0300277
278 INIT_WORK(&rdev->hotplug_work, radeon_hotplug_work_func);
279 INIT_WORK(&rdev->audio_work, r600_audio_update_hdmi);
Sergey Senozhatskya01c34f2013-07-14 14:03:27 +0300280
Sergey Senozhatsky27c505c2013-08-29 12:29:35 +0300281 rdev->irq.installed = true;
Daniel Vetterbb0f1b52013-11-03 21:09:27 +0100282 r = drm_irq_install(rdev->ddev, rdev->ddev->pdev->irq);
Sergey Senozhatsky27c505c2013-08-29 12:29:35 +0300283 if (r) {
284 rdev->irq.installed = false;
285 flush_work(&rdev->hotplug_work);
286 return r;
287 }
288
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200289 DRM_INFO("radeon: irq initialized.\n");
290 return 0;
291}
292
Alex Deucherb73ba982012-07-17 14:02:35 -0400293/**
Masanari Iidacf2fbdd2013-03-16 20:53:05 +0900294 * radeon_irq_kms_fini - tear down driver interrupt info
Alex Deucherb73ba982012-07-17 14:02:35 -0400295 *
296 * @rdev: radeon device pointer
297 *
298 * Tears down the work irq handlers, vblank handlers, MSIs, etc. (all asics).
299 */
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200300void radeon_irq_kms_fini(struct radeon_device *rdev)
301{
Jerome Glisse003e69f2010-01-07 15:39:14 +0100302 drm_vblank_cleanup(rdev->ddev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200303 if (rdev->irq.installed) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200304 drm_irq_uninstall(rdev->ddev);
Jerome Glisse003e69f2010-01-07 15:39:14 +0100305 rdev->irq.installed = false;
Alex Deucher3e5cb982009-10-16 12:21:24 -0400306 if (rdev->msi_enabled)
307 pci_disable_msi(rdev->pdev);
Sergey Senozhatskya01c34f2013-07-14 14:03:27 +0300308 flush_work(&rdev->hotplug_work);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200309 }
310}
Dave Airlie1614f8b2009-12-01 16:04:56 +1000311
Alex Deucherb73ba982012-07-17 14:02:35 -0400312/**
313 * radeon_irq_kms_sw_irq_get - enable software interrupt
314 *
315 * @rdev: radeon device pointer
316 * @ring: ring whose interrupt you want to enable
317 *
318 * Enables the software interrupt for a specific ring (all asics).
319 * The software interrupt is generally used to signal a fence on
320 * a particular ring.
321 */
Alex Deucher1b370782011-11-17 20:13:28 -0500322void radeon_irq_kms_sw_irq_get(struct radeon_device *rdev, int ring)
Dave Airlie1614f8b2009-12-01 16:04:56 +1000323{
324 unsigned long irqflags;
325
Christian Koenig736fc372012-05-17 19:52:00 +0200326 if (!rdev->ddev->irq_enabled)
327 return;
328
329 if (atomic_inc_return(&rdev->irq.ring_int[ring]) == 1) {
330 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Dave Airlie1614f8b2009-12-01 16:04:56 +1000331 radeon_irq_set(rdev);
Christian Koenig736fc372012-05-17 19:52:00 +0200332 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Dave Airlie1614f8b2009-12-01 16:04:56 +1000333 }
Dave Airlie1614f8b2009-12-01 16:04:56 +1000334}
335
Alex Deucherb73ba982012-07-17 14:02:35 -0400336/**
Maarten Lankhorst954605c2014-01-09 11:03:12 +0100337 * radeon_irq_kms_sw_irq_get_delayed - enable software interrupt
338 *
339 * @rdev: radeon device pointer
340 * @ring: ring whose interrupt you want to enable
341 *
342 * Enables the software interrupt for a specific ring (all asics).
343 * The software interrupt is generally used to signal a fence on
344 * a particular ring.
345 */
346bool radeon_irq_kms_sw_irq_get_delayed(struct radeon_device *rdev, int ring)
347{
348 return atomic_inc_return(&rdev->irq.ring_int[ring]) == 1;
349}
350
351/**
Alex Deucherb73ba982012-07-17 14:02:35 -0400352 * radeon_irq_kms_sw_irq_put - disable software interrupt
353 *
354 * @rdev: radeon device pointer
355 * @ring: ring whose interrupt you want to disable
356 *
357 * Disables the software interrupt for a specific ring (all asics).
358 * The software interrupt is generally used to signal a fence on
359 * a particular ring.
360 */
Alex Deucher1b370782011-11-17 20:13:28 -0500361void radeon_irq_kms_sw_irq_put(struct radeon_device *rdev, int ring)
Dave Airlie1614f8b2009-12-01 16:04:56 +1000362{
363 unsigned long irqflags;
364
Christian Koenig736fc372012-05-17 19:52:00 +0200365 if (!rdev->ddev->irq_enabled)
366 return;
367
368 if (atomic_dec_and_test(&rdev->irq.ring_int[ring])) {
369 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Dave Airlie1614f8b2009-12-01 16:04:56 +1000370 radeon_irq_set(rdev);
Christian Koenig736fc372012-05-17 19:52:00 +0200371 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Dave Airlie1614f8b2009-12-01 16:04:56 +1000372 }
Dave Airlie1614f8b2009-12-01 16:04:56 +1000373}
374
Alex Deucherb73ba982012-07-17 14:02:35 -0400375/**
376 * radeon_irq_kms_pflip_irq_get - enable pageflip interrupt
377 *
378 * @rdev: radeon device pointer
379 * @crtc: crtc whose interrupt you want to enable
380 *
381 * Enables the pageflip interrupt for a specific crtc (all asics).
382 * For pageflips we use the vblank interrupt source.
383 */
Alex Deucher6f34be52010-11-21 10:59:01 -0500384void radeon_irq_kms_pflip_irq_get(struct radeon_device *rdev, int crtc)
385{
386 unsigned long irqflags;
387
388 if (crtc < 0 || crtc >= rdev->num_crtc)
389 return;
390
Christian Koenig736fc372012-05-17 19:52:00 +0200391 if (!rdev->ddev->irq_enabled)
392 return;
393
394 if (atomic_inc_return(&rdev->irq.pflip[crtc]) == 1) {
395 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Alex Deucher6f34be52010-11-21 10:59:01 -0500396 radeon_irq_set(rdev);
Christian Koenig736fc372012-05-17 19:52:00 +0200397 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Alex Deucher6f34be52010-11-21 10:59:01 -0500398 }
Alex Deucher6f34be52010-11-21 10:59:01 -0500399}
400
Alex Deucherb73ba982012-07-17 14:02:35 -0400401/**
402 * radeon_irq_kms_pflip_irq_put - disable pageflip interrupt
403 *
404 * @rdev: radeon device pointer
405 * @crtc: crtc whose interrupt you want to disable
406 *
407 * Disables the pageflip interrupt for a specific crtc (all asics).
408 * For pageflips we use the vblank interrupt source.
409 */
Alex Deucher6f34be52010-11-21 10:59:01 -0500410void radeon_irq_kms_pflip_irq_put(struct radeon_device *rdev, int crtc)
411{
412 unsigned long irqflags;
413
414 if (crtc < 0 || crtc >= rdev->num_crtc)
415 return;
416
Christian Koenig736fc372012-05-17 19:52:00 +0200417 if (!rdev->ddev->irq_enabled)
418 return;
419
420 if (atomic_dec_and_test(&rdev->irq.pflip[crtc])) {
421 spin_lock_irqsave(&rdev->irq.lock, irqflags);
Alex Deucher6f34be52010-11-21 10:59:01 -0500422 radeon_irq_set(rdev);
Christian Koenig736fc372012-05-17 19:52:00 +0200423 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
Alex Deucher6f34be52010-11-21 10:59:01 -0500424 }
Alex Deucher6f34be52010-11-21 10:59:01 -0500425}
426
Alex Deucherb73ba982012-07-17 14:02:35 -0400427/**
428 * radeon_irq_kms_enable_afmt - enable audio format change interrupt
429 *
430 * @rdev: radeon device pointer
431 * @block: afmt block whose interrupt you want to enable
432 *
433 * Enables the afmt change interrupt for a specific afmt block (all asics).
434 */
Christian Koenigfb982572012-05-17 01:33:30 +0200435void radeon_irq_kms_enable_afmt(struct radeon_device *rdev, int block)
436{
437 unsigned long irqflags;
438
Alex Deuchercc9945b2013-02-26 16:17:33 -0500439 if (!rdev->ddev->irq_enabled)
440 return;
441
Christian Koenigfb982572012-05-17 01:33:30 +0200442 spin_lock_irqsave(&rdev->irq.lock, irqflags);
443 rdev->irq.afmt[block] = true;
444 radeon_irq_set(rdev);
445 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
446
447}
448
Alex Deucherb73ba982012-07-17 14:02:35 -0400449/**
450 * radeon_irq_kms_disable_afmt - disable audio format change interrupt
451 *
452 * @rdev: radeon device pointer
453 * @block: afmt block whose interrupt you want to disable
454 *
455 * Disables the afmt change interrupt for a specific afmt block (all asics).
456 */
Christian Koenigfb982572012-05-17 01:33:30 +0200457void radeon_irq_kms_disable_afmt(struct radeon_device *rdev, int block)
458{
459 unsigned long irqflags;
460
Alex Deuchercc9945b2013-02-26 16:17:33 -0500461 if (!rdev->ddev->irq_enabled)
462 return;
463
Christian Koenigfb982572012-05-17 01:33:30 +0200464 spin_lock_irqsave(&rdev->irq.lock, irqflags);
465 rdev->irq.afmt[block] = false;
466 radeon_irq_set(rdev);
467 spin_unlock_irqrestore(&rdev->irq.lock, irqflags);
468}
469
Alex Deucherb73ba982012-07-17 14:02:35 -0400470/**
471 * radeon_irq_kms_enable_hpd - enable hotplug detect interrupt
472 *
473 * @rdev: radeon device pointer
474 * @hpd_mask: mask of hpd pins you want to enable.
475 *
476 * Enables the hotplug detect interrupt for a specific hpd pin (all asics).
477 */
Christian Koenigfb982572012-05-17 01:33:30 +0200478void radeon_irq_kms_enable_hpd(struct radeon_device *rdev, unsigned hpd_mask)
479{
480 unsigned long irqflags;
481 int i;
482
Alex Deuchercc9945b2013-02-26 16:17:33 -0500483 if (!rdev->ddev->irq_enabled)
484 return;
485
Christian Koenigfb982572012-05-17 01:33:30 +0200486 spin_lock_irqsave(&rdev->irq.lock, irqflags);
487 for (i = 0; i < RADEON_MAX_HPD_PINS; ++i)
488 rdev->irq.hpd[i] |= !!(hpd_mask & (1 << i));
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_disable_hpd - disable hotplug detect interrupt
495 *
496 * @rdev: radeon device pointer
497 * @hpd_mask: mask of hpd pins you want to disable.
498 *
499 * Disables the hotplug detect interrupt for a specific hpd pin (all asics).
500 */
Christian Koenigfb982572012-05-17 01:33:30 +0200501void radeon_irq_kms_disable_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