Skip to content

Commit

Permalink
drm/ast: dp501: Transparently handle BMC support
Browse files Browse the repository at this point in the history
Permanently set the connector status to 'connected'. Return BMC modes
for connector if no display is attached to the physical DP connector.
Otherwise use EDID modes as before.

If the status of the physical connector changes, the driver still
generates a hotplug event. DRM clients will then reconfigure their
output to a mode appropriate for either physical display or BMC.

v3:
- use struct ast_connector.physical_status to handle BMC

Signed-off-by: Thomas Zimmermann <tzimmermann@suse.de>
Reviewed-by: Jocelyn Falempe <jfalempe@redhat.com>
Link: https://patchwork.freedesktop.org/patch/msgid/20240815151953.184679-9-tzimmermann@suse.de
  • Loading branch information
Thomas Zimmermann committed Aug 22, 2024
1 parent 9e7a74a commit 44a37ba
Showing 1 changed file with 25 additions and 8 deletions.
33 changes: 25 additions & 8 deletions drivers/gpu/drm/ast/ast_dp501.c
Original file line number Diff line number Diff line change
Expand Up @@ -509,14 +509,29 @@ static const struct drm_encoder_helper_funcs ast_dp501_encoder_helper_funcs = {

static int ast_dp501_connector_helper_get_modes(struct drm_connector *connector)
{
struct ast_device *ast = to_ast_device(connector->dev);
const struct drm_edid *drm_edid;
struct ast_connector *ast_connector = to_ast_connector(connector);
int count;

drm_edid = drm_edid_read_custom(connector, ast_dp512_read_edid_block, ast);
drm_edid_connector_update(connector, drm_edid);
count = drm_edid_connector_add_modes(connector);
drm_edid_free(drm_edid);
if (ast_connector->physical_status == connector_status_connected) {
struct ast_device *ast = to_ast_device(connector->dev);
const struct drm_edid *drm_edid;

drm_edid = drm_edid_read_custom(connector, ast_dp512_read_edid_block, ast);
drm_edid_connector_update(connector, drm_edid);
count = drm_edid_connector_add_modes(connector);
drm_edid_free(drm_edid);
} else {
drm_edid_connector_update(connector, NULL);

/*
* There's no EDID data without a connected monitor. Set BMC-
* compatible modes in this case. The XGA default resolution
* should work well for all BMCs.
*/
count = drm_add_modes_noedid(connector, 4096, 4096);
if (count)
drm_set_preferred_mode(connector, 1024, 768);
}

return count;
}
Expand All @@ -530,11 +545,13 @@ static int ast_dp501_connector_helper_detect_ctx(struct drm_connector *connector
enum drm_connector_status status = connector_status_disconnected;

if (ast_dp501_is_connected(ast))
return connector_status_connected;
status = connector_status_connected;

if (status != ast_connector->physical_status)
++connector->epoch_counter;
ast_connector->physical_status = status;

return status;
return connector_status_connected;
}

static const struct drm_connector_helper_funcs ast_dp501_connector_helper_funcs = {
Expand Down

0 comments on commit 44a37ba

Please sign in to comment.