pll.h 578 B

123456789101112131415161718192021
  1. /*
  2. * Copyright (C) 2016 Socionext Inc.
  3. * Author: Masahiro Yamada <yamada.masahiro@socionext.com>
  4. *
  5. * SPDX-License-Identifier: GPL-2.0+
  6. */
  7. #ifndef MACH_PLL_H
  8. #define MACH_PLL_H
  9. #define UNIPHIER_PLL_FREQ_DEFAULT (0)
  10. void uniphier_ld4_dpll_ssc_en(void);
  11. int uniphier_ld20_sscpll_init(unsigned long reg_base, unsigned int freq,
  12. unsigned int ssc_rate, unsigned int divn);
  13. int uniphier_ld20_sscpll_ssc_en(unsigned long reg_base);
  14. int uniphier_ld20_vpll27_init(unsigned long reg_base);
  15. int uniphier_ld20_dspll_init(unsigned long reg_base);
  16. #endif /* MACH_PLL_H */