2008-07-10 04:54:03 +08:00
|
|
|
/*
|
|
|
|
* Copyright (C) 2007 Freescale Semiconductor, Inc. All rights reserved.
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify it
|
|
|
|
* under the terms of the GNU General Public License as published by the
|
|
|
|
* Free Software Foundation; either version 2 of the License, or (at your
|
|
|
|
* option) any later version.
|
|
|
|
*
|
|
|
|
* Prototypes for MPC512x shared code
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __MPC512X_H__
|
|
|
|
#define __MPC512X_H__
|
|
|
|
extern void __init mpc512x_init_IRQ(void);
|
2013-05-14 12:40:53 +08:00
|
|
|
extern void __init mpc512x_init_early(void);
|
2010-02-17 01:35:13 +08:00
|
|
|
extern void __init mpc512x_init(void);
|
2013-05-14 12:40:53 +08:00
|
|
|
extern void __init mpc512x_setup_arch(void);
|
2010-02-17 01:35:13 +08:00
|
|
|
extern int __init mpc5121_clk_init(void);
|
2013-04-04 11:57:30 +08:00
|
|
|
extern const char *mpc512x_select_psc_compat(void);
|
2013-06-10 16:13:52 +08:00
|
|
|
extern const char *mpc512x_select_reset_compat(void);
|
2010-02-17 01:36:26 +08:00
|
|
|
extern void mpc512x_restart(char *cmd);
|
2012-10-15 17:52:20 +08:00
|
|
|
|
2008-07-10 04:54:03 +08:00
|
|
|
#endif /* __MPC512X_H__ */
|