Displaying 6 results from an estimated 6 matches for "top_bar".
2018 May 07
0
[PATCH 3/3] drm/vc4: Attach underscan props to the HDMI connector
...gb_range_selectable,
false);
+ if (cstate->underscan.mode == DRM_UNDERSCAN_ON) {
+ if (cstate->underscan.hborder) {
+ frame.avi.right_bar = cstate->underscan.hborder / 2;
+ frame.avi.left_bar = frame.avi.right_bar;
+ }
+
+ if (cstate->underscan.vborder) {
+ frame.avi.top_bar = cstate->underscan.vborder / 2;
+ frame.avi.bottom_bar = frame.avi.top_bar;
+ }
+ }
+
vc4_hdmi_write_infoframe(encoder, &frame);
}
--
2.14.1
2018 Nov 22
0
[PATCH v3 3/3] drm/vc4: Attach underscan props to the HDMI connector
...gb_range_selectable,
false);
+ if (cstate->underscan.mode == DRM_UNDERSCAN_ON) {
+ if (cstate->underscan.hborder) {
+ frame.avi.right_bar = cstate->underscan.hborder / 2;
+ frame.avi.left_bar = frame.avi.right_bar;
+ }
+
+ if (cstate->underscan.vborder) {
+ frame.avi.top_bar = cstate->underscan.vborder / 2;
+ frame.avi.bottom_bar = frame.avi.top_bar;
+ }
+ }
+
vc4_hdmi_write_infoframe(encoder, &frame);
}
--
2.17.1
2018 May 07
2
[PATCH 3/3] drm/vc4: Attach underscan props to the HDMI connector
...> + if (cstate->underscan.mode == DRM_UNDERSCAN_ON) {
> + if (cstate->underscan.hborder) {
> + frame.avi.right_bar = cstate->underscan.hborder / 2;
> + frame.avi.left_bar = frame.avi.right_bar;
> + }
> +
> + if (cstate->underscan.vborder) {
> + frame.avi.top_bar = cstate->underscan.vborder / 2;
> + frame.avi.bottom_bar = frame.avi.top_bar;
> + }
> + }
> +
> vc4_hdmi_write_infoframe(encoder, &frame);
> }
>
> --
> 2.14.1
>
--
Daniel Vetter
Software Engineer, Intel Corporation
http://blog.ffwll.ch
2018 May 07
8
[PATCH 0/3] drm/connector: Provide generic support for underscan
Hello,
This is an attempt at providing generic support for underscan connector
props. We already have 3 drivers defining the same underscan, underscan
vborder and underscan hborder properties (amd, radeon and nouveau) and
I am about to add a new one, hence my proposal to put the prop parsing
code in the core and add ->underscan fields to drm_connector_state.
Note that I use this new
2018 May 11
5
[PATCH v2 0/4] drm/connector: Provide generic support for underscan
Hello,
This is an attempt at providing generic support for underscan connector
props. We already have 3 drivers defining the same underscan, underscan
vborder and underscan hborder properties (amd, radeon and nouveau) and
I am about to add a new one, hence my proposal to put the prop parsing
code in the core and add ->underscan fields to drm_connector_state.
In this v2, I also converted the
2018 Nov 22
5
[PATCH v3 0/3] drm/connector: Provide generic support for underscan
Hello,
This is an attempt at providing generic support for underscan connector
props. We already have 3 drivers defining the same underscan, underscan
vborder and underscan hborder properties (amd, radeon and nouveau) and
I am about to add a new one, hence my proposal to put the prop parsing
code in the core and add ->underscan fields to drm_connector_state.
This v3 was based on the "VC4