02 Jun, 2016

1 commit


03 Mar, 2016

1 commit


21 Jul, 2015

1 commit

  • Clock provider drivers generally shouldn't include clk.h because
    it's the consumer API. Only include clk.h in files that are
    using it. The clkdev.h header isn't always used either, so remove
    it and add in slab.h where files were relying on it to include
    slab for them.

    Cc: Chanwoo Choi
    Cc: Sylwester Nawrocki
    Cc: Krzysztof Kozlowski
    Cc: Kukjin Kim
    Signed-off-by: Stephen Boyd

    Stephen Boyd
     

30 Jun, 2014

3 commits


15 May, 2014

1 commit

  • Samsung CCF helper functions do not provide support to
    register multiple Clock Providers for a given SoC. Due to
    this limitation, SoC platforms are not able to use these
    helpers for registering multiple clock providers and are
    forced to bypass this layer.

    This layer is modified accordingly to enable the support
    for multiple clock providers.

    Clock file for exynos4, exynos5250, exynos5420, exynos5440,
    S3c64xx, S3c24xx are also modified as per changed helper functions.

    Signed-off-by: Rahul Sharma
    [t.figa: Modified s3c2410 clock driver as well]
    Signed-off-by: Tomasz Figa

    Rahul Sharma
     

13 May, 2014

1 commit

  • This driver can handle the clock controllers of the socs mentioned above,
    as they share a common clock tree with only small differences.

    The clock structure is built according to the manuals of the included
    SoCs and might include changes in comparison to the previous clock
    structure.

    As pll-rate-tables only the 12mhz variants are currently included.
    The original code was wrongly checking for 169mhz xti values [a 0 to much
    at the end], so the original 16mhz pll table would have never been
    included and its values are so obscure that I have no possibility to
    at least check their sane-ness. When using the formula from the manual
    the resulting frequency is near the table value but still slightly off.

    Signed-off-by: Heiko Stuebner
    Acked-by: Mike Turquette
    Signed-off-by: Kukjin Kim

    Heiko Stuebner