aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorBen Widawsky <ben@bwidawsk.net>2012-06-04 17:42:42 -0400
committerDaniel Vetter <daniel.vetter@ffwll.ch>2012-06-14 11:36:16 -0400
commit254f965c39e3918544395f4ebac8c589d890bae6 (patch)
tree84006b2ad284d07cb1fc57e9eda7ead98bc93f11
parentfe1cc68fcb11ca14f420068d1806eb5e719ac772 (diff)
drm/i915: preliminary context support
Very basic code for context setup/destruction in the driver. Adds the file i915_gem_context.c This file implements HW context support. On gen5+ a HW context consists of an opaque GPU object which is referenced at times of context saves and restores. With RC6 enabled, the context is also referenced as the GPU enters and exists from RC6 (GPU has it's own internal power context, except on gen5). Though something like a context does exist for the media ring, the code only supports contexts for the render ring. In software, there is a distinction between contexts created by the user, and the default HW context. The default HW context is used by GPU clients that do not request setup of their own hardware context. The default context's state is never restored to help prevent programming errors. This would happen if a client ran and piggy-backed off another clients GPU state. The default context only exists to give the GPU some offset to load as the current to invoke a save of the context we actually care about. In fact, the code could likely be constructed, albeit in a more complicated fashion, to never use the default context, though that limits the driver's ability to swap out, and/or destroy other contexts. All other contexts are created as a request by the GPU client. These contexts store GPU state, and thus allow GPU clients to not re-emit state (and potentially query certain state) at any time. The kernel driver makes certain that the appropriate commands are inserted. There are 4 entry points into the contexts, init, fini, open, close. The names are self-explanatory except that init can be called during reset, and also during pm thaw/resume. As we expect our context to be preserved across these events, we do not reinitialize in this case. As Adam Jackson pointed out, The cutoff of 1MB where a HW context is considered too big is arbitrary. The reason for this is even though context sizes are increasing with every generation, they have yet to eclipse even 32k. If we somehow read back way more than that, it probably means BIOS has done something strange, or we're running on a platform that wasn't designed for this. v2: rename load/unload to init/fini (daniel) remove ILK support for get_size() (indirectly daniel) add HAS_HW_CONTEXTS macro to clarify supported platforms (daniel) added comments (Ben) Signed-off-by: Ben Widawsky <ben@bwidawsk.net>
-rw-r--r--drivers/gpu/drm/i915/Makefile1
-rw-r--r--drivers/gpu/drm/i915/i915_dma.c4
-rw-r--r--drivers/gpu/drm/i915/i915_drv.c1
-rw-r--r--drivers/gpu/drm/i915/i915_drv.h8
-rw-r--r--drivers/gpu/drm/i915/i915_gem.c5
-rw-r--r--drivers/gpu/drm/i915/i915_gem_context.c175
6 files changed, 194 insertions, 0 deletions
diff --git a/drivers/gpu/drm/i915/Makefile b/drivers/gpu/drm/i915/Makefile
index 2e9268da58d8..b0bacdba6d7e 100644
--- a/drivers/gpu/drm/i915/Makefile
+++ b/drivers/gpu/drm/i915/Makefile
@@ -7,6 +7,7 @@ i915-y := i915_drv.o i915_dma.o i915_irq.o \
7 i915_debugfs.o \ 7 i915_debugfs.o \
8 i915_suspend.o \ 8 i915_suspend.o \
9 i915_gem.o \ 9 i915_gem.o \
10 i915_gem_context.o \
10 i915_gem_debug.o \ 11 i915_gem_debug.o \
11 i915_gem_evict.o \ 12 i915_gem_evict.o \
12 i915_gem_execbuffer.o \ 13 i915_gem_execbuffer.o \
diff --git a/drivers/gpu/drm/i915/i915_dma.c b/drivers/gpu/drm/i915/i915_dma.c
index fa8f2699344b..3f3aca8c3767 100644
--- a/drivers/gpu/drm/i915/i915_dma.c
+++ b/drivers/gpu/drm/i915/i915_dma.c
@@ -1669,6 +1669,7 @@ int i915_driver_unload(struct drm_device *dev)
1669 if (ret) 1669 if (ret)
1670 DRM_ERROR("failed to idle hardware: %d\n", ret); 1670 DRM_ERROR("failed to idle hardware: %d\n", ret);
1671 i915_gem_retire_requests(dev); 1671 i915_gem_retire_requests(dev);
1672 i915_gem_context_fini(dev);
1672 mutex_unlock(&dev->struct_mutex); 1673 mutex_unlock(&dev->struct_mutex);
1673 1674
1674 /* Cancel the retire work handler, which should be idle now. */ 1675 /* Cancel the retire work handler, which should be idle now. */
@@ -1758,6 +1759,8 @@ int i915_driver_open(struct drm_device *dev, struct drm_file *file)
1758 spin_lock_init(&file_priv->mm.lock); 1759 spin_lock_init(&file_priv->mm.lock);
1759 INIT_LIST_HEAD(&file_priv->mm.request_list); 1760 INIT_LIST_HEAD(&file_priv->mm.request_list);
1760 1761
1762 i915_gem_context_open(dev, file);
1763
1761 return 0; 1764 return 0;
1762} 1765}
1763 1766
@@ -1790,6 +1793,7 @@ void i915_driver_lastclose(struct drm_device * dev)
1790 1793
1791void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv) 1794void i915_driver_preclose(struct drm_device * dev, struct drm_file *file_priv)
1792{ 1795{
1796 i915_gem_context_close(dev, file_priv);
1793 i915_gem_release(dev, file_priv); 1797 i915_gem_release(dev, file_priv);
1794} 1798}
1795 1799
diff --git a/drivers/gpu/drm/i915/i915_drv.c b/drivers/gpu/drm/i915/i915_drv.c
index 238a52165833..5d9e07ece3c2 100644
--- a/drivers/gpu/drm/i915/i915_drv.c
+++ b/drivers/gpu/drm/i915/i915_drv.c
@@ -903,6 +903,7 @@ int i915_reset(struct drm_device *dev)
903 for_each_ring(ring, dev_priv, i) 903 for_each_ring(ring, dev_priv, i)
904 ring->init(ring); 904 ring->init(ring);
905 905
906 i915_gem_context_init(dev);
906 i915_gem_init_ppgtt(dev); 907 i915_gem_init_ppgtt(dev);
907 908
908 mutex_unlock(&dev->struct_mutex); 909 mutex_unlock(&dev->struct_mutex);
diff --git a/drivers/gpu/drm/i915/i915_drv.h b/drivers/gpu/drm/i915/i915_drv.h
index ae4129b3cb3e..8d02951b988b 100644
--- a/drivers/gpu/drm/i915/i915_drv.h
+++ b/drivers/gpu/drm/i915/i915_drv.h
@@ -821,6 +821,8 @@ typedef struct drm_i915_private {
821 struct drm_property *force_audio_property; 821 struct drm_property *force_audio_property;
822 822
823 struct work_struct parity_error_work; 823 struct work_struct parity_error_work;
824 bool hw_contexts_disabled;
825 uint32_t hw_context_size;
824} drm_i915_private_t; 826} drm_i915_private_t;
825 827
826/* Iterate over initialised rings */ 828/* Iterate over initialised rings */
@@ -1075,6 +1077,7 @@ struct drm_i915_file_private {
1075#define HAS_LLC(dev) (INTEL_INFO(dev)->has_llc) 1077#define HAS_LLC(dev) (INTEL_INFO(dev)->has_llc)
1076#define I915_NEED_GFX_HWS(dev) (INTEL_INFO(dev)->need_gfx_hws) 1078#define I915_NEED_GFX_HWS(dev) (INTEL_INFO(dev)->need_gfx_hws)
1077 1079
1080#define HAS_HW_CONTEXTS(dev) (INTEL_INFO(dev)->gen >= 6)
1078#define HAS_ALIASING_PPGTT(dev) (INTEL_INFO(dev)->gen >=6) 1081#define HAS_ALIASING_PPGTT(dev) (INTEL_INFO(dev)->gen >=6)
1079 1082
1080#define HAS_OVERLAY(dev) (INTEL_INFO(dev)->has_overlay) 1083#define HAS_OVERLAY(dev) (INTEL_INFO(dev)->has_overlay)
@@ -1363,6 +1366,11 @@ struct drm_gem_object *i915_gem_prime_import(struct drm_device *dev,
1363struct dma_buf *i915_gem_prime_export(struct drm_device *dev, 1366struct dma_buf *i915_gem_prime_export(struct drm_device *dev,
1364 struct drm_gem_object *gem_obj, int flags); 1367 struct drm_gem_object *gem_obj, int flags);
1365 1368
1369/* i915_gem_context.c */
1370void i915_gem_context_init(struct drm_device *dev);
1371void i915_gem_context_fini(struct drm_device *dev);
1372void i915_gem_context_open(struct drm_device *dev, struct drm_file *file);
1373void i915_gem_context_close(struct drm_device *dev, struct drm_file *file);
1366 1374
1367/* i915_gem_gtt.c */ 1375/* i915_gem_gtt.c */
1368int __must_check i915_gem_init_aliasing_ppgtt(struct drm_device *dev); 1376int __must_check i915_gem_init_aliasing_ppgtt(struct drm_device *dev);
diff --git a/drivers/gpu/drm/i915/i915_gem.c b/drivers/gpu/drm/i915/i915_gem.c
index 2884b0865473..c06f50d44a23 100644
--- a/drivers/gpu/drm/i915/i915_gem.c
+++ b/drivers/gpu/drm/i915/i915_gem.c
@@ -3714,6 +3714,11 @@ i915_gem_init_hw(struct drm_device *dev)
3714 3714
3715 dev_priv->next_seqno = 1; 3715 dev_priv->next_seqno = 1;
3716 3716
3717 /*
3718 * XXX: There was some w/a described somewhere suggesting loading
3719 * contexts before PPGTT.
3720 */
3721 i915_gem_context_init(dev);
3717 i915_gem_init_ppgtt(dev); 3722 i915_gem_init_ppgtt(dev);
3718 3723
3719 return 0; 3724 return 0;
diff --git a/drivers/gpu/drm/i915/i915_gem_context.c b/drivers/gpu/drm/i915/i915_gem_context.c
new file mode 100644
index 000000000000..e39808e349f1
--- /dev/null
+++ b/drivers/gpu/drm/i915/i915_gem_context.c
@@ -0,0 +1,175 @@
1/*
2 * Copyright © 2011-2012 Intel Corporation
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 * Authors:
24 * Ben Widawsky <ben@bwidawsk.net>
25 *
26 */
27
28/*
29 * This file implements HW context support. On gen5+ a HW context consists of an
30 * opaque GPU object which is referenced at times of context saves and restores.
31 * With RC6 enabled, the context is also referenced as the GPU enters and exists
32 * from RC6 (GPU has it's own internal power context, except on gen5). Though
33 * something like a context does exist for the media ring, the code only
34 * supports contexts for the render ring.
35 *
36 * In software, there is a distinction between contexts created by the user,
37 * and the default HW context. The default HW context is used by GPU clients
38 * that do not request setup of their own hardware context. The default
39 * context's state is never restored to help prevent programming errors. This
40 * would happen if a client ran and piggy-backed off another clients GPU state.
41 * The default context only exists to give the GPU some offset to load as the
42 * current to invoke a save of the context we actually care about. In fact, the
43 * code could likely be constructed, albeit in a more complicated fashion, to
44 * never use the default context, though that limits the driver's ability to
45 * swap out, and/or destroy other contexts.
46 *
47 * All other contexts are created as a request by the GPU client. These contexts
48 * store GPU state, and thus allow GPU clients to not re-emit state (and
49 * potentially query certain state) at any time. The kernel driver makes
50 * certain that the appropriate commands are inserted.
51 *
52 * The context life cycle is semi-complicated in that context BOs may live
53 * longer than the context itself because of the way the hardware, and object
54 * tracking works. Below is a very crude representation of the state machine
55 * describing the context life.
56 * refcount pincount active
57 * S0: initial state 0 0 0
58 * S1: context created 1 0 0
59 * S2: context is currently running 2 1 X
60 * S3: GPU referenced, but not current 2 0 1
61 * S4: context is current, but destroyed 1 1 0
62 * S5: like S3, but destroyed 1 0 1
63 *
64 * The most common (but not all) transitions:
65 * S0->S1: client creates a context
66 * S1->S2: client submits execbuf with context
67 * S2->S3: other clients submits execbuf with context
68 * S3->S1: context object was retired
69 * S3->S2: clients submits another execbuf
70 * S2->S4: context destroy called with current context
71 * S3->S5->S0: destroy path
72 * S4->S5->S0: destroy path on current context
73 *
74 * There are two confusing terms used above:
75 * The "current context" means the context which is currently running on the
76 * GPU. The GPU has loaded it's state already and has stored away the gtt
77 * offset of the BO. The GPU is not actively referencing the data at this
78 * offset, but it will on the next context switch. The only way to avoid this
79 * is to do a GPU reset.
80 *
81 * An "active context' is one which was previously the "current context" and is
82 * on the active list waiting for the next context switch to occur. Until this
83 * happens, the object must remain at the same gtt offset. It is therefore
84 * possible to destroy a context, but it is still active.
85 *
86 */
87
88#include "drmP.h"
89#include "i915_drm.h"
90#include "i915_drv.h"
91
92static int get_context_size(struct drm_device *dev)
93{
94 struct drm_i915_private *dev_priv = dev->dev_private;
95 int ret;
96 u32 reg;
97
98 switch (INTEL_INFO(dev)->gen) {
99 case 6:
100 reg = I915_READ(CXT_SIZE);
101 ret = GEN6_CXT_TOTAL_SIZE(reg) * 64;
102 break;
103 case 7:
104 reg = I915_READ(GEN7_CTX_SIZE);
105 ret = GEN7_CTX_TOTAL_SIZE(reg) * 64;
106 break;
107 default:
108 BUG();
109 }
110
111 return ret;
112}
113
114/**
115 * The default context needs to exist per ring that uses contexts. It stores the
116 * context state of the GPU for applications that don't utilize HW contexts, as
117 * well as an idle case.
118 */
119static int create_default_context(struct drm_i915_private *dev_priv)
120{
121 return 0;
122}
123
124void i915_gem_context_init(struct drm_device *dev)
125{
126 struct drm_i915_private *dev_priv = dev->dev_private;
127 uint32_t ctx_size;
128
129 if (!HAS_HW_CONTEXTS(dev))
130 return;
131
132 /* If called from reset, or thaw... we've been here already */
133 if (dev_priv->hw_contexts_disabled)
134 return;
135
136 ctx_size = get_context_size(dev);
137 dev_priv->hw_context_size = get_context_size(dev);
138 dev_priv->hw_context_size = round_up(dev_priv->hw_context_size, 4096);
139
140 if (ctx_size <= 0 || ctx_size > (1<<20)) {
141 dev_priv->hw_contexts_disabled = true;
142 return;
143 }
144
145 if (create_default_context(dev_priv)) {
146 dev_priv->hw_contexts_disabled = true;
147 return;
148 }
149
150 DRM_DEBUG_DRIVER("HW context support initialized\n");
151}
152
153void i915_gem_context_fini(struct drm_device *dev)
154{
155 struct drm_i915_private *dev_priv = dev->dev_private;
156
157 if (dev_priv->hw_contexts_disabled)
158 return;
159}
160
161void i915_gem_context_open(struct drm_device *dev, struct drm_file *file)
162{
163 struct drm_i915_private *dev_priv = dev->dev_private;
164
165 if (dev_priv->hw_contexts_disabled)
166 return;
167}
168
169void i915_gem_context_close(struct drm_device *dev, struct drm_file *file)
170{
171 struct drm_i915_private *dev_priv = dev->dev_private;
172
173 if (dev_priv->hw_contexts_disabled)
174 return;
175}