]> git.proxmox.com Git - mirror_ubuntu-hirsute-kernel.git/blame - drivers/gpu/drm/radeon/radeon_irq_kms.c
drm/radeon/kms: Add MSI quirk for HP RS690
[mirror_ubuntu-hirsute-kernel.git] / drivers / gpu / drm / radeon / radeon_irq_kms.c
CommitLineData
771fe6b9
JG
1/*
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"
eb1f8e4f 29#include "drm_crtc_helper.h"
771fe6b9
JG
30#include "radeon_drm.h"
31#include "radeon_reg.h"
771fe6b9
JG
32#include "radeon.h"
33#include "atom.h"
34
771fe6b9
JG
35irqreturn_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
d4877cf2
AD
43/*
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 */
eb1f8e4f 59 drm_helper_hpd_irq_event(dev);
d4877cf2
AD
60}
61
771fe6b9
JG
62void 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;
2031f77c 69 rdev->irq.gui_idle = false;
54bd5206 70 for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
9e7b414e 71 rdev->irq.hpd[i] = false;
54bd5206
IH
72 for (i = 0; i < RADEON_MAX_CRTCS; i++) {
73 rdev->irq.crtc_vblank_int[i] = false;
6f34be50
AD
74 rdev->irq.pflip[i] = false;
75 }
771fe6b9
JG
76 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;
2031f77c 101 rdev->irq.gui_idle = false;
54bd5206 102 for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
003e69f9 103 rdev->irq.hpd[i] = false;
54bd5206
IH
104 for (i = 0; i < RADEON_MAX_CRTCS; i++) {
105 rdev->irq.crtc_vblank_int[i] = false;
6f34be50
AD
106 rdev->irq.pflip[i] = false;
107 }
771fe6b9
JG
108 radeon_irq_set(rdev);
109}
110
8f6c25c5
AD
111static 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
b362105f
AD
121 /* Quirks */
122 /* HP RS690 only seems to work with MSIs. */
123 if ((rdev->pdev->device == 0x791f) &&
124 (rdev->pdev->subsystem_vendor == 0x103c) &&
125 (rdev->pdev->subsystem_device == 0x30c2))
126 return true;
127
8f6c25c5
AD
128 if (rdev->flags & RADEON_IS_IGP) {
129 /* APUs work fine with MSIs */
130 if (rdev->family >= CHIP_PALM)
131 return true;
132 /* lots of IGPs have problems with MSIs */
133 return false;
134 }
135
136 return true;
137}
138
771fe6b9
JG
139int radeon_irq_kms_init(struct radeon_device *rdev)
140{
29d9ebc4 141 int i;
771fe6b9
JG
142 int r = 0;
143
32c87fca
TH
144 INIT_WORK(&rdev->hotplug_work, radeon_hotplug_work_func);
145
1614f8b1 146 spin_lock_init(&rdev->irq.sw_lock);
29d9ebc4
MD
147 for (i = 0; i < rdev->num_crtc; i++)
148 spin_lock_init(&rdev->irq.pflip_lock[i]);
9e7b414e 149 r = drm_vblank_init(rdev->ddev, rdev->num_crtc);
771fe6b9
JG
150 if (r) {
151 return r;
152 }
3e5cb98d
AD
153 /* enable msi */
154 rdev->msi_enabled = 0;
8f6c25c5
AD
155
156 if (radeon_msi_ok(rdev)) {
3e5cb98d 157 int ret = pci_enable_msi(rdev->pdev);
d8f60cfc 158 if (!ret) {
3e5cb98d 159 rdev->msi_enabled = 1;
da7be684 160 dev_info(rdev->dev, "radeon: using MSI.\n");
d8f60cfc 161 }
3e5cb98d 162 }
771fe6b9 163 rdev->irq.installed = true;
003e69f9
JG
164 r = drm_irq_install(rdev->ddev);
165 if (r) {
166 rdev->irq.installed = false;
167 return r;
168 }
771fe6b9
JG
169 DRM_INFO("radeon: irq initialized.\n");
170 return 0;
171}
172
173void radeon_irq_kms_fini(struct radeon_device *rdev)
174{
003e69f9 175 drm_vblank_cleanup(rdev->ddev);
771fe6b9 176 if (rdev->irq.installed) {
771fe6b9 177 drm_irq_uninstall(rdev->ddev);
003e69f9 178 rdev->irq.installed = false;
3e5cb98d
AD
179 if (rdev->msi_enabled)
180 pci_disable_msi(rdev->pdev);
771fe6b9 181 }
32c87fca 182 flush_work_sync(&rdev->hotplug_work);
771fe6b9 183}
1614f8b1
DA
184
185void radeon_irq_kms_sw_irq_get(struct radeon_device *rdev)
186{
187 unsigned long irqflags;
188
189 spin_lock_irqsave(&rdev->irq.sw_lock, irqflags);
190 if (rdev->ddev->irq_enabled && (++rdev->irq.sw_refcount == 1)) {
191 rdev->irq.sw_int = true;
192 radeon_irq_set(rdev);
193 }
194 spin_unlock_irqrestore(&rdev->irq.sw_lock, irqflags);
195}
196
197void radeon_irq_kms_sw_irq_put(struct radeon_device *rdev)
198{
199 unsigned long irqflags;
200
201 spin_lock_irqsave(&rdev->irq.sw_lock, irqflags);
202 BUG_ON(rdev->ddev->irq_enabled && rdev->irq.sw_refcount <= 0);
203 if (rdev->ddev->irq_enabled && (--rdev->irq.sw_refcount == 0)) {
204 rdev->irq.sw_int = false;
205 radeon_irq_set(rdev);
206 }
207 spin_unlock_irqrestore(&rdev->irq.sw_lock, irqflags);
208}
209
6f34be50
AD
210void radeon_irq_kms_pflip_irq_get(struct radeon_device *rdev, int crtc)
211{
212 unsigned long irqflags;
213
214 if (crtc < 0 || crtc >= rdev->num_crtc)
215 return;
216
217 spin_lock_irqsave(&rdev->irq.pflip_lock[crtc], irqflags);
218 if (rdev->ddev->irq_enabled && (++rdev->irq.pflip_refcount[crtc] == 1)) {
219 rdev->irq.pflip[crtc] = true;
220 radeon_irq_set(rdev);
221 }
222 spin_unlock_irqrestore(&rdev->irq.pflip_lock[crtc], irqflags);
223}
224
225void radeon_irq_kms_pflip_irq_put(struct radeon_device *rdev, int crtc)
226{
227 unsigned long irqflags;
228
229 if (crtc < 0 || crtc >= rdev->num_crtc)
230 return;
231
232 spin_lock_irqsave(&rdev->irq.pflip_lock[crtc], irqflags);
233 BUG_ON(rdev->ddev->irq_enabled && rdev->irq.pflip_refcount[crtc] <= 0);
234 if (rdev->ddev->irq_enabled && (--rdev->irq.pflip_refcount[crtc] == 0)) {
235 rdev->irq.pflip[crtc] = false;
236 radeon_irq_set(rdev);
237 }
238 spin_unlock_irqrestore(&rdev->irq.pflip_lock[crtc], irqflags);
239}
240