clk-exynos-arm64.h 617 B

1234567891011121314151617181920
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * Copyright (C) 2021 Linaro Ltd.
  4. * Copyright (C) 2021 Dávid Virág <[email protected]>
  5. * Author: Sam Protsenko <[email protected]>
  6. * Author: Dávid Virág <[email protected]>
  7. *
  8. * This file contains shared functions used by some arm64 Exynos SoCs,
  9. * such as Exynos7885 or Exynos850 to register and init CMUs.
  10. */
  11. #ifndef __CLK_EXYNOS_ARM64_H
  12. #define __CLK_EXYNOS_ARM64_H
  13. #include "clk.h"
  14. void exynos_arm64_register_cmu(struct device *dev,
  15. struct device_node *np, const struct samsung_cmu_info *cmu);
  16. #endif /* __CLK_EXYNOS_ARM64_H */