All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2] video, ipu: make ldb clock frequenz overwriteable through board code
@ 2015-04-20  5:53 Heiko Schocher
  2015-04-20  7:39 ` Anatolij Gustschin
  0 siblings, 1 reply; 2+ messages in thread
From: Heiko Schocher @ 2015-04-20  5:53 UTC (permalink / raw)
  To: u-boot

the ldb clock can be setup in board code (for example set through PLL5).
Update the ldb_clock rate also through board code.

This should be removed, if a clock framework is availiable.

Signed-off-by: Heiko Schocher <hs@denx.de>
Tested-by: Eric Nelson <eric.nelson@boundarydevices.com>

---

Changes in v2:
- add comment from Eric Nelson
  - move ipu_set_ldb_clock() from drivers/video/ipu.h to
    imx-common/video.h
  - remove g_ldb_clk with ldb_clk.rate, call ldb_clk directly,
    instead of using g_ldb_clk
 - add Tested-by from Eric Nelson

 arch/arm/include/asm/imx-common/video.h | 1 +
 drivers/video/ipu.h                     | 1 -
 drivers/video/ipu_common.c              | 8 ++++++++
 3 files changed, 9 insertions(+), 1 deletion(-)

diff --git a/arch/arm/include/asm/imx-common/video.h b/arch/arm/include/asm/imx-common/video.h
index 1a907d4..cad5f86 100644
--- a/arch/arm/include/asm/imx-common/video.h
+++ b/arch/arm/include/asm/imx-common/video.h
@@ -26,4 +26,5 @@ extern struct display_info_t const displays[];
 extern size_t display_count;
 #endif
 
+int ipu_set_ldb_clock(int rate);
 #endif
diff --git a/drivers/video/ipu.h b/drivers/video/ipu.h
index 091b58f..348be58 100644
--- a/drivers/video/ipu.h
+++ b/drivers/video/ipu.h
@@ -265,5 +265,4 @@ int ipu_dp_init(ipu_channel_t channel, uint32_t in_pixel_fmt,
 void ipu_dp_uninit(ipu_channel_t channel);
 void ipu_dp_dc_disable(ipu_channel_t channel, unsigned char swap);
 ipu_color_space_t format_to_colorspace(uint32_t fmt);
-
 #endif
diff --git a/drivers/video/ipu_common.c b/drivers/video/ipu_common.c
index 8ebb205..c851e4f 100644
--- a/drivers/video/ipu_common.c
+++ b/drivers/video/ipu_common.c
@@ -1198,3 +1198,11 @@ ipu_color_space_t format_to_colorspace(uint32_t fmt)
 	}
 	return RGB;
 }
+
+/* should removed when clk framework is availiable */
+int ipu_set_ldb_clock(int rate)
+{
+	ldb_clk.rate = rate;
+
+	return 0;
+}
-- 
2.1.0

^ permalink raw reply related	[flat|nested] 2+ messages in thread

* [U-Boot] [PATCH v2] video, ipu: make ldb clock frequenz overwriteable through board code
  2015-04-20  5:53 [U-Boot] [PATCH v2] video, ipu: make ldb clock frequenz overwriteable through board code Heiko Schocher
@ 2015-04-20  7:39 ` Anatolij Gustschin
  0 siblings, 0 replies; 2+ messages in thread
From: Anatolij Gustschin @ 2015-04-20  7:39 UTC (permalink / raw)
  To: u-boot

On Mon, 20 Apr 2015 07:53:48 +0200
Heiko Schocher <hs@denx.de> wrote:

> the ldb clock can be setup in board code (for example set through PLL5).
> Update the ldb_clock rate also through board code.
> 
> This should be removed, if a clock framework is availiable.
> 
> Signed-off-by: Heiko Schocher <hs@denx.de>
> Tested-by: Eric Nelson <eric.nelson@boundarydevices.com>
> 
> ---
> 
> Changes in v2:
> - add comment from Eric Nelson
>   - move ipu_set_ldb_clock() from drivers/video/ipu.h to
>     imx-common/video.h
>   - remove g_ldb_clk with ldb_clk.rate, call ldb_clk directly,
>     instead of using g_ldb_clk
>  - add Tested-by from Eric Nelson
> 
>  arch/arm/include/asm/imx-common/video.h | 1 +
>  drivers/video/ipu.h                     | 1 -
>  drivers/video/ipu_common.c              | 8 ++++++++
>  3 files changed, 9 insertions(+), 1 deletion(-)

applied to u-boot-video/master. Thanks!

--
Anatolij

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2015-04-20  7:39 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-04-20  5:53 [U-Boot] [PATCH v2] video, ipu: make ldb clock frequenz overwriteable through board code Heiko Schocher
2015-04-20  7:39 ` Anatolij Gustschin

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.