| 
									
										
										
										
											2011-12-27 08:18:36 +01:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * Copyright (c) 2011 Samsung Electronics Co., Ltd. | 
					
						
							|  |  |  |  *		http://www.samsung.com
 | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * Common Header for EXYNOS machines | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * This program is free software; you can redistribute it and/or modify | 
					
						
							|  |  |  |  * it under the terms of the GNU General Public License version 2 as | 
					
						
							|  |  |  |  * published by the Free Software Foundation. | 
					
						
							|  |  |  |  */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #ifndef __ARCH_ARM_MACH_EXYNOS_COMMON_H
 | 
					
						
							|  |  |  | #define __ARCH_ARM_MACH_EXYNOS_COMMON_H
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-07-08 16:01:40 -07:00
										 |  |  | #include <linux/reboot.h>
 | 
					
						
							| 
									
										
										
										
											2013-03-09 17:03:05 +09:00
										 |  |  | #include <linux/of.h>
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2013-04-10 11:35:29 +02:00
										 |  |  | void mct_init(void __iomem *base, int irq_g0, int irq_l0, int irq_l1); | 
					
						
							| 
									
										
										
										
											2013-03-09 17:03:05 +09:00
										 |  |  | void exynos_init_time(void); | 
					
						
							| 
									
										
										
										
											2012-02-11 21:27:08 +09:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-08 13:15:22 +01:00
										 |  |  | struct map_desc; | 
					
						
							| 
									
										
										
										
											2013-06-19 01:36:47 +09:00
										 |  |  | void exynos_init_io(void); | 
					
						
							| 
									
										
										
										
											2013-07-08 16:01:40 -07:00
										 |  |  | void exynos4_restart(enum reboot_mode mode, const char *cmd); | 
					
						
							|  |  |  | void exynos5_restart(enum reboot_mode mode, const char *cmd); | 
					
						
							| 
									
										
										
										
											2012-04-26 10:35:40 +08:00
										 |  |  | void exynos_init_late(void); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-11 13:58:43 +09:00
										 |  |  | void exynos_firmware_init(void); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-04-26 10:35:40 +08:00
										 |  |  | #ifdef CONFIG_PM_GENERIC_DOMAINS
 | 
					
						
							|  |  |  | int exynos_pm_late_initcall(void); | 
					
						
							|  |  |  | #else
 | 
					
						
							| 
									
										
										
										
											2012-12-15 09:43:47 -08:00
										 |  |  | static inline int exynos_pm_late_initcall(void) { return 0; } | 
					
						
							| 
									
										
										
										
											2012-04-26 10:35:40 +08:00
										 |  |  | #endif
 | 
					
						
							| 
									
										
										
										
											2011-12-27 08:18:36 +01:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-09-08 13:15:22 +01:00
										 |  |  | extern struct smp_operations exynos_smp_ops; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern void exynos_cpu_die(unsigned int cpu); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2012-12-31 10:06:48 -08:00
										 |  |  | /* PMU(Power Management Unit) support */ | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | #define PMU_TABLE_END	NULL
 | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | enum sys_powerdown { | 
					
						
							|  |  |  | 	SYS_AFTR, | 
					
						
							|  |  |  | 	SYS_LPA, | 
					
						
							|  |  |  | 	SYS_SLEEP, | 
					
						
							|  |  |  | 	NUM_SYS_POWERDOWN, | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern unsigned long l2x0_regs_phys; | 
					
						
							|  |  |  | struct exynos_pmu_conf { | 
					
						
							|  |  |  | 	void __iomem *reg; | 
					
						
							|  |  |  | 	unsigned int val[NUM_SYS_POWERDOWN]; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | extern void exynos_sys_powerdown_conf(enum sys_powerdown mode); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2011-12-27 08:18:36 +01:00
										 |  |  | #endif /* __ARCH_ARM_MACH_EXYNOS_COMMON_H */
 |