/* * SPDX-License-Identifier: Apache-2.0 * * Copyright (C) 2021-2022, Intel Corporation * */ #include #include #include static int clk_get_rate(const struct device *dev, clock_control_subsys_t sub_system, uint32_t *rate) { ARG_UNUSED(dev); switch ((intptr_t) sub_system) { case INTEL_SOCFPGA_CLOCK_MPU: *rate = get_mpu_clk(); break; case INTEL_SOCFPGA_CLOCK_WDT: *rate = get_wdt_clk(); break; case INTEL_SOCFPGA_CLOCK_UART: *rate = get_uart_clk(); break; case INTEL_SOCFPGA_CLOCK_MMC: *rate = get_mmc_clk(); break; default: return -ENOTSUP; } return 0; } static const struct clock_control_driver_api clk_api = { .get_rate = clk_get_rate }; DEVICE_DT_DEFINE(DT_NODELABEL(clock), NULL, NULL, NULL, NULL, PRE_KERNEL_1, CONFIG_CLOCK_CONTROL_INIT_PRIORITY, &clk_api);