blob: f157d88341f3da574bd49e85a57a0b5548c53b0b [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);
Joel Kinge92eb872012-05-06 09:30:24 -070020 void (*reset_mdm_cb)(struct mdm_modem_drv *mdm_drv);
Joel Kinge9cd5272012-01-28 12:48:59 -080021 void (*normal_boot_done_cb)(struct mdm_modem_drv *mdm_drv);
22 void (*power_down_mdm_cb)(struct mdm_modem_drv *mdm_drv);
23 void (*debug_state_changed_cb)(int value);
Joel Kingd8052c02012-02-03 12:33:31 -080024 void (*status_cb)(struct mdm_modem_drv *mdm_drv, int value);
Joel Kinge9cd5272012-01-28 12:48:59 -080025};
26
Joel Kingb6f0f612011-11-01 16:59:14 -070027/* Private mdm2 data structure */
28struct mdm_modem_drv {
29 unsigned mdm2ap_errfatal_gpio;
30 unsigned ap2mdm_errfatal_gpio;
31 unsigned mdm2ap_status_gpio;
32 unsigned ap2mdm_status_gpio;
33 unsigned mdm2ap_wakeup_gpio;
34 unsigned ap2mdm_wakeup_gpio;
Joel Kingb6f0f612011-11-01 16:59:14 -070035 unsigned ap2mdm_kpdpwr_n_gpio;
Joel Kinge92eb872012-05-06 09:30:24 -070036 unsigned ap2mdm_soft_reset_gpio;
37 unsigned ap2mdm_pmic_pwr_en_gpio;
Joel Kingb6f0f612011-11-01 16:59:14 -070038
39 int mdm_errfatal_irq;
40 int mdm_status_irq;
41 int mdm_ready;
42 int mdm_boot_status;
43 int mdm_ram_dump_status;
44 enum charm_boot_type boot_type;
45 int mdm_debug_on;
Joel Kinge92eb872012-05-06 09:30:24 -070046 int mdm_unexpected_reset_occurred;
Joel Kingb6f0f612011-11-01 16:59:14 -070047
Joel Kinge9cd5272012-01-28 12:48:59 -080048 struct mdm_ops *ops;
Joel King415af512012-02-03 10:22:43 -080049 struct mdm_platform_data *pdata;
Joel Kingb6f0f612011-11-01 16:59:14 -070050};
51
52int mdm_common_create(struct platform_device *pdev,
Joel Kinge9cd5272012-01-28 12:48:59 -080053 struct mdm_ops *mdm_cb);
Joel Kingb6f0f612011-11-01 16:59:14 -070054int mdm_common_modem_remove(struct platform_device *pdev);
55void mdm_common_modem_shutdown(struct platform_device *pdev);
56void mdm_common_set_debug_state(int value);
57
58#endif
59