diff options
author | Noralf Trønnes <noralf@tronnes.org> | 2017-12-15 12:51:15 -0500 |
---|---|---|
committer | Noralf Trønnes <noralf@tronnes.org> | 2017-12-20 08:51:03 -0500 |
commit | ee05baa0bfe634f747b51c44e1f9355c5ff2e64e (patch) | |
tree | 68a05531e6d5a6b8e0e8c6418729b7a1f474b306 | |
parent | 8741216396b2611142d7a890d06b7040ff585b3f (diff) |
drm/docs: Add todo entry for drm_fb_helper_fbdev_setup()
Add entry for conversion of drivers to new helpers.
Signed-off-by: Noralf Trønnes <noralf@tronnes.org>
Reviewed-by: Daniel Vetter <daniel.vetter@ffwll.ch>
Link: https://patchwork.freedesktop.org/patch/msgid/20171215175119.36181-4-noralf@tronnes.org
-rw-r--r-- | Documentation/gpu/todo.rst | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/Documentation/gpu/todo.rst b/Documentation/gpu/todo.rst index f421a54527d2..1e593370f64f 100644 --- a/Documentation/gpu/todo.rst +++ b/Documentation/gpu/todo.rst | |||
@@ -194,6 +194,24 @@ drm_mode_config_helper_suspend/resume(). | |||
194 | 194 | ||
195 | Contact: Maintainer of the driver you plan to convert | 195 | Contact: Maintainer of the driver you plan to convert |
196 | 196 | ||
197 | Convert drivers to use drm_fb_helper_fbdev_setup/teardown() | ||
198 | ----------------------------------------------------------- | ||
199 | |||
200 | Most drivers can use drm_fb_helper_fbdev_setup() except maybe: | ||
201 | |||
202 | - amdgpu which has special logic to decide whether to call | ||
203 | drm_helper_disable_unused_functions() | ||
204 | |||
205 | - armada which isn't atomic and doesn't call | ||
206 | drm_helper_disable_unused_functions() | ||
207 | |||
208 | - i915 which calls drm_fb_helper_initial_config() in a worker | ||
209 | |||
210 | Drivers that use drm_framebuffer_remove() to clean up the fbdev framebuffer can | ||
211 | probably use drm_fb_helper_fbdev_teardown(). | ||
212 | |||
213 | Contact: Maintainer of the driver you plan to convert | ||
214 | |||
197 | Core refactorings | 215 | Core refactorings |
198 | ================= | 216 | ================= |
199 | 217 | ||