The Tegra DRM driver assumes that CRTCs are probed in the order listed in the DT. While DT makes no such guarantees in the first place, this used to work fine. With the introduction of the panel support, however, more often than not one of the CRTCs will defer probing (caused by the panel not having been registered yet) and the assumptions are broken. To fix this, we use the new drm_crtc_mask() function to obtain the mask of the display controller that an RGB output can be associated with, thereby making it resistant to changes in probe order. A second patch is required to obtain the number of the head from the device tree, since we can no longer rely on the probe order providing us with the right one. Thierry Thierry Reding (2): drm/tegra: Fix possible CRTC mask for RGB outputs drm/tegra: Obtain head number from DT .../bindings/gpu/nvidia,tegra20-host1x.txt | 3 +++ drivers/gpu/drm/tegra/dc.c | 20 ++++++++++++++++++-- drivers/gpu/drm/tegra/rgb.c | 2 +- 3 files changed, 22 insertions(+), 3 deletions(-) -- 1.8.4.2 _______________________________________________ dri-devel mailing list dri-devel@xxxxxxxxxxxxxxxxxxxxx http://lists.freedesktop.org/mailman/listinfo/dri-devel