Skip to content
Navigation Menu
Toggle navigation
Sign in
In this repository
All GitHub Enterprise
↵
Jump to
↵
No suggested jump to results
In this repository
All GitHub Enterprise
↵
Jump to
↵
In this organization
All GitHub Enterprise
↵
Jump to
↵
In this repository
All GitHub Enterprise
↵
Jump to
↵
Sign in
Reseting focus
You signed in with another tab or window.
Reload
to refresh your session.
You signed out in another tab or window.
Reload
to refresh your session.
You switched accounts on another tab or window.
Reload
to refresh your session.
Dismiss alert
{{ message }}
mariux64
/
linux
Public
Notifications
You must be signed in to change notification settings
Fork
0
Star
0
Code
Issues
2
Pull requests
0
Actions
Projects
0
Wiki
Security
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Wiki
Security
Insights
Files
168829a
Breadcrumbs
linux
/
drivers
/
gpu
/
drm
/
i915
/
gt
/
intel_engine_pm.c
Copy path
Blame
Blame
Latest commit
History
History
179 lines (138 loc) · 4.52 KB
Breadcrumbs
linux
/
drivers
/
gpu
/
drm
/
i915
/
gt
/
intel_engine_pm.c
Top
File metadata and controls
Code
Blame
179 lines (138 loc) · 4.52 KB
Raw
/* * SPDX-License-Identifier: MIT * * Copyright © 2019 Intel Corporation */ #include "i915_drv.h" #include "intel_engine.h" #include "intel_engine_pm.h" #include "intel_engine_pool.h" #include "intel_gt.h" #include "intel_gt_pm.h" static int __engine_unpark(struct intel_wakeref *wf) { struct intel_engine_cs *engine = container_of(wf, typeof(*engine), wakeref); void *map; GEM_TRACE("%s\n", engine->name); intel_gt_pm_get(engine->gt); /* Pin the default state for fast resets from atomic context. */ map = NULL; if (engine->default_state) map = i915_gem_object_pin_map(engine->default_state, I915_MAP_WB); if (!IS_ERR_OR_NULL(map)) engine->pinned_default_state = map; if (engine->unpark) engine->unpark(engine); intel_engine_init_hangcheck(engine); return 0; } #if IS_ENABLED(CONFIG_LOCKDEP) static inline unsigned long __timeline_mark_lock(struct intel_context *ce) { unsigned long flags; local_irq_save(flags); mutex_acquire(&ce->timeline->mutex.dep_map, 2, 0, _THIS_IP_); return flags; } static inline void __timeline_mark_unlock(struct intel_context *ce, unsigned long flags) { mutex_release(&ce->timeline->mutex.dep_map, _THIS_IP_); local_irq_restore(flags); } #else static inline unsigned long __timeline_mark_lock(struct intel_context *ce) { return 0; } static inline void __timeline_mark_unlock(struct intel_context *ce, unsigned long flags) { } #endif /* !IS_ENABLED(CONFIG_LOCKDEP) */ static bool switch_to_kernel_context(struct intel_engine_cs *engine) { struct i915_request *rq; unsigned long flags; bool result = true; /* Already inside the kernel context, safe to power down. */ if (engine->wakeref_serial == engine->serial) return true; /* GPU is pointing to the void, as good as in the kernel context. */ if (intel_gt_is_wedged(engine->gt)) return true; /* * Note, we do this without taking the timeline->mutex. We cannot * as we may be called while retiring the kernel context and so * already underneath the timeline->mutex. Instead we rely on the * exclusive property of the __engine_park that prevents anyone * else from creating a request on this engine. This also requires * that the ring is empty and we avoid any waits while constructing * the context, as they assume protection by the timeline->mutex. * This should hold true as we can only park the engine after * retiring the last request, thus all rings should be empty and * all timelines idle. */ flags = __timeline_mark_lock(engine->kernel_context); rq = __i915_request_create(engine->kernel_context, GFP_NOWAIT); if (IS_ERR(rq)) /* Context switch failed, hope for the best! Maybe reset? */ goto out_unlock; intel_timeline_enter(rq->timeline); /* Check again on the next retirement. */ engine->wakeref_serial = engine->serial + 1; i915_request_add_active_barriers(rq); /* Install ourselves as a preemption barrier */ rq->sched.attr.priority = I915_PRIORITY_UNPREEMPTABLE; __i915_request_commit(rq); /* Release our exclusive hold on the engine */ __intel_wakeref_defer_park(&engine->wakeref); __i915_request_queue(rq, NULL); result = false; out_unlock: __timeline_mark_unlock(engine->kernel_context, flags); return result; } static int __engine_park(struct intel_wakeref *wf) { struct intel_engine_cs *engine = container_of(wf, typeof(*engine), wakeref); engine->saturated = 0; /* * If one and only one request is completed between pm events, * we know that we are inside the kernel context and it is * safe to power down. (We are paranoid in case that runtime * suspend causes corruption to the active context image, and * want to avoid that impacting userspace.) */ if (!switch_to_kernel_context(engine)) return -EBUSY; GEM_TRACE("%s\n", engine->name); intel_engine_disarm_breadcrumbs(engine); intel_engine_pool_park(&engine->pool); /* Must be reset upon idling, or we may miss the busy wakeup. */ GEM_BUG_ON(engine->execlists.queue_priority_hint != INT_MIN); if (engine->park) engine->park(engine); if (engine->pinned_default_state) { i915_gem_object_unpin_map(engine->default_state); engine->pinned_default_state = NULL; } engine->execlists.no_priolist = false; intel_gt_pm_put(engine->gt); return 0; } static const struct intel_wakeref_ops wf_ops = { .get = __engine_unpark, .put = __engine_park, }; void intel_engine_init__pm(struct intel_engine_cs *engine) { struct intel_runtime_pm *rpm = &engine->i915->runtime_pm; intel_wakeref_init(&engine->wakeref, rpm, &wf_ops); } #if IS_ENABLED(CONFIG_DRM_I915_SELFTEST) #include "selftest_engine_pm.c" #endif
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
You can’t perform that action at this time.