diff options
author | Sam Protsenko <semen.protsenko@linaro.org> | 2024-01-10 21:09:03 -0600 |
---|---|---|
committer | Minkyu Kang <mk7.kang@samsung.com> | 2024-01-24 11:23:20 +0900 |
commit | ff3e8b8c6c225aa088cc2b74ad7ac03d364127e4 (patch) | |
tree | a8dbb368bb4a003244bbb20b9ee63b5c5bf2fbe4 /drivers/clk/exynos/Makefile | |
parent | 0caae9fdc2fc3dab45ec93d18a64e0027543c58c (diff) | |
download | u-boot-ff3e8b8c6c225aa088cc2b74ad7ac03d364127e4.tar.gz |
clk: exynos: Add Samsung clock framework
Heavily based on Linux kernel Samsung clock framework, with some changes
to accommodate the differences in U-Boot CCF implementation. It's also
quite minimal as compared to the Linux version.
Signed-off-by: Sam Protsenko <semen.protsenko@linaro.org>
Reviewed-by: Chanho Park <chanho61.park@samsung.com>
Signed-off-by: Minkyu Kang <mk7.kang@samsung.com>
Diffstat (limited to 'drivers/clk/exynos/Makefile')
-rw-r--r-- | drivers/clk/exynos/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/drivers/clk/exynos/Makefile b/drivers/clk/exynos/Makefile index 7faf238571e..04c5b9a39e1 100644 --- a/drivers/clk/exynos/Makefile +++ b/drivers/clk/exynos/Makefile @@ -1,6 +1,11 @@ # SPDX-License-Identifier: GPL-2.0+ # # Copyright (C) 2016 Samsung Electronics -# Thomas Abraham <thomas.ab@samsung.com> +# Copyright (C) 2023 Linaro Ltd. +# +# Authors: +# Thomas Abraham <thomas.ab@samsung.com> +# Sam Protsenko <semen.protsenko@linaro.org> -obj-$(CONFIG_CLK_EXYNOS7420) += clk-exynos7420.o +obj-$(CONFIG_$(SPL_TPL_)CLK_CCF) += clk.o clk-pll.o +obj-$(CONFIG_CLK_EXYNOS7420) += clk-exynos7420.o |