cregit-Linux how code gets into the kernel

Release 4.11 drivers/gpu/drm/i915/i915_suspend.c

/*
 *
 * Copyright 2008 (c) Intel Corporation
 *   Jesse Barnes <jbarnes@virtuousgeek.org>
 *
 * 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, sub license, 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 NON-INFRINGEMENT.
 * IN NO EVENT SHALL TUNGSTEN GRAPHICS 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.
 */

#include <drm/drmP.h>
#include <drm/i915_drm.h>
#include "intel_drv.h"
#include "i915_reg.h"


static void i915_save_display(struct drm_i915_private *dev_priv) { /* Display arbitration control */ if (INTEL_GEN(dev_priv) <= 4) dev_priv->regfile.saveDSPARB = I915_READ(DSPARB); /* save FBC interval */ if (HAS_FBC(dev_priv) && INTEL_GEN(dev_priv) <= 4 && !IS_G4X(dev_priv)) dev_priv->regfile.saveFBC_CONTROL = I915_READ(FBC_CONTROL); }

Contributors

PersonTokensPropCommitsCommitProp
Chris Wilson1421.88%16.67%
Yakui Zhao1320.31%320.00%
Tvrtko A. Ursulin812.50%213.33%
Paulo Zanoni710.94%16.67%
Ville Syrjälä710.94%16.67%
Daniel Vetter710.94%320.00%
Jesse Barnes57.81%213.33%
Ben Gamari23.12%16.67%
Keith Packard11.56%16.67%
Total64100.00%15100.00%


static void i915_restore_display(struct drm_i915_private *dev_priv) { /* Display arbitration */ if (INTEL_GEN(dev_priv) <= 4) I915_WRITE(DSPARB, dev_priv->regfile.saveDSPARB); /* only restore FBC info on the platform that supports FBC*/ intel_fbc_global_disable(dev_priv); /* restore FBC interval */ if (HAS_FBC(dev_priv) && INTEL_GEN(dev_priv) <= 4 && !IS_G4X(dev_priv)) I915_WRITE(FBC_CONTROL, dev_priv->regfile.saveFBC_CONTROL); i915_redisable_vga(dev_priv); }

Contributors

PersonTokensPropCommitsCommitProp
Ben Gamari1925.33%15.88%
Yakui Zhao1722.67%317.65%
Paulo Zanoni912.00%317.65%
Tvrtko A. Ursulin912.00%211.76%
Ville Syrjälä79.33%15.88%
Daniel Vetter68.00%317.65%
Jesse Barnes45.33%211.76%
Chris Wilson34.00%15.88%
Keith Packard11.33%15.88%
Total75100.00%17100.00%


int i915_save_state(struct drm_i915_private *dev_priv) { struct pci_dev *pdev = dev_priv->drm.pdev; int i; mutex_lock(&dev_priv->drm.struct_mutex); i915_save_display(dev_priv); if (IS_GEN4(dev_priv)) pci_read_config_word(pdev, GCDGMBUS, &dev_priv->regfile.saveGCDGMBUS); /* Cache mode state */ if (INTEL_GEN(dev_priv) < 7) dev_priv->regfile.saveCACHE_MODE_0 = I915_READ(CACHE_MODE_0); /* Memory Arbitration state */ dev_priv->regfile.saveMI_ARB_STATE = I915_READ(MI_ARB_STATE); /* Scratch space */ if (IS_GEN2(dev_priv) && IS_MOBILE(dev_priv)) { for (i = 0; i < 7; i++) { dev_priv->regfile.saveSWF0[i] = I915_READ(SWF0(i)); dev_priv->regfile.saveSWF1[i] = I915_READ(SWF1(i)); } for (i = 0; i < 3; i++) dev_priv->regfile.saveSWF3[i] = I915_READ(SWF3(i)); } else if (IS_GEN2(dev_priv)) { for (i = 0; i < 7; i++) dev_priv->regfile.saveSWF1[i] = I915_READ(SWF1(i)); } else if (HAS_GMCH_DISPLAY(dev_priv)) { for (i = 0; i < 16; i++) { dev_priv->regfile.saveSWF0[i] = I915_READ(SWF0(i)); dev_priv->regfile.saveSWF1[i] = I915_READ(SWF1(i)); } for (i = 0; i < 3; i++) dev_priv->regfile.saveSWF3[i] = I915_READ(SWF3(i)); } mutex_unlock(&dev_priv->drm.struct_mutex); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ville Syrjälä15346.50%17.69%
Ben Gamari9127.66%17.69%
Jesse Barnes278.21%323.08%
Keith Packard144.26%17.69%
Daniel Vetter123.65%215.38%
Tvrtko A. Ursulin123.65%323.08%
David Weinehall113.34%17.69%
Yakui Zhao92.74%17.69%
Total329100.00%13100.00%


int i915_restore_state(struct drm_i915_private *dev_priv) { struct pci_dev *pdev = dev_priv->drm.pdev; int i; mutex_lock(&dev_priv->drm.struct_mutex); i915_gem_restore_fences(dev_priv); if (IS_GEN4(dev_priv)) pci_write_config_word(pdev, GCDGMBUS, dev_priv->regfile.saveGCDGMBUS); i915_restore_display(dev_priv); /* Cache mode state */ if (INTEL_GEN(dev_priv) < 7) I915_WRITE(CACHE_MODE_0, dev_priv->regfile.saveCACHE_MODE_0 | 0xffff0000); /* Memory arbitration state */ I915_WRITE(MI_ARB_STATE, dev_priv->regfile.saveMI_ARB_STATE | 0xffff0000); /* Scratch space */ if (IS_GEN2(dev_priv) && IS_MOBILE(dev_priv)) { for (i = 0; i < 7; i++) { I915_WRITE(SWF0(i), dev_priv->regfile.saveSWF0[i]); I915_WRITE(SWF1(i), dev_priv->regfile.saveSWF1[i]); } for (i = 0; i < 3; i++) I915_WRITE(SWF3(i), dev_priv->regfile.saveSWF3[i]); } else if (IS_GEN2(dev_priv)) { for (i = 0; i < 7; i++) I915_WRITE(SWF1(i), dev_priv->regfile.saveSWF1[i]); } else if (HAS_GMCH_DISPLAY(dev_priv)) { for (i = 0; i < 16; i++) { I915_WRITE(SWF0(i), dev_priv->regfile.saveSWF0[i]); I915_WRITE(SWF1(i), dev_priv->regfile.saveSWF1[i]); } for (i = 0; i < 3; i++) I915_WRITE(SWF3(i), dev_priv->regfile.saveSWF3[i]); } mutex_unlock(&dev_priv->drm.struct_mutex); intel_i2c_reset(dev_priv); return 0; }

Contributors

PersonTokensPropCommitsCommitProp
Ville Syrjälä15445.03%16.67%
Jesse Barnes12035.09%320.00%
Keith Packard144.09%16.67%
Tvrtko A. Ursulin144.09%426.67%
Ben Gamari113.22%16.67%
David Weinehall113.22%16.67%
Daniel Vetter102.92%16.67%
Chris Wilson51.46%213.33%
Eric Anholt30.88%16.67%
Total342100.00%15100.00%


Overall Contributors

PersonTokensPropCommitsCommitProp
Ville Syrjälä32139.00%26.25%
Jesse Barnes16319.81%412.50%
Ben Gamari12314.95%13.12%
Tvrtko A. Ursulin435.22%515.62%
Yakui Zhao394.74%39.38%
Daniel Vetter354.25%515.62%
Keith Packard303.65%13.12%
Chris Wilson222.67%412.50%
David Weinehall222.67%13.12%
Paulo Zanoni161.94%39.38%
Eric Anholt40.49%13.12%
Eugeni Dodonov30.36%13.12%
David Howells20.24%13.12%
Total823100.00%32100.00%
Information contained on this website is for historical information purposes only and does not indicate or represent copyright ownership.
Created with cregit.