search for: struct_drm_underscan

Displaying 9 results from an estimated 9 matches for "struct_drm_underscan".

2018 May 07
2
[PATCH 1/3] drm/connector: Add generic underscan properties
...n mode > + * > + * This enum is used to track the underscan mode. > + * > + * @DRM_UNDERSCAN_OFF: No underscan applied, the output image will be unchanged > + * @DRM_UNDERSCAN_ON: Underscan is enabled, and horizontal/vertical border size > + * are specified through the &struct_drm_underscan->hborder > + * and &struct_drm_underscan->vborder fields. > + * @DRM_UNDERSCAN_AUTO: Underscan is enabled and &struct_drm_underscan->hborder > + * and &struct_drm_underscan->vborder are guessed by the > + * driver. > + */ > +enum drm_underscan_mo...
2018 May 07
0
[PATCH 1/3] drm/connector: Add generic underscan properties
...drm_underscan_mode - Underscan mode + * + * This enum is used to track the underscan mode. + * + * @DRM_UNDERSCAN_OFF: No underscan applied, the output image will be unchanged + * @DRM_UNDERSCAN_ON: Underscan is enabled, and horizontal/vertical border size + * are specified through the &struct_drm_underscan->hborder + * and &struct_drm_underscan->vborder fields. + * @DRM_UNDERSCAN_AUTO: Underscan is enabled and &struct_drm_underscan->hborder + * and &struct_drm_underscan->vborder are guessed by the + * driver. + */ +enum drm_underscan_mode { + DRM_UNDERSCAN_OFF, + DR...
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 Nov 22
0
[PATCH v3 1/3] drm/connector: Add generic underscan properties
...drm_underscan_mode - Underscan mode + * + * This enum is used to track the underscan mode. + * + * @DRM_UNDERSCAN_OFF: No underscan applied, the output image will be unchanged + * @DRM_UNDERSCAN_ON: Underscan is enabled, and horizontal/vertical border size + * are specified through the &struct_drm_underscan->hborder + * and &struct_drm_underscan->vborder fields. + * @DRM_UNDERSCAN_AUTO: Underscan is enabled and &struct_drm_underscan->hborder + * and &struct_drm_underscan->vborder are guessed by the + * driver. + */ +enum drm_underscan_mode { + DRM_UNDERSCAN_OFF, + DR...
2018 May 07
0
[PATCH 1/3] drm/connector: Add generic underscan properties
...+ * This enum is used to track the underscan mode. > > + * > > + * @DRM_UNDERSCAN_OFF: No underscan applied, the output image will be unchanged > > + * @DRM_UNDERSCAN_ON: Underscan is enabled, and horizontal/vertical border size > > + * are specified through the &struct_drm_underscan->hborder > > + * and &struct_drm_underscan->vborder fields. > > + * @DRM_UNDERSCAN_AUTO: Underscan is enabled and &struct_drm_underscan->hborder > > + * and &struct_drm_underscan->vborder are guessed by the > > + * driver. > > + */ &g...
2018 Nov 22
1
[PATCH v3 1/3] drm/connector: Add generic underscan properties
...derscan mode >+ * >+ * This enum is used to track the underscan mode. >+ * >+ * @DRM_UNDERSCAN_OFF: No underscan applied, the output image will be unchanged >+ * @DRM_UNDERSCAN_ON: Underscan is enabled, and horizontal/vertical border size >+ * are specified through the &struct_drm_underscan->hborder >+ * and &struct_drm_underscan->vborder fields. >+ * @DRM_UNDERSCAN_AUTO: Underscan is enabled and &struct_drm_underscan->hborder >+ * and &struct_drm_underscan->vborder are guessed by the >+ * driver. >+ */ >+enum drm_underscan_mode { &...
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 07
2
[PATCH 1/3] drm/connector: Add generic underscan properties
...n mode > + * > + * This enum is used to track the underscan mode. > + * > + * @DRM_UNDERSCAN_OFF: No underscan applied, the output image will be unchanged > + * @DRM_UNDERSCAN_ON: Underscan is enabled, and horizontal/vertical border size > + * are specified through the &struct_drm_underscan->hborder > + * and &struct_drm_underscan->vborder fields. > + * @DRM_UNDERSCAN_AUTO: Underscan is enabled and &struct_drm_underscan->hborder > + * and &struct_drm_underscan->vborder are guessed by the > + * driver. > + */ > +enum drm_underscan_mo...
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