Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 1 | /* 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 Ruan | 2066783 | 2011-08-03 13:36:31 -0700 | [diff] [blame] | 32 | #include <linux/mfd/pmic8058.h> |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 33 | #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 | |
| 48 | static void (*power_on_charm)(void); |
| 49 | static void (*power_down_charm)(void); |
| 50 | |
| 51 | static int charm_debug_on; |
| 52 | static int charm_status_irq; |
| 53 | static int charm_errfatal_irq; |
| 54 | static int charm_ready; |
| 55 | static enum charm_boot_type boot_type = CHARM_NORMAL_BOOT; |
| 56 | static int charm_boot_status; |
| 57 | static int charm_ram_dump_status; |
| 58 | static 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 | |
| 65 | DECLARE_COMPLETION(charm_needs_reload); |
| 66 | DECLARE_COMPLETION(charm_boot); |
| 67 | DECLARE_COMPLETION(charm_ram_dumps); |
| 68 | |
| 69 | static void charm_disable_irqs(void) |
| 70 | { |
| 71 | disable_irq_nosync(charm_errfatal_irq); |
| 72 | disable_irq_nosync(charm_status_irq); |
| 73 | |
| 74 | } |
| 75 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 76 | static int charm_subsys_shutdown(const struct subsys_data *crashed_subsys) |
| 77 | { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 78 | charm_ready = 0; |
Laura Abbott | d161daf | 2011-08-10 17:24:48 -0700 | [diff] [blame] | 79 | power_down_charm(); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 80 | return 0; |
| 81 | } |
| 82 | |
| 83 | static 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 Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 91 | return charm_boot_status; |
| 92 | } |
| 93 | |
| 94 | static 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 | |
| 108 | static 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 | |
| 115 | static int charm_panic_prep(struct notifier_block *this, |
| 116 | unsigned long event, void *ptr) |
| 117 | { |
Laura Abbott | 6321512 | 2011-08-25 14:43:01 -0700 | [diff] [blame^] | 118 | int i; |
| 119 | |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 120 | CHARM_DBG("%s: setting AP2MDM_ERRFATAL high for a non graceful reset\n", |
| 121 | __func__); |
| 122 | charm_disable_irqs(); |
| 123 | gpio_set_value(AP2MDM_ERRFATAL, 1); |
Laura Abbott | e31d133 | 2011-08-24 17:12:07 -0700 | [diff] [blame] | 124 | gpio_set_value(AP2MDM_WAKEUP, 1); |
Laura Abbott | 6321512 | 2011-08-25 14:43:01 -0700 | [diff] [blame^] | 125 | for (i = CHARM_MODEM_TIMEOUT; i > 0; i -= CHARM_MODEM_DELTA) { |
| 126 | pet_watchdog(); |
| 127 | mdelay(CHARM_MODEM_DELTA); |
| 128 | if (gpio_get_value(MDM2AP_STATUS) == 0) |
| 129 | break; |
| 130 | } |
| 131 | if (i <= 0) |
| 132 | pr_err("%s: MDM2AP_STATUS never went low\n", __func__); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 133 | return NOTIFY_DONE; |
| 134 | } |
| 135 | |
| 136 | static struct notifier_block charm_panic_blk = { |
| 137 | .notifier_call = charm_panic_prep, |
| 138 | }; |
| 139 | |
Laura Abbott | d42d120 | 2011-07-20 14:49:57 -0700 | [diff] [blame] | 140 | static int first_boot = 1; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 141 | |
| 142 | static long charm_modem_ioctl(struct file *filp, unsigned int cmd, |
| 143 | unsigned long arg) |
| 144 | { |
| 145 | |
| 146 | int status, ret = 0; |
| 147 | |
| 148 | if (_IOC_TYPE(cmd) != CHARM_CODE) { |
| 149 | pr_err("%s: invalid ioctl code\n", __func__); |
| 150 | return -EINVAL; |
| 151 | } |
| 152 | |
| 153 | CHARM_DBG("%s: Entering ioctl cmd = %d\n", __func__, _IOC_NR(cmd)); |
| 154 | switch (cmd) { |
| 155 | case WAKE_CHARM: |
| 156 | CHARM_DBG("%s: Powering on\n", __func__); |
| 157 | power_on_charm(); |
| 158 | break; |
| 159 | case CHECK_FOR_BOOT: |
| 160 | if (gpio_get_value(MDM2AP_STATUS) == 0) |
| 161 | put_user(1, (unsigned long __user *) arg); |
| 162 | else |
| 163 | put_user(0, (unsigned long __user *) arg); |
| 164 | break; |
| 165 | case NORMAL_BOOT_DONE: |
| 166 | CHARM_DBG("%s: check if charm is booted up\n", __func__); |
| 167 | get_user(status, (unsigned long __user *) arg); |
| 168 | if (status) |
| 169 | charm_boot_status = -EIO; |
| 170 | else |
| 171 | charm_boot_status = 0; |
Laura Abbott | a267ea9 | 2011-07-15 19:53:05 -0700 | [diff] [blame] | 172 | charm_ready = 1; |
Laura Abbott | d42d120 | 2011-07-20 14:49:57 -0700 | [diff] [blame] | 173 | |
| 174 | if (!first_boot) |
| 175 | complete(&charm_boot); |
| 176 | else |
| 177 | first_boot = 0; |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 178 | break; |
| 179 | case RAM_DUMP_DONE: |
| 180 | CHARM_DBG("%s: charm done collecting RAM dumps\n", __func__); |
| 181 | get_user(status, (unsigned long __user *) arg); |
| 182 | if (status) |
| 183 | charm_ram_dump_status = -EIO; |
| 184 | else |
| 185 | charm_ram_dump_status = 0; |
| 186 | complete(&charm_ram_dumps); |
| 187 | break; |
| 188 | case WAIT_FOR_RESTART: |
| 189 | CHARM_DBG("%s: wait for charm to need images reloaded\n", |
| 190 | __func__); |
| 191 | ret = wait_for_completion_interruptible(&charm_needs_reload); |
| 192 | if (!ret) |
| 193 | put_user(boot_type, (unsigned long __user *) arg); |
| 194 | INIT_COMPLETION(charm_needs_reload); |
| 195 | break; |
| 196 | default: |
| 197 | pr_err("%s: invalid ioctl cmd = %d\n", __func__, _IOC_NR(cmd)); |
| 198 | ret = -EINVAL; |
| 199 | break; |
| 200 | } |
| 201 | |
| 202 | return ret; |
| 203 | } |
| 204 | |
| 205 | static int charm_modem_open(struct inode *inode, struct file *file) |
| 206 | { |
| 207 | return 0; |
| 208 | } |
| 209 | |
| 210 | static const struct file_operations charm_modem_fops = { |
| 211 | .owner = THIS_MODULE, |
| 212 | .open = charm_modem_open, |
| 213 | .unlocked_ioctl = charm_modem_ioctl, |
| 214 | }; |
| 215 | |
| 216 | |
| 217 | struct miscdevice charm_modem_misc = { |
| 218 | .minor = MISC_DYNAMIC_MINOR, |
| 219 | .name = "mdm", |
| 220 | .fops = &charm_modem_fops |
| 221 | }; |
| 222 | |
| 223 | |
| 224 | |
| 225 | static void charm_status_fn(struct work_struct *work) |
| 226 | { |
| 227 | pr_info("Reseting the charm because status changed\n"); |
| 228 | subsystem_restart("external_modem"); |
| 229 | } |
| 230 | |
| 231 | static DECLARE_WORK(charm_status_work, charm_status_fn); |
| 232 | |
| 233 | static void charm_fatal_fn(struct work_struct *work) |
| 234 | { |
| 235 | pr_info("Reseting the charm due to an errfatal\n"); |
Willie Ruan | 2066783 | 2011-08-03 13:36:31 -0700 | [diff] [blame] | 236 | if (get_restart_level() == RESET_SOC) |
| 237 | pm8058_stay_on(); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 238 | subsystem_restart("external_modem"); |
| 239 | } |
| 240 | |
| 241 | static DECLARE_WORK(charm_fatal_work, charm_fatal_fn); |
| 242 | |
| 243 | static irqreturn_t charm_errfatal(int irq, void *dev_id) |
| 244 | { |
| 245 | CHARM_DBG("%s: charm got errfatal interrupt\n", __func__); |
Laura Abbott | d161daf | 2011-08-10 17:24:48 -0700 | [diff] [blame] | 246 | if (charm_ready && (gpio_get_value(MDM2AP_STATUS) == 1)) { |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 247 | CHARM_DBG("%s: scheduling work now\n", __func__); |
| 248 | queue_work(charm_queue, &charm_fatal_work); |
| 249 | } |
| 250 | return IRQ_HANDLED; |
| 251 | } |
| 252 | |
| 253 | static irqreturn_t charm_status_change(int irq, void *dev_id) |
| 254 | { |
| 255 | CHARM_DBG("%s: charm sent status change interrupt\n", __func__); |
| 256 | if ((gpio_get_value(MDM2AP_STATUS) == 0) && charm_ready) { |
| 257 | CHARM_DBG("%s: scheduling work now\n", __func__); |
| 258 | queue_work(charm_queue, &charm_status_work); |
| 259 | } else if (gpio_get_value(MDM2AP_STATUS) == 1) { |
| 260 | CHARM_DBG("%s: charm is now ready\n", __func__); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 261 | } |
| 262 | return IRQ_HANDLED; |
| 263 | } |
| 264 | |
| 265 | static int charm_debug_on_set(void *data, u64 val) |
| 266 | { |
| 267 | charm_debug_on = val; |
| 268 | return 0; |
| 269 | } |
| 270 | |
| 271 | static int charm_debug_on_get(void *data, u64 *val) |
| 272 | { |
| 273 | *val = charm_debug_on; |
| 274 | return 0; |
| 275 | } |
| 276 | |
| 277 | DEFINE_SIMPLE_ATTRIBUTE(charm_debug_on_fops, |
| 278 | charm_debug_on_get, |
| 279 | charm_debug_on_set, "%llu\n"); |
| 280 | |
| 281 | static int charm_debugfs_init(void) |
| 282 | { |
| 283 | struct dentry *dent; |
| 284 | |
| 285 | dent = debugfs_create_dir("charm_dbg", 0); |
| 286 | if (IS_ERR(dent)) |
| 287 | return PTR_ERR(dent); |
| 288 | |
| 289 | debugfs_create_file("debug_on", 0644, dent, NULL, |
| 290 | &charm_debug_on_fops); |
| 291 | return 0; |
| 292 | } |
| 293 | |
| 294 | static int gsbi9_uart_notifier_cb(struct notifier_block *this, |
| 295 | unsigned long code, void *_cmd) |
| 296 | { |
| 297 | switch (code) { |
| 298 | case SUBSYS_AFTER_SHUTDOWN: |
| 299 | platform_device_unregister(msm_device_uart_gsbi9); |
| 300 | msm_device_uart_gsbi9 = msm_add_gsbi9_uart(); |
| 301 | if (IS_ERR(msm_device_uart_gsbi9)) |
| 302 | pr_err("%s(): Failed to create uart gsbi9 device\n", |
| 303 | __func__); |
| 304 | default: |
| 305 | break; |
| 306 | } |
| 307 | return NOTIFY_DONE; |
| 308 | } |
| 309 | |
| 310 | static struct notifier_block gsbi9_nb = { |
| 311 | .notifier_call = gsbi9_uart_notifier_cb, |
| 312 | }; |
| 313 | |
| 314 | static int __init charm_modem_probe(struct platform_device *pdev) |
| 315 | { |
| 316 | int ret, irq; |
| 317 | struct charm_platform_data *d = pdev->dev.platform_data; |
| 318 | |
| 319 | gpio_request(AP2MDM_STATUS, "AP2MDM_STATUS"); |
| 320 | gpio_request(AP2MDM_ERRFATAL, "AP2MDM_ERRFATAL"); |
| 321 | gpio_request(AP2MDM_KPDPWR_N, "AP2MDM_KPDPWR_N"); |
| 322 | gpio_request(AP2MDM_PMIC_RESET_N, "AP2MDM_PMIC_RESET_N"); |
| 323 | gpio_request(MDM2AP_STATUS, "MDM2AP_STATUS"); |
| 324 | gpio_request(MDM2AP_ERRFATAL, "MDM2AP_ERRFATAL"); |
Laura Abbott | d2a3bb5 | 2011-07-21 12:39:22 -0700 | [diff] [blame] | 325 | gpio_request(AP2MDM_WAKEUP, "AP2MDM_WAKEUP"); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 326 | |
| 327 | gpio_direction_output(AP2MDM_STATUS, 1); |
| 328 | gpio_direction_output(AP2MDM_ERRFATAL, 0); |
Laura Abbott | d2a3bb5 | 2011-07-21 12:39:22 -0700 | [diff] [blame] | 329 | gpio_direction_output(AP2MDM_WAKEUP, 0); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 330 | gpio_direction_input(MDM2AP_STATUS); |
| 331 | gpio_direction_input(MDM2AP_ERRFATAL); |
| 332 | |
| 333 | power_on_charm = d->charm_modem_on; |
| 334 | power_down_charm = d->charm_modem_off; |
| 335 | |
| 336 | charm_queue = create_singlethread_workqueue("charm_queue"); |
| 337 | if (!charm_queue) { |
| 338 | pr_err("%s: could not create workqueue. All charm \ |
| 339 | functionality will be disabled\n", |
| 340 | __func__); |
| 341 | ret = -ENOMEM; |
| 342 | goto fatal_err; |
| 343 | } |
| 344 | |
| 345 | atomic_notifier_chain_register(&panic_notifier_list, &charm_panic_blk); |
| 346 | charm_debugfs_init(); |
| 347 | |
| 348 | ssr_register_subsystem(&charm_subsystem); |
| 349 | |
| 350 | irq = platform_get_irq(pdev, 0); |
| 351 | if (irq < 0) { |
| 352 | pr_err("%s: could not get MDM2AP_ERRFATAL IRQ resource. \ |
| 353 | error=%d No IRQ will be generated on errfatal.", |
| 354 | __func__, irq); |
| 355 | goto errfatal_err; |
| 356 | } |
| 357 | |
| 358 | ret = request_irq(irq, charm_errfatal, |
| 359 | IRQF_TRIGGER_RISING , "charm errfatal", NULL); |
| 360 | |
| 361 | if (ret < 0) { |
| 362 | pr_err("%s: MDM2AP_ERRFATAL IRQ#%d request failed with error=%d\ |
| 363 | . No IRQ will be generated on errfatal.", |
| 364 | __func__, irq, ret); |
| 365 | goto errfatal_err; |
| 366 | } |
| 367 | charm_errfatal_irq = irq; |
| 368 | |
| 369 | errfatal_err: |
| 370 | |
| 371 | irq = platform_get_irq(pdev, 1); |
| 372 | if (irq < 0) { |
| 373 | pr_err("%s: could not get MDM2AP_STATUS IRQ resource. \ |
| 374 | error=%d No IRQ will be generated on status change.", |
| 375 | __func__, irq); |
| 376 | goto status_err; |
| 377 | } |
| 378 | |
| 379 | ret = request_threaded_irq(irq, NULL, charm_status_change, |
| 380 | IRQF_TRIGGER_RISING | IRQF_TRIGGER_FALLING, |
| 381 | "charm status", NULL); |
| 382 | |
| 383 | if (ret < 0) { |
| 384 | pr_err("%s: MDM2AP_STATUS IRQ#%d request failed with error=%d\ |
| 385 | . No IRQ will be generated on status change.", |
| 386 | __func__, irq, ret); |
| 387 | goto status_err; |
| 388 | } |
| 389 | charm_status_irq = irq; |
| 390 | |
| 391 | status_err: |
| 392 | subsys_notif_register_notifier("external_modem", &gsbi9_nb); |
| 393 | |
| 394 | pr_info("%s: Registering charm modem\n", __func__); |
| 395 | |
| 396 | return misc_register(&charm_modem_misc); |
| 397 | |
| 398 | fatal_err: |
| 399 | gpio_free(AP2MDM_STATUS); |
| 400 | gpio_free(AP2MDM_ERRFATAL); |
| 401 | gpio_free(AP2MDM_KPDPWR_N); |
| 402 | gpio_free(AP2MDM_PMIC_RESET_N); |
| 403 | gpio_free(MDM2AP_STATUS); |
| 404 | gpio_free(MDM2AP_ERRFATAL); |
| 405 | return ret; |
| 406 | |
| 407 | } |
| 408 | |
| 409 | |
| 410 | static int __devexit charm_modem_remove(struct platform_device *pdev) |
| 411 | { |
| 412 | gpio_free(AP2MDM_STATUS); |
| 413 | gpio_free(AP2MDM_ERRFATAL); |
| 414 | gpio_free(AP2MDM_KPDPWR_N); |
| 415 | gpio_free(AP2MDM_PMIC_RESET_N); |
| 416 | gpio_free(MDM2AP_STATUS); |
| 417 | gpio_free(MDM2AP_ERRFATAL); |
| 418 | |
| 419 | return misc_deregister(&charm_modem_misc); |
| 420 | } |
| 421 | |
| 422 | static void charm_modem_shutdown(struct platform_device *pdev) |
| 423 | { |
| 424 | int i; |
| 425 | |
| 426 | CHARM_DBG("%s: setting AP2MDM_STATUS low for a graceful restart\n", |
| 427 | __func__); |
| 428 | |
| 429 | charm_disable_irqs(); |
| 430 | |
| 431 | gpio_set_value(AP2MDM_STATUS, 0); |
Laura Abbott | d2a3bb5 | 2011-07-21 12:39:22 -0700 | [diff] [blame] | 432 | gpio_set_value(AP2MDM_WAKEUP, 1); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 433 | |
| 434 | for (i = CHARM_MODEM_TIMEOUT; i > 0; i -= CHARM_MODEM_DELTA) { |
| 435 | pet_watchdog(); |
| 436 | msleep(CHARM_MODEM_DELTA); |
| 437 | if (gpio_get_value(MDM2AP_STATUS) == 0) |
| 438 | break; |
| 439 | } |
| 440 | |
| 441 | if (i <= 0) { |
| 442 | pr_err("%s: MDM2AP_STATUS never went low.\n", |
| 443 | __func__); |
| 444 | gpio_direction_output(AP2MDM_PMIC_RESET_N, 1); |
| 445 | for (i = CHARM_HOLD_TIME; i > 0; i -= CHARM_MODEM_DELTA) { |
| 446 | pet_watchdog(); |
| 447 | msleep(CHARM_MODEM_DELTA); |
| 448 | } |
| 449 | gpio_direction_output(AP2MDM_PMIC_RESET_N, 0); |
| 450 | } |
Laura Abbott | d2a3bb5 | 2011-07-21 12:39:22 -0700 | [diff] [blame] | 451 | gpio_set_value(AP2MDM_WAKEUP, 0); |
Bryan Huntsman | 3f2bc4d | 2011-08-16 17:27:22 -0700 | [diff] [blame] | 452 | } |
| 453 | |
| 454 | static struct platform_driver charm_modem_driver = { |
| 455 | .remove = charm_modem_remove, |
| 456 | .shutdown = charm_modem_shutdown, |
| 457 | .driver = { |
| 458 | .name = "charm_modem", |
| 459 | .owner = THIS_MODULE |
| 460 | }, |
| 461 | }; |
| 462 | |
| 463 | static int __init charm_modem_init(void) |
| 464 | { |
| 465 | return platform_driver_probe(&charm_modem_driver, charm_modem_probe); |
| 466 | } |
| 467 | |
| 468 | static void __exit charm_modem_exit(void) |
| 469 | { |
| 470 | platform_driver_unregister(&charm_modem_driver); |
| 471 | } |
| 472 | |
| 473 | module_init(charm_modem_init); |
| 474 | module_exit(charm_modem_exit); |
| 475 | |
| 476 | MODULE_LICENSE("GPL v2"); |
| 477 | MODULE_DESCRIPTION("msm8660 charm modem driver"); |
| 478 | MODULE_VERSION("1.0"); |
| 479 | MODULE_ALIAS("charm_modem"); |