dm365_lowlevel.h 718 B

12345678910111213141516171819202122232425
  1. /*
  2. * SoC-specific lowlevel code for tms320dm365 and similar chips
  3. *
  4. * Copyright (C) 2011
  5. * Heiko Schocher, DENX Software Engineering, hs@denx.de.
  6. *
  7. * SPDX-License-Identifier: GPL-2.0+
  8. */
  9. #ifndef __DM365_LOWLEVEL_H
  10. #define __DM365_LOWLEVEL_H
  11. #include <common.h>
  12. #include <asm/arch/hardware.h>
  13. #include <asm/io.h>
  14. void dm365_waitloop(unsigned long loopcnt);
  15. int dm365_pll1_init(unsigned long pllmult, unsigned long prediv);
  16. int dm365_pll2_init(unsigned long pllm, unsigned long prediv);
  17. int dm365_ddr_setup(void);
  18. void dm365_psc_init(void);
  19. void dm365_pinmux_ctl(unsigned long offset, unsigned long mask,
  20. unsigned long value);
  21. void dm36x_lowlevel_init(ulong bootflag);
  22. #endif /* #ifndef __DM365_LOWLEVEL_H */