vc4_hdmi: BCM2835 requires a fixed hsm clock for CEC to work

Signed-off-by: popcornmix <popcornmix@gmail.com>
This commit is contained in:
popcornmix
2020-04-27 19:07:50 +01:00
parent f0427c3de6
commit 87fa6bbcf4
2 changed files with 29 additions and 6 deletions

View File

@@ -569,12 +569,7 @@ static void vc4_hdmi_encoder_enable(struct drm_encoder *encoder)
return;
}
/*
* The HSM rate needs to be slightly greater than the pixel clock, with
* a minimum of 108MHz.
* Use 101% as this is what the firmware uses.
*/
hsm_rate = max_t(unsigned long, 108000000, (pixel_rate / 100) * 101);
hsm_rate = vc4_hdmi->variant->calc_hsm_clock(vc4_hdmi, pixel_rate);
ret = clk_set_rate(vc4_hdmi->hsm_clock, hsm_rate);
if (ret) {
DRM_ERROR("Failed to set HSM clock rate: %d\n", ret);
@@ -742,6 +737,28 @@ static u32 vc5_hdmi_get_hsm_clock(struct vc4_hdmi *vc4_hdmi)
return 108000000;
}
static u32 vc4_hdmi_calc_hsm_clock(struct vc4_hdmi *vc4_hdmi, unsigned long pixel_rate)
{
/*
* This is the rate that is set by the firmware. The number
* needs to be a bit higher than the pixel clock rate
* (generally 148.5Mhz).
*/
return 163682864;
}
static u32 vc5_hdmi_calc_hsm_clock(struct vc4_hdmi *vc4_hdmi, unsigned long pixel_rate)
{
/*
* The HSM rate needs to be slightly greater than the pixel clock, with
* a minimum of 108MHz.
* Use 101% as this is what the firmware uses.
*/
return max_t(unsigned long, 108000000, (pixel_rate / 100) * 101);
}
static u32 vc4_hdmi_channel_map(struct vc4_hdmi *vc4_hdmi, u32 channel_mask)
{
int i;
@@ -1737,6 +1754,7 @@ static const struct vc4_hdmi_variant bcm2835_variant = {
.phy_rng_enable = vc4_hdmi_phy_rng_enable,
.phy_rng_disable = vc4_hdmi_phy_rng_disable,
.get_hsm_clock = vc4_hdmi_get_hsm_clock,
.calc_hsm_clock = vc4_hdmi_calc_hsm_clock,
.channel_map = vc4_hdmi_channel_map,
};
@@ -1761,6 +1779,7 @@ static const struct vc4_hdmi_variant bcm2711_hdmi0_variant = {
.phy_rng_enable = vc5_hdmi_phy_rng_enable,
.phy_rng_disable = vc5_hdmi_phy_rng_disable,
.get_hsm_clock = vc5_hdmi_get_hsm_clock,
.calc_hsm_clock = vc5_hdmi_calc_hsm_clock,
.channel_map = vc5_hdmi_channel_map,
};
@@ -1785,6 +1804,7 @@ static const struct vc4_hdmi_variant bcm2711_hdmi1_variant = {
.phy_rng_enable = vc5_hdmi_phy_rng_enable,
.phy_rng_disable = vc5_hdmi_phy_rng_disable,
.get_hsm_clock = vc5_hdmi_get_hsm_clock,
.calc_hsm_clock = vc5_hdmi_calc_hsm_clock,
.channel_map = vc5_hdmi_channel_map,
};

View File

@@ -92,6 +92,9 @@ struct vc4_hdmi_variant {
/* Callback to get hsm clock */
u32 (*get_hsm_clock)(struct vc4_hdmi *vc4_hdmi);
/* Callback to get hsm clock */
u32 (*calc_hsm_clock)(struct vc4_hdmi *vc4_hdmi, unsigned long pixel_rate);
/* Callback to get channel map */
u32 (*channel_map)(struct vc4_hdmi *vc4_hdmi, u32 channel_mask);
};