blob: 13cac2e56fbe3da8f58816e3dc4238c3ebf42d8b [file] [log] [blame]
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -07001/* Copyright (c) 2010-2011, Code Aurora Forum. All rights reserved.
2 *
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/platform_device.h>
16#include <linux/err.h>
17#include <linux/slab.h>
18#include <linux/io.h>
19#include <linux/mutex.h>
20#include <linux/miscdevice.h>
21#include <linux/fs.h>
22#include <linux/gpio.h>
23#include <linux/kernel.h>
24#include <linux/irq.h>
25#include <linux/ioctl.h>
26#include <linux/delay.h>
27#include <linux/reboot.h>
28#include <linux/debugfs.h>
29#include <linux/completion.h>
30#include <linux/workqueue.h>
31#include <linux/clk.h>
Willie Ruan20667832011-08-03 13:36:31 -070032#include <linux/mfd/pmic8058.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070033#include <asm/mach-types.h>
34#include <asm/uaccess.h>
35#include <mach/mdm.h>
36#include <mach/restart.h>
37#include <mach/subsystem_notif.h>
38#include <mach/subsystem_restart.h>
39#include <linux/msm_charm.h>
40#include "msm_watchdog.h"
41#include "devices.h"
42#include "clock.h"
43
44#define CHARM_MODEM_TIMEOUT 6000
45#define CHARM_HOLD_TIME 4000
46#define CHARM_MODEM_DELTA 100
47
48static void (*power_on_charm)(void);
49static void (*power_down_charm)(void);
50
51static int charm_debug_on;
52static int charm_status_irq;
53static int charm_errfatal_irq;
54static int charm_ready;
55static enum charm_boot_type boot_type = CHARM_NORMAL_BOOT;
56static int charm_boot_status;
57static int charm_ram_dump_status;
58static struct workqueue_struct *charm_queue;
59
60#define CHARM_DBG(...) do { if (charm_debug_on) \
61 pr_info(__VA_ARGS__); \
62 } while (0);
63
64
65DECLARE_COMPLETION(charm_needs_reload);
66DECLARE_COMPLETION(charm_boot);
67DECLARE_COMPLETION(charm_ram_dumps);
68
69static void charm_disable_irqs(void)
70{
71 disable_irq_nosync(charm_errfatal_irq);
72 disable_irq_nosync(charm_status_irq);
73
74}
75
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070076static int charm_subsys_shutdown(const struct subsys_data *crashed_subsys)
77{
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070078 charm_ready = 0;
Laura Abbottd161daf2011-08-10 17:24:48 -070079 power_down_charm();
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070080 return 0;
81}
82
83static int charm_subsys_powerup(const struct subsys_data *crashed_subsys)
84{
85 power_on_charm();
86 boot_type = CHARM_NORMAL_BOOT;
87 complete(&charm_needs_reload);
88 wait_for_completion(&charm_boot);
89 pr_info("%s: charm modem has been restarted\n", __func__);
90 INIT_COMPLETION(charm_boot);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070091 return charm_boot_status;
92}
93
94static int charm_subsys_ramdumps(int want_dumps,
95 const struct subsys_data *crashed_subsys)
96{
97 charm_ram_dump_status = 0;
98 if (want_dumps) {
99 boot_type = CHARM_RAM_DUMPS;
100 complete(&charm_needs_reload);
101 wait_for_completion(&charm_ram_dumps);
102 INIT_COMPLETION(charm_ram_dumps);
103 power_down_charm();
104 }
105 return charm_ram_dump_status;
106}
107
108static struct subsys_data charm_subsystem = {
109 .shutdown = charm_subsys_shutdown,
110 .ramdump = charm_subsys_ramdumps,
111 .powerup = charm_subsys_powerup,
112 .name = "external_modem",
113};
114
115static int charm_panic_prep(struct notifier_block *this,
116 unsigned long event, void *ptr)
117{
118 CHARM_DBG("%s: setting AP2MDM_ERRFATAL high for a non graceful reset\n",
119 __func__);
120 charm_disable_irqs();
121 gpio_set_value(AP2MDM_ERRFATAL, 1);
Laura Abbotte31d1332011-08-24 17:12:07 -0700122 gpio_set_value(AP2MDM_WAKEUP, 1);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700123 return NOTIFY_DONE;
124}
125
126static struct notifier_block charm_panic_blk = {
127 .notifier_call = charm_panic_prep,
128};
129
Laura Abbottd42d1202011-07-20 14:49:57 -0700130static int first_boot = 1;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700131
132static long charm_modem_ioctl(struct file *filp, unsigned int cmd,
133 unsigned long arg)
134{
135
136 int status, ret = 0;
137
138 if (_IOC_TYPE(cmd) != CHARM_CODE) {
139 pr_err("%s: invalid ioctl code\n", __func__);
140 return -EINVAL;
141 }
142
143 CHARM_DBG("%s: Entering ioctl cmd = %d\n", __func__, _IOC_NR(cmd));
144 switch (cmd) {
145 case WAKE_CHARM:
146 CHARM_DBG("%s: Powering on\n", __func__);
147 power_on_charm();
148 break;
149 case CHECK_FOR_BOOT:
150 if (gpio_get_value(MDM2AP_STATUS) == 0)
151 put_user(1, (unsigned long __user *) arg);
152 else
153 put_user(0, (unsigned long __user *) arg);
154 break;
155 case NORMAL_BOOT_DONE:
156 CHARM_DBG("%s: check if charm is booted up\n", __func__);
157 get_user(status, (unsigned long __user *) arg);
158 if (status)
159 charm_boot_status = -EIO;
160 else
161 charm_boot_status = 0;
Laura Abbotta267ea92011-07-15 19:53:05 -0700162 charm_ready = 1;
Laura Abbottd42d1202011-07-20 14:49:57 -0700163
164 if (!first_boot)
165 complete(&charm_boot);
166 else
167 first_boot = 0;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700168 break;
169 case RAM_DUMP_DONE:
170 CHARM_DBG("%s: charm done collecting RAM dumps\n", __func__);
171 get_user(status, (unsigned long __user *) arg);
172 if (status)
173 charm_ram_dump_status = -EIO;
174 else
175 charm_ram_dump_status = 0;
176 complete(&charm_ram_dumps);
177 break;
178 case WAIT_FOR_RESTART:
179 CHARM_DBG("%s: wait for charm to need images reloaded\n",
180 __func__);
181 ret = wait_for_completion_interruptible(&charm_needs_reload);
182 if (!ret)
183 put_user(boot_type, (unsigned long __user *) arg);
184 INIT_COMPLETION(charm_needs_reload);
185 break;
186 default:
187 pr_err("%s: invalid ioctl cmd = %d\n", __func__, _IOC_NR(cmd));
188 ret = -EINVAL;
189 break;
190 }
191
192 return ret;
193}
194
195static int charm_modem_open(struct inode *inode, struct file *file)
196{
197 return 0;
198}
199
200static const struct file_operations charm_modem_fops = {
201 .owner = THIS_MODULE,
202 .open = charm_modem_open,
203 .unlocked_ioctl = charm_modem_ioctl,
204};
205
206
207struct miscdevice charm_modem_misc = {
208 .minor = MISC_DYNAMIC_MINOR,
209 .name = "mdm",
210 .fops = &charm_modem_fops
211};
212
213
214
215static void charm_status_fn(struct work_struct *work)
216{
217 pr_info("Reseting the charm because status changed\n");
218 subsystem_restart("external_modem");
219}
220
221static DECLARE_WORK(charm_status_work, charm_status_fn);
222
223static void charm_fatal_fn(struct work_struct *work)
224{
225 pr_info("Reseting the charm due to an errfatal\n");
Willie Ruan20667832011-08-03 13:36:31 -0700226 if (get_restart_level() == RESET_SOC)
227 pm8058_stay_on();
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700228 subsystem_restart("external_modem");
229}
230
231static DECLARE_WORK(charm_fatal_work, charm_fatal_fn);
232
233static irqreturn_t charm_errfatal(int irq, void *dev_id)
234{
235 CHARM_DBG("%s: charm got errfatal interrupt\n", __func__);
Laura Abbottd161daf2011-08-10 17:24:48 -0700236 if (charm_ready && (gpio_get_value(MDM2AP_STATUS) == 1)) {
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700237 CHARM_DBG("%s: scheduling work now\n", __func__);
238 queue_work(charm_queue, &charm_fatal_work);
239 }
240 return IRQ_HANDLED;
241}
242
243static irqreturn_t charm_status_change(int irq, void *dev_id)
244{
245 CHARM_DBG("%s: charm sent status change interrupt\n", __func__);
246 if ((gpio_get_value(MDM2AP_STATUS) == 0) && charm_ready) {
247 CHARM_DBG("%s: scheduling work now\n", __func__);
248 queue_work(charm_queue, &charm_status_work);
249 } else if (gpio_get_value(MDM2AP_STATUS) == 1) {
250 CHARM_DBG("%s: charm is now ready\n", __func__);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700251 }
252 return IRQ_HANDLED;
253}
254
255static int charm_debug_on_set(void *data, u64 val)
256{
257 charm_debug_on = val;
258 return 0;
259}
260
261static int charm_debug_on_get(void *data, u64 *val)
262{
263 *val = charm_debug_on;
264 return 0;
265}
266
267DEFINE_SIMPLE_ATTRIBUTE(charm_debug_on_fops,
268 charm_debug_on_get,
269 charm_debug_on_set, "%llu\n");
270
271static int charm_debugfs_init(void)
272{
273 struct dentry *dent;
274
275 dent = debugfs_create_dir("charm_dbg", 0);
276 if (IS_ERR(dent))
277 return PTR_ERR(dent);
278
279 debugfs_create_file("debug_on", 0644, dent, NULL,
280 &charm_debug_on_fops);
281 return 0;
282}
283
284static int gsbi9_uart_notifier_cb(struct notifier_block *this,
285 unsigned long code, void *_cmd)
286{
287 switch (code) {
288 case SUBSYS_AFTER_SHUTDOWN:
289 platform_device_unregister(msm_device_uart_gsbi9);
290 msm_device_uart_gsbi9 = msm_add_gsbi9_uart();
291 if (IS_ERR(msm_device_uart_gsbi9))
292 pr_err("%s(): Failed to create uart gsbi9 device\n",
293 __func__);
294 default:
295 break;
296 }
297 return NOTIFY_DONE;
298}
299
300static struct notifier_block gsbi9_nb = {
301 .notifier_call = gsbi9_uart_notifier_cb,
302};
303
304static int __init charm_modem_probe(struct platform_device *pdev)
305{
306 int ret, irq;
307 struct charm_platform_data *d = pdev->dev.platform_data;
308
309 gpio_request(AP2MDM_STATUS, "AP2MDM_STATUS");
310 gpio_request(AP2MDM_ERRFATAL, "AP2MDM_ERRFATAL");
311 gpio_request(AP2MDM_KPDPWR_N, "AP2MDM_KPDPWR_N");
312 gpio_request(AP2MDM_PMIC_RESET_N, "AP2MDM_PMIC_RESET_N");
313 gpio_request(MDM2AP_STATUS, "MDM2AP_STATUS");
314 gpio_request(MDM2AP_ERRFATAL, "MDM2AP_ERRFATAL");
Laura Abbottd2a3bb52011-07-21 12:39:22 -0700315 gpio_request(AP2MDM_WAKEUP, "AP2MDM_WAKEUP");
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700316
317 gpio_direction_output(AP2MDM_STATUS, 1);
318 gpio_direction_output(AP2MDM_ERRFATAL, 0);
Laura Abbottd2a3bb52011-07-21 12:39:22 -0700319 gpio_direction_output(AP2MDM_WAKEUP, 0);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700320 gpio_direction_input(MDM2AP_STATUS);
321 gpio_direction_input(MDM2AP_ERRFATAL);
322
323 power_on_charm = d->charm_modem_on;
324 power_down_charm = d->charm_modem_off;
325
326 charm_queue = create_singlethread_workqueue("charm_queue");
327 if (!charm_queue) {
328 pr_err("%s: could not create workqueue. All charm \
329 functionality will be disabled\n",
330 __func__);
331 ret = -ENOMEM;
332 goto fatal_err;
333 }
334
335 atomic_notifier_chain_register(&panic_notifier_list, &charm_panic_blk);
336 charm_debugfs_init();
337
338 ssr_register_subsystem(&charm_subsystem);
339
340 irq = platform_get_irq(pdev, 0);
341 if (irq < 0) {
342 pr_err("%s: could not get MDM2AP_ERRFATAL IRQ resource. \
343 error=%d No IRQ will be generated on errfatal.",
344 __func__, irq);
345 goto errfatal_err;
346 }
347
348 ret = request_irq(irq, charm_errfatal,
349 IRQF_TRIGGER_RISING , "charm errfatal", NULL);
350
351 if (ret < 0) {
352 pr_err("%s: MDM2AP_ERRFATAL IRQ#%d request failed with error=%d\
353 . No IRQ will be generated on errfatal.",
354 __func__, irq, ret);
355 goto errfatal_err;
356 }
357 charm_errfatal_irq = irq;
358
359errfatal_err:
360
361 irq = platform_get_irq(pdev, 1);
362 if (irq < 0) {
363 pr_err("%s: could not get MDM2AP_STATUS IRQ resource. \
364 error=%d No IRQ will be generated on status change.",
365 __func__, irq);
366 goto status_err;
367 }
368
369 ret = request_threaded_irq(irq, NULL, charm_status_change,
370 IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING,
371 "charm status", NULL);
372
373 if (ret < 0) {
374 pr_err("%s: MDM2AP_STATUS IRQ#%d request failed with error=%d\
375 . No IRQ will be generated on status change.",
376 __func__, irq, ret);
377 goto status_err;
378 }
379 charm_status_irq = irq;
380
381status_err:
382 subsys_notif_register_notifier("external_modem", &gsbi9_nb);
383
384 pr_info("%s: Registering charm modem\n", __func__);
385
386 return misc_register(&charm_modem_misc);
387
388fatal_err:
389 gpio_free(AP2MDM_STATUS);
390 gpio_free(AP2MDM_ERRFATAL);
391 gpio_free(AP2MDM_KPDPWR_N);
392 gpio_free(AP2MDM_PMIC_RESET_N);
393 gpio_free(MDM2AP_STATUS);
394 gpio_free(MDM2AP_ERRFATAL);
395 return ret;
396
397}
398
399
400static int __devexit charm_modem_remove(struct platform_device *pdev)
401{
402 gpio_free(AP2MDM_STATUS);
403 gpio_free(AP2MDM_ERRFATAL);
404 gpio_free(AP2MDM_KPDPWR_N);
405 gpio_free(AP2MDM_PMIC_RESET_N);
406 gpio_free(MDM2AP_STATUS);
407 gpio_free(MDM2AP_ERRFATAL);
408
409 return misc_deregister(&charm_modem_misc);
410}
411
412static void charm_modem_shutdown(struct platform_device *pdev)
413{
414 int i;
415
416 CHARM_DBG("%s: setting AP2MDM_STATUS low for a graceful restart\n",
417 __func__);
418
419 charm_disable_irqs();
420
421 gpio_set_value(AP2MDM_STATUS, 0);
Laura Abbottd2a3bb52011-07-21 12:39:22 -0700422 gpio_set_value(AP2MDM_WAKEUP, 1);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700423
424 for (i = CHARM_MODEM_TIMEOUT; i > 0; i -= CHARM_MODEM_DELTA) {
425 pet_watchdog();
426 msleep(CHARM_MODEM_DELTA);
427 if (gpio_get_value(MDM2AP_STATUS) == 0)
428 break;
429 }
430
431 if (i <= 0) {
432 pr_err("%s: MDM2AP_STATUS never went low.\n",
433 __func__);
434 gpio_direction_output(AP2MDM_PMIC_RESET_N, 1);
435 for (i = CHARM_HOLD_TIME; i > 0; i -= CHARM_MODEM_DELTA) {
436 pet_watchdog();
437 msleep(CHARM_MODEM_DELTA);
438 }
439 gpio_direction_output(AP2MDM_PMIC_RESET_N, 0);
440 }
Laura Abbottd2a3bb52011-07-21 12:39:22 -0700441 gpio_set_value(AP2MDM_WAKEUP, 0);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700442}
443
444static struct platform_driver charm_modem_driver = {
445 .remove = charm_modem_remove,
446 .shutdown = charm_modem_shutdown,
447 .driver = {
448 .name = "charm_modem",
449 .owner = THIS_MODULE
450 },
451};
452
453static int __init charm_modem_init(void)
454{
455 return platform_driver_probe(&charm_modem_driver, charm_modem_probe);
456}
457
458static void __exit charm_modem_exit(void)
459{
460 platform_driver_unregister(&charm_modem_driver);
461}
462
463module_init(charm_modem_init);
464module_exit(charm_modem_exit);
465
466MODULE_LICENSE("GPL v2");
467MODULE_DESCRIPTION("msm8660 charm modem driver");
468MODULE_VERSION("1.0");
469MODULE_ALIAS("charm_modem");