mpc512x.h 616 B

12345678910111213141516171819
  1. /* SPDX-License-Identifier: GPL-2.0-or-later */
  2. /*
  3. * Copyright (C) 2007 Freescale Semiconductor, Inc. All rights reserved.
  4. *
  5. * Prototypes for MPC512x shared code
  6. */
  7. #ifndef __MPC512X_H__
  8. #define __MPC512X_H__
  9. extern void __init mpc512x_init_IRQ(void);
  10. extern void __init mpc512x_init_early(void);
  11. extern void __init mpc512x_init(void);
  12. extern void __init mpc512x_setup_arch(void);
  13. extern int __init mpc5121_clk_init(void);
  14. const char *__init mpc512x_select_psc_compat(void);
  15. const char *__init mpc512x_select_reset_compat(void);
  16. extern void __noreturn mpc512x_restart(char *cmd);
  17. #endif /* __MPC512X_H__ */