• Boris BREZILLON's avatar
    ARM: at91: add Kconfig options for common clk support · c8a8c630
    Boris BREZILLON authored
    This patch adds the following Kconfig options to prepare the transition to
    common clk framework:
    
    - AT91_USE_OLD_CLK: this option is selected by every SoC which does not
      support new at91 clks based on common clk framework (SoC which does not
      define the clock tree in its device tree).
      This options is also selected when the user choose non dt boards support
      (new at91 clks can only be registered from a device tree definition).
    
    - COMMON_CLK_AT91: this option cannot be selected directly. Instead it is
      enabled if these 3 conditions are met:
       * at least one of the selected SoCs have a PMC (Power Management
         Controller) Unit
       * device tree support is enabled
       * the old at91 clk implementation is disabled (every selected SoC define
         its clks in its device tree and non dt boards support is disabled)
    
    - OLD_CLK_AT91: this option cannot be selected directly. Instead it is
      enabled if these 2 conditions are met:
       * at least one of the selected SoCs have a PMC (Power Management
         Controller) Unit
       * at least one of the selected SoCs does not define its clks in its
         device tree or non dt-boards support is enabled
    
    This patch selects AT91_USE_OLD_CLK in all currently supported SoCs. These
    selects will be removed after clk definitions are properly added in each
    soc's device tree.
    It also selects AT91_USE_OLD_CLK in all non-dt boards support.
    
    AT91_PMC_UNIT references are replaced by OLD_CLK_AT91, because PMC Unit is
    enabled for both old and common clk implementations, and old clk
    implementation should not be compiled if COMMON_CLK is enabled.
    
    To avoid future link errors, a new stub is created for at91_dt_clock_init
    function if OLD_CLK_AT91 is disabled.
    
    A new check is added in dt init functions (setup.c) to prepare for SoCs
    supporting new clk implementation. These SoCs won't setup the
    register_clocks callback (clk registration is done using of_clk_init).
    Signed-off-by: default avatarBoris BREZILLON <b.brezillon@overkiz.com>
    Acked-by: default avatarMike Turquette <mturquette@linaro.org>
    Signed-off-by: default avatarNicolas Ferre <nicolas.ferre@atmel.com>
    c8a8c630
generic.h 2.93 KB