diff options
Diffstat (limited to 'arch/ppc/syslib/ibm440gp_common.h')
-rw-r--r-- | arch/ppc/syslib/ibm440gp_common.h | 35 |
1 files changed, 35 insertions, 0 deletions
diff --git a/arch/ppc/syslib/ibm440gp_common.h b/arch/ppc/syslib/ibm440gp_common.h new file mode 100644 index 000000000000..a054d83cb1ac --- /dev/null +++ b/arch/ppc/syslib/ibm440gp_common.h | |||
@@ -0,0 +1,35 @@ | |||
1 | /* | ||
2 | * arch/ppc/kernel/ibm440gp_common.h | ||
3 | * | ||
4 | * PPC440GP system library | ||
5 | * | ||
6 | * Eugene Surovegin <eugene.surovegin@zultys.com> or <ebs@ebshome.net> | ||
7 | * Copyright (c) 2003 Zultys Technologies | ||
8 | * | ||
9 | * This program is free software; you can redistribute it and/or modify it | ||
10 | * under the terms of the GNU General Public License as published by the | ||
11 | * Free Software Foundation; either version 2 of the License, or (at your | ||
12 | * option) any later version. | ||
13 | * | ||
14 | */ | ||
15 | #ifdef __KERNEL__ | ||
16 | #ifndef __PPC_SYSLIB_IBM440GP_COMMON_H | ||
17 | #define __PPC_SYSLIB_IBM440GP_COMMON_H | ||
18 | |||
19 | #ifndef __ASSEMBLY__ | ||
20 | |||
21 | #include <linux/config.h> | ||
22 | #include <linux/init.h> | ||
23 | #include <syslib/ibm44x_common.h> | ||
24 | |||
25 | /* | ||
26 | * Please, refer to the Figure 13.1 in 440GP user manual | ||
27 | * | ||
28 | * if internal UART clock is used, ser_clk is ignored | ||
29 | */ | ||
30 | void ibm440gp_get_clocks(struct ibm44x_clocks*, unsigned int sys_clk, | ||
31 | unsigned int ser_clk) __init; | ||
32 | |||
33 | #endif /* __ASSEMBLY__ */ | ||
34 | #endif /* __PPC_SYSLIB_IBM440GP_COMMON_H */ | ||
35 | #endif /* __KERNEL__ */ | ||