|
@@ -83,8 +83,7 @@ struct vc4_crtc_data {
|
|
|
/* Which channel of the HVS this pixelvalve sources from. */
|
|
|
int hvs_channel;
|
|
|
|
|
|
- enum vc4_encoder_type encoder0_type;
|
|
|
- enum vc4_encoder_type encoder1_type;
|
|
|
+ enum vc4_encoder_type encoder_types[4];
|
|
|
};
|
|
|
|
|
|
#define CRTC_WRITE(offset, val) writel(val, vc4_crtc->regs + (offset))
|
|
@@ -867,20 +866,26 @@ static const struct drm_crtc_helper_funcs vc4_crtc_helper_funcs = {
|
|
|
|
|
|
static const struct vc4_crtc_data pv0_data = {
|
|
|
.hvs_channel = 0,
|
|
|
- .encoder0_type = VC4_ENCODER_TYPE_DSI0,
|
|
|
- .encoder1_type = VC4_ENCODER_TYPE_DPI,
|
|
|
+ .encoder_types = {
|
|
|
+ [PV_CONTROL_CLK_SELECT_DSI] = VC4_ENCODER_TYPE_DSI0,
|
|
|
+ [PV_CONTROL_CLK_SELECT_DPI_SMI_HDMI] = VC4_ENCODER_TYPE_DPI,
|
|
|
+ },
|
|
|
};
|
|
|
|
|
|
static const struct vc4_crtc_data pv1_data = {
|
|
|
.hvs_channel = 2,
|
|
|
- .encoder0_type = VC4_ENCODER_TYPE_DSI1,
|
|
|
- .encoder1_type = VC4_ENCODER_TYPE_SMI,
|
|
|
+ .encoder_types = {
|
|
|
+ [PV_CONTROL_CLK_SELECT_DSI] = VC4_ENCODER_TYPE_DSI1,
|
|
|
+ [PV_CONTROL_CLK_SELECT_DPI_SMI_HDMI] = VC4_ENCODER_TYPE_SMI,
|
|
|
+ },
|
|
|
};
|
|
|
|
|
|
static const struct vc4_crtc_data pv2_data = {
|
|
|
.hvs_channel = 1,
|
|
|
- .encoder0_type = VC4_ENCODER_TYPE_VEC,
|
|
|
- .encoder1_type = VC4_ENCODER_TYPE_HDMI,
|
|
|
+ .encoder_types = {
|
|
|
+ [PV_CONTROL_CLK_SELECT_DPI_SMI_HDMI] = VC4_ENCODER_TYPE_HDMI,
|
|
|
+ [PV_CONTROL_CLK_SELECT_VEC] = VC4_ENCODER_TYPE_VEC,
|
|
|
+ },
|
|
|
};
|
|
|
|
|
|
static const struct of_device_id vc4_crtc_dt_match[] = {
|
|
@@ -894,17 +899,20 @@ static void vc4_set_crtc_possible_masks(struct drm_device *drm,
|
|
|
struct drm_crtc *crtc)
|
|
|
{
|
|
|
struct vc4_crtc *vc4_crtc = to_vc4_crtc(crtc);
|
|
|
+ const struct vc4_crtc_data *crtc_data = vc4_crtc->data;
|
|
|
+ const enum vc4_encoder_type *encoder_types = crtc_data->encoder_types;
|
|
|
struct drm_encoder *encoder;
|
|
|
|
|
|
drm_for_each_encoder(encoder, drm) {
|
|
|
struct vc4_encoder *vc4_encoder = to_vc4_encoder(encoder);
|
|
|
-
|
|
|
- if (vc4_encoder->type == vc4_crtc->data->encoder0_type) {
|
|
|
- vc4_encoder->clock_select = 0;
|
|
|
- encoder->possible_crtcs |= drm_crtc_mask(crtc);
|
|
|
- } else if (vc4_encoder->type == vc4_crtc->data->encoder1_type) {
|
|
|
- vc4_encoder->clock_select = 1;
|
|
|
- encoder->possible_crtcs |= drm_crtc_mask(crtc);
|
|
|
+ int i;
|
|
|
+
|
|
|
+ for (i = 0; i < ARRAY_SIZE(crtc_data->encoder_types); i++) {
|
|
|
+ if (vc4_encoder->type == encoder_types[i]) {
|
|
|
+ vc4_encoder->clock_select = i;
|
|
|
+ encoder->possible_crtcs |= drm_crtc_mask(crtc);
|
|
|
+ break;
|
|
|
+ }
|
|
|
}
|
|
|
}
|
|
|
}
|