blob: 563abd750f5bfec9725395577e4f7b0c3fe6bfca [file] [log] [blame]
Donghwa Lee283591f2012-04-05 19:36:10 +00001/*
2 * Copyright (C) 2012 Samsung Electronics
3 * Donghwa Lee <dh09.lee@samsung.com>
4 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Donghwa Lee283591f2012-04-05 19:36:10 +00006 */
7
8#include <common.h>
9#include <asm/io.h>
10#include <asm/arch/power.h>
11
12static void exynos4_mipi_phy_control(unsigned int dev_index,
13 unsigned int enable)
14{
15 struct exynos4_power *pmu =
16 (struct exynos4_power *)samsung_get_base_power();
17 unsigned int addr, cfg = 0;
18
19 if (dev_index == 0)
20 addr = (unsigned int)&pmu->mipi_phy0_control;
21 else
22 addr = (unsigned int)&pmu->mipi_phy1_control;
23
24
25 cfg = readl(addr);
26 if (enable)
27 cfg |= (EXYNOS_MIPI_PHY_MRESETN | EXYNOS_MIPI_PHY_ENABLE);
28 else
29 cfg &= ~(EXYNOS_MIPI_PHY_MRESETN | EXYNOS_MIPI_PHY_ENABLE);
30
31 writel(cfg, addr);
32}
33
34void set_mipi_phy_ctrl(unsigned int dev_index, unsigned int enable)
35{
36 if (cpu_is_exynos4())
37 exynos4_mipi_phy_control(dev_index, enable);
38}
Rajeshwari Shindec48ac112012-05-14 05:52:03 +000039
40void exynos5_set_usbhost_phy_ctrl(unsigned int enable)
41{
42 struct exynos5_power *power =
43 (struct exynos5_power *)samsung_get_base_power();
44
45 if (enable) {
46 /* Enabling USBHOST_PHY */
47 setbits_le32(&power->usbhost_phy_control,
48 POWER_USB_HOST_PHY_CTRL_EN);
49 } else {
50 /* Disabling USBHOST_PHY */
51 clrbits_le32(&power->usbhost_phy_control,
52 POWER_USB_HOST_PHY_CTRL_EN);
53 }
54}
55
56void set_usbhost_phy_ctrl(unsigned int enable)
57{
58 if (cpu_is_exynos5())
59 exynos5_set_usbhost_phy_ctrl(enable);
60}
Donghwa Leeb6516672012-07-02 01:15:56 +000061
Vivek Gautam80c4c592013-09-14 14:02:47 +053062static void exynos5_set_usbdrd_phy_ctrl(unsigned int enable)
63{
64 struct exynos5_power *power =
65 (struct exynos5_power *)samsung_get_base_power();
66
67 if (enable) {
68 /* Enabling USBDRD_PHY */
69 setbits_le32(&power->usbdrd_phy_control,
70 POWER_USB_DRD_PHY_CTRL_EN);
71 } else {
72 /* Disabling USBDRD_PHY */
73 clrbits_le32(&power->usbdrd_phy_control,
74 POWER_USB_DRD_PHY_CTRL_EN);
75 }
76}
77
78void set_usbdrd_phy_ctrl(unsigned int enable)
79{
80 if (cpu_is_exynos5())
81 exynos5_set_usbdrd_phy_ctrl(enable);
82}
83
Donghwa Leeb6516672012-07-02 01:15:56 +000084static void exynos5_dp_phy_control(unsigned int enable)
85{
86 unsigned int cfg;
87 struct exynos5_power *power =
88 (struct exynos5_power *)samsung_get_base_power();
89
90 cfg = readl(&power->dptx_phy_control);
91 if (enable)
92 cfg |= EXYNOS_DP_PHY_ENABLE;
93 else
94 cfg &= ~EXYNOS_DP_PHY_ENABLE;
95
96 writel(cfg, &power->dptx_phy_control);
97}
98
99void set_dp_phy_ctrl(unsigned int enable)
100{
101 if (cpu_is_exynos5())
102 exynos5_dp_phy_control(enable);
103}
Rajeshwari Shinde51ff1ed2013-02-12 20:40:01 +0000104
105static void exynos5_set_ps_hold_ctrl(void)
106{
107 struct exynos5_power *power =
108 (struct exynos5_power *)samsung_get_base_power();
109
110 /* Set PS-Hold high */
111 setbits_le32(&power->ps_hold_control,
112 EXYNOS_PS_HOLD_CONTROL_DATA_HIGH);
113}
114
115void set_ps_hold_ctrl(void)
116{
117 if (cpu_is_exynos5())
118 exynos5_set_ps_hold_ctrl();
119}
Rajeshwari Shindea0060762013-02-14 19:46:11 +0000120
121
122static void exynos5_set_xclkout(void)
123{
124 struct exynos5_power *power =
125 (struct exynos5_power *)samsung_get_base_power();
126
127 /* use xxti for xclk out */
128 clrsetbits_le32(&power->pmu_debug, PMU_DEBUG_CLKOUT_SEL_MASK,
129 PMU_DEBUG_XXTI);
130}
131
132void set_xclkout(void)
133{
134 if (cpu_is_exynos5())
135 exynos5_set_xclkout();
136}
Akshay Saraswat3a0b1da2013-02-25 01:13:06 +0000137
138/* Enables hardware tripping to power off the system when TMU fails */
139void set_hw_thermal_trip(void)
140{
141 if (cpu_is_exynos5()) {
142 struct exynos5_power *power =
143 (struct exynos5_power *)samsung_get_base_power();
144
145 /* PS_HOLD_CONTROL register ENABLE_HW_TRIP bit*/
146 setbits_le32(&power->ps_hold_control, POWER_ENABLE_HW_TRIP);
147 }
148}
Rajeshwari Shindedc20fdd2013-07-04 12:29:14 +0530149
150static uint32_t exynos5_get_reset_status(void)
151{
152 struct exynos5_power *power =
153 (struct exynos5_power *)samsung_get_base_power();
154
155 return power->inform1;
156}
157
158static uint32_t exynos4_get_reset_status(void)
159{
160 struct exynos4_power *power =
161 (struct exynos4_power *)samsung_get_base_power();
162
163 return power->inform1;
164}
165
166uint32_t get_reset_status(void)
167{
168 if (cpu_is_exynos5())
169 return exynos5_get_reset_status();
170 else
171 return exynos4_get_reset_status();
172}
173
174static void exynos5_power_exit_wakeup(void)
175{
176 struct exynos5_power *power =
177 (struct exynos5_power *)samsung_get_base_power();
178 typedef void (*resume_func)(void);
179
180 ((resume_func)power->inform0)();
181}
182
183static void exynos4_power_exit_wakeup(void)
184{
185 struct exynos4_power *power =
186 (struct exynos4_power *)samsung_get_base_power();
187 typedef void (*resume_func)(void);
188
189 ((resume_func)power->inform0)();
190}
191
192void power_exit_wakeup(void)
193{
194 if (cpu_is_exynos5())
195 exynos5_power_exit_wakeup();
196 else
197 exynos4_power_exit_wakeup();
198}