Testing on the RCar Salvaltor-XS using the rcar-du has identified that commit 161ad653d6c9 ("drm: rcar-du: Use __drm_atomic_helper_plane_reset instead of copying the logic") caused a regression in display output on the primary planes. The effect was that primary plane was 'invisible' though secondary planes were displayed correctly. This issue turned out to be a change in the initialisation of the default alpha property value in the state object. A plane without an alpha property would leave the alpha property unset (and thus at zero, or 'transparent'). Two patches are thus presented, which both individually can fix this regression - but both are suitable for integration. The RCar-DU driver is updated to provide an alpha property on primary planes, as it isn't unreasonable to be able to set the property there. This alone would have the effect of ensuring that the default value was set to the full opaque setting, and repair the regression. As a separate patch, we also update __drm_atomic_helper_plane_reset() call such that the alpha values are always initialised to a more practical default value of DRM_BLEND_ALPHA_OPAQUE for all planes. Kieran Bingham (2): drm/atomic: Initialise planes with opaque alpha values drm: rcar-du: Enable alpha property on primary planes drivers/gpu/drm/drm_atomic_helper.c | 4 +--- drivers/gpu/drm/rcar-du/rcar_du_plane.c | 7 ++++++- 2 files changed, 7 insertions(+), 4 deletions(-) -- 2.17.1