blob: 53736ac4000b417985b8dfb9172250cee4673c62 [file] [log] [blame]
Jeff Ohlstein2b9c21c2012-04-30 18:57:53 -07001/* Copyright (c) 2010-2012, Code Aurora Forum. All rights reserved.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07002 *
3 * This program is free software; you can redistribute it and/or modify
4 * it under the terms of the GNU General Public License version 2 and
5 * only version 2 as published by the Free Software Foundation.
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 */
13
14#include <linux/module.h>
15#include <linux/moduleparam.h>
16#include <linux/kernel.h>
17#include <linux/init.h>
18#include <linux/reboot.h>
19#include <linux/io.h>
20#include <linux/delay.h>
21#include <linux/pm.h>
Abhijeet Dharmapurikar6d565fd2011-09-15 18:49:56 -070022#include <linux/cpu.h>
23#include <linux/interrupt.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070024#include <linux/mfd/pmic8058.h>
25#include <linux/mfd/pmic8901.h>
Jeff Ohlstein28009a82011-07-25 19:21:26 -070026#include <linux/mfd/pm8xxx/misc.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070027
28#include <asm/mach-types.h>
Subbaraman Narayanamurthy0c7a2872012-09-14 13:32:08 -070029#include <asm/cacheflush.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070030
31#include <mach/msm_iomap.h>
32#include <mach/restart.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070033#include <mach/socinfo.h>
Abhijeet Dharmapurikar6d565fd2011-09-15 18:49:56 -070034#include <mach/irqs.h>
Abhijeet Dharmapurikar9259fef2011-09-24 19:07:48 -070035#include <mach/scm.h>
36#include "msm_watchdog.h"
Rohit Vaswanif688fa62011-10-13 18:13:10 -070037#include "timer.h"
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070038
Rohit Vaswanif688fa62011-10-13 18:13:10 -070039#define WDT0_RST 0x38
40#define WDT0_EN 0x40
41#define WDT0_BARK_TIME 0x4C
42#define WDT0_BITE_TIME 0x5C
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070043
44#define PSHOLD_CTL_SU (MSM_TLMM_BASE + 0x820)
45
46#define RESTART_REASON_ADDR 0x65C
47#define DLOAD_MODE_ADDR 0x0
48
Abhijeet Dharmapurikar9259fef2011-09-24 19:07:48 -070049#define SCM_IO_DISABLE_PMIC_ARBITER 1
50
Stepan Moskovchenkoa000d132012-08-14 21:05:14 -070051#ifdef CONFIG_MSM_RESTART_V2
52#define use_restart_v2() 1
53#else
54#define use_restart_v2() 0
55#endif
56
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070057static int restart_mode;
58void *restart_reason;
59
Abhijeet Dharmapurikar6d565fd2011-09-15 18:49:56 -070060int pmic_reset_irq;
Rohit Vaswanif688fa62011-10-13 18:13:10 -070061static void __iomem *msm_tmr0_base;
Abhijeet Dharmapurikar6d565fd2011-09-15 18:49:56 -070062
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070063#ifdef CONFIG_MSM_DLOAD_MODE
64static int in_panic;
65static void *dload_mode_addr;
66
67/* Download mode master kill-switch */
68static int dload_set(const char *val, struct kernel_param *kp);
69static int download_mode = 1;
70module_param_call(download_mode, dload_set, param_get_int,
71 &download_mode, 0644);
72
73static int panic_prep_restart(struct notifier_block *this,
74 unsigned long event, void *ptr)
75{
76 in_panic = 1;
77 return NOTIFY_DONE;
78}
79
80static struct notifier_block panic_blk = {
81 .notifier_call = panic_prep_restart,
82};
83
84static void set_dload_mode(int on)
85{
86 if (dload_mode_addr) {
87 __raw_writel(on ? 0xE47B337D : 0, dload_mode_addr);
88 __raw_writel(on ? 0xCE14091A : 0,
89 dload_mode_addr + sizeof(unsigned int));
90 mb();
91 }
92}
93
94static int dload_set(const char *val, struct kernel_param *kp)
95{
96 int ret;
97 int old_val = download_mode;
98
99 ret = param_set_int(val, kp);
100
101 if (ret)
102 return ret;
103
104 /* If download_mode is not zero or one, ignore. */
105 if (download_mode >> 1) {
106 download_mode = old_val;
107 return -EINVAL;
108 }
109
110 set_dload_mode(download_mode);
111
112 return 0;
113}
114#else
115#define set_dload_mode(x) do {} while (0)
116#endif
117
118void msm_set_restart_mode(int mode)
119{
120 restart_mode = mode;
121}
122EXPORT_SYMBOL(msm_set_restart_mode);
123
Abhijeet Dharmapurikar6d565fd2011-09-15 18:49:56 -0700124static void __msm_power_off(int lower_pshold)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700125{
Abhijeet Dharmapurikar6d565fd2011-09-15 18:49:56 -0700126 printk(KERN_CRIT "Powering off the SoC\n");
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700127#ifdef CONFIG_MSM_DLOAD_MODE
128 set_dload_mode(0);
129#endif
Jeff Ohlstein28009a82011-07-25 19:21:26 -0700130 pm8xxx_reset_pwr_off(0);
Anirudh Ghayalc2019332011-11-12 06:29:10 +0530131
Abhijeet Dharmapurikar9259fef2011-09-24 19:07:48 -0700132 if (lower_pshold) {
Shashank Mittale77ce162012-08-28 18:19:20 -0700133 if (!use_restart_v2())
134 __raw_writel(0, PSHOLD_CTL_SU);
135 else
136 __raw_writel(0, MSM_MPM2_PSHOLD_BASE);
137
Abhijeet Dharmapurikar9259fef2011-09-24 19:07:48 -0700138 mdelay(10000);
139 printk(KERN_ERR "Powering off has failed\n");
140 }
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700141 return;
142}
143
Abhijeet Dharmapurikar6d565fd2011-09-15 18:49:56 -0700144static void msm_power_off(void)
145{
146 /* MSM initiated power off, lower ps_hold */
147 __msm_power_off(1);
148}
149
150static void cpu_power_off(void *data)
151{
Abhijeet Dharmapurikar9259fef2011-09-24 19:07:48 -0700152 int rc;
153
Abhijeet Dharmapurikar6d565fd2011-09-15 18:49:56 -0700154 pr_err("PMIC Initiated shutdown %s cpu=%d\n", __func__,
155 smp_processor_id());
Abhijeet Dharmapurikar9259fef2011-09-24 19:07:48 -0700156 if (smp_processor_id() == 0) {
Abhijeet Dharmapurikar6d565fd2011-09-15 18:49:56 -0700157 /*
158 * PMIC initiated power off, do not lower ps_hold, pmic will
159 * shut msm down
160 */
161 __msm_power_off(0);
162
Abhijeet Dharmapurikar9259fef2011-09-24 19:07:48 -0700163 pet_watchdog();
164 pr_err("Calling scm to disable arbiter\n");
165 /* call secure manager to disable arbiter and never return */
166 rc = scm_call_atomic1(SCM_SVC_PWR,
167 SCM_IO_DISABLE_PMIC_ARBITER, 1);
168
169 pr_err("SCM returned even when asked to busy loop rc=%d\n", rc);
170 pr_err("waiting on pmic to shut msm down\n");
171 }
172
Abhijeet Dharmapurikar6d565fd2011-09-15 18:49:56 -0700173 preempt_disable();
174 while (1)
175 ;
176}
177
178static irqreturn_t resout_irq_handler(int irq, void *dev_id)
179{
180 pr_warn("%s PMIC Initiated shutdown\n", __func__);
181 oops_in_progress = 1;
182 smp_call_function_many(cpu_online_mask, cpu_power_off, NULL, 0);
183 if (smp_processor_id() == 0)
184 cpu_power_off(NULL);
185 preempt_disable();
186 while (1)
187 ;
188 return IRQ_HANDLED;
189}
190
Stepan Moskovchenkoa000d132012-08-14 21:05:14 -0700191static void msm_restart_prepare(const char *cmd)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700192{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700193#ifdef CONFIG_MSM_DLOAD_MODE
194
195 /* This looks like a normal reboot at this point. */
196 set_dload_mode(0);
197
198 /* Write download mode flags if we're panic'ing */
199 set_dload_mode(in_panic);
200
201 /* Write download mode flags if restart_mode says so */
202 if (restart_mode == RESTART_DLOAD)
203 set_dload_mode(1);
204
205 /* Kill download mode if master-kill switch is set */
206 if (!download_mode)
207 set_dload_mode(0);
208#endif
209
Jeff Ohlstein28009a82011-07-25 19:21:26 -0700210 pm8xxx_reset_pwr_off(1);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700211
212 if (cmd != NULL) {
213 if (!strncmp(cmd, "bootloader", 10)) {
214 __raw_writel(0x77665500, restart_reason);
215 } else if (!strncmp(cmd, "recovery", 8)) {
216 __raw_writel(0x77665502, restart_reason);
217 } else if (!strncmp(cmd, "oem-", 4)) {
218 unsigned long code;
219 code = simple_strtoul(cmd + 4, NULL, 16) & 0xff;
220 __raw_writel(0x6f656d00 | code, restart_reason);
221 } else {
222 __raw_writel(0x77665501, restart_reason);
223 }
224 }
Subbaraman Narayanamurthy0c7a2872012-09-14 13:32:08 -0700225
226 flush_cache_all();
Stepan Moskovchenkoa000d132012-08-14 21:05:14 -0700227}
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700228
Stepan Moskovchenkoa000d132012-08-14 21:05:14 -0700229void msm_restart(char mode, const char *cmd)
230{
231 printk(KERN_NOTICE "Going down for restart now\n");
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700232
Subbaraman Narayanamurthye31f2792012-08-22 21:07:22 -0700233 msm_restart_prepare(cmd);
234
Stepan Moskovchenkoa000d132012-08-14 21:05:14 -0700235 if (!use_restart_v2()) {
Stepan Moskovchenkoa000d132012-08-14 21:05:14 -0700236 __raw_writel(0, msm_tmr0_base + WDT0_EN);
237 if (!(machine_is_msm8x60_fusion() ||
238 machine_is_msm8x60_fusn_ffa())) {
239 mb();
240 /* Actually reset the chip */
241 __raw_writel(0, PSHOLD_CTL_SU);
242 mdelay(5000);
243 pr_notice("PS_HOLD didn't work, falling back to watchdog\n");
244 }
245
246 __raw_writel(1, msm_tmr0_base + WDT0_RST);
247 __raw_writel(5*0x31F3, msm_tmr0_base + WDT0_BARK_TIME);
248 __raw_writel(0x31F3, msm_tmr0_base + WDT0_BITE_TIME);
249 __raw_writel(1, msm_tmr0_base + WDT0_EN);
250 } else
251 __raw_writel(0, MSM_MPM2_PSHOLD_BASE);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700252
253 mdelay(10000);
254 printk(KERN_ERR "Restarting has failed\n");
255}
256
Jeff Ohlsteina238a9852012-05-14 15:45:54 -0700257static int __init msm_pmic_restart_init(void)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700258{
Abhijeet Dharmapurikar6d565fd2011-09-15 18:49:56 -0700259 int rc;
260
Abhijeet Dharmapurikar6d565fd2011-09-15 18:49:56 -0700261 if (pmic_reset_irq != 0) {
262 rc = request_any_context_irq(pmic_reset_irq,
263 resout_irq_handler, IRQF_TRIGGER_HIGH,
264 "restart_from_pmic", NULL);
265 if (rc < 0)
266 pr_err("pmic restart irq fail rc = %d\n", rc);
267 } else {
268 pr_warn("no pmic restart interrupt specified\n");
269 }
270
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700271 return 0;
272}
273
Jeff Ohlsteina238a9852012-05-14 15:45:54 -0700274late_initcall(msm_pmic_restart_init);
275
276static int __init msm_restart_init(void)
277{
278#ifdef CONFIG_MSM_DLOAD_MODE
279 atomic_notifier_chain_register(&panic_notifier_list, &panic_blk);
280 dload_mode_addr = MSM_IMEM_BASE + DLOAD_MODE_ADDR;
281 set_dload_mode(download_mode);
282#endif
283 msm_tmr0_base = msm_timer_get_timer0_base();
284 restart_reason = MSM_IMEM_BASE + RESTART_REASON_ADDR;
285 pm_power_off = msm_power_off;
286
287 return 0;
288}
289early_initcall(msm_restart_init);