Merge tag 'v3.7-rc1' into staging/for_v3.8
[deliverable/linux.git] / drivers / gpu / drm / r128 / r128_irq.c
CommitLineData
f26c473c
DA
1/* r128_irq.c -- IRQ handling for radeon -*- linux-c -*- */
2/*
1da177e4 3 * Copyright (C) The Weather Channel, Inc. 2002. All Rights Reserved.
b5e89ed5 4 *
1da177e4
LT
5 * The Weather Channel (TM) funded Tungsten Graphics to develop the
6 * initial release of the Radeon 8500 driver under the XFree86 license.
7 * This notice must be preserved.
8 *
9 * Permission is hereby granted, free of charge, to any person obtaining a
10 * copy of this software and associated documentation files (the "Software"),
11 * to deal in the Software without restriction, including without limitation
12 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
13 * and/or sell copies of the Software, and to permit persons to whom the
14 * Software is furnished to do so, subject to the following conditions:
15 *
16 * The above copyright notice and this permission notice (including the next
17 * paragraph) shall be included in all copies or substantial portions of the
18 * Software.
19 *
20 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
21 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
23 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, 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 * Keith Whitwell <keith@tungstengraphics.com>
30 * Eric Anholt <anholt@FreeBSD.org>
31 */
32
760285e7
DH
33#include <drm/drmP.h>
34#include <drm/r128_drm.h>
1da177e4
LT
35#include "r128_drv.h"
36
0a3e67a4
JB
37u32 r128_get_vblank_counter(struct drm_device *dev, int crtc)
38{
39 const drm_r128_private_t *dev_priv = dev->dev_private;
40
41 if (crtc != 0)
42 return 0;
43
44 return atomic_read(&dev_priv->vbl_received);
45}
46
b5e89ed5 47irqreturn_t r128_driver_irq_handler(DRM_IRQ_ARGS)
1da177e4 48{
eddca551 49 struct drm_device *dev = (struct drm_device *) arg;
b5e89ed5 50 drm_r128_private_t *dev_priv = (drm_r128_private_t *) dev->dev_private;
1da177e4
LT
51 int status;
52
b5e89ed5
DA
53 status = R128_READ(R128_GEN_INT_STATUS);
54
1da177e4 55 /* VBLANK interrupt */
b5e89ed5
DA
56 if (status & R128_CRTC_VBLANK_INT) {
57 R128_WRITE(R128_GEN_INT_STATUS, R128_CRTC_VBLANK_INT_AK);
0a3e67a4
JB
58 atomic_inc(&dev_priv->vbl_received);
59 drm_handle_vblank(dev, 0);
1da177e4
LT
60 return IRQ_HANDLED;
61 }
62 return IRQ_NONE;
63}
64
0a3e67a4 65int r128_enable_vblank(struct drm_device *dev, int crtc)
1da177e4 66{
0a3e67a4 67 drm_r128_private_t *dev_priv = dev->dev_private;
1da177e4 68
0a3e67a4
JB
69 if (crtc != 0) {
70 DRM_ERROR("%s: bad crtc %d\n", __func__, crtc);
71 return -EINVAL;
72 }
ac741ab7 73
0a3e67a4
JB
74 R128_WRITE(R128_GEN_INT_CNTL, R128_CRTC_VBLANK_INT_EN);
75 return 0;
76}
77
78void r128_disable_vblank(struct drm_device *dev, int crtc)
79{
80 if (crtc != 0)
81 DRM_ERROR("%s: bad crtc %d\n", __func__, crtc);
1da177e4 82
0a3e67a4
JB
83 /*
84 * FIXME: implement proper interrupt disable by using the vblank
85 * counter register (if available)
86 *
87 * R128_WRITE(R128_GEN_INT_CNTL,
88 * R128_READ(R128_GEN_INT_CNTL) & ~R128_CRTC_VBLANK_INT_EN);
89 */
1da177e4
LT
90}
91
bc5e9d6a 92void r128_driver_irq_preinstall(struct drm_device *dev)
b5e89ed5
DA
93{
94 drm_r128_private_t *dev_priv = (drm_r128_private_t *) dev->dev_private;
1da177e4
LT
95
96 /* Disable *all* interrupts */
b5e89ed5 97 R128_WRITE(R128_GEN_INT_CNTL, 0);
1da177e4 98 /* Clear vblank bit if it's already high */
b5e89ed5 99 R128_WRITE(R128_GEN_INT_STATUS, R128_CRTC_VBLANK_INT_AK);
1da177e4
LT
100}
101
0a3e67a4 102int r128_driver_irq_postinstall(struct drm_device *dev)
b5e89ed5 103{
52440211 104 return 0;
1da177e4
LT
105}
106
bc5e9d6a 107void r128_driver_irq_uninstall(struct drm_device *dev)
b5e89ed5
DA
108{
109 drm_r128_private_t *dev_priv = (drm_r128_private_t *) dev->dev_private;
1da177e4
LT
110 if (!dev_priv)
111 return;
112
113 /* Disable *all* interrupts */
b5e89ed5 114 R128_WRITE(R128_GEN_INT_CNTL, 0);
1da177e4 115}
This page took 0.751398 seconds and 5 git commands to generate.