1 /*
2  * Copyright (c) 2009 Samsung Electronics
3  * Kyungmin Park <kyungmin.park@samsung.com>
4  * Minkyu Kang <mk7.kang@samsung.com>
5  *
6  * SPDX-License-Identifier:	GPL-2.0+
7  */
8 
9 #ifndef __ASM_ARM_ARCH_POWER_H_
10 #define __ASM_ARM_ARCH_POWER_H_
11 
12 /*
13  * Power control
14  */
15 #define S5PC100_OTHERS			0xE0108200
16 #define S5PC100_RST_STAT		0xE0108300
17 #define S5PC100_SLEEP_WAKEUP		(1 << 3)
18 #define S5PC100_WAKEUP_STAT		0xE0108304
19 #define S5PC100_INFORM0			0xE0108400
20 
21 #define S5PC110_RST_STAT		0xE010A000
22 #define S5PC110_SLEEP_WAKEUP		(1 << 3)
23 #define S5PC110_WAKEUP_STAT		0xE010C200
24 #define S5PC110_OTHERS			0xE010E000
25 #define S5PC110_USB_PHY_CON		0xE010E80C
26 #define S5PC110_INFORM0			0xE010F000
27 
28 #endif
29