2 * r8a7779 Power management support
4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Copyright (C) 2011 Magnus Damm
7 * This file is subject to the terms and conditions of the GNU General Public
8 * License. See the file "COPYING" in the main directory of this archive
21 #if defined(CONFIG_PM) || defined(CONFIG_SMP)
23 static void __init
r8a7779_sysc_init(void)
25 void __iomem
*base
= rcar_sysc_init(0xffd85000);
27 /* enable all interrupt sources, but do not use interrupt handler */
28 iowrite32(0x0131000e, base
+ SYSCIER
);
29 iowrite32(0, base
+ SYSCIMR
);
32 #else /* CONFIG_PM || CONFIG_SMP */
34 static inline void r8a7779_sysc_init(void) {}
36 #endif /* CONFIG_PM || CONFIG_SMP */
38 void __init
r8a7779_pm_init(void)