blob: 8f86aeb266935ef46be2e5dff9022b91c04324c2 [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 */
28#include "drmP.h"
Dave Airlieeb1f8e42010-05-07 06:42:51 +000029#include "drm_crtc_helper.h"
Jerome Glisse771fe6b2009-06-05 14:42:42 +020030#include "radeon_drm.h"
31#include "radeon_reg.h"
Jerome Glisse771fe6b2009-06-05 14:42:42 +020032#include "radeon.h"
33#include "atom.h"
34
Jerome Glisse771fe6b2009-06-05 14:42:42 +020035irqreturn_t radeon_driver_irq_handler_kms(DRM_IRQ_ARGS)
36{
37 struct drm_device *dev = (struct drm_device *) arg;
38 struct radeon_device *rdev = dev->dev_private;
39
40 return radeon_irq_process(rdev);
41}
42
Alex Deucherd4877cf2009-12-04 16:56:37 -050043/*
44 * Handle hotplug events outside the interrupt handler proper.
45 */
46static void radeon_hotplug_work_func(struct work_struct *work)
47{
48 struct radeon_device *rdev = container_of(work, struct radeon_device,
49 hotplug_work);
50 struct drm_device *dev = rdev->ddev;
51 struct drm_mode_config *mode_config = &dev->mode_config;
52 struct drm_connector *connector;
53
54 if (mode_config->num_connector) {
55 list_for_each_entry(connector, &mode_config->connector_list, head)
56 radeon_connector_hotplug(connector);
57 }
58 /* Just fire off a uevent and let userspace tell us what to do */
Dave Airlieeb1f8e42010-05-07 06:42:51 +000059 drm_helper_hpd_irq_event(dev);
Alex Deucherd4877cf2009-12-04 16:56:37 -050060}
61
Jerome Glisse771fe6b2009-06-05 14:42:42 +020062void radeon_driver_irq_preinstall_kms(struct drm_device *dev)
63{
64 struct radeon_device *rdev = dev->dev_private;
65 unsigned i;
66
67 /* Disable *all* interrupts */
68 rdev->irq.sw_int = false;
Alex Deucher2031f772010-04-22 12:52:11 -040069 rdev->irq.gui_idle = false;
Ilija Hadzic54bd5202011-10-26 15:43:58 -040070 for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
Alex Deucher9e7b4142010-03-16 17:08:06 -040071 rdev->irq.hpd[i] = false;
Ilija Hadzic54bd5202011-10-26 15:43:58 -040072 for (i = 0; i < RADEON_MAX_CRTCS; i++) {
73 rdev->irq.crtc_vblank_int[i] = false;
Alex Deucher6f34be52010-11-21 10:59:01 -050074 rdev->irq.pflip[i] = false;
75 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +020076 radeon_irq_set(rdev);
77 /* Clear bits */
78 radeon_irq_process(rdev);
79}
80
81int radeon_driver_irq_postinstall_kms(struct drm_device *dev)
82{
83 struct radeon_device *rdev = dev->dev_private;
84
85 dev->max_vblank_count = 0x001fffff;
86 rdev->irq.sw_int = true;
87 radeon_irq_set(rdev);
88 return 0;
89}
90
91void radeon_driver_irq_uninstall_kms(struct drm_device *dev)
92{
93 struct radeon_device *rdev = dev->dev_private;
94 unsigned i;
95
96 if (rdev == NULL) {
97 return;
98 }
99 /* Disable *all* interrupts */
100 rdev->irq.sw_int = false;
Alex Deucher2031f772010-04-22 12:52:11 -0400101 rdev->irq.gui_idle = false;
Ilija Hadzic54bd5202011-10-26 15:43:58 -0400102 for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
Jerome Glisse003e69f2010-01-07 15:39:14 +0100103 rdev->irq.hpd[i] = false;
Ilija Hadzic54bd5202011-10-26 15:43:58 -0400104 for (i = 0; i < RADEON_MAX_CRTCS; i++) {
105 rdev->irq.crtc_vblank_int[i] = false;
Alex Deucher6f34be52010-11-21 10:59:01 -0500106 rdev->irq.pflip[i] = false;
107 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200108 radeon_irq_set(rdev);
109}
110
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400111static bool radeon_msi_ok(struct radeon_device *rdev)
112{
113 /* RV370/RV380 was first asic with MSI support */
114 if (rdev->family < CHIP_RV380)
115 return false;
116
117 /* MSIs don't work on AGP */
118 if (rdev->flags & RADEON_IS_AGP)
119 return false;
120
Alex Deuchera18cee12011-11-01 14:20:30 -0400121 /* force MSI on */
122 if (radeon_msi == 1)
123 return true;
124 else if (radeon_msi == 0)
125 return false;
126
Alex Deucherb3621052011-10-25 15:11:08 -0400127 /* Quirks */
128 /* HP RS690 only seems to work with MSIs. */
129 if ((rdev->pdev->device == 0x791f) &&
130 (rdev->pdev->subsystem_vendor == 0x103c) &&
131 (rdev->pdev->subsystem_device == 0x30c2))
132 return true;
133
Alex Deucher01e718e2011-11-01 14:14:18 -0400134 /* Dell RS690 only seems to work with MSIs. */
135 if ((rdev->pdev->device == 0x791f) &&
136 (rdev->pdev->subsystem_vendor == 0x1028) &&
137 (rdev->pdev->subsystem_device == 0x01fd))
138 return true;
139
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400140 if (rdev->flags & RADEON_IS_IGP) {
141 /* APUs work fine with MSIs */
142 if (rdev->family >= CHIP_PALM)
143 return true;
144 /* lots of IGPs have problems with MSIs */
145 return false;
146 }
147
148 return true;
149}
150
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200151int radeon_irq_kms_init(struct radeon_device *rdev)
152{
Michel Dänzer29d9ebc2011-01-11 10:44:54 +0100153 int i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200154 int r = 0;
155
Tejun Heo32c87fc2011-01-03 14:49:32 +0100156 INIT_WORK(&rdev->hotplug_work, radeon_hotplug_work_func);
157
Dave Airlie1614f8b2009-12-01 16:04:56 +1000158 spin_lock_init(&rdev->irq.sw_lock);
Michel Dänzer29d9ebc2011-01-11 10:44:54 +0100159 for (i = 0; i < rdev->num_crtc; i++)
160 spin_lock_init(&rdev->irq.pflip_lock[i]);
Alex Deucher9e7b4142010-03-16 17:08:06 -0400161 r = drm_vblank_init(rdev->ddev, rdev->num_crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200162 if (r) {
163 return r;
164 }
Alex Deucher3e5cb982009-10-16 12:21:24 -0400165 /* enable msi */
166 rdev->msi_enabled = 0;
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400167
168 if (radeon_msi_ok(rdev)) {
Alex Deucher3e5cb982009-10-16 12:21:24 -0400169 int ret = pci_enable_msi(rdev->pdev);
Alex Deucherd8f60cf2009-12-01 13:43:46 -0500170 if (!ret) {
Alex Deucher3e5cb982009-10-16 12:21:24 -0400171 rdev->msi_enabled = 1;
Alex Deucherda7be682010-08-12 18:05:34 -0400172 dev_info(rdev->dev, "radeon: using MSI.\n");
Alex Deucherd8f60cf2009-12-01 13:43:46 -0500173 }
Alex Deucher3e5cb982009-10-16 12:21:24 -0400174 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200175 rdev->irq.installed = true;
Jerome Glisse003e69f2010-01-07 15:39:14 +0100176 r = drm_irq_install(rdev->ddev);
177 if (r) {
178 rdev->irq.installed = false;
179 return r;
180 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200181 DRM_INFO("radeon: irq initialized.\n");
182 return 0;
183}
184
185void radeon_irq_kms_fini(struct radeon_device *rdev)
186{
Jerome Glisse003e69f2010-01-07 15:39:14 +0100187 drm_vblank_cleanup(rdev->ddev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200188 if (rdev->irq.installed) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200189 drm_irq_uninstall(rdev->ddev);
Jerome Glisse003e69f2010-01-07 15:39:14 +0100190 rdev->irq.installed = false;
Alex Deucher3e5cb982009-10-16 12:21:24 -0400191 if (rdev->msi_enabled)
192 pci_disable_msi(rdev->pdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200193 }
Tejun Heo32c87fc2011-01-03 14:49:32 +0100194 flush_work_sync(&rdev->hotplug_work);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200195}
Dave Airlie1614f8b2009-12-01 16:04:56 +1000196
197void radeon_irq_kms_sw_irq_get(struct radeon_device *rdev)
198{
199 unsigned long irqflags;
200
201 spin_lock_irqsave(&rdev->irq.sw_lock, irqflags);
202 if (rdev->ddev->irq_enabled && (++rdev->irq.sw_refcount == 1)) {
203 rdev->irq.sw_int = true;
204 radeon_irq_set(rdev);
205 }
206 spin_unlock_irqrestore(&rdev->irq.sw_lock, irqflags);
207}
208
209void radeon_irq_kms_sw_irq_put(struct radeon_device *rdev)
210{
211 unsigned long irqflags;
212
213 spin_lock_irqsave(&rdev->irq.sw_lock, irqflags);
214 BUG_ON(rdev->ddev->irq_enabled && rdev->irq.sw_refcount <= 0);
215 if (rdev->ddev->irq_enabled && (--rdev->irq.sw_refcount == 0)) {
216 rdev->irq.sw_int = false;
217 radeon_irq_set(rdev);
218 }
219 spin_unlock_irqrestore(&rdev->irq.sw_lock, irqflags);
220}
221
Alex Deucher6f34be52010-11-21 10:59:01 -0500222void radeon_irq_kms_pflip_irq_get(struct radeon_device *rdev, int crtc)
223{
224 unsigned long irqflags;
225
226 if (crtc < 0 || crtc >= rdev->num_crtc)
227 return;
228
229 spin_lock_irqsave(&rdev->irq.pflip_lock[crtc], irqflags);
230 if (rdev->ddev->irq_enabled && (++rdev->irq.pflip_refcount[crtc] == 1)) {
231 rdev->irq.pflip[crtc] = true;
232 radeon_irq_set(rdev);
233 }
234 spin_unlock_irqrestore(&rdev->irq.pflip_lock[crtc], irqflags);
235}
236
237void radeon_irq_kms_pflip_irq_put(struct radeon_device *rdev, int crtc)
238{
239 unsigned long irqflags;
240
241 if (crtc < 0 || crtc >= rdev->num_crtc)
242 return;
243
244 spin_lock_irqsave(&rdev->irq.pflip_lock[crtc], irqflags);
245 BUG_ON(rdev->ddev->irq_enabled && rdev->irq.pflip_refcount[crtc] <= 0);
246 if (rdev->ddev->irq_enabled && (--rdev->irq.pflip_refcount[crtc] == 0)) {
247 rdev->irq.pflip[crtc] = false;
248 radeon_irq_set(rdev);
249 }
250 spin_unlock_irqrestore(&rdev->irq.pflip_lock[crtc], irqflags);
251}
252