mirror of
https://github.com/AsahiLinux/u-boot
synced 2025-01-10 12:18:55 +00:00
1fcf190e70
This patch adds basic clock driver for Amlogic A1 Family which supports enabling/disabling some gates, getting frequencies and setting rate with limited reparenting. Signed-off-by: Igor Prusov <ivprusov@salutedevices.com> Reviewed-by: Simon Glass <sjg@chromium.org> Link: https://lore.kernel.org/r/20230925155209.130671-3-ivprusov@salutedevices.com Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
11 lines
342 B
Makefile
11 lines
342 B
Makefile
# SPDX-License-Identifier: GPL-2.0
|
|
#
|
|
# Copyright (c) 2019 Baylibre, SAS
|
|
# Jerome Brunet <jbrunet@baylibre.com>
|
|
|
|
obj-$(CONFIG_CLK_MESON_GX) += gxbb.o
|
|
obj-$(CONFIG_CLK_MESON_AXG) += axg.o
|
|
obj-$(CONFIG_CLK_MESON_AXG) += axg-ao.o
|
|
obj-$(CONFIG_CLK_MESON_G12A) += g12a.o
|
|
obj-$(CONFIG_CLK_MESON_G12A) += g12a-ao.o
|
|
obj-$(CONFIG_CLK_MESON_A1) += a1.o
|