clk: tegra: add Tegra specific clocks
Add Tegra specific clocks, pll, pll_out, peripheral, frac_divider, super.
Signed-off-by: Prashant Gaikwad <pgaikwad@nvidia.com>
[swarren: alloc sizeof(*foo) not sizeof(struct foo), add comments re:
storing pointers to stack variables, make a timeout loop more idiomatic,
use _clk_pll_disable() not clk_disable_pll() from _program_pll() to
avoid redundant lock operations, unified tegra_clk_periph() and
tegra_clk_periph_nodiv(), unified tegra_clk_pll{,e}, rename all clock
registration functions so they don't have the same name as the clock
structs, return -EINVAL from clk_plle_enable when matching table rate
not found, pass ops to _tegra_clk_register_pll rather than a bool.]
Acked-by: Mike Turquette <mturquette@linaro.org>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
2013-01-11 11:46:20 +04:00
|
|
|
obj-y += clk.o
|
|
|
|
obj-y += clk-audio-sync.o
|
2015-05-13 17:58:36 +03:00
|
|
|
obj-y += clk-dfll.o
|
clk: tegra: add Tegra specific clocks
Add Tegra specific clocks, pll, pll_out, peripheral, frac_divider, super.
Signed-off-by: Prashant Gaikwad <pgaikwad@nvidia.com>
[swarren: alloc sizeof(*foo) not sizeof(struct foo), add comments re:
storing pointers to stack variables, make a timeout loop more idiomatic,
use _clk_pll_disable() not clk_disable_pll() from _program_pll() to
avoid redundant lock operations, unified tegra_clk_periph() and
tegra_clk_periph_nodiv(), unified tegra_clk_pll{,e}, rename all clock
registration functions so they don't have the same name as the clock
structs, return -EINVAL from clk_plle_enable when matching table rate
not found, pass ops to _tegra_clk_register_pll rather than a bool.]
Acked-by: Mike Turquette <mturquette@linaro.org>
Signed-off-by: Stephen Warren <swarren@nvidia.com>
2013-01-11 11:46:20 +04:00
|
|
|
obj-y += clk-divider.o
|
|
|
|
obj-y += clk-periph.o
|
|
|
|
obj-y += clk-periph-gate.o
|
|
|
|
obj-y += clk-pll.o
|
|
|
|
obj-y += clk-pll-out.o
|
|
|
|
obj-y += clk-super.o
|
2013-09-17 16:42:24 +04:00
|
|
|
obj-y += clk-tegra-audio.o
|
2013-09-04 18:04:19 +04:00
|
|
|
obj-y += clk-tegra-periph.o
|
2013-10-15 18:19:13 +04:00
|
|
|
obj-y += clk-tegra-pmc.o
|
|
|
|
obj-y += clk-tegra-fixed.o
|
2013-09-03 16:46:01 +04:00
|
|
|
obj-y += clk-tegra-super-gen4.o
|
2015-04-01 10:10:58 +03:00
|
|
|
obj-$(CONFIG_TEGRA_CLK_EMC) += clk-emc.o
|
2013-01-11 11:46:24 +04:00
|
|
|
obj-$(CONFIG_ARCH_TEGRA_2x_SOC) += clk-tegra20.o
|
2013-01-11 11:46:25 +04:00
|
|
|
obj-$(CONFIG_ARCH_TEGRA_3x_SOC) += clk-tegra30.o
|
2013-04-03 18:40:45 +04:00
|
|
|
obj-$(CONFIG_ARCH_TEGRA_114_SOC) += clk-tegra114.o
|
2015-04-01 10:10:58 +03:00
|
|
|
obj-$(CONFIG_ARCH_TEGRA_124_SOC) += clk-tegra124.o
|
2015-05-13 17:58:41 +03:00
|
|
|
obj-$(CONFIG_ARCH_TEGRA_124_SOC) += clk-tegra124-dfll-fcpu.o
|
2014-12-16 23:38:29 +03:00
|
|
|
obj-$(CONFIG_ARCH_TEGRA_132_SOC) += clk-tegra124.o
|
2015-05-13 17:58:41 +03:00
|
|
|
obj-y += cvb.o
|