blob: c96830ccc0ec47b8bfac650ca6497c5e9390755f [file] [log] [blame]
Dave Airlie22f579c2005-06-28 22:48:56 +10001/* via_irq.c
2 *
3 * Copyright 2004 BEAM Ltd.
4 * Copyright 2002 Tungsten Graphics, Inc.
5 * Copyright 2005 Thomas Hellstrom.
6 * All Rights Reserved.
7 *
8 * Permission is hereby granted, free of charge, to any person obtaining a
9 * copy of this software and associated documentation files (the "Software"),
10 * to deal in the Software without restriction, including without limitation
11 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
12 * and/or sell copies of the Software, and to permit persons to whom the
13 * Software is furnished to do so, subject to the following conditions:
14 *
15 * The above copyright notice and this permission notice (including the next
16 * paragraph) shall be included in all copies or substantial portions of the
17 * Software.
18 *
19 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
20 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
21 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
22 * BEAM LTD, TUNGSTEN GRAPHICS AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM,
23 * DAMAGES OR
24 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
25 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
26 * DEALINGS IN THE SOFTWARE.
27 *
28 * Authors:
29 * Terry Barnaby <terry1@beam.ltd.uk>
30 * Keith Whitwell <keith@tungstengraphics.com>
31 * Thomas Hellstrom <unichrome@shipmail.org>
32 *
33 * This code provides standard DRM access to the Via Unichrome / Pro Vertical blank
34 * interrupt, as well as an infrastructure to handle other interrupts of the chip.
35 * The refresh rate is also calculated for video playback sync purposes.
36 */
37
David Howells760285e2012-10-02 18:01:07 +010038#include <drm/drmP.h>
39#include <drm/via_drm.h>
Dave Airlie22f579c2005-06-28 22:48:56 +100040#include "via_drv.h"
41
42#define VIA_REG_INTERRUPT 0x200
43
44/* VIA_REG_INTERRUPT */
Jesse Barnes0a3e67a2008-09-30 12:14:26 -070045#define VIA_IRQ_GLOBAL (1 << 31)
Dave Airlie22f579c2005-06-28 22:48:56 +100046#define VIA_IRQ_VBLANK_ENABLE (1 << 19)
47#define VIA_IRQ_VBLANK_PENDING (1 << 3)
48#define VIA_IRQ_HQV0_ENABLE (1 << 11)
49#define VIA_IRQ_HQV1_ENABLE (1 << 25)
50#define VIA_IRQ_HQV0_PENDING (1 << 9)
51#define VIA_IRQ_HQV1_PENDING (1 << 10)
Dave Airlie92514242005-11-12 21:52:46 +110052#define VIA_IRQ_DMA0_DD_ENABLE (1 << 20)
53#define VIA_IRQ_DMA0_TD_ENABLE (1 << 21)
54#define VIA_IRQ_DMA1_DD_ENABLE (1 << 22)
55#define VIA_IRQ_DMA1_TD_ENABLE (1 << 23)
56#define VIA_IRQ_DMA0_DD_PENDING (1 << 4)
57#define VIA_IRQ_DMA0_TD_PENDING (1 << 5)
58#define VIA_IRQ_DMA1_DD_PENDING (1 << 6)
59#define VIA_IRQ_DMA1_TD_PENDING (1 << 7)
60
Dave Airlie22f579c2005-06-28 22:48:56 +100061
62/*
63 * Device-specific IRQs go here. This type might need to be extended with
64 * the register if there are multiple IRQ control registers.
Dave Airlieb5e89ed2005-09-25 14:28:13 +100065 * Currently we activate the HQV interrupts of Unichrome Pro group A.
Dave Airlie22f579c2005-06-28 22:48:56 +100066 */
67
68static maskarray_t via_pro_group_a_irqs[] = {
Dave Airlieb5e89ed2005-09-25 14:28:13 +100069 {VIA_IRQ_HQV0_ENABLE, VIA_IRQ_HQV0_PENDING, 0x000003D0, 0x00008010,
Jesse Barnes0a3e67a2008-09-30 12:14:26 -070070 0x00000000 },
Dave Airlieb5e89ed2005-09-25 14:28:13 +100071 {VIA_IRQ_HQV1_ENABLE, VIA_IRQ_HQV1_PENDING, 0x000013D0, 0x00008010,
Jesse Barnes0a3e67a2008-09-30 12:14:26 -070072 0x00000000 },
Dave Airlie92514242005-11-12 21:52:46 +110073 {VIA_IRQ_DMA0_TD_ENABLE, VIA_IRQ_DMA0_TD_PENDING, VIA_PCI_DMA_CSR0,
74 VIA_DMA_CSR_TA | VIA_DMA_CSR_TD, 0x00000008},
75 {VIA_IRQ_DMA1_TD_ENABLE, VIA_IRQ_DMA1_TD_PENDING, VIA_PCI_DMA_CSR1,
76 VIA_DMA_CSR_TA | VIA_DMA_CSR_TD, 0x00000008},
Dave Airlieb5e89ed2005-09-25 14:28:13 +100077};
Jesse Barnes0a3e67a2008-09-30 12:14:26 -070078static int via_num_pro_group_a = ARRAY_SIZE(via_pro_group_a_irqs);
Dave Airlie92514242005-11-12 21:52:46 +110079static int via_irqmap_pro_group_a[] = {0, 1, -1, 2, -1, 3};
Dave Airlie22f579c2005-06-28 22:48:56 +100080
Dave Airlie92514242005-11-12 21:52:46 +110081static maskarray_t via_unichrome_irqs[] = {
82 {VIA_IRQ_DMA0_TD_ENABLE, VIA_IRQ_DMA0_TD_PENDING, VIA_PCI_DMA_CSR0,
83 VIA_DMA_CSR_TA | VIA_DMA_CSR_TD, 0x00000008},
84 {VIA_IRQ_DMA1_TD_ENABLE, VIA_IRQ_DMA1_TD_PENDING, VIA_PCI_DMA_CSR1,
85 VIA_DMA_CSR_TA | VIA_DMA_CSR_TD, 0x00000008}
86};
Jesse Barnes0a3e67a2008-09-30 12:14:26 -070087static int via_num_unichrome = ARRAY_SIZE(via_unichrome_irqs);
Dave Airlie92514242005-11-12 21:52:46 +110088static int via_irqmap_unichrome[] = {-1, -1, -1, 0, -1, 1};
Dave Airlie22f579c2005-06-28 22:48:56 +100089
Jesse Barnes0a3e67a2008-09-30 12:14:26 -070090
Thierry Reding88e72712015-09-24 18:35:31 +020091u32 via_get_vblank_counter(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -070092{
93 drm_via_private_t *dev_priv = dev->dev_private;
Thierry Reding88e72712015-09-24 18:35:31 +020094
95 if (pipe != 0)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -070096 return 0;
97
98 return atomic_read(&dev_priv->vbl_received);
Dave Airlie22f579c2005-06-28 22:48:56 +100099}
100
Daniel Vettere9f0d762013-12-11 11:34:42 +0100101irqreturn_t via_driver_irq_handler(int irq, void *arg)
Dave Airlie22f579c2005-06-28 22:48:56 +1000102{
Dave Airlie84b1fd12007-07-11 15:53:27 +1000103 struct drm_device *dev = (struct drm_device *) arg;
Dave Airlie22f579c2005-06-28 22:48:56 +1000104 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
105 u32 status;
106 int handled = 0;
Arnd Bergmannde7e8bd2017-11-04 22:20:08 +0100107 ktime_t cur_vblank;
Dave Airlie22f579c2005-06-28 22:48:56 +1000108 drm_via_irq_t *cur_irq = dev_priv->via_irqs;
109 int i;
110
111 status = VIA_READ(VIA_REG_INTERRUPT);
112 if (status & VIA_IRQ_VBLANK_PENDING) {
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700113 atomic_inc(&dev_priv->vbl_received);
114 if (!(atomic_read(&dev_priv->vbl_received) & 0x0F)) {
Arnd Bergmannde7e8bd2017-11-04 22:20:08 +0100115 cur_vblank = ktime_get();
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000116 if (dev_priv->last_vblank_valid) {
Arnd Bergmannde7e8bd2017-11-04 22:20:08 +0100117 dev_priv->nsec_per_vblank =
118 ktime_sub(cur_vblank,
119 dev_priv->last_vblank) >> 4;
Dave Airlie22f579c2005-06-28 22:48:56 +1000120 }
121 dev_priv->last_vblank = cur_vblank;
122 dev_priv->last_vblank_valid = 1;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000123 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700124 if (!(atomic_read(&dev_priv->vbl_received) & 0xFF)) {
Arnd Bergmannde7e8bd2017-11-04 22:20:08 +0100125 DRM_DEBUG("nsec per vblank is: %llu\n",
126 ktime_to_ns(dev_priv->nsec_per_vblank));
Dave Airlie22f579c2005-06-28 22:48:56 +1000127 }
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700128 drm_handle_vblank(dev, 0);
Dave Airlie22f579c2005-06-28 22:48:56 +1000129 handled = 1;
130 }
Dave Airlie22f579c2005-06-28 22:48:56 +1000131
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000132 for (i = 0; i < dev_priv->num_irqs; ++i) {
Dave Airlie22f579c2005-06-28 22:48:56 +1000133 if (status & cur_irq->pending_mask) {
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000134 atomic_inc(&cur_irq->irq_received);
Daniel Vetter57ed0f72013-12-11 11:34:43 +0100135 wake_up(&cur_irq->irq_queue);
Dave Airlie22f579c2005-06-28 22:48:56 +1000136 handled = 1;
Nicolas Kaiser58c1e852010-07-11 15:32:42 +0200137 if (dev_priv->irq_map[drm_via_irq_dma0_td] == i)
Dave Airlie92514242005-11-12 21:52:46 +1100138 via_dmablit_handler(dev, 0, 1);
Nicolas Kaiser58c1e852010-07-11 15:32:42 +0200139 else if (dev_priv->irq_map[drm_via_irq_dma1_td] == i)
Dave Airlie92514242005-11-12 21:52:46 +1100140 via_dmablit_handler(dev, 1, 1);
Dave Airlie22f579c2005-06-28 22:48:56 +1000141 }
142 cur_irq++;
143 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000144
Daniel Mack3ad2f3fb2010-02-03 08:01:28 +0800145 /* Acknowledge interrupts */
Dave Airlie22f579c2005-06-28 22:48:56 +1000146 VIA_WRITE(VIA_REG_INTERRUPT, status);
147
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700148
Dave Airlie22f579c2005-06-28 22:48:56 +1000149 if (handled)
150 return IRQ_HANDLED;
151 else
152 return IRQ_NONE;
153}
154
Nicolas Kaiser58c1e852010-07-11 15:32:42 +0200155static __inline__ void viadrv_acknowledge_irqs(drm_via_private_t *dev_priv)
Dave Airlie22f579c2005-06-28 22:48:56 +1000156{
157 u32 status;
158
159 if (dev_priv) {
Daniel Mack3ad2f3fb2010-02-03 08:01:28 +0800160 /* Acknowledge interrupts */
Dave Airlie22f579c2005-06-28 22:48:56 +1000161 status = VIA_READ(VIA_REG_INTERRUPT);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000162 VIA_WRITE(VIA_REG_INTERRUPT, status |
Dave Airlie22f579c2005-06-28 22:48:56 +1000163 dev_priv->irq_pending_mask);
164 }
165}
166
Thierry Reding88e72712015-09-24 18:35:31 +0200167int via_enable_vblank(struct drm_device *dev, unsigned int pipe)
Dave Airlie22f579c2005-06-28 22:48:56 +1000168{
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700169 drm_via_private_t *dev_priv = dev->dev_private;
170 u32 status;
Dave Airlie22f579c2005-06-28 22:48:56 +1000171
Thierry Reding88e72712015-09-24 18:35:31 +0200172 if (pipe != 0) {
173 DRM_ERROR("%s: bad crtc %u\n", __func__, pipe);
Dave Airlie22f579c2005-06-28 22:48:56 +1000174 return -EINVAL;
175 }
176
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700177 status = VIA_READ(VIA_REG_INTERRUPT);
Simon Farnsworth42dd8612009-07-10 11:25:16 +0100178 VIA_WRITE(VIA_REG_INTERRUPT, status | VIA_IRQ_VBLANK_ENABLE);
Dave Airlie22f579c2005-06-28 22:48:56 +1000179
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700180 VIA_WRITE8(0x83d4, 0x11);
181 VIA_WRITE8(0x83d5, VIA_READ8(0x83d5) | 0x30);
Dave Airlie22f579c2005-06-28 22:48:56 +1000182
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700183 return 0;
184}
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000185
Thierry Reding88e72712015-09-24 18:35:31 +0200186void via_disable_vblank(struct drm_device *dev, unsigned int pipe)
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700187{
188 drm_via_private_t *dev_priv = dev->dev_private;
Simon Farnsworth42dd8612009-07-10 11:25:16 +0100189 u32 status;
190
191 status = VIA_READ(VIA_REG_INTERRUPT);
192 VIA_WRITE(VIA_REG_INTERRUPT, status & ~VIA_IRQ_VBLANK_ENABLE);
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700193
194 VIA_WRITE8(0x83d4, 0x11);
195 VIA_WRITE8(0x83d5, VIA_READ8(0x83d5) & ~0x30);
196
Thierry Reding88e72712015-09-24 18:35:31 +0200197 if (pipe != 0)
198 DRM_ERROR("%s: bad crtc %u\n", __func__, pipe);
Dave Airlie22f579c2005-06-28 22:48:56 +1000199}
200
Dave Airliece60fe02006-02-02 19:21:38 +1100201static int
Nicolas Kaiser58c1e852010-07-11 15:32:42 +0200202via_driver_irq_wait(struct drm_device *dev, unsigned int irq, int force_sequence,
Dave Airlie22f579c2005-06-28 22:48:56 +1000203 unsigned int *sequence)
204{
205 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
206 unsigned int cur_irq_sequence;
Jayachandran Cd2532582006-04-10 23:18:28 -0700207 drm_via_irq_t *cur_irq;
Dave Airlie22f579c2005-06-28 22:48:56 +1000208 int ret = 0;
Dave Airlie86678df2006-04-05 18:10:11 +1000209 maskarray_t *masks;
Dave Airlie92514242005-11-12 21:52:46 +1100210 int real_irq;
Dave Airlie22f579c2005-06-28 22:48:56 +1000211
Márton Németh3e684ea2008-01-24 15:58:57 +1000212 DRM_DEBUG("\n");
Dave Airlie22f579c2005-06-28 22:48:56 +1000213
214 if (!dev_priv) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000215 DRM_ERROR("called with no initialization\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000216 return -EINVAL;
Dave Airlie22f579c2005-06-28 22:48:56 +1000217 }
218
Dave Airlie92514242005-11-12 21:52:46 +1100219 if (irq >= drm_via_irq_num) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000220 DRM_ERROR("Trying to wait on unknown irq %d\n", irq);
Eric Anholt20caafa2007-08-25 19:22:43 +1000221 return -EINVAL;
Dave Airlie22f579c2005-06-28 22:48:56 +1000222 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000223
Dave Airlie92514242005-11-12 21:52:46 +1100224 real_irq = dev_priv->irq_map[irq];
Dave Airlie22f579c2005-06-28 22:48:56 +1000225
Dave Airlie92514242005-11-12 21:52:46 +1100226 if (real_irq < 0) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000227 DRM_ERROR("Video IRQ %d not available on this hardware.\n",
228 irq);
Eric Anholt20caafa2007-08-25 19:22:43 +1000229 return -EINVAL;
Dave Airlie92514242005-11-12 21:52:46 +1100230 }
Dave Airlie86678df2006-04-05 18:10:11 +1000231
232 masks = dev_priv->irq_masks;
Jayachandran Cd2532582006-04-10 23:18:28 -0700233 cur_irq = dev_priv->via_irqs + real_irq;
Dave Airlie92514242005-11-12 21:52:46 +1100234
235 if (masks[real_irq][2] && !force_sequence) {
Daniel Vetterbfd83032013-12-11 11:34:41 +0100236 DRM_WAIT_ON(ret, cur_irq->irq_queue, 3 * HZ,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000237 ((VIA_READ(masks[irq][2]) & masks[irq][3]) ==
238 masks[irq][4]));
Dave Airlie22f579c2005-06-28 22:48:56 +1000239 cur_irq_sequence = atomic_read(&cur_irq->irq_received);
240 } else {
Daniel Vetterbfd83032013-12-11 11:34:41 +0100241 DRM_WAIT_ON(ret, cur_irq->irq_queue, 3 * HZ,
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000242 (((cur_irq_sequence =
243 atomic_read(&cur_irq->irq_received)) -
244 *sequence) <= (1 << 23)));
Dave Airlie22f579c2005-06-28 22:48:56 +1000245 }
246 *sequence = cur_irq_sequence;
247 return ret;
248}
249
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700250
Dave Airlie22f579c2005-06-28 22:48:56 +1000251/*
252 * drm_dma.h hooks
253 */
254
Nicolas Kaiser58c1e852010-07-11 15:32:42 +0200255void via_driver_irq_preinstall(struct drm_device *dev)
Dave Airlie22f579c2005-06-28 22:48:56 +1000256{
257 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
258 u32 status;
Jayachandran Cd2532582006-04-10 23:18:28 -0700259 drm_via_irq_t *cur_irq;
Dave Airlie22f579c2005-06-28 22:48:56 +1000260 int i;
261
Márton Németh3e684ea2008-01-24 15:58:57 +1000262 DRM_DEBUG("dev_priv: %p\n", dev_priv);
Dave Airlie22f579c2005-06-28 22:48:56 +1000263 if (dev_priv) {
Jayachandran Cd2532582006-04-10 23:18:28 -0700264 cur_irq = dev_priv->via_irqs;
Dave Airlie22f579c2005-06-28 22:48:56 +1000265
266 dev_priv->irq_enable_mask = VIA_IRQ_VBLANK_ENABLE;
267 dev_priv->irq_pending_mask = VIA_IRQ_VBLANK_PENDING;
268
Thomas Hellstrom689692e2007-01-08 21:19:57 +1100269 if (dev_priv->chipset == VIA_PRO_GROUP_A ||
270 dev_priv->chipset == VIA_DX9_0) {
271 dev_priv->irq_masks = via_pro_group_a_irqs;
272 dev_priv->num_irqs = via_num_pro_group_a;
273 dev_priv->irq_map = via_irqmap_pro_group_a;
274 } else {
275 dev_priv->irq_masks = via_unichrome_irqs;
276 dev_priv->num_irqs = via_num_unichrome;
277 dev_priv->irq_map = via_irqmap_unichrome;
278 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000279
280 for (i = 0; i < dev_priv->num_irqs; ++i) {
Dave Airlie22f579c2005-06-28 22:48:56 +1000281 atomic_set(&cur_irq->irq_received, 0);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000282 cur_irq->enable_mask = dev_priv->irq_masks[i][0];
Dave Airlie22f579c2005-06-28 22:48:56 +1000283 cur_irq->pending_mask = dev_priv->irq_masks[i][1];
Daniel Vetter57ed0f72013-12-11 11:34:43 +0100284 init_waitqueue_head(&cur_irq->irq_queue);
Dave Airlie22f579c2005-06-28 22:48:56 +1000285 dev_priv->irq_enable_mask |= cur_irq->enable_mask;
286 dev_priv->irq_pending_mask |= cur_irq->pending_mask;
287 cur_irq++;
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000288
Dave Airlie22f579c2005-06-28 22:48:56 +1000289 DRM_DEBUG("Initializing IRQ %d\n", i);
290 }
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000291
292 dev_priv->last_vblank_valid = 0;
Dave Airlie22f579c2005-06-28 22:48:56 +1000293
Dave Airlie92514242005-11-12 21:52:46 +1100294 /* Clear VSync interrupt regs */
Dave Airlie22f579c2005-06-28 22:48:56 +1000295 status = VIA_READ(VIA_REG_INTERRUPT);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000296 VIA_WRITE(VIA_REG_INTERRUPT, status &
Dave Airlie22f579c2005-06-28 22:48:56 +1000297 ~(dev_priv->irq_enable_mask));
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000298
Dave Airlie22f579c2005-06-28 22:48:56 +1000299 /* Clear bits if they're already high */
300 viadrv_acknowledge_irqs(dev_priv);
301 }
302}
303
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700304int via_driver_irq_postinstall(struct drm_device *dev)
Dave Airlie22f579c2005-06-28 22:48:56 +1000305{
306 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
307 u32 status;
308
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700309 DRM_DEBUG("via_driver_irq_postinstall\n");
310 if (!dev_priv)
311 return -EINVAL;
Dave Airlie22f579c2005-06-28 22:48:56 +1000312
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700313 status = VIA_READ(VIA_REG_INTERRUPT);
314 VIA_WRITE(VIA_REG_INTERRUPT, status | VIA_IRQ_GLOBAL
315 | dev_priv->irq_enable_mask);
Dave Airlie22f579c2005-06-28 22:48:56 +1000316
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700317 /* Some magic, oh for some data sheets ! */
318 VIA_WRITE8(0x83d4, 0x11);
319 VIA_WRITE8(0x83d5, VIA_READ8(0x83d5) | 0x30);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000320
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700321 return 0;
Dave Airlie22f579c2005-06-28 22:48:56 +1000322}
323
Nicolas Kaiser58c1e852010-07-11 15:32:42 +0200324void via_driver_irq_uninstall(struct drm_device *dev)
Dave Airlie22f579c2005-06-28 22:48:56 +1000325{
326 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
327 u32 status;
328
Márton Németh3e684ea2008-01-24 15:58:57 +1000329 DRM_DEBUG("\n");
Dave Airlie22f579c2005-06-28 22:48:56 +1000330 if (dev_priv) {
331
332 /* Some more magic, oh for some data sheets ! */
333
334 VIA_WRITE8(0x83d4, 0x11);
335 VIA_WRITE8(0x83d5, VIA_READ8(0x83d5) & ~0x30);
336
337 status = VIA_READ(VIA_REG_INTERRUPT);
Dave Airlieb5e89ed2005-09-25 14:28:13 +1000338 VIA_WRITE(VIA_REG_INTERRUPT, status &
Dave Airlie22f579c2005-06-28 22:48:56 +1000339 ~(VIA_IRQ_VBLANK_ENABLE | dev_priv->irq_enable_mask));
340 }
341}
342
Eric Anholtc153f452007-09-03 12:06:45 +1000343int via_wait_irq(struct drm_device *dev, void *data, struct drm_file *file_priv)
Dave Airlie22f579c2005-06-28 22:48:56 +1000344{
Eric Anholtc153f452007-09-03 12:06:45 +1000345 drm_via_irqwait_t *irqwait = data;
Arnd Bergmann44a2d562017-11-27 12:17:03 +0100346 struct timespec64 now;
Dave Airlie22f579c2005-06-28 22:48:56 +1000347 int ret = 0;
348 drm_via_private_t *dev_priv = (drm_via_private_t *) dev->dev_private;
349 drm_via_irq_t *cur_irq = dev_priv->via_irqs;
350 int force_sequence;
351
Eric Anholtc153f452007-09-03 12:06:45 +1000352 if (irqwait->request.irq >= dev_priv->num_irqs) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000353 DRM_ERROR("Trying to wait on unknown irq %d\n",
Eric Anholtc153f452007-09-03 12:06:45 +1000354 irqwait->request.irq);
Eric Anholt20caafa2007-08-25 19:22:43 +1000355 return -EINVAL;
Dave Airlie22f579c2005-06-28 22:48:56 +1000356 }
357
Eric Anholtc153f452007-09-03 12:06:45 +1000358 cur_irq += irqwait->request.irq;
Dave Airlie22f579c2005-06-28 22:48:56 +1000359
Eric Anholtc153f452007-09-03 12:06:45 +1000360 switch (irqwait->request.type & ~VIA_IRQ_FLAGS_MASK) {
Dave Airlie22f579c2005-06-28 22:48:56 +1000361 case VIA_IRQ_RELATIVE:
Jesse Barnes0a3e67a2008-09-30 12:14:26 -0700362 irqwait->request.sequence +=
363 atomic_read(&cur_irq->irq_received);
Eric Anholtc153f452007-09-03 12:06:45 +1000364 irqwait->request.type &= ~_DRM_VBLANK_RELATIVE;
Dave Airlie22f579c2005-06-28 22:48:56 +1000365 case VIA_IRQ_ABSOLUTE:
366 break;
367 default:
Eric Anholt20caafa2007-08-25 19:22:43 +1000368 return -EINVAL;
Dave Airlie22f579c2005-06-28 22:48:56 +1000369 }
370
Eric Anholtc153f452007-09-03 12:06:45 +1000371 if (irqwait->request.type & VIA_IRQ_SIGNAL) {
Márton Németh3e684ea2008-01-24 15:58:57 +1000372 DRM_ERROR("Signals on Via IRQs not implemented yet.\n");
Eric Anholt20caafa2007-08-25 19:22:43 +1000373 return -EINVAL;
Dave Airlie22f579c2005-06-28 22:48:56 +1000374 }
375
Eric Anholtc153f452007-09-03 12:06:45 +1000376 force_sequence = (irqwait->request.type & VIA_IRQ_FORCE_SEQUENCE);
Dave Airlie22f579c2005-06-28 22:48:56 +1000377
Eric Anholtc153f452007-09-03 12:06:45 +1000378 ret = via_driver_irq_wait(dev, irqwait->request.irq, force_sequence,
379 &irqwait->request.sequence);
Arnd Bergmann44a2d562017-11-27 12:17:03 +0100380 ktime_get_ts64(&now);
Eric Anholtc153f452007-09-03 12:06:45 +1000381 irqwait->reply.tval_sec = now.tv_sec;
Arnd Bergmann44a2d562017-11-27 12:17:03 +0100382 irqwait->reply.tval_usec = now.tv_nsec / NSEC_PER_USEC;
Dave Airlie22f579c2005-06-28 22:48:56 +1000383
384 return ret;
385}