]> git.kernelconcepts.de Git - karo-tx-uboot.git/commitdiff
video: ipu: initialize g_ipu_clk, g_ldb_clk statically KARO-TX6UL-2015-10-23
authorLothar Waßmann <LW@KARO-electronics.de>
Fri, 23 Oct 2015 10:46:03 +0000 (12:46 +0200)
committerLothar Waßmann <LW@KARO-electronics.de>
Fri, 23 Oct 2015 10:46:03 +0000 (12:46 +0200)
When the FB driver has not been initialized, booting Linux will hang
the system when ipuv3_fb_shutdown() is called from arch_preboot_os()
because clk_enable(g_ipu_clk) is a NOP with g_ipu_clk == NULL.
There is no need to initialize these variables at runtime, so use
static initialization to prevent this problem.

drivers/video/ipu_common.c

index ecfec7755a7f8aac5301fe6488ff7da8e9e7994d..355c697ef418e462e85d0d673e42141aad4b2117 100644 (file)
@@ -125,8 +125,8 @@ static struct clk ldb_clk = {
 };
 
 /* Globals */
-struct clk *g_ipu_clk;
-struct clk *g_ldb_clk;
+struct clk *g_ipu_clk = &ipu_clk;
+struct clk *g_ldb_clk = &ldb_clk;
 struct clk *g_di_clk[2];
 struct clk *g_pixel_clk[2];
 unsigned char g_dc_di_assignment[10];
@@ -409,10 +409,7 @@ int ipu_probe(int di, ipu_di_clk_parent_t di_clk_parent, int di_clk_val)
        g_di_clk[1] = &di_clk[1];
        g_di_clk[di]->rate = di_clk_val;
 
-       g_ipu_clk = &ipu_clk;
        debug("ipu_clk = %u\n", clk_get_rate(g_ipu_clk));
-
-       g_ldb_clk = &ldb_clk;
        debug("ldb_clk = %u\n", clk_get_rate(g_ldb_clk));
 
        ret = clk_enable(g_ipu_clk);