[coreboot-gerrit] New patch to review for coreboot: rockchip/rk3288: Remove 1392MHz option for RK3288 APLL

Patrick Georgi (pgeorgi@google.com) gerrit at coreboot.org
Fri Oct 23 13:25:44 CEST 2015


Patrick Georgi (pgeorgi at google.com) just uploaded a new patch set to gerrit, which you can find at http://review.coreboot.org/12138

-gerrit

commit 4908a033fe74fb0ef0d46eaeddfa2c980948def8
Author: David Hendricks <dhendrix at chromium.org>
Date:   Fri Sep 25 15:31:03 2015 -0700

    rockchip/rk3288: Remove 1392MHz option for RK3288 APLL
    
    It's no longer used.
    
    BUG=none
    BRANCH=none
    TEST=it compiles
    
    Change-Id: I3d9385e0e1f14977c1632f3a8dda771c684ce458
    Signed-off-by: Patrick Georgi <pgeorgi at chromium.org>
    Original-Commit-Id: 5381b6434996da10706dd358928f98703ac0892c
    Original-Signed-off-by: David Hendricks <dhendrix at chromium.org>
    Original-Change-Id: Ib0cfaf1bb173a7150f7ff504b9f58a62eb82e781
    Original-Reviewed-on: https://chromium-review.googlesource.com/302634
---
 src/soc/rockchip/rk3288/clock.c             | 2 --
 src/soc/rockchip/rk3288/include/soc/clock.h | 1 -
 2 files changed, 3 deletions(-)

diff --git a/src/soc/rockchip/rk3288/clock.c b/src/soc/rockchip/rk3288/clock.c
index 1d163bf..0df2aa7 100644
--- a/src/soc/rockchip/rk3288/clock.c
+++ b/src/soc/rockchip/rk3288/clock.c
@@ -79,12 +79,10 @@ static const struct pll_div cpll_init_cfg = PLL_DIVISORS(CPLL_HZ, 1, 2);
 /* See linux/drivers/clk/rockchip/clk-rk3288.c for more APLL combinations */
 static const struct pll_div apll_1800_cfg = PLL_DIVISORS(1800*MHz, 1, 1);
 static const struct pll_div apll_1416_cfg = PLL_DIVISORS(1416*MHz, 1, 1);
-static const struct pll_div apll_1392_cfg = PLL_DIVISORS(1392*MHz, 1, 1);
 static const struct pll_div apll_600_cfg = PLL_DIVISORS(600*MHz, 1, 2);
 static const struct pll_div *apll_cfgs[] = {
 	[APLL_1800_MHZ] = &apll_1800_cfg,
 	[APLL_1416_MHZ] = &apll_1416_cfg,
-	[APLL_1392_MHZ] = &apll_1392_cfg,
 	[APLL_600_MHZ] = &apll_600_cfg,
 };
 
diff --git a/src/soc/rockchip/rk3288/include/soc/clock.h b/src/soc/rockchip/rk3288/include/soc/clock.h
index 39842a1..a166a59 100644
--- a/src/soc/rockchip/rk3288/include/soc/clock.h
+++ b/src/soc/rockchip/rk3288/include/soc/clock.h
@@ -31,7 +31,6 @@
 enum apll_frequencies {
 	APLL_1800_MHZ,
 	APLL_1416_MHZ,
-	APLL_1392_MHZ,
 	APLL_600_MHZ,
 };
 



More information about the coreboot-gerrit mailing list