2019-05-27 08:55:01 +02:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later */
|
2008-07-09 14:54:03 -06:00
|
|
|
/*
|
|
|
|
|
* Copyright (C) 2007 Freescale Semiconductor, Inc. All rights reserved.
|
|
|
|
|
*
|
|
|
|
|
* Prototypes for MPC512x shared code
|
|
|
|
|
*/
|
|
|
|
|
|
|
|
|
|
#ifndef __MPC512X_H__
|
|
|
|
|
#define __MPC512X_H__
|
|
|
|
|
extern void __init mpc512x_init_IRQ(void);
|
2013-05-14 04:40:53 +00:00
|
|
|
extern void __init mpc512x_init_early(void);
|
2010-02-16 10:35:13 -07:00
|
|
|
extern void __init mpc512x_init(void);
|
2013-05-14 04:40:53 +00:00
|
|
|
extern void __init mpc512x_setup_arch(void);
|
2010-02-16 10:35:13 -07:00
|
|
|
extern int __init mpc5121_clk_init(void);
|
2021-12-16 17:00:34 -05:00
|
|
|
const char *__init mpc512x_select_psc_compat(void);
|
|
|
|
|
const char *__init mpc512x_select_reset_compat(void);
|
2016-07-12 10:54:52 +10:00
|
|
|
extern void __noreturn mpc512x_restart(char *cmd);
|
2012-10-15 09:52:20 +00:00
|
|
|
|
2008-07-09 14:54:03 -06:00
|
|
|
#endif /* __MPC512X_H__ */
|