4f9496e4148ed1ae980844138052cff555ef51be
[pandora-kernel.git] / drivers / gpu / drm / radeon / radeon_irq_kms.c
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"
29 #include "drm_crtc_helper.h"
30 #include "radeon_drm.h"
31 #include "radeon_reg.h"
32 #include "radeon.h"
33 #include "atom.h"
34
35 irqreturn_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
43 /*
44  * Handle hotplug events outside the interrupt handler proper.
45  */
46 static 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 */
59         drm_helper_hpd_irq_event(dev);
60 }
61
62 void 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;
69         rdev->irq.gui_idle = false;
70         for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
71                 rdev->irq.hpd[i] = false;
72         for (i = 0; i < RADEON_MAX_CRTCS; i++) {
73                 rdev->irq.crtc_vblank_int[i] = false;
74                 rdev->irq.pflip[i] = false;
75         }
76         radeon_irq_set(rdev);
77         /* Clear bits */
78         radeon_irq_process(rdev);
79 }
80
81 int 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
91 void 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;
101         rdev->irq.gui_idle = false;
102         for (i = 0; i < RADEON_MAX_HPD_PINS; i++)
103                 rdev->irq.hpd[i] = false;
104         for (i = 0; i < RADEON_MAX_CRTCS; i++) {
105                 rdev->irq.crtc_vblank_int[i] = false;
106                 rdev->irq.pflip[i] = false;
107         }
108         radeon_irq_set(rdev);
109 }
110
111 static 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
121         /* force MSI on */
122         if (radeon_msi == 1)
123                 return true;
124         else if (radeon_msi == 0)
125                 return false;
126
127         /* 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
134         /* 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 == 0x01fc))
138                 return true;
139
140         /* Dell RS690 only seems to work with MSIs. */
141         if ((rdev->pdev->device == 0x791f) &&
142             (rdev->pdev->subsystem_vendor == 0x1028) &&
143             (rdev->pdev->subsystem_device == 0x01fd))
144                 return true;
145
146         /* Gateway RS690 only seems to work with MSIs. */
147         if ((rdev->pdev->device == 0x791f) &&
148             (rdev->pdev->subsystem_vendor == 0x107b) &&
149             (rdev->pdev->subsystem_device == 0x0185))
150                 return true;
151
152         /* try and enable MSIs by default on all RS690s */
153         if (rdev->family == CHIP_RS690)
154                 return true;
155
156         /* RV515 seems to have MSI issues where it loses
157          * MSI rearms occasionally. This leads to lockups and freezes.
158          * disable it by default.
159          */
160         if (rdev->family == CHIP_RV515)
161                 return false;
162         if (rdev->flags & RADEON_IS_IGP) {
163                 /* APUs work fine with MSIs */
164                 if (rdev->family >= CHIP_PALM)
165                         return true;
166                 /* lots of IGPs have problems with MSIs */
167                 return false;
168         }
169
170         return true;
171 }
172
173 int radeon_irq_kms_init(struct radeon_device *rdev)
174 {
175         int i;
176         int r = 0;
177
178         INIT_WORK(&rdev->hotplug_work, radeon_hotplug_work_func);
179
180         spin_lock_init(&rdev->irq.sw_lock);
181         for (i = 0; i < rdev->num_crtc; i++)
182                 spin_lock_init(&rdev->irq.pflip_lock[i]);
183         r = drm_vblank_init(rdev->ddev, rdev->num_crtc);
184         if (r) {
185                 return r;
186         }
187         /* enable msi */
188         rdev->msi_enabled = 0;
189
190         if (radeon_msi_ok(rdev)) {
191                 int ret = pci_enable_msi(rdev->pdev);
192                 if (!ret) {
193                         rdev->msi_enabled = 1;
194                         dev_info(rdev->dev, "radeon: using MSI.\n");
195                 }
196         }
197         rdev->irq.installed = true;
198         r = drm_irq_install(rdev->ddev);
199         if (r) {
200                 rdev->irq.installed = false;
201                 return r;
202         }
203         DRM_INFO("radeon: irq initialized.\n");
204         return 0;
205 }
206
207 void radeon_irq_kms_fini(struct radeon_device *rdev)
208 {
209         drm_vblank_cleanup(rdev->ddev);
210         if (rdev->irq.installed) {
211                 drm_irq_uninstall(rdev->ddev);
212                 rdev->irq.installed = false;
213                 if (rdev->msi_enabled)
214                         pci_disable_msi(rdev->pdev);
215         }
216         flush_work_sync(&rdev->hotplug_work);
217 }
218
219 void radeon_irq_kms_sw_irq_get(struct radeon_device *rdev)
220 {
221         unsigned long irqflags;
222
223         spin_lock_irqsave(&rdev->irq.sw_lock, irqflags);
224         if (rdev->ddev->irq_enabled && (++rdev->irq.sw_refcount == 1)) {
225                 rdev->irq.sw_int = true;
226                 radeon_irq_set(rdev);
227         }
228         spin_unlock_irqrestore(&rdev->irq.sw_lock, irqflags);
229 }
230
231 void radeon_irq_kms_sw_irq_put(struct radeon_device *rdev)
232 {
233         unsigned long irqflags;
234
235         spin_lock_irqsave(&rdev->irq.sw_lock, irqflags);
236         BUG_ON(rdev->ddev->irq_enabled && rdev->irq.sw_refcount <= 0);
237         if (rdev->ddev->irq_enabled && (--rdev->irq.sw_refcount == 0)) {
238                 rdev->irq.sw_int = false;
239                 radeon_irq_set(rdev);
240         }
241         spin_unlock_irqrestore(&rdev->irq.sw_lock, irqflags);
242 }
243
244 void radeon_irq_kms_pflip_irq_get(struct radeon_device *rdev, int crtc)
245 {
246         unsigned long irqflags;
247
248         if (crtc < 0 || crtc >= rdev->num_crtc)
249                 return;
250
251         spin_lock_irqsave(&rdev->irq.pflip_lock[crtc], irqflags);
252         if (rdev->ddev->irq_enabled && (++rdev->irq.pflip_refcount[crtc] == 1)) {
253                 rdev->irq.pflip[crtc] = true;
254                 radeon_irq_set(rdev);
255         }
256         spin_unlock_irqrestore(&rdev->irq.pflip_lock[crtc], irqflags);
257 }
258
259 void radeon_irq_kms_pflip_irq_put(struct radeon_device *rdev, int crtc)
260 {
261         unsigned long irqflags;
262
263         if (crtc < 0 || crtc >= rdev->num_crtc)
264                 return;
265
266         spin_lock_irqsave(&rdev->irq.pflip_lock[crtc], irqflags);
267         BUG_ON(rdev->ddev->irq_enabled && rdev->irq.pflip_refcount[crtc] <= 0);
268         if (rdev->ddev->irq_enabled && (--rdev->irq.pflip_refcount[crtc] == 0)) {
269                 rdev->irq.pflip[crtc] = false;
270                 radeon_irq_set(rdev);
271         }
272         spin_unlock_irqrestore(&rdev->irq.pflip_lock[crtc], irqflags);
273 }
274