0454-drm-vc4-Bind-the-HVS-before-we-bind-the-individual-C.patch 913 B

12345678910111213141516171819202122232425262728
  1. From 883112e5caaefcb620248e9f63426e82349033e0 Mon Sep 17 00:00:00 2001
  2. From: Eric Anholt <eric@anholt.net>
  3. Date: Fri, 8 Jul 2016 11:25:09 -0700
  4. Subject: [PATCH] drm/vc4: Bind the HVS before we bind the individual CRTCs.
  5. We need to be able to look at the CRTC's registers in the HVS as part
  6. of initialization, while the HVS doesn't need to look at the PV
  7. registers.
  8. Signed-off-by: Eric Anholt <eric@anholt.net>
  9. Reviewed-and-tested-by: Mario Kleiner <mario.kleiner.de@gmail.com>
  10. (cherry picked from commit 7a100969f30b77761901c05a5c810bcaea65df44)
  11. ---
  12. drivers/gpu/drm/vc4/vc4_drv.c | 2 +-
  13. 1 file changed, 1 insertion(+), 1 deletion(-)
  14. --- a/drivers/gpu/drm/vc4/vc4_drv.c
  15. +++ b/drivers/gpu/drm/vc4/vc4_drv.c
  16. @@ -295,8 +295,8 @@ static struct platform_driver *const com
  17. &vc4_hdmi_driver,
  18. &vc4_dpi_driver,
  19. &vc4_dsi_driver,
  20. - &vc4_crtc_driver,
  21. &vc4_hvs_driver,
  22. + &vc4_crtc_driver,
  23. &vc4_v3d_driver,
  24. };