]> git.sur5r.net Git - u-boot/commitdiff
Merge branch 'master' of git://git.denx.de/u-boot-rockchip
authorTom Rini <trini@konsulko.com>
Fri, 23 Jun 2017 15:02:21 +0000 (11:02 -0400)
committerTom Rini <trini@konsulko.com>
Fri, 23 Jun 2017 15:02:21 +0000 (11:02 -0400)
drivers/clk/rockchip/clk_rk3036.c
include/configs/rk3399_common.h
tools/rkcommon.c

index 28652df72d0444ff1f3764624f2ad4cc2c5cd1df..5ecf5129d81c41c6a9b9f198f480a7ca16536799 100644 (file)
@@ -40,7 +40,7 @@ enum {
                         #hz "Hz cannot be hit with PLL "\
                         "divisors on line " __stringify(__LINE__));
 
-/* use interge mode*/
+/* use integer mode*/
 static const struct pll_div apll_init_cfg = PLL_DIVISORS(APLL_HZ, 1, 3, 1);
 static const struct pll_div gpll_init_cfg = PLL_DIVISORS(GPLL_HZ, 2, 2, 1);
 
@@ -61,8 +61,8 @@ static int rkclk_set_pll(struct rk3036_cru *cru, enum rk_clk_id clk_id,
        assert(vco_hz >= VCO_MIN_HZ && vco_hz <= VCO_MAX_HZ &&
               output_hz >= OUTPUT_MIN_HZ && output_hz <= OUTPUT_MAX_HZ);
 
-       /* use interger mode */
-       rk_clrreg(&pll->con1, 1 << PLL_DSMPD_SHIFT);
+       /* use integer mode */
+       rk_setreg(&pll->con1, 1 << PLL_DSMPD_SHIFT);
 
        rk_clrsetreg(&pll->con0,
                     PLL_POSTDIV1_MASK | PLL_FBDIV_MASK,
index 7a8a442336a119aedffa067a11a0cb9c9d07a811..44dad570d3102bb02897df2bad5bbd4ca6d7ce0c 100644 (file)
@@ -31,7 +31,7 @@
 #define CONFIG_SYS_LOAD_ADDR           0x00800800
 #define CONFIG_SPL_STACK               0xff8effff
 #define CONFIG_SPL_TEXT_BASE           0xff8c2000
-#define CONFIG_SPL_MAX_SIZE            0x30000
+#define CONFIG_SPL_MAX_SIZE            0x30000 - 0x2000
 /*  BSS setup */
 #define CONFIG_SPL_BSS_START_ADDR       0xff8e0000
 #define CONFIG_SPL_BSS_MAX_SIZE         0x10000
index a583c0caa0d5d098eb25079f5fe1efb1808e3217..1056ffa2be062a6d7cb05c90a3d8642cc1f2a205 100644 (file)
@@ -76,7 +76,7 @@ static struct spl_info spl_infos[] = {
        { "rk3188", "RK31", 0x8000 - 0x800, true, false },
        { "rk3288", "RK32", 0x8000, false, false },
        { "rk3328", "RK32", 0x8000 - 0x1000, false, false },
-       { "rk3399", "RK33", 0x20000, false, true },
+       { "rk3399", "RK33", 0x30000 - 0x2000, false, true },
        { "rv1108", "RK11", 0x1800, false, false},
 };
 
@@ -226,11 +226,6 @@ static inline unsigned rkcommon_offset_to_spi(unsigned offset)
        return ((offset & ~0x7ff) << 1) + (offset & 0x7ff);
 }
 
-static inline unsigned rkcommon_spi_to_offset(unsigned offset)
-{
-       return ((offset & ~0x7ff) >> 1) + (offset & 0x7ff);
-}
-
 static int rkcommon_parse_header(const void *buf, struct header0_info *header0,
                                 struct spl_info **spl_info)
 {