Displaying 9 results from an estimated 9 matches for "right_border".
2018 Nov 22
0
[PATCH v3 1/3] drm/connector: Add generic underscan properties
...oris Brezillon <boris.brezillon at bootlin.com>
---
Changes in v3:
- None
Changes in v2:
- Add a new section in the connector props doc to describe underscan
props
- Fix description of auto mode (auto means apply underscan for HDMI
monitors only)
- Fix description of vborder/hborder:
right_border = left_border = hborder
top_border = bottom_border = vborder
not
right_border = left_border = hborder / 2
top_border = bottom_border = vborder / 2
- Rename drm_underscan into drm_underscan_state
---
drivers/gpu/drm/drm_atomic_uapi.c | 12 +++
drivers/gpu/drm/drm_connector.c | 127...
2018 Nov 22
1
[PATCH v3 1/3] drm/connector: Add generic underscan properties
...n.com>
>---
>Changes in v3:
>- None
>
>Changes in v2:
>- Add a new section in the connector props doc to describe underscan
> props
>- Fix description of auto mode (auto means apply underscan for HDMI
> monitors only)
>- Fix description of vborder/hborder:
> right_border = left_border = hborder
> top_border = bottom_border = vborder
> not
> right_border = left_border = hborder / 2
> top_border = bottom_border = vborder / 2
>- Rename drm_underscan into drm_underscan_state
>---
> drivers/gpu/drm/drm_atomic_uapi.c | 12 +++
> drivers/...
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
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 May 07
2
[PATCH 1/3] drm/connector: Add generic underscan properties
...this drm_underscan_state, similar to how we have
drm_tv_connector_state.
> + /**
> + * @mode: Underscan mode.
> + */
> + enum drm_underscan_mode mode;
> +
> + /**
> + * @hborder: Horizontal border. This values encodes both the left and
> + * right borders: left_border = right_border = hborder / 2.
> + */
> + unsigned int hborder;
> +
> + /**
> + * @vborder: Vertical border. This values encodes both the top and
> + * bottom borders: top_border = bottom_border = vborder / 2.
> + */
> + unsigned int vborder;
> +};
> +
> /**
> * struct dr...
2018 May 07
0
[PATCH 1/3] drm/connector: Add generic underscan properties
...rs are hidden.
+ * Can also be used to compensate overscan done on the display side.
+ */
+struct drm_underscan {
+ /**
+ * @mode: Underscan mode.
+ */
+ enum drm_underscan_mode mode;
+
+ /**
+ * @hborder: Horizontal border. This values encodes both the left and
+ * right borders: left_border = right_border = hborder / 2.
+ */
+ unsigned int hborder;
+
+ /**
+ * @vborder: Vertical border. This values encodes both the top and
+ * bottom borders: top_border = bottom_border = vborder / 2.
+ */
+ unsigned int vborder;
+};
+
/**
* struct drm_connector_state - mutable connector state
* @connector:...
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 07
0
[PATCH 1/3] drm/connector: Add generic underscan properties
...gt; drm_tv_connector_state.
>
> > + /**
> > + * @mode: Underscan mode.
> > + */
> > + enum drm_underscan_mode mode;
> > +
> > + /**
> > + * @hborder: Horizontal border. This values encodes both the left and
> > + * right borders: left_border = right_border = hborder / 2.
> > + */
> > + unsigned int hborder;
> > +
> > + /**
> > + * @vborder: Vertical border. This values encodes both the top and
> > + * bottom borders: top_border = bottom_border = vborder / 2.
> > + */
> > + unsigned int vborder;
>...
2018 May 07
2
[PATCH 1/3] drm/connector: Add generic underscan properties
...overscan done on the display side.
> + */
> +struct drm_underscan {
> + /**
> + * @mode: Underscan mode.
> + */
> + enum drm_underscan_mode mode;
> +
> + /**
> + * @hborder: Horizontal border. This values encodes both the left and
> + * right borders: left_border = right_border = hborder / 2.
> + */
> + unsigned int hborder;
> +
> + /**
> + * @vborder: Vertical border. This values encodes both the top and
> + * bottom borders: top_border = bottom_border = vborder / 2.
> + */
> + unsigned int vborder;
> +};
> +
> /**
> * struct dr...