blob: 66d5fe1c81747cfa73da445d1f2099d36e9e4261 [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 */
Alex Deucher1b370782011-11-17 20:13:28 -050068 for (i = 0; i < RADEON_NUM_RINGS; i++)
69 rdev->irq.sw_int[i] = false;
Alex Deucher2031f772010-04-22 12:52:11 -040070 rdev->irq.gui_idle = false;
Ilija Hadzic54bd52062011-10-26 15:43:58 -040071 for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
Alex Deucher9e7b4142010-03-16 17:08:06 -040072 rdev->irq.hpd[i] = false;
Ilija Hadzic54bd52062011-10-26 15:43:58 -040073 for (i = 0; i < RADEON_MAX_CRTCS; i++) {
74 rdev->irq.crtc_vblank_int[i] = false;
Alex Deucher6f34be52010-11-21 10:59:01 -050075 rdev->irq.pflip[i] = false;
76 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +020077 radeon_irq_set(rdev);
78 /* Clear bits */
79 radeon_irq_process(rdev);
80}
81
82int radeon_driver_irq_postinstall_kms(struct drm_device *dev)
83{
84 struct radeon_device *rdev = dev->dev_private;
Alex Deucher1b370782011-11-17 20:13:28 -050085 unsigned i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020086
87 dev->max_vblank_count = 0x001fffff;
Alex Deucher1b370782011-11-17 20:13:28 -050088 for (i = 0; i < RADEON_NUM_RINGS; i++)
89 rdev->irq.sw_int[i] = true;
Jerome Glisse771fe6b2009-06-05 14:42:42 +020090 radeon_irq_set(rdev);
91 return 0;
92}
93
94void radeon_driver_irq_uninstall_kms(struct drm_device *dev)
95{
96 struct radeon_device *rdev = dev->dev_private;
97 unsigned i;
98
99 if (rdev == NULL) {
100 return;
101 }
102 /* Disable *all* interrupts */
Alex Deucher1b370782011-11-17 20:13:28 -0500103 for (i = 0; i < RADEON_NUM_RINGS; i++)
104 rdev->irq.sw_int[i] = false;
Alex Deucher2031f772010-04-22 12:52:11 -0400105 rdev->irq.gui_idle = false;
Ilija Hadzic54bd52062011-10-26 15:43:58 -0400106 for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
Jerome Glisse003e69f2010-01-07 15:39:14 +0100107 rdev->irq.hpd[i] = false;
Ilija Hadzic54bd52062011-10-26 15:43:58 -0400108 for (i = 0; i < RADEON_MAX_CRTCS; i++) {
109 rdev->irq.crtc_vblank_int[i] = false;
Alex Deucher6f34be52010-11-21 10:59:01 -0500110 rdev->irq.pflip[i] = false;
111 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200112 radeon_irq_set(rdev);
113}
114
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400115static bool radeon_msi_ok(struct radeon_device *rdev)
116{
117 /* RV370/RV380 was first asic with MSI support */
118 if (rdev->family < CHIP_RV380)
119 return false;
120
121 /* MSIs don't work on AGP */
122 if (rdev->flags & RADEON_IS_AGP)
123 return false;
124
Alex Deuchera18cee12011-11-01 14:20:30 -0400125 /* force MSI on */
126 if (radeon_msi == 1)
127 return true;
128 else if (radeon_msi == 0)
129 return false;
130
Alex Deucherb3621052011-10-25 15:11:08 -0400131 /* Quirks */
132 /* HP RS690 only seems to work with MSIs. */
133 if ((rdev->pdev->device == 0x791f) &&
134 (rdev->pdev->subsystem_vendor == 0x103c) &&
135 (rdev->pdev->subsystem_device == 0x30c2))
136 return true;
137
Alex Deucher01e718e2011-11-01 14:14:18 -0400138 /* Dell RS690 only seems to work with MSIs. */
139 if ((rdev->pdev->device == 0x791f) &&
140 (rdev->pdev->subsystem_vendor == 0x1028) &&
Alex Deucher44517c42012-01-15 08:51:12 -0500141 (rdev->pdev->subsystem_device == 0x01fc))
142 return true;
143
144 /* Dell RS690 only seems to work with MSIs. */
145 if ((rdev->pdev->device == 0x791f) &&
146 (rdev->pdev->subsystem_vendor == 0x1028) &&
Alex Deucher01e718e2011-11-01 14:14:18 -0400147 (rdev->pdev->subsystem_device == 0x01fd))
148 return true;
149
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400150 if (rdev->flags & RADEON_IS_IGP) {
151 /* APUs work fine with MSIs */
152 if (rdev->family >= CHIP_PALM)
153 return true;
154 /* lots of IGPs have problems with MSIs */
155 return false;
156 }
157
158 return true;
159}
160
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200161int radeon_irq_kms_init(struct radeon_device *rdev)
162{
Michel Dänzer29d9ebc2011-01-11 10:44:54 +0100163 int i;
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200164 int r = 0;
165
Tejun Heo32c87fc2011-01-03 14:49:32 +0100166 INIT_WORK(&rdev->hotplug_work, radeon_hotplug_work_func);
167
Dave Airlie1614f8b2009-12-01 16:04:56 +1000168 spin_lock_init(&rdev->irq.sw_lock);
Michel Dänzer29d9ebc2011-01-11 10:44:54 +0100169 for (i = 0; i < rdev->num_crtc; i++)
170 spin_lock_init(&rdev->irq.pflip_lock[i]);
Alex Deucher9e7b4142010-03-16 17:08:06 -0400171 r = drm_vblank_init(rdev->ddev, rdev->num_crtc);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200172 if (r) {
173 return r;
174 }
Alex Deucher3e5cb982009-10-16 12:21:24 -0400175 /* enable msi */
176 rdev->msi_enabled = 0;
Alex Deucher8f6c25c2011-10-25 14:58:49 -0400177
178 if (radeon_msi_ok(rdev)) {
Alex Deucher3e5cb982009-10-16 12:21:24 -0400179 int ret = pci_enable_msi(rdev->pdev);
Alex Deucherd8f60cf2009-12-01 13:43:46 -0500180 if (!ret) {
Alex Deucher3e5cb982009-10-16 12:21:24 -0400181 rdev->msi_enabled = 1;
Alex Deucherda7be682010-08-12 18:05:34 -0400182 dev_info(rdev->dev, "radeon: using MSI.\n");
Alex Deucherd8f60cf2009-12-01 13:43:46 -0500183 }
Alex Deucher3e5cb982009-10-16 12:21:24 -0400184 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200185 rdev->irq.installed = true;
Jerome Glisse003e69f2010-01-07 15:39:14 +0100186 r = drm_irq_install(rdev->ddev);
187 if (r) {
188 rdev->irq.installed = false;
189 return r;
190 }
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200191 DRM_INFO("radeon: irq initialized.\n");
192 return 0;
193}
194
195void radeon_irq_kms_fini(struct radeon_device *rdev)
196{
Jerome Glisse003e69f2010-01-07 15:39:14 +0100197 drm_vblank_cleanup(rdev->ddev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200198 if (rdev->irq.installed) {
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200199 drm_irq_uninstall(rdev->ddev);
Jerome Glisse003e69f2010-01-07 15:39:14 +0100200 rdev->irq.installed = false;
Alex Deucher3e5cb982009-10-16 12:21:24 -0400201 if (rdev->msi_enabled)
202 pci_disable_msi(rdev->pdev);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200203 }
Tejun Heo32c87fc2011-01-03 14:49:32 +0100204 flush_work_sync(&rdev->hotplug_work);
Jerome Glisse771fe6b2009-06-05 14:42:42 +0200205}
Dave Airlie1614f8b2009-12-01 16:04:56 +1000206
Alex Deucher1b370782011-11-17 20:13:28 -0500207void radeon_irq_kms_sw_irq_get(struct radeon_device *rdev, int ring)
Dave Airlie1614f8b2009-12-01 16:04:56 +1000208{
209 unsigned long irqflags;
210
211 spin_lock_irqsave(&rdev->irq.sw_lock, irqflags);
Alex Deucher1b370782011-11-17 20:13:28 -0500212 if (rdev->ddev->irq_enabled && (++rdev->irq.sw_refcount[ring] == 1)) {
213 rdev->irq.sw_int[ring] = true;
Dave Airlie1614f8b2009-12-01 16:04:56 +1000214 radeon_irq_set(rdev);
215 }
216 spin_unlock_irqrestore(&rdev->irq.sw_lock, irqflags);
217}
218
Alex Deucher1b370782011-11-17 20:13:28 -0500219void radeon_irq_kms_sw_irq_put(struct radeon_device *rdev, int ring)
Dave Airlie1614f8b2009-12-01 16:04:56 +1000220{
221 unsigned long irqflags;
222
223 spin_lock_irqsave(&rdev->irq.sw_lock, irqflags);
Alex Deucher1b370782011-11-17 20:13:28 -0500224 BUG_ON(rdev->ddev->irq_enabled && rdev->irq.sw_refcount[ring] <= 0);
225 if (rdev->ddev->irq_enabled && (--rdev->irq.sw_refcount[ring] == 0)) {
226 rdev->irq.sw_int[ring] = false;
Dave Airlie1614f8b2009-12-01 16:04:56 +1000227 radeon_irq_set(rdev);
228 }
229 spin_unlock_irqrestore(&rdev->irq.sw_lock, irqflags);
230}
231
Alex Deucher6f34be52010-11-21 10:59:01 -0500232void radeon_irq_kms_pflip_irq_get(struct radeon_device *rdev, int crtc)
233{
234 unsigned long irqflags;
235
236 if (crtc < 0 || crtc >= rdev->num_crtc)
237 return;
238
239 spin_lock_irqsave(&rdev->irq.pflip_lock[crtc], irqflags);
240 if (rdev->ddev->irq_enabled && (++rdev->irq.pflip_refcount[crtc] == 1)) {
241 rdev->irq.pflip[crtc] = true;
242 radeon_irq_set(rdev);
243 }
244 spin_unlock_irqrestore(&rdev->irq.pflip_lock[crtc], irqflags);
245}
246
247void radeon_irq_kms_pflip_irq_put(struct radeon_device *rdev, int crtc)
248{
249 unsigned long irqflags;
250
251 if (crtc < 0 || crtc >= rdev->num_crtc)
252 return;
253
254 spin_lock_irqsave(&rdev->irq.pflip_lock[crtc], irqflags);
255 BUG_ON(rdev->ddev->irq_enabled && rdev->irq.pflip_refcount[crtc] <= 0);
256 if (rdev->ddev->irq_enabled && (--rdev->irq.pflip_refcount[crtc] == 0)) {
257 rdev->irq.pflip[crtc] = false;
258 radeon_irq_set(rdev);
259 }
260 spin_unlock_irqrestore(&rdev->irq.pflip_lock[crtc], irqflags);
261}
262