blob: 206bd8bdc7c6624064b4e22109228efe1ad78af3 [file] [log] [blame]
Joel Kinge9cd5272012-01-28 12:48:59 -08001/* Copyright (c) 2011-2012, Code Aurora Forum. All rights reserved.
Joel Kingb6f0f612011-11-01 16:59:14 -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#ifndef _ARCH_ARM_MACH_MSM_MDM_PRIVATE_H
14#define _ARCH_ARM_MACH_MSM_MDM_PRIVATE_H
15
16struct mdm_modem_drv;
17
Joel Kinge9cd5272012-01-28 12:48:59 -080018struct mdm_ops {
19 void (*power_on_mdm_cb)(struct mdm_modem_drv *mdm_drv);
20 void (*normal_boot_done_cb)(struct mdm_modem_drv *mdm_drv);
21 void (*power_down_mdm_cb)(struct mdm_modem_drv *mdm_drv);
22 void (*debug_state_changed_cb)(int value);
Joel Kingd8052c02012-02-03 12:33:31 -080023 void (*status_cb)(struct mdm_modem_drv *mdm_drv, int value);
Joel Kinge9cd5272012-01-28 12:48:59 -080024};
25
Joel Kingb6f0f612011-11-01 16:59:14 -070026/* Private mdm2 data structure */
27struct mdm_modem_drv {
28 unsigned mdm2ap_errfatal_gpio;
29 unsigned ap2mdm_errfatal_gpio;
30 unsigned mdm2ap_status_gpio;
31 unsigned ap2mdm_status_gpio;
32 unsigned mdm2ap_wakeup_gpio;
33 unsigned ap2mdm_wakeup_gpio;
34 unsigned ap2mdm_pmic_reset_n_gpio;
35 unsigned ap2mdm_kpdpwr_n_gpio;
36
37 int mdm_errfatal_irq;
38 int mdm_status_irq;
39 int mdm_ready;
40 int mdm_boot_status;
41 int mdm_ram_dump_status;
42 enum charm_boot_type boot_type;
43 int mdm_debug_on;
44
Joel Kinge9cd5272012-01-28 12:48:59 -080045 struct mdm_ops *ops;
Joel King415af512012-02-03 10:22:43 -080046 struct mdm_platform_data *pdata;
Joel Kingb6f0f612011-11-01 16:59:14 -070047};
48
49int mdm_common_create(struct platform_device *pdev,
Joel Kinge9cd5272012-01-28 12:48:59 -080050 struct mdm_ops *mdm_cb);
Joel Kingb6f0f612011-11-01 16:59:14 -070051int mdm_common_modem_remove(struct platform_device *pdev);
52void mdm_common_modem_shutdown(struct platform_device *pdev);
53void mdm_common_set_debug_state(int value);
54
55#endif
56