Kukjin Kim | 95af214 | 2011-12-22 23:28:28 +0100 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2011 Samsung Electronics Co., Ltd. |
| 3 | * http://www.samsung.com |
| 4 | * |
| 5 | * Common Header for S5P64X0 machines |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify |
| 8 | * it under the terms of the GNU General Public License version 2 as |
| 9 | * published by the Free Software Foundation. |
| 10 | */ |
| 11 | |
| 12 | #ifndef __ARCH_ARM_MACH_S5P64X0_COMMON_H |
| 13 | #define __ARCH_ARM_MACH_S5P64X0_COMMON_H |
| 14 | |
Robin Holt | 7b6d864 | 2013-07-08 16:01:40 -0700 | [diff] [blame] | 15 | #include <linux/reboot.h> |
| 16 | |
Kukjin Kim | 95af214 | 2011-12-22 23:28:28 +0100 | [diff] [blame] | 17 | void s5p6440_init_irq(void); |
| 18 | void s5p6450_init_irq(void); |
| 19 | void s5p64x0_init_io(struct map_desc *mach_desc, int size); |
| 20 | |
| 21 | void s5p6440_register_clocks(void); |
| 22 | void s5p6440_setup_clocks(void); |
| 23 | |
| 24 | void s5p6450_register_clocks(void); |
| 25 | void s5p6450_setup_clocks(void); |
| 26 | |
Robin Holt | 7b6d864 | 2013-07-08 16:01:40 -0700 | [diff] [blame] | 27 | void s5p64x0_restart(enum reboot_mode mode, const char *cmd); |
Kukjin Kim | 73aed8b | 2011-12-22 23:34:25 +0100 | [diff] [blame] | 28 | |
Kukjin Kim | 95af214 | 2011-12-22 23:28:28 +0100 | [diff] [blame] | 29 | #ifdef CONFIG_CPU_S5P6440 |
| 30 | |
| 31 | extern int s5p64x0_init(void); |
| 32 | extern void s5p6440_map_io(void); |
| 33 | extern void s5p6440_init_clocks(int xtal); |
| 34 | |
| 35 | extern void s5p6440_init_uarts(struct s3c2410_uartcfg *cfg, int no); |
| 36 | |
| 37 | #else |
| 38 | #define s5p6440_init_clocks NULL |
| 39 | #define s5p6440_init_uarts NULL |
| 40 | #define s5p6440_map_io NULL |
| 41 | #define s5p64x0_init NULL |
| 42 | #endif |
| 43 | |
| 44 | #ifdef CONFIG_CPU_S5P6450 |
| 45 | |
| 46 | extern int s5p64x0_init(void); |
| 47 | extern void s5p6450_map_io(void); |
| 48 | extern void s5p6450_init_clocks(int xtal); |
| 49 | |
| 50 | extern void s5p6450_init_uarts(struct s3c2410_uartcfg *cfg, int no); |
| 51 | |
| 52 | #else |
| 53 | #define s5p6450_init_clocks NULL |
| 54 | #define s5p6450_init_uarts NULL |
| 55 | #define s5p6450_map_io NULL |
| 56 | #define s5p64x0_init NULL |
| 57 | #endif |
| 58 | |
| 59 | #endif /* __ARCH_ARM_MACH_S5P64X0_COMMON_H */ |