]> git.proxmox.com Git - mirror_ubuntu-bionic-kernel.git/blame - drivers/gpu/drm/i915/i915_gem_gtt.c
drm/i915: Restore GTT mapping first upon resume
[mirror_ubuntu-bionic-kernel.git] / drivers / gpu / drm / i915 / i915_gem_gtt.c
CommitLineData
76aaf220
DV
1/*
2 * Copyright © 2010 Daniel Vetter
3 *
4 * Permission is hereby granted, free of charge, to any person obtaining a
5 * copy of this software and associated documentation files (the "Software"),
6 * to deal in the Software without restriction, including without limitation
7 * the rights to use, copy, modify, merge, publish, distribute, sublicense,
8 * and/or sell copies of the Software, and to permit persons to whom the
9 * Software is furnished to do so, subject to the following conditions:
10 *
11 * The above copyright notice and this permission notice (including the next
12 * paragraph) shall be included in all copies or substantial portions of the
13 * Software.
14 *
15 * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16 * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17 * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
18 * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19 * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
20 * FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
21 * IN THE SOFTWARE.
22 *
23 */
24
25#include "drmP.h"
26#include "drm.h"
27#include "i915_drm.h"
28#include "i915_drv.h"
29#include "i915_trace.h"
30#include "intel_drv.h"
31
32void i915_gem_restore_gtt_mappings(struct drm_device *dev)
33{
34 struct drm_i915_private *dev_priv = dev->dev_private;
05394f39 35 struct drm_i915_gem_object *obj;
76aaf220 36
05394f39 37 list_for_each_entry(obj, &dev_priv->mm.gtt_list, gtt_list) {
185cbcb3 38 if (dev_priv->mm.gtt->needs_dmar) {
05394f39 39 BUG_ON(!obj->sg_list);
185cbcb3 40
05394f39
CW
41 intel_gtt_insert_sg_entries(obj->sg_list,
42 obj->num_sg,
43 obj->gtt_space->start
185cbcb3 44 >> PAGE_SHIFT,
05394f39 45 obj->agp_type);
185cbcb3 46 } else
05394f39 47 intel_gtt_insert_pages(obj->gtt_space->start
185cbcb3 48 >> PAGE_SHIFT,
05394f39
CW
49 obj->base.size >> PAGE_SHIFT,
50 obj->pages,
51 obj->agp_type);
76aaf220
DV
52 }
53
54 /* Be paranoid and flush the chipset cache. */
55 intel_gtt_chipset_flush();
56}
7c2e6fdf 57
05394f39 58int i915_gem_gtt_bind_object(struct drm_i915_gem_object *obj)
7c2e6fdf 59{
05394f39 60 struct drm_device *dev = obj->base.dev;
185cbcb3 61 struct drm_i915_private *dev_priv = dev->dev_private;
185cbcb3 62 int ret;
7c2e6fdf 63
185cbcb3 64 if (dev_priv->mm.gtt->needs_dmar) {
05394f39
CW
65 ret = intel_gtt_map_memory(obj->pages,
66 obj->base.size >> PAGE_SHIFT,
67 &obj->sg_list,
68 &obj->num_sg);
185cbcb3
DV
69 if (ret != 0)
70 return ret;
71
05394f39
CW
72 intel_gtt_insert_sg_entries(obj->sg_list,
73 obj->num_sg,
74 obj->gtt_space->start >> PAGE_SHIFT,
75 obj->agp_type);
185cbcb3 76 } else
05394f39
CW
77 intel_gtt_insert_pages(obj->gtt_space->start >> PAGE_SHIFT,
78 obj->base.size >> PAGE_SHIFT,
79 obj->pages,
80 obj->agp_type);
7c2e6fdf 81
185cbcb3 82 return 0;
7c2e6fdf
DV
83}
84
05394f39 85void i915_gem_gtt_unbind_object(struct drm_i915_gem_object *obj)
7c2e6fdf 86{
05394f39 87 struct drm_device *dev = obj->base.dev;
185cbcb3 88 struct drm_i915_private *dev_priv = dev->dev_private;
7c2e6fdf 89
185cbcb3 90 if (dev_priv->mm.gtt->needs_dmar) {
05394f39
CW
91 intel_gtt_unmap_memory(obj->sg_list, obj->num_sg);
92 obj->sg_list = NULL;
93 obj->num_sg = 0;
185cbcb3
DV
94 }
95
05394f39
CW
96 intel_gtt_clear_range(obj->gtt_space->start >> PAGE_SHIFT,
97 obj->base.size >> PAGE_SHIFT);
7c2e6fdf 98}