search for: virtio_gpu_enc_helper_func

Displaying 20 results from an estimated 24 matches for "virtio_gpu_enc_helper_func".

2016 Feb 14
1
[PATCH 01/17] drm/virtio: removed optional dummy encoder mode_fixup function.
...virtio_gpu_enc_mode_set(struct drm_encoder *encoder, > struct drm_display_mode *mode, > struct drm_display_mode *adjusted_mode) > @@ -362,7 +355,6 @@ virtio_gpu_best_encoder(struct drm_connector *connector) > } > > static const struct drm_encoder_helper_funcs virtio_gpu_enc_helper_funcs = { > - .mode_fixup = virtio_gpu_enc_mode_fixup, > .mode_set = virtio_gpu_enc_mode_set, > .enable = virtio_gpu_enc_enable, > .disable = virtio_gpu_enc_disable, > -- > 2.5.0 > > _______________________________________________ > dri-devel mailing list >...
2016 Feb 14
1
[PATCH 01/17] drm/virtio: removed optional dummy encoder mode_fixup function.
...virtio_gpu_enc_mode_set(struct drm_encoder *encoder, > struct drm_display_mode *mode, > struct drm_display_mode *adjusted_mode) > @@ -362,7 +355,6 @@ virtio_gpu_best_encoder(struct drm_connector *connector) > } > > static const struct drm_encoder_helper_funcs virtio_gpu_enc_helper_funcs = { > - .mode_fixup = virtio_gpu_enc_mode_fixup, > .mode_set = virtio_gpu_enc_mode_set, > .enable = virtio_gpu_enc_enable, > .disable = virtio_gpu_enc_disable, > -- > 2.5.0 > > _______________________________________________ > dri-devel mailing list >...
2016 Feb 12
0
[PATCH 01/17] drm/virtio: removed optional dummy encoder mode_fixup function.
...eturn true; -} - static void virtio_gpu_enc_mode_set(struct drm_encoder *encoder, struct drm_display_mode *mode, struct drm_display_mode *adjusted_mode) @@ -362,7 +355,6 @@ virtio_gpu_best_encoder(struct drm_connector *connector) } static const struct drm_encoder_helper_funcs virtio_gpu_enc_helper_funcs = { - .mode_fixup = virtio_gpu_enc_mode_fixup, .mode_set = virtio_gpu_enc_mode_set, .enable = virtio_gpu_enc_enable, .disable = virtio_gpu_enc_disable, -- 2.5.0
2020 Mar 05
0
[PATCH 19/22] drm/virtgpu: Use simple encoder
...vgdev, int index) if (vgdev->has_edid) drm_connector_attach_edid_property(connector); - drm_encoder_init(dev, encoder, &virtio_gpu_enc_funcs, - DRM_MODE_ENCODER_VIRTUAL, NULL); + drm_simple_encoder_init(dev, encoder, DRM_MODE_ENCODER_VIRTUAL); drm_encoder_helper_add(encoder, &virtio_gpu_enc_helper_funcs); encoder->possible_crtcs = 1 << index; -- 2.25.1
2016 Feb 12
6
[PATCH 00/17] drm encoders cleanup: nuke optional dummy encoder mode_fixup function.
mode_fixup function for encoder drivers became optional with patch http://patchwork.freedesktop.org/patch/msgid/1455106522-32307-1-git-send-email-palminha at synopsys.com This patch set nukes all the dummy mode_fixup implementations. (made on top of Daniel topic/drm-misc branch) Carlos Palminha (17): drm/virtio: removed optional dummy encoder mode_fixup function. drm/udl: removed optional
2016 Feb 12
6
[PATCH 00/17] drm encoders cleanup: nuke optional dummy encoder mode_fixup function.
mode_fixup function for encoder drivers became optional with patch http://patchwork.freedesktop.org/patch/msgid/1455106522-32307-1-git-send-email-palminha at synopsys.com This patch set nukes all the dummy mode_fixup implementations. (made on top of Daniel topic/drm-misc branch) Carlos Palminha (17): drm/virtio: removed optional dummy encoder mode_fixup function. drm/udl: removed optional
2016 Feb 12
4
[PATCH 00/17] drm encoders cleanup: nuke optional dummy encoder mode_fixup function.
mode_fixup function for encoder drivers became optional with patch http://patchwork.freedesktop.org/patch/msgid/1455106522-32307-1-git-send-email-palminha at synopsys.com This patch set nukes all the dummy mode_fixup implementations. (made on top of Daniel topic/drm-misc branch) Carlos Palminha (17): drm/virtio: removed optional dummy encoder mode_fixup function. drm/udl: removed optional
2016 Feb 12
4
[PATCH 00/17] drm encoders cleanup: nuke optional dummy encoder mode_fixup function.
mode_fixup function for encoder drivers became optional with patch http://patchwork.freedesktop.org/patch/msgid/1455106522-32307-1-git-send-email-palminha at synopsys.com This patch set nukes all the dummy mode_fixup implementations. (made on top of Daniel topic/drm-misc branch) Carlos Palminha (17): drm/virtio: removed optional dummy encoder mode_fixup function. drm/udl: removed optional
2016 Jun 02
24
[PATCH 00/20] drm/atomic: Provide default ->best_encoder() behavior
Hello, This patch series aims at replacing all dummy ->best_encoder() implementations where we have a 1:1 relationship between encoders and connectors. The core already provides the drm_atomic_helper_best_encoder() function which is taking the first encoder attached to the connector (after making sure only one encoder was attached to the connector), but it's not automatically used, and
2016 Jun 02
24
[PATCH 00/20] drm/atomic: Provide default ->best_encoder() behavior
Hello, This patch series aims at replacing all dummy ->best_encoder() implementations where we have a 1:1 relationship between encoders and connectors. The core already provides the drm_atomic_helper_best_encoder() function which is taking the first encoder attached to the connector (after making sure only one encoder was attached to the connector), but it's not automatically used, and
2016 Jun 07
26
[PATCH v2 00/20] drm/atomic: Provide default ->best_encoder() behavior
Hello, This patch series aims at replacing all dummy ->best_encoder() implementations where we have a 1:1 relationship between encoders and connectors. The core already provides the drm_atomic_helper_best_encoder() function which is taking the first encoder attached to the connector (after making sure only one encoder was attached to the connector), but it's not automatically used, and
2016 Jun 07
26
[PATCH v2 00/20] drm/atomic: Provide default ->best_encoder() behavior
Hello, This patch series aims at replacing all dummy ->best_encoder() implementations where we have a 1:1 relationship between encoders and connectors. The core already provides the drm_atomic_helper_best_encoder() function which is taking the first encoder attached to the connector (after making sure only one encoder was attached to the connector), but it's not automatically used, and
2015 Mar 24
10
[PATCH] Add virtio gpu driver.
...n MODE_BAD; +} + +static struct drm_encoder* +virtio_gpu_best_encoder(struct drm_connector *connector) +{ + struct virtio_gpu_output *virtio_gpu_output = + drm_connector_to_virtio_gpu_output(connector); + + return &virtio_gpu_output->enc; +} + + +static const struct drm_encoder_helper_funcs virtio_gpu_enc_helper_funcs = { + .dpms = virtio_gpu_enc_dpms, + .mode_fixup = virtio_gpu_enc_mode_fixup, + .prepare = virtio_gpu_enc_prepare, + .mode_set = virtio_gpu_enc_mode_set, + .commit = virtio_gpu_enc_commit, +}; + +static const struct drm_connector_helper_funcs virtio_gpu_conn_helper_funcs = { + .get_modes = virtio_...
2015 Mar 24
10
[PATCH] Add virtio gpu driver.
...n MODE_BAD; +} + +static struct drm_encoder* +virtio_gpu_best_encoder(struct drm_connector *connector) +{ + struct virtio_gpu_output *virtio_gpu_output = + drm_connector_to_virtio_gpu_output(connector); + + return &virtio_gpu_output->enc; +} + + +static const struct drm_encoder_helper_funcs virtio_gpu_enc_helper_funcs = { + .dpms = virtio_gpu_enc_dpms, + .mode_fixup = virtio_gpu_enc_mode_fixup, + .prepare = virtio_gpu_enc_prepare, + .mode_set = virtio_gpu_enc_mode_set, + .commit = virtio_gpu_enc_commit, +}; + +static const struct drm_connector_helper_funcs virtio_gpu_conn_helper_funcs = { + .get_modes = virtio_...
2015 Mar 24
0
[PATCH] Add virtio gpu driver.
...+virtio_gpu_best_encoder(struct drm_connector *connector) > +{ > + struct virtio_gpu_output *virtio_gpu_output = > + drm_connector_to_virtio_gpu_output(connector); > + > + return &virtio_gpu_output->enc; > +} > + > + > +static const struct drm_encoder_helper_funcs virtio_gpu_enc_helper_funcs = { > + .dpms = virtio_gpu_enc_dpms, > + .mode_fixup = virtio_gpu_enc_mode_fixup, > + .prepare = virtio_gpu_enc_prepare, > + .mode_set = virtio_gpu_enc_mode_set, > + .commit = virtio_gpu_enc_commit, > +}; > + > +static const struct drm_connector_helper_funcs virtio_gpu_conn...
2015 Mar 24
0
[PATCH] Add virtio gpu driver.
...+virtio_gpu_best_encoder(struct drm_connector *connector) > +{ > + struct virtio_gpu_output *virtio_gpu_output = > + drm_connector_to_virtio_gpu_output(connector); > + > + return &virtio_gpu_output->enc; > +} > + > + > +static const struct drm_encoder_helper_funcs virtio_gpu_enc_helper_funcs = { > + .dpms = virtio_gpu_enc_dpms, > + .mode_fixup = virtio_gpu_enc_mode_fixup, > + .prepare = virtio_gpu_enc_prepare, > + .mode_set = virtio_gpu_enc_mode_set, > + .commit = virtio_gpu_enc_commit, > +}; > + > +static const struct drm_connector_helper_funcs virtio_gpu_conn...
2015 May 22
1
[PATCH v3 4/4] Add virtio gpu driver.
...urn MODE_BAD; +} + +static struct drm_encoder* +virtio_gpu_best_encoder(struct drm_connector *connector) +{ + struct virtio_gpu_output *virtio_gpu_output = + drm_connector_to_virtio_gpu_output(connector); + + return &virtio_gpu_output->enc; +} + +static const struct drm_encoder_helper_funcs virtio_gpu_enc_helper_funcs = { + .mode_fixup = virtio_gpu_enc_mode_fixup, + .mode_set = virtio_gpu_enc_mode_set, + .enable = virtio_gpu_enc_enable, + .disable = virtio_gpu_enc_disable, +}; + +static const struct drm_connector_helper_funcs virtio_gpu_conn_helper_funcs = { + .get_modes = virtio_gpu_conn_get_modes,...
2015 May 22
1
[PATCH v3 4/4] Add virtio gpu driver.
...urn MODE_BAD; +} + +static struct drm_encoder* +virtio_gpu_best_encoder(struct drm_connector *connector) +{ + struct virtio_gpu_output *virtio_gpu_output = + drm_connector_to_virtio_gpu_output(connector); + + return &virtio_gpu_output->enc; +} + +static const struct drm_encoder_helper_funcs virtio_gpu_enc_helper_funcs = { + .mode_fixup = virtio_gpu_enc_mode_fixup, + .mode_set = virtio_gpu_enc_mode_set, + .enable = virtio_gpu_enc_enable, + .disable = virtio_gpu_enc_disable, +}; + +static const struct drm_connector_helper_funcs virtio_gpu_conn_helper_funcs = { + .get_modes = virtio_gpu_conn_get_modes,...
2015 Apr 01
3
[PATCH v2 3/4] Add virtio gpu driver.
...urn MODE_BAD; +} + +static struct drm_encoder* +virtio_gpu_best_encoder(struct drm_connector *connector) +{ + struct virtio_gpu_output *virtio_gpu_output = + drm_connector_to_virtio_gpu_output(connector); + + return &virtio_gpu_output->enc; +} + +static const struct drm_encoder_helper_funcs virtio_gpu_enc_helper_funcs = { + .mode_fixup = virtio_gpu_enc_mode_fixup, + .mode_set = virtio_gpu_enc_mode_set, + .enable = virtio_gpu_enc_enable, + .disable = virtio_gpu_enc_disable, +}; + +static const struct drm_connector_helper_funcs virtio_gpu_conn_helper_funcs = { + .get_modes = virtio_gpu_conn_get_modes,...
2015 Apr 01
3
[PATCH v2 3/4] Add virtio gpu driver.
...urn MODE_BAD; +} + +static struct drm_encoder* +virtio_gpu_best_encoder(struct drm_connector *connector) +{ + struct virtio_gpu_output *virtio_gpu_output = + drm_connector_to_virtio_gpu_output(connector); + + return &virtio_gpu_output->enc; +} + +static const struct drm_encoder_helper_funcs virtio_gpu_enc_helper_funcs = { + .mode_fixup = virtio_gpu_enc_mode_fixup, + .mode_set = virtio_gpu_enc_mode_set, + .enable = virtio_gpu_enc_enable, + .disable = virtio_gpu_enc_disable, +}; + +static const struct drm_connector_helper_funcs virtio_gpu_conn_helper_funcs = { + .get_modes = virtio_gpu_conn_get_modes,...