blob: 44c6d7f95d143e34112f61ddb3eb78846141265a [file] [log] [blame]
Shimrit Malichidbf43d72013-03-16 03:32:27 +02001/* include/linux/usb/msm_hsusb.h
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +05302 *
3 * Copyright (C) 2008 Google, Inc.
4 * Author: Brian Swetland <swetland@google.com>
Manu Gautam355270a2012-12-21 16:52:50 +05305 * Copyright (c) 2009-2013, The Linux Foundation. All rights reserved.
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +05306 *
7 * This software is licensed under the terms of the GNU General Public
8 * License version 2, as published by the Free Software Foundation, and
9 * may be copied, distributed, and modified under those terms.
10 *
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
15 *
16 */
17
18#ifndef __ASM_ARCH_MSM_HSUSB_H
19#define __ASM_ARCH_MSM_HSUSB_H
20
21#include <linux/types.h>
Ido Shayevitz9fb83452012-04-01 17:45:58 +030022#include <linux/usb/ch9.h>
23#include <linux/usb/gadget.h>
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +053024#include <linux/usb/otg.h>
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -070025#include <linux/wakelock.h>
Steve Mucklef132c6c2012-06-06 18:30:57 -070026#include <linux/pm_qos.h>
Ido Shayevitz5a6178b2012-06-10 16:31:13 +030027#include <linux/hrtimer.h>
David Keitel272ce522012-08-17 16:25:24 -070028#include <linux/power_supply.h>
Ido Shayevitzd1cb16c2012-03-28 18:57:47 +020029/*
30 * The following are bit fields describing the usb_request.udc_priv word.
31 * These bit fields are set by function drivers that wish to queue
32 * usb_requests with sps/bam parameters.
33 */
34#define MSM_PIPE_ID_MASK (0x1F)
35#define MSM_TX_PIPE_ID_OFS (16)
36#define MSM_SPS_MODE BIT(5)
37#define MSM_IS_FINITE_TRANSFER BIT(6)
38#define MSM_PRODUCER BIT(7)
39#define MSM_DISABLE_WB BIT(8)
40#define MSM_ETD_IOC BIT(9)
41#define MSM_INTERNAL_MEM BIT(10)
42#define MSM_VENDOR_ID BIT(16)
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +053043
44/**
Manu Gautame3a39082013-06-11 10:42:56 +053045 * Requested USB votes for BUS bandwidth
46 *
47 * USB_NO_PERF_VOTE BUS Vote for inactive USB session or disconnect
48 * USB_MAX_PERF_VOTE Maximum BUS bandwidth vote
49 * USB_MIN_PERF_VOTE Minimum BUS bandwidth vote (for some hw same as NO_PERF)
50 *
51 */
52enum usb_bus_vote {
53 USB_NO_PERF_VOTE = 0,
54 USB_MAX_PERF_VOTE,
55 USB_MIN_PERF_VOTE,
56};
57
58/**
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +053059 * Supported USB modes
60 *
61 * USB_PERIPHERAL Only peripheral mode is supported.
62 * USB_HOST Only host mode is supported.
63 * USB_OTG OTG mode is supported.
64 *
65 */
66enum usb_mode_type {
67 USB_NONE = 0,
68 USB_PERIPHERAL,
69 USB_HOST,
70 USB_OTG,
71};
72
73/**
74 * OTG control
75 *
76 * OTG_NO_CONTROL Id/VBUS notifications not required. Useful in host
77 * only configuration.
78 * OTG_PHY_CONTROL Id/VBUS notifications comes form USB PHY.
79 * OTG_PMIC_CONTROL Id/VBUS notifications comes from PMIC hardware.
80 * OTG_USER_CONTROL Id/VBUS notifcations comes from User via sysfs.
81 *
82 */
83enum otg_control_type {
84 OTG_NO_CONTROL = 0,
85 OTG_PHY_CONTROL,
86 OTG_PMIC_CONTROL,
87 OTG_USER_CONTROL,
88};
89
90/**
Pavankumar Kondetid8608522011-05-04 10:19:47 +053091 * PHY used in
92 *
93 * INVALID_PHY Unsupported PHY
94 * CI_45NM_INTEGRATED_PHY Chipidea 45nm integrated PHY
95 * SNPS_28NM_INTEGRATED_PHY Synopsis 28nm integrated PHY
96 *
97 */
98enum msm_usb_phy_type {
99 INVALID_PHY = 0,
100 CI_45NM_INTEGRATED_PHY,
101 SNPS_28NM_INTEGRATED_PHY,
102};
103
104#define IDEV_CHG_MAX 1500
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700105#define IDEV_CHG_MIN 500
Pavankumar Kondetid8608522011-05-04 10:19:47 +0530106#define IUNIT 100
107
Pavankumar Kondetiaa449e12011-11-04 11:09:26 +0530108#define IDEV_ACA_CHG_MAX 1500
109#define IDEV_ACA_CHG_LIMIT 500
110
Pavankumar Kondetid8608522011-05-04 10:19:47 +0530111/**
112 * Different states involved in USB charger detection.
113 *
114 * USB_CHG_STATE_UNDEFINED USB charger is not connected or detection
115 * process is not yet started.
116 * USB_CHG_STATE_WAIT_FOR_DCD Waiting for Data pins contact.
117 * USB_CHG_STATE_DCD_DONE Data pin contact is detected.
118 * USB_CHG_STATE_PRIMARY_DONE Primary detection is completed (Detects
119 * between SDP and DCP/CDP).
120 * USB_CHG_STATE_SECONDARY_DONE Secondary detection is completed (Detects
121 * between DCP and CDP).
122 * USB_CHG_STATE_DETECTED USB charger type is determined.
123 *
124 */
125enum usb_chg_state {
126 USB_CHG_STATE_UNDEFINED = 0,
127 USB_CHG_STATE_WAIT_FOR_DCD,
128 USB_CHG_STATE_DCD_DONE,
129 USB_CHG_STATE_PRIMARY_DONE,
130 USB_CHG_STATE_SECONDARY_DONE,
131 USB_CHG_STATE_DETECTED,
132};
133
134/**
135 * USB charger types
136 *
137 * USB_INVALID_CHARGER Invalid USB charger.
138 * USB_SDP_CHARGER Standard downstream port. Refers to a downstream port
139 * on USB2.0 compliant host/hub.
140 * USB_DCP_CHARGER Dedicated charger port (AC charger/ Wall charger).
141 * USB_CDP_CHARGER Charging downstream port. Enumeration can happen and
142 * IDEV_CHG_MAX can be drawn irrespective of USB state.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700143 * USB_ACA_A_CHARGER B-device is connected on accessory port with charger
144 * connected on charging port. This configuration allows
145 * charging in host mode.
146 * USB_ACA_B_CHARGER No device (or A-device without VBUS) is connected on
147 * accessory port with charger connected on charging port.
148 * USB_ACA_C_CHARGER A-device (with VBUS) is connected on
149 * accessory port with charger connected on charging port.
150 * USB_ACA_DOCK_CHARGER A docking station that has one upstream port and one
151 * or more downstream ports. Capable of supplying
152 * IDEV_CHG_MAX irrespective of devices connected on
153 * accessory ports.
Pavankumar Kondeti9ec21d32012-05-07 15:50:23 +0530154 * USB_PROPRIETARY_CHARGER A proprietary charger pull DP and DM to specific
155 * voltages between 2.0-3.3v for identification.
156 *
Pavankumar Kondetid8608522011-05-04 10:19:47 +0530157 */
158enum usb_chg_type {
159 USB_INVALID_CHARGER = 0,
160 USB_SDP_CHARGER,
161 USB_DCP_CHARGER,
162 USB_CDP_CHARGER,
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700163 USB_ACA_A_CHARGER,
164 USB_ACA_B_CHARGER,
165 USB_ACA_C_CHARGER,
166 USB_ACA_DOCK_CHARGER,
Pavankumar Kondeti9ec21d32012-05-07 15:50:23 +0530167 USB_PROPRIETARY_CHARGER,
Pavankumar Kondetid8608522011-05-04 10:19:47 +0530168};
169
170/**
Mayank Rana248698c2012-04-19 00:03:16 +0530171 * Used different VDDCX voltage voting mechnism
172 * VDDCX_CORNER Vote for VDDCX Corner voltage
173 * VDDCX Vote for VDDCX Absolute voltage
174 */
175enum usb_vdd_type {
176 VDDCX_CORNER = 0,
177 VDDCX,
178 VDD_TYPE_MAX,
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +0530179};
180
181/**
Amit Blayd6ea6102012-06-07 16:26:24 +0300182 * Used different VDDCX voltage values
183 */
184enum usb_vdd_value {
185 VDD_NONE = 0,
186 VDD_MIN,
187 VDD_MAX,
188 VDD_VAL_MAX,
189};
190
191/**
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +0530192 * struct msm_otg_platform_data - platform device data
Pavankumar Kondetidfb21302011-03-04 22:45:02 +0530193 * for msm_otg driver.
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +0530194 * @phy_init_seq: PHY configuration sequence. val, reg pairs
195 * terminated by -1.
Mayank Rana8549e632012-01-23 12:49:54 +0530196 * @vbus_power: VBUS power on/off routine.It should return result
197 * as success(zero value) or failure(non-zero value).
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +0530198 * @power_budget: VBUS power budget in mA (0 will be treated as 500mA).
199 * @mode: Supported mode (OTG/peripheral/host).
200 * @otg_control: OTG switch controlled by user/Id pin
201 * @default_mode: Default operational mode. Applicable only if
202 * OTG switch is controller by user.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700203 * @pmic_id_irq: IRQ number assigned for PMIC USB ID line.
Jack Pham87f202f2012-08-06 00:24:22 -0700204 * @mpm_otgsessvld_int: MPM wakeup pin assigned for OTG SESSVLD
205 * interrupt. Used when .otg_control == OTG_PHY_CONTROL.
Vijayavardhan Vennapusafc464f02011-11-04 21:54:00 +0530206 * @mhl_enable: indicates MHL connector or not.
Ofir Cohen4da266f2012-01-03 10:19:29 +0200207 * @disable_reset_on_disconnect: perform USB PHY and LINK reset
208 * on USB cable disconnection.
Manu Gautam0ddbd922012-09-21 17:17:38 +0530209 * @pnoc_errata_fix: workaround needed for PNOC hardware bug that
210 * affects USB performance.
Amit Blay6fa647a2012-05-24 14:12:08 +0300211 * @enable_lpm_on_suspend: Enable the USB core to go into Low
212 * Power Mode, when USB bus is suspended but cable
213 * is connected.
Amit Blay9b6e58b2012-06-18 13:12:49 +0300214 * @core_clk_always_on_workaround: Don't disable core_clk when
215 * USB enters LPM.
Amit Blayd6f38282012-10-29 13:13:46 +0200216 * @delay_lpm_on_disconnect: Use a delay before entering LPM
217 * upon USB cable disconnection.
Manu Gautam0fd2d0e2013-03-26 18:09:11 +0530218 * @enable_sec_phy: Use second HSPHY with USB2 core
Manu Gautamcd82e9d2011-12-20 14:17:28 +0530219 * @bus_scale_table: parameters for bus bandwidth requirements
Pavankumar Kondeti2aec9f32012-06-13 09:06:03 +0530220 * @mhl_dev_name: MHL device name used to register with MHL driver.
Amit Blayb4f14532013-06-17 22:33:57 +0300221 * @log2_itc: value of 2^(log2_itc-1) will be used as the
222 * interrupt threshold (ITC), when log2_itc is
223 * between 1 to 7.
Shimrit Malichi5a2d5b52013-06-20 19:04:28 +0300224 * @l1_supported: enable link power management support.
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +0530225 */
226struct msm_otg_platform_data {
227 int *phy_init_seq;
Mayank Rana8549e632012-01-23 12:49:54 +0530228 int (*vbus_power)(bool on);
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +0530229 unsigned power_budget;
230 enum usb_mode_type mode;
231 enum otg_control_type otg_control;
232 enum usb_mode_type default_mode;
Pavankumar Kondetid8608522011-05-04 10:19:47 +0530233 enum msm_usb_phy_type phy_type;
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +0530234 void (*setup_gpio)(enum usb_otg_state state);
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700235 int pmic_id_irq;
Jack Pham87f202f2012-08-06 00:24:22 -0700236 unsigned int mpm_otgsessvld_int;
Vijayavardhan Vennapusafc464f02011-11-04 21:54:00 +0530237 bool mhl_enable;
Ofir Cohen4da266f2012-01-03 10:19:29 +0200238 bool disable_reset_on_disconnect;
Manu Gautam0ddbd922012-09-21 17:17:38 +0530239 bool pnoc_errata_fix;
Amit Blay6fa647a2012-05-24 14:12:08 +0300240 bool enable_lpm_on_dev_suspend;
Amit Blay9b6e58b2012-06-18 13:12:49 +0300241 bool core_clk_always_on_workaround;
Amit Blayd6f38282012-10-29 13:13:46 +0200242 bool delay_lpm_on_disconnect;
Lena Salmanabde35d2013-04-25 15:29:43 +0300243 bool delay_lpm_hndshk_on_disconnect;
Vamsi Krishna1a1684b2013-03-02 16:14:52 -0800244 bool dp_manual_pullup;
Manu Gautam0fd2d0e2013-03-26 18:09:11 +0530245 bool enable_sec_phy;
Manu Gautamcd82e9d2011-12-20 14:17:28 +0530246 struct msm_bus_scale_pdata *bus_scale_table;
Pavankumar Kondeti2aec9f32012-06-13 09:06:03 +0530247 const char *mhl_dev_name;
Amit Blayb4f14532013-06-17 22:33:57 +0300248 int log2_itc;
Shimrit Malichi5a2d5b52013-06-20 19:04:28 +0300249 bool l1_supported;
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +0530250};
251
Vamsi Krishna1a1684b2013-03-02 16:14:52 -0800252/* phy related flags */
253#define ENABLE_DP_MANUAL_PULLUP BIT(0)
Manu Gautam0fd2d0e2013-03-26 18:09:11 +0530254#define ENABLE_SECONDARY_PHY BIT(1)
Vamsi Krishna1a1684b2013-03-02 16:14:52 -0800255
Vijayavardhan Vennapusaa3152032012-03-05 16:29:30 +0530256/* Timeout (in msec) values (min - max) associated with OTG timers */
257
258#define TA_WAIT_VRISE 100 /* ( - 100) */
259#define TA_WAIT_VFALL 500 /* ( - 1000) */
260
261/*
262 * This option is set for embedded hosts or OTG devices in which leakage
263 * currents are very minimal.
264 */
265#ifdef CONFIG_USB_OTG
266#define TA_WAIT_BCON 30000 /* (1100 - 30000) */
267#else
268#define TA_WAIT_BCON -1
269#endif
270
271#define TA_AIDL_BDIS 500 /* (200 - ) */
272#define TA_BIDL_ADIS 155 /* (155 - 200) */
273#define TB_SRP_FAIL 6000 /* (5000 - 6000) */
274#define TB_ASE0_BRST 200 /* (155 - ) */
275
276/* TB_SSEND_SRP and TB_SE0_SRP are combined */
277#define TB_SRP_INIT 2000 /* (1500 - ) */
278
279#define TA_TST_MAINT 10100 /* (9900 - 10100) */
280#define TB_TST_SRP 3000 /* ( - 5000) */
281#define TB_TST_CONFIG 300
282
283/* Timeout variables */
284
285#define A_WAIT_VRISE 0
286#define A_WAIT_VFALL 1
287#define A_WAIT_BCON 2
288#define A_AIDL_BDIS 3
289#define A_BIDL_ADIS 4
290#define B_SRP_FAIL 5
291#define B_ASE0_BRST 6
292#define A_TST_MAINT 7
293#define B_TST_SRP 8
294#define B_TST_CONFIG 9
295
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +0530296/**
297 * struct msm_otg: OTG driver data. Shared by HCD and DCD.
298 * @otg: USB OTG Transceiver structure.
299 * @pdata: otg device platform data.
300 * @irq: IRQ number assigned for HSUSB controller.
Manu Gautamf8c45642012-08-10 10:20:56 -0700301 * @async_irq: IRQ number used by some controllers during low power state
Manu Gautam5143b252012-01-05 19:25:23 -0800302 * @clk: clock struct of alt_core_clk.
303 * @pclk: clock struct of iface_clk.
304 * @phy_reset_clk: clock struct of phy_clk.
305 * @core_clk: clock struct of core_bus_clk.
Mayank Rana3eaf28d2013-03-27 14:04:04 +0530306 * @core_clk_rate: core clk max frequency
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +0530307 * @regs: ioremapped register base address.
308 * @inputs: OTG state machine inputs(Id, SessValid etc).
309 * @sm_work: OTG state machine work.
Pavankumar Kondeti87c01042010-12-07 17:53:58 +0530310 * @in_lpm: indicates low power mode (LPM) state.
Manu Gautamf8c45642012-08-10 10:20:56 -0700311 * @async_int: IRQ line on which ASYNC interrupt arrived in LPM.
Pavankumar Kondetid8608522011-05-04 10:19:47 +0530312 * @cur_power: The amount of mA available from downstream port.
313 * @chg_work: Charger detection work.
314 * @chg_state: The state of charger detection process.
315 * @chg_type: The type of charger attached.
316 * @dcd_retires: The retry count used to track Data contact
317 * detection process.
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700318 * @wlock: Wake lock struct to prevent system suspend when
319 * USB is active.
320 * @usbdev_nb: The notifier block used to know about the B-device
321 * connected. Useful only when ACA_A charger is
322 * connected.
323 * @mA_port: The amount of current drawn by the attached B-device.
Pavankumar Kondetiaa449e12011-11-04 11:09:26 +0530324 * @id_timer: The timer used for polling ID line to detect ACA states.
Anji jonnala7da3f262011-12-02 17:22:14 -0800325 * @xo_handle: TCXO buffer handle
Manu Gautamcd82e9d2011-12-20 14:17:28 +0530326 * @bus_perf_client: Bus performance client handle to request BUS bandwidth
Pavankumar Kondeti2aec9f32012-06-13 09:06:03 +0530327 * @mhl_enabled: MHL driver registration successful and MHL enabled.
Pavankumar Kondeti458d8792012-09-28 14:45:18 +0530328 * @chg_check_timer: The timer used to implement the workaround to detect
329 * very slow plug in of wall charger.
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +0530330 */
331struct msm_otg {
Heikki Krogerus1d4c9292012-02-13 13:24:09 +0200332 struct usb_phy phy;
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +0530333 struct msm_otg_platform_data *pdata;
334 int irq;
Manu Gautamf8c45642012-08-10 10:20:56 -0700335 int async_irq;
Vijayavardhan Vennapusa0cab6172013-02-20 19:51:15 +0530336 struct clk *xo_clk;
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +0530337 struct clk *clk;
338 struct clk *pclk;
339 struct clk *phy_reset_clk;
340 struct clk *core_clk;
Mayank Rana3eaf28d2013-03-27 14:04:04 +0530341 long core_clk_rate;
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +0530342 void __iomem *regs;
343#define ID 0
344#define B_SESS_VLD 1
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700345#define ID_A 2
346#define ID_B 3
347#define ID_C 4
Vijayavardhan Vennapusaa3152032012-03-05 16:29:30 +0530348#define A_BUS_DROP 5
349#define A_BUS_REQ 6
350#define A_SRP_DET 7
351#define A_VBUS_VLD 8
352#define B_CONN 9
353#define ADP_CHANGE 10
354#define POWER_UP 11
355#define A_CLR_ERR 12
356#define A_BUS_RESUME 13
357#define A_BUS_SUSPEND 14
358#define A_CONN 15
359#define B_BUS_REQ 16
Pavankumar Kondeti2aec9f32012-06-13 09:06:03 +0530360#define MHL 17
Pavankumar Kondeti458d8792012-09-28 14:45:18 +0530361#define B_FALSE_SDP 18
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +0530362 unsigned long inputs;
363 struct work_struct sm_work;
Jack Pham5ca279b2012-05-14 18:42:54 -0700364 bool sm_work_pending;
365 atomic_t pm_suspended;
Pavankumar Kondeti87c01042010-12-07 17:53:58 +0530366 atomic_t in_lpm;
367 int async_int;
Pavankumar Kondetid8608522011-05-04 10:19:47 +0530368 unsigned cur_power;
369 struct delayed_work chg_work;
Vijayavardhan Vennapusa68d55cf2012-06-27 20:06:12 +0530370 struct delayed_work pmic_id_status_work;
Amit Blayd0fe07b2012-09-05 16:42:09 +0300371 struct delayed_work suspend_work;
Pavankumar Kondetid8608522011-05-04 10:19:47 +0530372 enum usb_chg_state chg_state;
373 enum usb_chg_type chg_type;
Pavankumar Kondetiebb4a2d2013-01-04 12:28:10 +0530374 unsigned dcd_time;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700375 struct wake_lock wlock;
376 struct notifier_block usbdev_nb;
377 unsigned mA_port;
Pavankumar Kondetiaa449e12011-11-04 11:09:26 +0530378 struct timer_list id_timer;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700379 unsigned long caps;
Stephen Boyd30ad10b2012-03-01 14:51:04 -0800380 struct msm_xo_voter *xo_handle;
Manu Gautamcd82e9d2011-12-20 14:17:28 +0530381 uint32_t bus_perf_client;
Pavankumar Kondeti2aec9f32012-06-13 09:06:03 +0530382 bool mhl_enabled;
Pavankumar Kondeti458d8792012-09-28 14:45:18 +0530383 struct timer_list chg_check_timer;
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700384 /*
385 * Allowing PHY power collpase turns off the HSUSB 3.3v and 1.8v
386 * analog regulators while going to low power mode.
Amit Blay81801aa2012-09-19 12:08:12 +0200387 * Currently only 28nm PHY has the support to allowing PHY
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700388 * power collapse since it doesn't have leakage currents while
389 * turning off the power rails.
390 */
391#define ALLOW_PHY_POWER_COLLAPSE BIT(0)
392 /*
393 * Allow PHY RETENTION mode before turning off the digital
394 * voltage regulator(VDDCX).
395 */
396#define ALLOW_PHY_RETENTION BIT(1)
Amit Blay6fa647a2012-05-24 14:12:08 +0300397 /*
398 * Allow putting the core in Low Power mode, when
399 * USB bus is suspended but cable is connected.
400 */
Amit Blay81801aa2012-09-19 12:08:12 +0200401#define ALLOW_LPM_ON_DEV_SUSPEND BIT(2)
402 /*
403 * Allowing PHY regulators LPM puts the HSUSB 3.3v and 1.8v
404 * analog regulators into LPM while going to USB low power mode.
405 */
406#define ALLOW_PHY_REGULATORS_LPM BIT(3)
Bryan Huntsman3f2bc4d2011-08-16 17:27:22 -0700407 unsigned long lpm_flags;
408#define PHY_PWR_COLLAPSED BIT(0)
409#define PHY_RETENTIONED BIT(1)
Vijayavardhan Vennapusabbdd6082012-06-06 14:14:25 +0530410#define XO_SHUTDOWN BIT(2)
Ido Shayevitzc5c0f572012-07-31 13:58:45 +0300411#define CLOCKS_DOWN BIT(3)
Amit Blay81801aa2012-09-19 12:08:12 +0200412#define PHY_REGULATORS_LPM BIT(4)
Ofir Cohen4da266f2012-01-03 10:19:29 +0200413 int reset_counter;
Vijayavardhan Vennapusaa3152032012-03-05 16:29:30 +0530414 unsigned long b_last_se0_sess;
415 unsigned long tmouts;
416 u8 active_tmout;
417 struct hrtimer timer;
Mayank Rana248698c2012-04-19 00:03:16 +0530418 enum usb_vdd_type vdd_type;
David Keitel272ce522012-08-17 16:25:24 -0700419 struct power_supply usb_psy;
420 unsigned int online;
421 unsigned int host_mode;
422 unsigned int current_max;
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +0530423};
424
Amit Blayb4f14532013-06-17 22:33:57 +0300425struct ci13xxx_platform_data {
426 u8 usb_core_id;
427 /*
428 * value of 2^(log2_itc-1) will be used as the interrupt threshold
429 * (ITC), when log2_itc is between 1 to 7.
430 */
431 int log2_itc;
432 void *prv_data;
Shimrit Malichi5a2d5b52013-06-20 19:04:28 +0300433 bool l1_supported;
Amit Blayb4f14532013-06-17 22:33:57 +0300434};
435
Vijayavardhan Vennapusae3316a12011-10-15 06:05:17 +0530436struct msm_hsic_host_platform_data {
437 unsigned strobe;
438 unsigned data;
Manu Gautam863b74132012-11-21 14:30:04 +0530439 bool ignore_cal_pad_config;
Manu Gautam3c598392013-03-22 16:59:10 +0530440 bool phy_sof_workaround;
Manu Gautam863b74132012-11-21 14:30:04 +0530441 int strobe_pad_offset;
442 int data_pad_offset;
443
Hemant Kumare6275972012-02-29 20:06:21 -0800444 struct msm_bus_scale_pdata *bus_scale_table;
Hemant Kumar30d361c2012-08-20 14:44:40 -0700445 unsigned log2_irq_thresh;
Hemant Kumarbc8bdf62012-10-17 12:29:51 -0700446
Vamsi Krishnabef91832013-03-11 14:10:20 -0700447 /* gpio used to resume peripheral */
448 unsigned resume_gpio;
449
Hemant Kumarbc8bdf62012-10-17 12:29:51 -0700450 /*swfi latency is required while driving resume on to the bus */
Pavankumar Kondeti4f5dc3b2012-09-07 15:33:09 +0530451 u32 swfi_latency;
Hemant Kumarbc8bdf62012-10-17 12:29:51 -0700452
453 /*standalone latency is required when HSCI is active*/
454 u32 standalone_latency;
Shimrit Malichi36a0c852013-03-10 11:39:10 +0200455 bool pool_64_bit_align;
Shimrit Malichi82d7cbc2013-03-12 15:36:54 +0200456 bool enable_hbm;
Shimrit Malichi08f07342013-04-24 13:09:12 +0300457 bool disable_park_mode;
Ido Shayevitzaa165c52013-05-12 16:01:28 +0200458 bool consider_ipa_handshake;
Amit Blay1dfbbcc2013-05-26 17:33:13 +0300459 bool ahb_async_bridge_bypass;
Vijayavardhan Vennapusae3316a12011-10-15 06:05:17 +0530460};
461
Manu Gautam91223e02011-11-08 15:27:22 +0530462struct msm_usb_host_platform_data {
463 unsigned int power_budget;
Vijayavardhan Vennapusa4fa13692012-08-02 14:35:03 +0530464 int pmic_gpio_dp_irq;
Hemant Kumar56925352012-02-13 16:59:52 -0800465 unsigned int dock_connect_irq;
Vijayavardhan Vennapusa1f5da0b2013-01-08 20:03:57 +0530466 bool use_sec_phy;
Manu Gautam91223e02011-11-08 15:27:22 +0530467};
468
Amit Blay9b6e58b2012-06-18 13:12:49 +0300469/**
470 * struct msm_hsic_peripheral_platform_data: HSIC peripheral
471 * platform data.
472 * @core_clk_always_on_workaround: Don't disable core_clk when
473 * HSIC enters LPM.
474 */
Amit Blay4d57d362012-04-28 11:00:21 +0300475struct msm_hsic_peripheral_platform_data {
Amit Blay9b6e58b2012-06-18 13:12:49 +0300476 bool core_clk_always_on_workaround;
Amit Blay4d57d362012-04-28 11:00:21 +0300477};
478
Jack Phamfadd6432012-12-07 19:03:41 -0800479/**
480 * struct usb_ext_notification: event notification structure
481 * @notify: pointer to client function to call when ID event is detected.
482 * The last parameter is provided by driver to be called back when
483 * external client indicates it is done using the USB. This function
484 * should return 0 if handled successfully, otherise an error code.
485 * @ctxt: client-specific context pointer
486 *
487 * This structure should be used by clients wishing to register (via
488 * msm_register_usb_ext_notification) for event notification whenever a USB
489 * cable is plugged in and ID pin status changes. Clients must provide a
490 * callback function pointer. If this callback returns 0, the USB driver will
491 * assume the client is "taking over" the connection, and will relinquish any
492 * further processing until its callback (passed via the third parameter) is
493 * called with the online parameter set to false.
494 */
495struct usb_ext_notification {
496 int (*notify)(void *, int, void (*)(int online));
497 void *ctxt;
498};
Lena Salmanabde35d2013-04-25 15:29:43 +0300499#ifdef CONFIG_USB_BAM
500bool msm_bam_lpm_ok(void);
Ido Shayevitzaa165c52013-05-12 16:01:28 +0200501void msm_bam_set_hsic_host_dev(struct device *dev);
502void msm_bam_wait_for_hsic_prod_granted(void);
503bool msm_bam_hsic_lpm_ok(void);
504void msm_bam_hsic_notify_on_resume(void);
Lena Salmanabde35d2013-04-25 15:29:43 +0300505#else
506static inline bool msm_bam_lpm_ok(void) { return true; }
Ido Shayevitzaa165c52013-05-12 16:01:28 +0200507static inline void msm_bam_set_hsic_host_dev(struct device *dev) {}
508static inline void msm_bam_wait_for_hsic_prod_granted(void) {}
509static inline bool msm_bam_hsic_lpm_ok(void) { return true; }
510static inline void msm_bam_hsic_notify_on_resume(void) {}
Lena Salmanabde35d2013-04-25 15:29:43 +0300511#endif
Amit Blay1572b492012-11-27 16:45:32 +0200512#ifdef CONFIG_USB_CI13XXX_MSM
513void msm_hw_bam_disable(bool bam_disable);
Amit Blay1572b492012-11-27 16:45:32 +0200514#else
515static inline void msm_hw_bam_disable(bool bam_disable)
516{
517}
518#endif
519
Shimrit Malichi255b5342012-08-02 21:01:43 +0300520#ifdef CONFIG_USB_DWC3_MSM
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300521int msm_ep_config(struct usb_ep *ep);
522int msm_ep_unconfig(struct usb_ep *ep);
Shimrit Malichi255b5342012-08-02 21:01:43 +0300523int msm_data_fifo_config(struct usb_ep *ep, u32 addr, u32 size,
524 u8 dst_pipe_idx);
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300525
Manu Gautam6eb13e32013-02-01 15:19:15 +0530526void msm_dwc3_restart_usb_session(void);
Jack Phamfadd6432012-12-07 19:03:41 -0800527
Manu Gautam6eb13e32013-02-01 15:19:15 +0530528int msm_register_usb_ext_notification(struct usb_ext_notification *info);
Shimrit Malichi255b5342012-08-02 21:01:43 +0300529#else
530static inline int msm_data_fifo_config(struct usb_ep *ep, u32 addr, u32 size,
531 u8 dst_pipe_idx)
532{
533 return -ENODEV;
534}
535
536static inline int msm_ep_config(struct usb_ep *ep)
537{
538 return -ENODEV;
539}
540
541static inline int msm_ep_unconfig(struct usb_ep *ep)
542{
543 return -ENODEV;
544}
Jack Phamfadd6432012-12-07 19:03:41 -0800545
Manu Gautam6eb13e32013-02-01 15:19:15 +0530546static inline void msm_dwc3_restart_usb_session(void)
547{
548 return;
549}
550
Jack Phamfadd6432012-12-07 19:03:41 -0800551static inline int msm_register_usb_ext_notification(
552 struct usb_ext_notification *info)
553{
554 return -ENODEV;
555}
Shimrit Malichi255b5342012-08-02 21:01:43 +0300556#endif
Pavankumar Kondetie0c201f2010-12-07 17:53:55 +0530557#endif