Rohit Vaswani | d0fb418 | 2012-03-19 18:07:59 -0700 | [diff] [blame] | 1 | /* Copyright (c) 2012, 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 | #include <linux/kernel.h> |
| 14 | #include <linux/interrupt.h> |
| 15 | #include <linux/reboot.h> |
| 16 | #include <linux/workqueue.h> |
| 17 | #include <linux/io.h> |
| 18 | #include <linux/jiffies.h> |
| 19 | #include <linux/stringify.h> |
| 20 | #include <linux/delay.h> |
| 21 | #include <linux/module.h> |
| 22 | #include <linux/miscdevice.h> |
| 23 | #include <linux/fs.h> |
| 24 | |
| 25 | #include <mach/irqs.h> |
Rohit Vaswani | 974fd9e | 2012-05-29 17:17:11 -0700 | [diff] [blame] | 26 | #include <mach/msm_smsm.h> |
Rohit Vaswani | d0fb418 | 2012-03-19 18:07:59 -0700 | [diff] [blame] | 27 | #include <mach/scm.h> |
| 28 | #include <mach/peripheral-loader.h> |
| 29 | #include <mach/subsystem_restart.h> |
| 30 | #include <mach/subsystem_notif.h> |
| 31 | #include <mach/socinfo.h> |
| 32 | |
| 33 | #include "smd_private.h" |
| 34 | #include "modem_notifier.h" |
| 35 | #include "ramdump.h" |
| 36 | |
| 37 | static struct gss_8064_data { |
| 38 | struct miscdevice gss_dev; |
| 39 | void *pil_handle; |
| 40 | void *gss_ramdump_dev; |
| 41 | void *smem_ramdump_dev; |
| 42 | } gss_data; |
| 43 | |
| 44 | static int crash_shutdown; |
| 45 | |
Rohit Vaswani | 974fd9e | 2012-05-29 17:17:11 -0700 | [diff] [blame] | 46 | #define MAX_SSR_REASON_LEN 81U |
| 47 | |
| 48 | static void log_gss_sfr(void) |
| 49 | { |
| 50 | u32 size; |
| 51 | char *smem_reason, reason[MAX_SSR_REASON_LEN]; |
| 52 | |
| 53 | smem_reason = smem_get_entry(SMEM_SSR_REASON_MSS0, &size); |
| 54 | if (!smem_reason || !size) { |
| 55 | pr_err("GSS subsystem failure reason: (unknown, smem_get_entry failed).\n"); |
| 56 | return; |
| 57 | } |
| 58 | if (!smem_reason[0]) { |
| 59 | pr_err("GSS subsystem failure reason: (unknown, init string found).\n"); |
| 60 | return; |
| 61 | } |
| 62 | |
| 63 | size = min(size, MAX_SSR_REASON_LEN-1); |
| 64 | memcpy(reason, smem_reason, size); |
| 65 | reason[size] = '\0'; |
| 66 | pr_err("GSS subsystem failure reason: %s.\n", reason); |
| 67 | |
| 68 | smem_reason[0] = '\0'; |
| 69 | wmb(); |
| 70 | } |
| 71 | |
Rohit Vaswani | e851959 | 2012-06-21 17:48:04 -0700 | [diff] [blame] | 72 | static void restart_gss(void) |
Rohit Vaswani | d0fb418 | 2012-03-19 18:07:59 -0700 | [diff] [blame] | 73 | { |
Rohit Vaswani | a66023d | 2012-06-21 17:38:29 -0700 | [diff] [blame] | 74 | log_gss_sfr(); |
| 75 | subsystem_restart("gss"); |
Rohit Vaswani | d0fb418 | 2012-03-19 18:07:59 -0700 | [diff] [blame] | 76 | } |
| 77 | |
Rohit Vaswani | d0fb418 | 2012-03-19 18:07:59 -0700 | [diff] [blame] | 78 | static void smsm_state_cb(void *data, uint32_t old_state, uint32_t new_state) |
| 79 | { |
| 80 | /* Ignore if we're the one that set SMSM_RESET */ |
| 81 | if (crash_shutdown) |
| 82 | return; |
| 83 | |
| 84 | if (new_state & SMSM_RESET) { |
| 85 | pr_err("GSS SMSM state changed to SMSM_RESET.\n" |
| 86 | "Probable err_fatal on the GSS. " |
| 87 | "Calling subsystem restart...\n"); |
Rohit Vaswani | e851959 | 2012-06-21 17:48:04 -0700 | [diff] [blame] | 88 | restart_gss(); |
Rohit Vaswani | d0fb418 | 2012-03-19 18:07:59 -0700 | [diff] [blame] | 89 | } |
| 90 | } |
| 91 | |
| 92 | #define Q6_FW_WDOG_ENABLE 0x08882024 |
| 93 | #define Q6_SW_WDOG_ENABLE 0x08982024 |
| 94 | static int gss_shutdown(const struct subsys_data *subsys) |
| 95 | { |
| 96 | pil_force_shutdown("gss"); |
| 97 | disable_irq_nosync(GSS_A5_WDOG_EXPIRED); |
| 98 | |
| 99 | return 0; |
| 100 | } |
| 101 | |
| 102 | static int gss_powerup(const struct subsys_data *subsys) |
| 103 | { |
| 104 | pil_force_boot("gss"); |
| 105 | enable_irq(GSS_A5_WDOG_EXPIRED); |
| 106 | return 0; |
| 107 | } |
| 108 | |
| 109 | void gss_crash_shutdown(const struct subsys_data *subsys) |
| 110 | { |
| 111 | crash_shutdown = 1; |
| 112 | smsm_reset_modem(SMSM_RESET); |
| 113 | } |
| 114 | |
| 115 | /* FIXME: Get address, size from PIL */ |
| 116 | static struct ramdump_segment gss_segments[] = { |
Rohit Vaswani | 3e7503f | 2012-03-29 17:46:13 -0700 | [diff] [blame] | 117 | {0x89000000, 0x00D00000} |
Rohit Vaswani | d0fb418 | 2012-03-19 18:07:59 -0700 | [diff] [blame] | 118 | }; |
| 119 | |
| 120 | static struct ramdump_segment smem_segments[] = { |
| 121 | {0x80000000, 0x00200000}, |
| 122 | }; |
| 123 | |
| 124 | static int gss_ramdump(int enable, |
| 125 | const struct subsys_data *crashed_subsys) |
| 126 | { |
| 127 | int ret = 0; |
| 128 | |
| 129 | if (enable) { |
| 130 | ret = do_ramdump(gss_data.gss_ramdump_dev, gss_segments, |
| 131 | ARRAY_SIZE(gss_segments)); |
| 132 | |
| 133 | if (ret < 0) { |
| 134 | pr_err("Unable to dump gss memory (rc = %d).\n", |
| 135 | ret); |
| 136 | goto out; |
| 137 | } |
| 138 | |
| 139 | ret = do_ramdump(gss_data.smem_ramdump_dev, smem_segments, |
| 140 | ARRAY_SIZE(smem_segments)); |
| 141 | |
| 142 | if (ret < 0) { |
| 143 | pr_err("Unable to dump smem memory (rc = %d).\n", ret); |
| 144 | goto out; |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | out: |
| 149 | return ret; |
| 150 | } |
| 151 | |
| 152 | static irqreturn_t gss_wdog_bite_irq(int irq, void *dev_id) |
| 153 | { |
Rohit Vaswani | e851959 | 2012-06-21 17:48:04 -0700 | [diff] [blame] | 154 | pr_err("Watchdog bite received from GSS!\n"); |
| 155 | restart_gss(); |
Rohit Vaswani | d0fb418 | 2012-03-19 18:07:59 -0700 | [diff] [blame] | 156 | |
| 157 | return IRQ_HANDLED; |
| 158 | } |
| 159 | |
| 160 | static struct subsys_data gss_8064 = { |
| 161 | .name = "gss", |
| 162 | .shutdown = gss_shutdown, |
| 163 | .powerup = gss_powerup, |
| 164 | .ramdump = gss_ramdump, |
| 165 | .crash_shutdown = gss_crash_shutdown |
| 166 | }; |
| 167 | |
| 168 | static int gss_subsystem_restart_init(void) |
| 169 | { |
| 170 | return ssr_register_subsystem(&gss_8064); |
| 171 | } |
| 172 | |
| 173 | static int gss_open(struct inode *inode, struct file *filep) |
| 174 | { |
| 175 | void *ret; |
| 176 | gss_data.pil_handle = ret = pil_get("gss"); |
| 177 | if (!ret) |
| 178 | pr_debug("%s - pil_get returned NULL\n", __func__); |
| 179 | return 0; |
| 180 | } |
| 181 | |
| 182 | static int gss_release(struct inode *inode, struct file *filep) |
| 183 | { |
| 184 | pil_put(gss_data.pil_handle); |
| 185 | pr_debug("%s pil_put called on GSS\n", __func__); |
| 186 | return 0; |
| 187 | } |
| 188 | |
| 189 | const struct file_operations gss_file_ops = { |
| 190 | .open = gss_open, |
| 191 | .release = gss_release, |
| 192 | }; |
| 193 | |
| 194 | static int __init gss_8064_init(void) |
| 195 | { |
| 196 | int ret; |
| 197 | |
| 198 | if (!cpu_is_apq8064()) |
| 199 | return -ENODEV; |
| 200 | |
| 201 | ret = smsm_state_cb_register(SMSM_MODEM_STATE, SMSM_RESET, |
| 202 | smsm_state_cb, 0); |
| 203 | |
| 204 | if (ret < 0) |
| 205 | pr_err("%s: Unable to register SMSM callback! (%d)\n", |
| 206 | __func__, ret); |
| 207 | |
| 208 | ret = request_irq(GSS_A5_WDOG_EXPIRED, gss_wdog_bite_irq, |
| 209 | IRQF_TRIGGER_RISING, "gss_a5_wdog", NULL); |
| 210 | |
| 211 | if (ret < 0) { |
| 212 | pr_err("%s: Unable to request gss watchdog IRQ. (%d)\n", |
| 213 | __func__, ret); |
| 214 | disable_irq_nosync(GSS_A5_WDOG_EXPIRED); |
| 215 | goto out; |
| 216 | } |
| 217 | |
| 218 | ret = gss_subsystem_restart_init(); |
| 219 | |
| 220 | if (ret < 0) { |
| 221 | pr_err("%s: Unable to reg with subsystem restart. (%d)\n", |
| 222 | __func__, ret); |
| 223 | goto out; |
| 224 | } |
| 225 | |
| 226 | gss_data.gss_dev.minor = MISC_DYNAMIC_MINOR; |
| 227 | gss_data.gss_dev.name = "gss"; |
| 228 | gss_data.gss_dev.fops = &gss_file_ops; |
| 229 | ret = misc_register(&gss_data.gss_dev); |
| 230 | |
| 231 | if (ret) { |
| 232 | pr_err("%s: misc_registers failed for %s (%d)", __func__, |
| 233 | gss_data.gss_dev.name, ret); |
| 234 | goto out; |
| 235 | } |
| 236 | |
| 237 | gss_data.gss_ramdump_dev = create_ramdump_device("gss"); |
| 238 | |
| 239 | if (!gss_data.gss_ramdump_dev) { |
| 240 | pr_err("%s: Unable to create gss ramdump device. (%d)\n", |
| 241 | __func__, -ENOMEM); |
| 242 | ret = -ENOMEM; |
| 243 | goto out; |
| 244 | } |
| 245 | |
Stephen Boyd | 4b66b37 | 2012-06-28 12:32:21 -0700 | [diff] [blame] | 246 | gss_data.smem_ramdump_dev = create_ramdump_device("smem-gss"); |
Rohit Vaswani | d0fb418 | 2012-03-19 18:07:59 -0700 | [diff] [blame] | 247 | |
| 248 | if (!gss_data.smem_ramdump_dev) { |
| 249 | pr_err("%s: Unable to create smem ramdump device. (%d)\n", |
| 250 | __func__, -ENOMEM); |
| 251 | ret = -ENOMEM; |
| 252 | goto out; |
| 253 | } |
| 254 | |
| 255 | pr_info("%s: gss fatal driver init'ed.\n", __func__); |
| 256 | out: |
| 257 | return ret; |
| 258 | } |
| 259 | |
| 260 | module_init(gss_8064_init); |