summaryrefslogtreecommitdiff
path: root/arch/arm/mach-exynos/pmu.c
AgeCommit message (Collapse)AuthorFilesLines
2014-11-18ARM: EXYNOS: Remove EXYNOS3_XUSBXTI in PMU configuration registers to ↵Inha Song1-0/+5
control power state using syscon This patch remove EXYNOS3_XUSBXTI_SYS_PWR_REG in PMU configuration registers to control XUSBXTI power state using syscon. Change-Id: I594d316ab08e463f98338a8fac8860933755f1b9 Signed-off-by: Inha Song <ideal.song@samsung.com>
2014-11-18ARM: EXYNOS: Add PMU configuration registers to support suspend-to-RAM for ↵Chanwoo Choi1-1/+161
Exynos3250 This patch add PMU (Power Management Unit) configuration registers to support suspend-to-RAM for Exynos3250. This patch for Exynos3250 provides four power modes. (Normal/AFTR/W-AFTR/Sleep) Signed-off-by: Chanwoo Choi <cw00.choi@samsung.com>
2014-11-18ARM: EXYNOS: change the value of EXYNOS4X12_ISP_LOWPWRYounghwan Joo1-1/+1
This patch is to fix the value of EXYNOS4X12_ISP_LOWPWR register to zero at AFTR mode. It ensure the sub selection mux of mcuisp400 and isp200 reset a default position after power down Signed-off-by: Younghwan Joo <yhwan.joo@samsung.com> Signed-off-by: JaeYong Shin <jy2.shin@samsung.com> Signed-off-by: Sylwester Nawrocki <s.nawrocki@samsung.com>
2013-05-09ARM: EXYNOS5: Fix kernel dump in AFTR idle modeInderpal Singh1-3/+2
The kernel crashes while resuming from AFTR idle mode. It happens because L2 cache was not going into retention state. This patch configures the USE_RETENTION bit of ARM_L2_OPTION register so that it does not depend on MANUAL_L2RSTDISABLE_CONTROL of ARM_COMMON_OPTION register for L2RSTDISABLE signal. Signed-off-by: Inderpal Singh <inderpal.singh@linaro.org> Tested-by: Chander Kashyap <chander.kashyap@linaro.org> Signed-off-by: Olof Johansson <olof@lixom.net>
2013-01-10ARM: EXYNOS: move mach/pmu.h file into common.hKukjin Kim1-1/+2
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2012-07-13ARM: EXYNOS: Add missing static storage class specifier in pmu.c fileSachin Kamat1-2/+2
arch/arm/mach-exynos/pmu.c:318:14: warning: symbol 'exynos5_list_both_cnt_feed' was not declared. Should it be static? arch/arm/mach-exynos/pmu.c:332:14: warning: symbol 'exynos5_list_diable_wfi_wfe' was not declared. Should it be static? Signed-off-by: Sachin Kamat <sachin.kamat@linaro.org> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2012-07-12ARM: EXYNOS: Clear SYS_WDTRESET bit to use watchdog resetJonghwan Choi1-0/+14
When SYS_WDTRESET is set, watchdog timer reset request is ignored by power management unit. Signed-off-by: Jonghwan Choi <jhbird.choi@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2012-05-20ARM: EXYNOS: Support suspend and resume for EXYNOS5250Jongpill Lee1-0/+59
This patch adds function for suspend and resume of Exynos5250. Signed-off-by: Jongpill Lee <boyko.lee@samsung.com> [kgene.kim@samsung.com: re-worked on top of v3.4-rc7] Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2012-05-20ARM: EXYNOS: Add PMU table for EXYNOS5250Jongpill Lee1-18/+123
This patch adds pmu table setting feature for EXYNOS5250. Signed-off-by: Jongpill Lee <boyko.lee@samsung.com> [kgene.kim@samsung.com: re-worked on top of v3.4-rc7] Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2012-05-15ARM: EXYNOS: Support Suspend/Resume for EXYNOS4412Inderpal Singh1-4/+20
This patch provides the suspend/resume support for EXYNOS4412. Signed-off-by: Inderpal Singh <inderpal.singh@linaro.org> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
2011-11-06ARM: EXYNOS: Add ARCH_EXYNOS and reorganize arch/arm/mach-exynosKukjin Kim1-0/+230
The arch/arm/mach-exynos4 directory (CONFIG_ARCH_EXYNOS4) has made for plaforms based on EXYNOS4 SoCs. But since upcoming Samsung's SoCs such as EXYNOS5 (ARM Cortex A15) can reuse most codes in current mach-exynos4, one mach-exynos directory will be used for them. This patch changes to CONFIG_ARCH_EXYNOS (arch/arm/mach-exynos) but keeps original CONFIG_ARCH_EXYNOS4 in mach-exynos/Kconfig to avoid changing in driver side. Cc: Arnd Bergmann <arnd@arndb.de> Cc: Russell King <rmk+kernel@arm.linux.org.uk> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>