]> git.karo-electronics.de Git - karo-tx-linux.git/blob - drivers/gpu/drm/radeon/radeon_irq_kms.c
Merge branch 'drm-radeon-next' of ../drm-radeon-next into drm-core-next
[karo-tx-linux.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         INIT_WORK(&rdev->hotplug_work, radeon_hotplug_work_func);
68
69         /* Disable *all* interrupts */
70         rdev->irq.sw_int = false;
71         rdev->irq.gui_idle = false;
72         for (i = 0; i < rdev->num_crtc; i++)
73                 rdev->irq.crtc_vblank_int[i] = false;
74         for (i = 0; i < 6; i++) {
75                 rdev->irq.hpd[i] = false;
76                 rdev->irq.pflip[i] = false;
77         }
78         radeon_irq_set(rdev);
79         /* Clear bits */
80         radeon_irq_process(rdev);
81 }
82
83 int radeon_driver_irq_postinstall_kms(struct drm_device *dev)
84 {
85         struct radeon_device *rdev = dev->dev_private;
86
87         dev->max_vblank_count = 0x001fffff;
88         rdev->irq.sw_int = true;
89         radeon_irq_set(rdev);
90         return 0;
91 }
92
93 void radeon_driver_irq_uninstall_kms(struct drm_device *dev)
94 {
95         struct radeon_device *rdev = dev->dev_private;
96         unsigned i;
97
98         if (rdev == NULL) {
99                 return;
100         }
101         /* Disable *all* interrupts */
102         rdev->irq.sw_int = false;
103         rdev->irq.gui_idle = false;
104         for (i = 0; i < rdev->num_crtc; i++)
105                 rdev->irq.crtc_vblank_int[i] = false;
106         for (i = 0; i < 6; i++) {
107                 rdev->irq.hpd[i] = false;
108                 rdev->irq.pflip[i] = false;
109         }
110         radeon_irq_set(rdev);
111 }
112
113 int radeon_irq_kms_init(struct radeon_device *rdev)
114 {
115         int r = 0;
116
117         spin_lock_init(&rdev->irq.sw_lock);
118         r = drm_vblank_init(rdev->ddev, rdev->num_crtc);
119         if (r) {
120                 return r;
121         }
122         /* enable msi */
123         rdev->msi_enabled = 0;
124         /* MSIs don't seem to work reliably on all IGP
125          * chips.  Disable MSI on them for now.
126          */
127         if ((rdev->family >= CHIP_RV380) &&
128             (!(rdev->flags & RADEON_IS_IGP)) &&
129             (!(rdev->flags & RADEON_IS_AGP))) {
130                 int ret = pci_enable_msi(rdev->pdev);
131                 if (!ret) {
132                         rdev->msi_enabled = 1;
133                         dev_info(rdev->dev, "radeon: using MSI.\n");
134                 }
135         }
136         rdev->irq.installed = true;
137         r = drm_irq_install(rdev->ddev);
138         if (r) {
139                 rdev->irq.installed = false;
140                 return r;
141         }
142         DRM_INFO("radeon: irq initialized.\n");
143         return 0;
144 }
145
146 void radeon_irq_kms_fini(struct radeon_device *rdev)
147 {
148         drm_vblank_cleanup(rdev->ddev);
149         if (rdev->irq.installed) {
150                 drm_irq_uninstall(rdev->ddev);
151                 rdev->irq.installed = false;
152                 if (rdev->msi_enabled)
153                         pci_disable_msi(rdev->pdev);
154         }
155 }
156
157 void radeon_irq_kms_sw_irq_get(struct radeon_device *rdev)
158 {
159         unsigned long irqflags;
160
161         spin_lock_irqsave(&rdev->irq.sw_lock, irqflags);
162         if (rdev->ddev->irq_enabled && (++rdev->irq.sw_refcount == 1)) {
163                 rdev->irq.sw_int = true;
164                 radeon_irq_set(rdev);
165         }
166         spin_unlock_irqrestore(&rdev->irq.sw_lock, irqflags);
167 }
168
169 void radeon_irq_kms_sw_irq_put(struct radeon_device *rdev)
170 {
171         unsigned long irqflags;
172
173         spin_lock_irqsave(&rdev->irq.sw_lock, irqflags);
174         BUG_ON(rdev->ddev->irq_enabled && rdev->irq.sw_refcount <= 0);
175         if (rdev->ddev->irq_enabled && (--rdev->irq.sw_refcount == 0)) {
176                 rdev->irq.sw_int = false;
177                 radeon_irq_set(rdev);
178         }
179         spin_unlock_irqrestore(&rdev->irq.sw_lock, irqflags);
180 }
181
182 void radeon_irq_kms_pflip_irq_get(struct radeon_device *rdev, int crtc)
183 {
184         unsigned long irqflags;
185
186         if (crtc < 0 || crtc >= rdev->num_crtc)
187                 return;
188
189         spin_lock_irqsave(&rdev->irq.pflip_lock[crtc], irqflags);
190         if (rdev->ddev->irq_enabled && (++rdev->irq.pflip_refcount[crtc] == 1)) {
191                 rdev->irq.pflip[crtc] = true;
192                 radeon_irq_set(rdev);
193         }
194         spin_unlock_irqrestore(&rdev->irq.pflip_lock[crtc], irqflags);
195 }
196
197 void radeon_irq_kms_pflip_irq_put(struct radeon_device *rdev, int crtc)
198 {
199         unsigned long irqflags;
200
201         if (crtc < 0 || crtc >= rdev->num_crtc)
202                 return;
203
204         spin_lock_irqsave(&rdev->irq.pflip_lock[crtc], irqflags);
205         BUG_ON(rdev->ddev->irq_enabled && rdev->irq.pflip_refcount[crtc] <= 0);
206         if (rdev->ddev->irq_enabled && (--rdev->irq.pflip_refcount[crtc] == 0)) {
207                 rdev->irq.pflip[crtc] = false;
208                 radeon_irq_set(rdev);
209         }
210         spin_unlock_irqrestore(&rdev->irq.pflip_lock[crtc], irqflags);
211 }
212