summaryrefslogtreecommitdiff
path: root/drivers/video
diff options
context:
space:
mode:
authoryannick fertre <yannick.fertre@st.com>2018-03-02 17:59:23 +0300
committerAnatolij Gustschin <agust@denx.de>2018-03-19 12:51:58 +0300
commit2a0e878460164d90de5fa64b751fed9496b1372c (patch)
treefe645525963ca2323cc7f5f74ad2f59af652b826 /drivers/video
parentc4c33e9d8b467f66b8f64482c1c213dd92aaa0aa (diff)
downloadu-boot-2a0e878460164d90de5fa64b751fed9496b1372c.tar.xz
video: stm32: stm32_ltdc: set rate of the pixel clock
pxclk is useless to set pixel clock. Signed-off-by: yannick fertre <yannick.fertre@st.com>
Diffstat (limited to 'drivers/video')
-rw-r--r--drivers/video/stm32/stm32_ltdc.c52
1 files changed, 29 insertions, 23 deletions
diff --git a/drivers/video/stm32/stm32_ltdc.c b/drivers/video/stm32/stm32_ltdc.c
index 8d89b580d6..08e0afcc9e 100644
--- a/drivers/video/stm32/stm32_ltdc.c
+++ b/drivers/video/stm32/stm32_ltdc.c
@@ -301,9 +301,9 @@ static int stm32_ltdc_probe(struct udevice *dev)
struct video_priv *uc_priv = dev_get_uclass_priv(dev);
struct stm32_ltdc_priv *priv = dev_get_priv(dev);
struct udevice *panel;
- struct clk pclk, pxclk;
+ struct clk pclk;
struct reset_ctl rst;
- int ret;
+ int rate, ret;
priv->regs = (void *)dev_read_addr(dev);
if ((fdt_addr_t)priv->regs == FDT_ADDR_T_NONE) {
@@ -311,9 +311,16 @@ static int stm32_ltdc_probe(struct udevice *dev)
return -EINVAL;
}
- ret = uclass_first_device(UCLASS_PANEL, &panel);
+ ret = clk_get_by_index(dev, 0, &pclk);
if (ret) {
- debug("%s: panel device error %d\n", __func__, ret);
+ debug("%s: peripheral clock get error %d\n", __func__, ret);
+ return ret;
+ }
+
+ ret = clk_enable(&pclk);
+ if (ret) {
+ debug("%s: peripheral clock enable error %d\n",
+ __func__, ret);
return ret;
}
@@ -326,6 +333,12 @@ static int stm32_ltdc_probe(struct udevice *dev)
/* Reset */
reset_deassert(&rst);
+ ret = uclass_first_device(UCLASS_PANEL, &panel);
+ if (ret) {
+ debug("%s: panel device error %d\n", __func__, ret);
+ return ret;
+ }
+
ret = panel_enable_backlight(panel);
if (ret) {
debug("%s: panel %s enable backlight error %d\n",
@@ -333,31 +346,24 @@ static int stm32_ltdc_probe(struct udevice *dev)
return ret;
}
- ret = fdtdec_decode_display_timing(gd->fdt_blob, dev_of_offset(dev),
- 0, &priv->timing);
+ ret = fdtdec_decode_display_timing(gd->fdt_blob,
+ dev_of_offset(dev), 0,
+ &priv->timing);
if (ret) {
- debug("%s: decode display timing error %d\n", __func__, ret);
+ debug("%s: decode display timing error %d\n",
+ __func__, ret);
return -EINVAL;
}
- ret = clk_get_by_name(dev, "pclk", &pclk);
- if (ret) {
- debug("%s: peripheral clock get error %d\n", __func__, ret);
- return ret;
+ rate = clk_set_rate(&pclk, priv->timing.pixelclock.typ);
+ if (rate < 0) {
+ debug("%s: fail to set pixel clock %d hz %d hz\n",
+ __func__, priv->timing.pixelclock.typ, rate);
+ return rate;
}
- ret = clk_enable(&pclk);
- if (ret) {
- debug("%s: peripheral clock enable error %d\n", __func__, ret);
- return ret;
- }
-
- /* Verify pixel clock value if any & inform user accordingly */
- ret = clk_get_by_name(dev, "pxclk", &pxclk);
- if (!ret) {
- if (clk_get_rate(&pxclk) != priv->timing.pixelclock.typ)
- printf("Warning: please adjust ltdc pixel clock\n");
- }
+ debug("%s: Set pixel clock req %d hz get %d hz\n", __func__,
+ priv->timing.pixelclock.typ, rate);
/* TODO Below parameters are hard-coded for the moment... */
priv->l2bpp = VIDEO_BPP16;