radeon: limit LVDS to first CRTC for now
parent
6a27e019bc
commit
9afe872ae9
|
@ -376,7 +376,8 @@ struct drm_encoder *radeon_encoder_lvtma_add(struct drm_device *dev, int bios_in
|
||||||
|
|
||||||
encoder = &radeon_encoder->base;
|
encoder = &radeon_encoder->base;
|
||||||
|
|
||||||
encoder->possible_crtcs = 0x3;
|
/* Set LVTMA to only use crtc 0 */
|
||||||
|
encoder->possible_crtcs = 0x1;
|
||||||
encoder->possible_clones = 0;
|
encoder->possible_clones = 0;
|
||||||
drm_encoder_init(dev, encoder, &radeon_atom_lvtma_enc_funcs,
|
drm_encoder_init(dev, encoder, &radeon_atom_lvtma_enc_funcs,
|
||||||
DRM_MODE_ENCODER_LVDS);
|
DRM_MODE_ENCODER_LVDS);
|
||||||
|
|
|
@ -374,7 +374,8 @@ struct drm_encoder *radeon_encoder_legacy_lvds_add(struct drm_device *dev, int b
|
||||||
|
|
||||||
encoder = &radeon_encoder->base;
|
encoder = &radeon_encoder->base;
|
||||||
|
|
||||||
encoder->possible_crtcs = 0x3;
|
/* Limit LVDS to crtc 0 for RMX */
|
||||||
|
encoder->possible_crtcs = 0x1;
|
||||||
encoder->possible_clones = 0;
|
encoder->possible_clones = 0;
|
||||||
drm_encoder_init(dev, encoder, &radeon_legacy_lvds_enc_funcs,
|
drm_encoder_init(dev, encoder, &radeon_legacy_lvds_enc_funcs,
|
||||||
DRM_MODE_ENCODER_LVDS);
|
DRM_MODE_ENCODER_LVDS);
|
||||||
|
|
Loading…
Reference in New Issue