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