mirror of
https://github.com/smaeul/u-boot.git
synced 2025-10-27 01:58:19 +00:00
Amlogic SoCs embeds an hardware clock measure block, port it
from Linux and implement it as a UCLK_CLK with only the dump
op and fail-only xlate.
Based on the Linux driver introduced in [1].
[1] commit 2b45ebef39a2 ("soc: amlogic: Add Meson Clock Measure driver").
Reviewed-by: Sean Anderson <seanga2@gmail.com>
Signed-off-by: Neil Armstrong <neil.armstrong@linaro.org>
Link: https://lore.kernel.org/r/20231218-uboot-meson-clk-msr-v3-1-acf4d90ccfee@linaro.org
13 lines
387 B
Makefile
13 lines
387 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
|
|
obj-$(CONFIG_CLK_MESON_MSR) += clk-measure.o
|