cregit-Linux how code gets into the kernel

Release 4.11 drivers/gpu/drm/r128/r128_irq.c

/* r128_irq.c -- IRQ handling for radeon -*- linux-c -*- */
/*
 * Copyright (C) The Weather Channel, Inc.  2002.  All Rights Reserved.
 *
 * The Weather Channel (TM) funded Tungsten Graphics to develop the
 * initial release of the Radeon 8500 driver under the XFree86 license.
 * This notice must be preserved.
 *
 * Permission is hereby granted, free of charge, to any person obtaining a
 * copy of this software and associated documentation files (the "Software"),
 * to deal in the Software without restriction, including without limitation
 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
 * and/or sell copies of the Software, and to permit persons to whom the
 * Software is furnished to do so, subject to the following conditions:
 *
 * The above copyright notice and this permission notice (including the next
 * paragraph) shall be included in all copies or substantial portions of the
 * Software.
 *
 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT.  IN NO EVENT SHALL
 * PRECISION INSIGHT AND/OR ITS SUPPLIERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
 * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
 * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
 * DEALINGS IN THE SOFTWARE.
 *
 * Authors:
 *    Keith Whitwell <keith@tungstengraphics.com>
 *    Eric Anholt <anholt@FreeBSD.org>
 */

#include <drm/drmP.h>
#include <drm/r128_drm.h>
#include "r128_drv.h"


u32 r128_get_vblank_counter(struct drm_device *dev, unsigned int pipe) { const drm_r128_private_t *dev_priv = dev->dev_private; if (pipe != 0) return 0; return atomic_read(&dev_priv->vbl_received); }

Contributors

PersonTokensPropCommitsCommitProp
Jesse Barnes3892.68%150.00%
Thierry Reding37.32%150.00%
Total41100.00%2100.00%


irqreturn_t r128_driver_irq_handler(int irq, void *arg) { struct drm_device *dev = (struct drm_device *) arg; drm_r128_private_t *dev_priv = (drm_r128_private_t *) dev->dev_private; int status; status = R128_READ(R128_GEN_INT_STATUS); /* VBLANK interrupt */ if (status & R128_CRTC_VBLANK_INT) { R128_WRITE(R128_GEN_INT_STATUS, R128_CRTC_VBLANK_INT_AK); atomic_inc(&dev_priv->vbl_received); drm_handle_vblank(dev, 0); return IRQ_HANDLED; } return IRQ_NONE; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds5869.88%225.00%
Dave Airlie89.64%337.50%
Andrew Morton78.43%112.50%
Daniel Vetter67.23%112.50%
Jesse Barnes44.82%112.50%
Total83100.00%8100.00%


int r128_enable_vblank(struct drm_device *dev, unsigned int pipe) { drm_r128_private_t *dev_priv = dev->dev_private; if (pipe != 0) { DRM_ERROR("%s: bad crtc %u\n", __func__, pipe); return -EINVAL; } R128_WRITE(R128_GEN_INT_CNTL, R128_CRTC_VBLANK_INT_EN); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Jesse Barnes2649.06%116.67%
Linus Torvalds1630.19%233.33%
Dave Airlie611.32%233.33%
Thierry Reding59.43%116.67%
Total53100.00%6100.00%


void r128_disable_vblank(struct drm_device *dev, unsigned int pipe) { if (pipe != 0) DRM_ERROR("%s: bad crtc %u\n", __func__, pipe); /* * FIXME: implement proper interrupt disable by using the vblank * counter register (if available) * * R128_WRITE(R128_GEN_INT_CNTL, * R128_READ(R128_GEN_INT_CNTL) & ~R128_CRTC_VBLANK_INT_EN); */ }

Contributors

PersonTokensPropCommitsCommitProp
Jesse Barnes2583.33%150.00%
Thierry Reding516.67%150.00%
Total30100.00%2100.00%


void r128_driver_irq_preinstall(struct drm_device *dev) { drm_r128_private_t *dev_priv = (drm_r128_private_t *) dev->dev_private; /* Disable *all* interrupts */ R128_WRITE(R128_GEN_INT_CNTL, 0); /* Clear vblank bit if it's already high */ R128_WRITE(R128_GEN_INT_STATUS, R128_CRTC_VBLANK_INT_AK); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds3694.74%150.00%
Dave Airlie25.26%150.00%
Total38100.00%2100.00%


int r128_driver_irq_postinstall(struct drm_device *dev) { return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds753.85%125.00%
Jesse Barnes323.08%125.00%
Dave Airlie215.38%125.00%
Keith Packard17.69%125.00%
Total13100.00%4100.00%


void r128_driver_irq_uninstall(struct drm_device *dev) { drm_r128_private_t *dev_priv = (drm_r128_private_t *) dev->dev_private; if (!dev_priv) return; /* Disable *all* interrupts */ R128_WRITE(R128_GEN_INT_CNTL, 0); }

Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds3494.44%266.67%
Dave Airlie25.56%133.33%
Total36100.00%3100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Linus Torvalds15851.80%321.43%
Jesse Barnes9631.48%17.14%
Dave Airlie227.21%535.71%
Thierry Reding134.26%17.14%
Andrew Morton72.30%17.14%
Daniel Vetter61.97%17.14%
David Howells20.66%17.14%
Keith Packard10.33%17.14%
Total305100.00%14100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.