ARM: S5PV210: Add support for VPLL
[linux-2.6-block.git] / arch / arm / plat-s5p / clock.c
index aa96e335073b6a8829748996bc64e8f685fec2c3..4ca0759fa22877ea48cc3c7522bbfd11f7df3a6d 100644 (file)
@@ -69,6 +69,13 @@ struct clk clk_fout_epll = {
        .ctrlbit        = (1 << 31),
 };
 
+/* VPLL clock output */
+struct clk clk_fout_vpll = {
+       .name           = "fout_vpll",
+       .id             = -1,
+       .ctrlbit        = (1 << 31),
+};
+
 /* ARM clock */
 struct clk clk_arm = {
        .name           = "armclk",
@@ -133,6 +140,7 @@ static struct clk *s5p_clks[] __initdata = {
        &clk_fout_apll,
        &clk_fout_mpll,
        &clk_fout_epll,
+       &clk_fout_vpll,
        &clk_arm,
        &clk_vpll,
 };