blob: 435ef3b089b0c2b452a12a665a82b71bb3601d68 [file] [log] [blame]
Vijayavardhan Vennapusa45145882013-01-03 14:11:58 +05301/* Copyright (c) 2012-2013, The Linux Foundation. All rights reserved.
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002 *
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/kernel.h>
16#include <linux/slab.h>
17#include <linux/platform_device.h>
18#include <linux/dma-mapping.h>
Manu Gautamb5067272012-07-02 09:53:41 +053019#include <linux/pm_runtime.h>
Manu Gautam377821c2012-09-28 16:53:24 +053020#include <linux/ratelimit.h>
Manu Gautamb5067272012-07-02 09:53:41 +053021#include <linux/interrupt.h>
Ido Shayevitzef72ddd2012-03-28 18:55:55 +020022#include <linux/ioport.h>
Manu Gautam1742db22012-06-19 13:33:24 +053023#include <linux/clk.h>
Ido Shayevitzef72ddd2012-03-28 18:55:55 +020024#include <linux/io.h>
25#include <linux/module.h>
26#include <linux/types.h>
Ido Shayevitzef72ddd2012-03-28 18:55:55 +020027#include <linux/delay.h>
28#include <linux/of.h>
Vijayavardhan Vennapusa8eb68732013-03-26 13:05:38 +053029#include <linux/of_platform.h>
Ido Shayevitz9fb83452012-04-01 17:45:58 +030030#include <linux/list.h>
Manu Gautamb5067272012-07-02 09:53:41 +053031#include <linux/debugfs.h>
32#include <linux/uaccess.h>
Ido Shayevitz9fb83452012-04-01 17:45:58 +030033#include <linux/usb/ch9.h>
34#include <linux/usb/gadget.h>
David Keitelad4a0282013-03-19 18:04:27 -070035#include <linux/qpnp-misc.h>
Ido Shayevitz9fb83452012-04-01 17:45:58 +030036#include <linux/usb/msm_hsusb.h>
Manu Gautam60e01352012-05-29 09:00:34 +053037#include <linux/regulator/consumer.h>
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +053038#include <linux/power_supply.h>
Jack Pham0fc12332012-11-19 13:14:22 -080039#include <linux/qpnp/qpnp-adc.h>
Manu Gautam60e01352012-05-29 09:00:34 +053040
41#include <mach/rpm-regulator.h>
Vijayavardhan Vennapusa993798a2012-11-09 15:11:21 +053042#include <mach/rpm-regulator-smd.h>
Manu Gautam2617deb2012-08-31 17:50:06 -070043#include <mach/msm_bus.h>
Vijayavardhan Vennapusab7434562012-12-12 16:48:49 +053044#include <mach/clk.h>
Ido Shayevitz9fb83452012-04-01 17:45:58 +030045
Manu Gautam8c642812012-06-07 10:35:10 +053046#include "dwc3_otg.h"
Ido Shayevitz9fb83452012-04-01 17:45:58 +030047#include "core.h"
48#include "gadget.h"
49
Jack Pham0fc12332012-11-19 13:14:22 -080050/* ADC threshold values */
51static int adc_low_threshold = 700;
52module_param(adc_low_threshold, int, S_IRUGO | S_IWUSR);
53MODULE_PARM_DESC(adc_low_threshold, "ADC ID Low voltage threshold");
54
55static int adc_high_threshold = 950;
56module_param(adc_high_threshold, int, S_IRUGO | S_IWUSR);
57MODULE_PARM_DESC(adc_high_threshold, "ADC ID High voltage threshold");
58
59static int adc_meas_interval = ADC_MEAS1_INTERVAL_1S;
60module_param(adc_meas_interval, int, S_IRUGO | S_IWUSR);
61MODULE_PARM_DESC(adc_meas_interval, "ADC ID polling period");
62
Vijayavardhan Vennapusa26a49602012-12-18 13:51:45 +053063static int override_phy_init;
64module_param(override_phy_init, int, S_IRUGO|S_IWUSR);
65MODULE_PARM_DESC(override_phy_init, "Override HSPHY Init Seq");
66
Jack Pham9b4606b2013-04-02 17:32:25 -070067/* Enable Proprietary charger detection */
68static bool prop_chg_detect;
69module_param(prop_chg_detect, bool, S_IRUGO | S_IWUSR);
70MODULE_PARM_DESC(prop_chg_detect, "Enable Proprietary charger detection");
71
Ido Shayevitz9fb83452012-04-01 17:45:58 +030072/**
73 * USB DBM Hardware registers.
74 *
75 */
Shimrit Malichia00d7322012-08-05 13:56:28 +030076#define DBM_BASE 0x000F8000
77#define DBM_EP_CFG(n) (DBM_BASE + (0x00 + 4 * (n)))
78#define DBM_DATA_FIFO(n) (DBM_BASE + (0x10 + 4 * (n)))
79#define DBM_DATA_FIFO_SIZE(n) (DBM_BASE + (0x20 + 4 * (n)))
80#define DBM_DATA_FIFO_EN (DBM_BASE + (0x30))
81#define DBM_GEVNTADR (DBM_BASE + (0x34))
82#define DBM_GEVNTSIZ (DBM_BASE + (0x38))
83#define DBM_DBG_CNFG (DBM_BASE + (0x3C))
84#define DBM_HW_TRB0_EP(n) (DBM_BASE + (0x40 + 4 * (n)))
85#define DBM_HW_TRB1_EP(n) (DBM_BASE + (0x50 + 4 * (n)))
86#define DBM_HW_TRB2_EP(n) (DBM_BASE + (0x60 + 4 * (n)))
87#define DBM_HW_TRB3_EP(n) (DBM_BASE + (0x70 + 4 * (n)))
88#define DBM_PIPE_CFG (DBM_BASE + (0x80))
89#define DBM_SOFT_RESET (DBM_BASE + (0x84))
90#define DBM_GEN_CFG (DBM_BASE + (0x88))
Ido Shayevitz9fb83452012-04-01 17:45:58 +030091
92/**
93 * USB DBM Hardware registers bitmask.
94 *
95 */
96/* DBM_EP_CFG */
Shimrit Malichia00d7322012-08-05 13:56:28 +030097#define DBM_EN_EP 0x00000001
98#define USB3_EPNUM 0x0000003E
Ido Shayevitz9fb83452012-04-01 17:45:58 +030099#define DBM_BAM_PIPE_NUM 0x000000C0
100#define DBM_PRODUCER 0x00000100
101#define DBM_DISABLE_WB 0x00000200
102#define DBM_INT_RAM_ACC 0x00000400
103
104/* DBM_DATA_FIFO_SIZE */
105#define DBM_DATA_FIFO_SIZE_MASK 0x0000ffff
106
107/* DBM_GEVNTSIZ */
108#define DBM_GEVNTSIZ_MASK 0x0000ffff
109
110/* DBM_DBG_CNFG */
111#define DBM_ENABLE_IOC_MASK 0x0000000f
112
113/* DBM_SOFT_RESET */
114#define DBM_SFT_RST_EP0 0x00000001
115#define DBM_SFT_RST_EP1 0x00000002
116#define DBM_SFT_RST_EP2 0x00000004
117#define DBM_SFT_RST_EP3 0x00000008
Shimrit Malichia00d7322012-08-05 13:56:28 +0300118#define DBM_SFT_RST_EPS_MASK 0x0000000F
119#define DBM_SFT_RST_MASK 0x80000000
120#define DBM_EN_MASK 0x00000002
Ido Shayevitzef72ddd2012-03-28 18:55:55 +0200121
122#define DBM_MAX_EPS 4
123
Ido Shayevitzfa65a582012-06-06 14:39:54 +0300124/* DBM TRB configurations */
125#define DBM_TRB_BIT 0x80000000
126#define DBM_TRB_DATA_SRC 0x40000000
127#define DBM_TRB_DMA 0x20000000
128#define DBM_TRB_EP_NUM(ep) (ep<<24)
Shimrit Malichia00d7322012-08-05 13:56:28 +0300129
Manu Gautam8c642812012-06-07 10:35:10 +0530130/**
131 * USB QSCRATCH Hardware registers
132 *
133 */
134#define QSCRATCH_REG_OFFSET (0x000F8800)
Shimrit Malichia00d7322012-08-05 13:56:28 +0300135#define QSCRATCH_GENERAL_CFG (QSCRATCH_REG_OFFSET + 0x08)
Manu Gautambd0e5782012-08-30 10:39:01 -0700136#define HS_PHY_CTRL_REG (QSCRATCH_REG_OFFSET + 0x10)
Vijayavardhan Vennapusa26a49602012-12-18 13:51:45 +0530137#define PARAMETER_OVERRIDE_X_REG (QSCRATCH_REG_OFFSET + 0x14)
Manu Gautam8c642812012-06-07 10:35:10 +0530138#define CHARGING_DET_CTRL_REG (QSCRATCH_REG_OFFSET + 0x18)
139#define CHARGING_DET_OUTPUT_REG (QSCRATCH_REG_OFFSET + 0x1C)
140#define ALT_INTERRUPT_EN_REG (QSCRATCH_REG_OFFSET + 0x20)
141#define HS_PHY_IRQ_STAT_REG (QSCRATCH_REG_OFFSET + 0x24)
Manu Gautamd4108b72012-12-14 17:35:18 +0530142#define CGCTL_REG (QSCRATCH_REG_OFFSET + 0x28)
Manu Gautambd0e5782012-08-30 10:39:01 -0700143#define SS_PHY_CTRL_REG (QSCRATCH_REG_OFFSET + 0x30)
Vijayavardhan Vennapusa164b0f42013-01-17 19:33:53 +0530144#define SS_PHY_PARAM_CTRL_1 (QSCRATCH_REG_OFFSET + 0x34)
145#define SS_PHY_PARAM_CTRL_2 (QSCRATCH_REG_OFFSET + 0x38)
Vijayavardhan Vennapusad81aed32012-12-05 17:30:40 +0530146#define SS_CR_PROTOCOL_DATA_IN_REG (QSCRATCH_REG_OFFSET + 0x3C)
147#define SS_CR_PROTOCOL_DATA_OUT_REG (QSCRATCH_REG_OFFSET + 0x40)
148#define SS_CR_PROTOCOL_CAP_ADDR_REG (QSCRATCH_REG_OFFSET + 0x44)
149#define SS_CR_PROTOCOL_CAP_DATA_REG (QSCRATCH_REG_OFFSET + 0x48)
150#define SS_CR_PROTOCOL_READ_REG (QSCRATCH_REG_OFFSET + 0x4C)
151#define SS_CR_PROTOCOL_WRITE_REG (QSCRATCH_REG_OFFSET + 0x50)
Manu Gautam8c642812012-06-07 10:35:10 +0530152
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300153struct dwc3_msm_req_complete {
154 struct list_head list_item;
155 struct usb_request *req;
156 void (*orig_complete)(struct usb_ep *ep,
157 struct usb_request *req);
158};
159
Ido Shayevitzef72ddd2012-03-28 18:55:55 +0200160struct dwc3_msm {
Ido Shayevitzef72ddd2012-03-28 18:55:55 +0200161 struct device *dev;
162 void __iomem *base;
163 u32 resource_size;
164 int dbm_num_eps;
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300165 u8 ep_num_mapping[DBM_MAX_EPS];
166 const struct usb_ep_ops *original_ep_ops[DWC3_ENDPOINTS_NUM];
167 struct list_head req_complete_list;
Vijayavardhan Vennapusadec1fe62013-02-12 16:05:14 +0530168 struct clk *xo_clk;
Manu Gautam3e9ad352012-08-16 14:44:47 -0700169 struct clk *ref_clk;
Manu Gautam1742db22012-06-19 13:33:24 +0530170 struct clk *core_clk;
Manu Gautam3e9ad352012-08-16 14:44:47 -0700171 struct clk *iface_clk;
172 struct clk *sleep_clk;
173 struct clk *hsphy_sleep_clk;
Jack Pham22698b82013-02-13 17:45:06 -0800174 struct clk *utmi_clk;
Manu Gautam60e01352012-05-29 09:00:34 +0530175 struct regulator *hsusb_3p3;
176 struct regulator *hsusb_1p8;
177 struct regulator *hsusb_vddcx;
178 struct regulator *ssusb_1p8;
179 struct regulator *ssusb_vddcx;
Manu Gautamb5067272012-07-02 09:53:41 +0530180 struct dwc3_ext_xceiv ext_xceiv;
181 bool resume_pending;
182 atomic_t pm_suspended;
183 atomic_t in_lpm;
Manu Gautam377821c2012-09-28 16:53:24 +0530184 int hs_phy_irq;
Vijayavardhan Vennapusa26a49602012-12-18 13:51:45 +0530185 int hsphy_init_seq;
Manu Gautam377821c2012-09-28 16:53:24 +0530186 bool lpm_irq_seen;
Manu Gautamb5067272012-07-02 09:53:41 +0530187 struct delayed_work resume_work;
Manu Gautam6eb13e32013-02-01 15:19:15 +0530188 struct work_struct restart_usb_work;
Manu Gautamb5067272012-07-02 09:53:41 +0530189 struct wake_lock wlock;
Manu Gautam8c642812012-06-07 10:35:10 +0530190 struct dwc3_charger charger;
191 struct usb_phy *otg_xceiv;
192 struct delayed_work chg_work;
193 enum usb_chg_state chg_state;
Jack Pham0cca9412013-03-08 13:22:42 -0800194 int pmic_id_irq;
195 struct work_struct id_work;
Siddartha Mohanadossa3e35512013-02-22 17:06:07 -0800196 struct qpnp_adc_tm_btm_param adc_param;
Jack Pham0fc12332012-11-19 13:14:22 -0800197 struct delayed_work init_adc_work;
198 bool id_adc_detect;
Manu Gautam8c642812012-06-07 10:35:10 +0530199 u8 dcd_retries;
Manu Gautam2617deb2012-08-31 17:50:06 -0700200 u32 bus_perf_client;
201 struct msm_bus_scale_pdata *bus_scale_table;
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +0530202 struct power_supply usb_psy;
Jack Pham9354c6a2012-12-20 19:19:32 -0800203 struct power_supply *ext_vbus_psy;
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +0530204 unsigned int online;
205 unsigned int host_mode;
206 unsigned int current_max;
Vijayavardhan Vennapusa993798a2012-11-09 15:11:21 +0530207 unsigned int vdd_no_vol_level;
208 unsigned int vdd_low_vol_level;
209 unsigned int vdd_high_vol_level;
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +0530210 bool vbus_active;
Jack Phamfadd6432012-12-07 19:03:41 -0800211 bool ext_inuse;
Jack Phamf12b7e12012-12-28 14:27:26 -0800212 enum dwc3_id_state id_state;
Manu Gautam60e01352012-05-29 09:00:34 +0530213};
214
215#define USB_HSPHY_3P3_VOL_MIN 3050000 /* uV */
216#define USB_HSPHY_3P3_VOL_MAX 3300000 /* uV */
217#define USB_HSPHY_3P3_HPM_LOAD 16000 /* uA */
218
219#define USB_HSPHY_1P8_VOL_MIN 1800000 /* uV */
220#define USB_HSPHY_1P8_VOL_MAX 1800000 /* uV */
221#define USB_HSPHY_1P8_HPM_LOAD 19000 /* uA */
222
223#define USB_SSPHY_1P8_VOL_MIN 1800000 /* uV */
224#define USB_SSPHY_1P8_VOL_MAX 1800000 /* uV */
225#define USB_SSPHY_1P8_HPM_LOAD 23000 /* uA */
226
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300227static struct dwc3_msm *context;
228
Jack Phamfadd6432012-12-07 19:03:41 -0800229static struct usb_ext_notification *usb_ext;
230
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300231/**
232 *
233 * Read register with debug info.
234 *
235 * @base - DWC3 base virtual address.
236 * @offset - register offset.
237 *
238 * @return u32
239 */
240static inline u32 dwc3_msm_read_reg(void *base, u32 offset)
241{
242 u32 val = ioread32(base + offset);
243 return val;
244}
245
246/**
247 * Read register masked field with debug info.
248 *
249 * @base - DWC3 base virtual address.
250 * @offset - register offset.
251 * @mask - register bitmask.
252 *
253 * @return u32
254 */
255static inline u32 dwc3_msm_read_reg_field(void *base,
256 u32 offset,
257 const u32 mask)
258{
259 u32 shift = find_first_bit((void *)&mask, 32);
260 u32 val = ioread32(base + offset);
261 val &= mask; /* clear other bits */
262 val >>= shift;
263 return val;
264}
265
266/**
267 *
268 * Write register with debug info.
269 *
270 * @base - DWC3 base virtual address.
271 * @offset - register offset.
272 * @val - value to write.
273 *
274 */
275static inline void dwc3_msm_write_reg(void *base, u32 offset, u32 val)
276{
277 iowrite32(val, base + offset);
278}
279
280/**
281 * Write register masked field with debug info.
282 *
283 * @base - DWC3 base virtual address.
284 * @offset - register offset.
285 * @mask - register bitmask.
286 * @val - value to write.
287 *
288 */
289static inline void dwc3_msm_write_reg_field(void *base, u32 offset,
290 const u32 mask, u32 val)
291{
292 u32 shift = find_first_bit((void *)&mask, 32);
293 u32 tmp = ioread32(base + offset);
294
295 tmp &= ~mask; /* clear written bits */
296 val = tmp | (val << shift);
297 iowrite32(val, base + offset);
298}
299
300/**
Manu Gautam8c642812012-06-07 10:35:10 +0530301 * Write register and read back masked value to confirm it is written
302 *
303 * @base - DWC3 base virtual address.
304 * @offset - register offset.
305 * @mask - register bitmask specifying what should be updated
306 * @val - value to write.
307 *
308 */
309static inline void dwc3_msm_write_readback(void *base, u32 offset,
310 const u32 mask, u32 val)
311{
312 u32 write_val, tmp = ioread32(base + offset);
313
314 tmp &= ~mask; /* retain other bits */
315 write_val = tmp | val;
316
317 iowrite32(write_val, base + offset);
318
319 /* Read back to see if val was written */
320 tmp = ioread32(base + offset);
321 tmp &= mask; /* clear other bits */
322
323 if (tmp != val)
324 dev_err(context->dev, "%s: write: %x to QSCRATCH: %x FAILED\n",
325 __func__, val, offset);
326}
327
328/**
Vijayavardhan Vennapusad81aed32012-12-05 17:30:40 +0530329 *
330 * Write SSPHY register with debug info.
331 *
332 * @base - DWC3 base virtual address.
333 * @addr - SSPHY address to write.
334 * @val - value to write.
335 *
336 */
337static void dwc3_msm_ssusb_write_phycreg(void *base, u32 addr, u32 val)
338{
339 iowrite32(addr, base + SS_CR_PROTOCOL_DATA_IN_REG);
340 iowrite32(0x1, base + SS_CR_PROTOCOL_CAP_ADDR_REG);
341 while (ioread32(base + SS_CR_PROTOCOL_CAP_ADDR_REG))
342 cpu_relax();
343
344 iowrite32(val, base + SS_CR_PROTOCOL_DATA_IN_REG);
345 iowrite32(0x1, base + SS_CR_PROTOCOL_CAP_DATA_REG);
346 while (ioread32(base + SS_CR_PROTOCOL_CAP_DATA_REG))
347 cpu_relax();
348
349 iowrite32(0x1, base + SS_CR_PROTOCOL_WRITE_REG);
350 while (ioread32(base + SS_CR_PROTOCOL_WRITE_REG))
351 cpu_relax();
352}
353
354/**
355 *
356 * Read SSPHY register with debug info.
357 *
358 * @base - DWC3 base virtual address.
359 * @addr - SSPHY address to read.
360 *
361 */
362static u32 dwc3_msm_ssusb_read_phycreg(void *base, u32 addr)
363{
364 iowrite32(addr, base + SS_CR_PROTOCOL_DATA_IN_REG);
365 iowrite32(0x1, base + SS_CR_PROTOCOL_CAP_ADDR_REG);
366 while (ioread32(base + SS_CR_PROTOCOL_CAP_ADDR_REG))
367 cpu_relax();
368
369 iowrite32(0x1, base + SS_CR_PROTOCOL_READ_REG);
370 while (ioread32(base + SS_CR_PROTOCOL_READ_REG))
371 cpu_relax();
372
373 return ioread32(base + SS_CR_PROTOCOL_DATA_OUT_REG);
374}
375
376/**
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300377 * Return DBM EP number according to usb endpoint number.
378 *
379 */
380static int dwc3_msm_find_matching_dbm_ep(u8 usb_ep)
381{
382 int i;
383
384 for (i = 0; i < context->dbm_num_eps; i++)
385 if (context->ep_num_mapping[i] == usb_ep)
386 return i;
387
388 return -ENODEV; /* Not found */
389}
390
391/**
392 * Return number of configured DBM endpoints.
393 *
394 */
395static int dwc3_msm_configured_dbm_ep_num(void)
396{
397 int i;
398 int count = 0;
399
400 for (i = 0; i < context->dbm_num_eps; i++)
401 if (context->ep_num_mapping[i])
402 count++;
403
404 return count;
405}
406
407/**
408 * Configure the DBM with the USB3 core event buffer.
409 * This function is called by the SNPS UDC upon initialization.
410 *
411 * @addr - address of the event buffer.
412 * @size - size of the event buffer.
413 *
414 */
415static int dwc3_msm_event_buffer_config(u32 addr, u16 size)
416{
417 dev_dbg(context->dev, "%s\n", __func__);
418
419 dwc3_msm_write_reg(context->base, DBM_GEVNTADR, addr);
420 dwc3_msm_write_reg_field(context->base, DBM_GEVNTSIZ,
421 DBM_GEVNTSIZ_MASK, size);
422
423 return 0;
424}
425
426/**
427 * Reset the DBM registers upon initialization.
428 *
429 */
Shimrit Malichia00d7322012-08-05 13:56:28 +0300430static int dwc3_msm_dbm_soft_reset(int enter_reset)
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300431{
432 dev_dbg(context->dev, "%s\n", __func__);
Shimrit Malichia00d7322012-08-05 13:56:28 +0300433 if (enter_reset) {
434 dev_dbg(context->dev, "enter DBM reset\n");
435 dwc3_msm_write_reg_field(context->base, DBM_SOFT_RESET,
436 DBM_SFT_RST_MASK, 1);
437 } else {
438 dev_dbg(context->dev, "exit DBM reset\n");
439 dwc3_msm_write_reg_field(context->base, DBM_SOFT_RESET,
440 DBM_SFT_RST_MASK, 0);
441 /*enable DBM*/
442 dwc3_msm_write_reg_field(context->base, QSCRATCH_GENERAL_CFG,
443 DBM_EN_MASK, 0x1);
444 }
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300445
446 return 0;
447}
448
449/**
450 * Soft reset specific DBM ep.
451 * This function is called by the function driver upon events
452 * such as transfer aborting, USB re-enumeration and USB
453 * disconnection.
454 *
455 * @dbm_ep - DBM ep number.
456 * @enter_reset - should we enter a reset state or get out of it.
457 *
458 */
459static int dwc3_msm_dbm_ep_soft_reset(u8 dbm_ep, bool enter_reset)
460{
461 dev_dbg(context->dev, "%s\n", __func__);
462
463 if (dbm_ep >= context->dbm_num_eps) {
464 dev_err(context->dev,
465 "%s: Invalid DBM ep index\n", __func__);
466 return -ENODEV;
467 }
468
469 if (enter_reset) {
470 dwc3_msm_write_reg_field(context->base, DBM_SOFT_RESET,
Shimrit Malichia00d7322012-08-05 13:56:28 +0300471 DBM_SFT_RST_EPS_MASK & 1 << dbm_ep, 1);
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300472 } else {
473 dwc3_msm_write_reg_field(context->base, DBM_SOFT_RESET,
Shimrit Malichia00d7322012-08-05 13:56:28 +0300474 DBM_SFT_RST_EPS_MASK & 1 << dbm_ep, 0);
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300475 }
476
477 return 0;
478}
479
480/**
481 * Configure a USB DBM ep to work in BAM mode.
482 *
483 *
484 * @usb_ep - USB physical EP number.
485 * @producer - producer/consumer.
486 * @disable_wb - disable write back to system memory.
487 * @internal_mem - use internal USB memory for data fifo.
488 * @ioc - enable interrupt on completion.
489 *
490 * @return int - DBM ep number.
491 */
492static int dwc3_msm_dbm_ep_config(u8 usb_ep, u8 bam_pipe,
493 bool producer, bool disable_wb,
494 bool internal_mem, bool ioc)
495{
496 u8 dbm_ep;
Shimrit Malichia00d7322012-08-05 13:56:28 +0300497 u32 ep_cfg;
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300498
499 dev_dbg(context->dev, "%s\n", __func__);
500
Shimrit Malichia00d7322012-08-05 13:56:28 +0300501 dbm_ep = dwc3_msm_find_matching_dbm_ep(usb_ep);
502
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300503 if (dbm_ep < 0) {
Shimrit Malichia00d7322012-08-05 13:56:28 +0300504 dev_err(context->dev,
505 "%s: Invalid usb ep index\n", __func__);
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300506 return -ENODEV;
507 }
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300508 /* First, reset the dbm endpoint */
Shimrit Malichia00d7322012-08-05 13:56:28 +0300509 dwc3_msm_dbm_ep_soft_reset(dbm_ep, 0);
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300510
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300511 /* Set ioc bit for dbm_ep if needed */
512 dwc3_msm_write_reg_field(context->base, DBM_DBG_CNFG,
Shimrit Malichia00d7322012-08-05 13:56:28 +0300513 DBM_ENABLE_IOC_MASK & 1 << dbm_ep, ioc ? 1 : 0);
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300514
Shimrit Malichia00d7322012-08-05 13:56:28 +0300515 ep_cfg = (producer ? DBM_PRODUCER : 0) |
516 (disable_wb ? DBM_DISABLE_WB : 0) |
517 (internal_mem ? DBM_INT_RAM_ACC : 0);
518
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300519 dwc3_msm_write_reg_field(context->base, DBM_EP_CFG(dbm_ep),
Shimrit Malichia00d7322012-08-05 13:56:28 +0300520 DBM_PRODUCER | DBM_DISABLE_WB | DBM_INT_RAM_ACC, ep_cfg >> 8);
521
522 dwc3_msm_write_reg_field(context->base, DBM_EP_CFG(dbm_ep), USB3_EPNUM,
523 usb_ep);
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300524 dwc3_msm_write_reg_field(context->base, DBM_EP_CFG(dbm_ep),
525 DBM_BAM_PIPE_NUM, bam_pipe);
Shimrit Malichia00d7322012-08-05 13:56:28 +0300526 dwc3_msm_write_reg_field(context->base, DBM_PIPE_CFG, 0x000000ff,
527 0xe4);
528 dwc3_msm_write_reg_field(context->base, DBM_EP_CFG(dbm_ep), DBM_EN_EP,
529 1);
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300530
531 return dbm_ep;
532}
533
534/**
535 * Configure a USB DBM ep to work in normal mode.
536 *
537 * @usb_ep - USB ep number.
538 *
539 */
540static int dwc3_msm_dbm_ep_unconfig(u8 usb_ep)
541{
542 u8 dbm_ep;
Vijayavardhan Vennapusaf7c01a42013-03-15 15:29:11 +0530543 u32 data;
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300544
545 dev_dbg(context->dev, "%s\n", __func__);
546
547 dbm_ep = dwc3_msm_find_matching_dbm_ep(usb_ep);
548
549 if (dbm_ep < 0) {
550 dev_err(context->dev,
551 "%s: Invalid usb ep index\n", __func__);
552 return -ENODEV;
553 }
554
555 context->ep_num_mapping[dbm_ep] = 0;
556
Vijayavardhan Vennapusaf7c01a42013-03-15 15:29:11 +0530557 data = dwc3_msm_read_reg(context->base, DBM_EP_CFG(dbm_ep));
558 data &= (~0x1);
559 dwc3_msm_write_reg(context->base, DBM_EP_CFG(dbm_ep), data);
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300560
561 /* Reset the dbm endpoint */
562 dwc3_msm_dbm_ep_soft_reset(dbm_ep, true);
Vijayavardhan Vennapusaf7c01a42013-03-15 15:29:11 +0530563 /*
564 * 10 usec delay is required before deasserting DBM endpoint reset
565 * according to hardware programming guide.
566 */
567 udelay(10);
568 dwc3_msm_dbm_ep_soft_reset(dbm_ep, false);
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300569
570 return 0;
571}
572
573/**
574 * Configure the DBM with the BAM's data fifo.
575 * This function is called by the USB BAM Driver
576 * upon initialization.
577 *
578 * @ep - pointer to usb endpoint.
579 * @addr - address of data fifo.
580 * @size - size of data fifo.
581 *
582 */
Shimrit Malichia00d7322012-08-05 13:56:28 +0300583int msm_data_fifo_config(struct usb_ep *ep, u32 addr, u32 size, u8 dst_pipe_idx)
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300584{
585 u8 dbm_ep;
586 struct dwc3_ep *dep = to_dwc3_ep(ep);
Shimrit Malichia00d7322012-08-05 13:56:28 +0300587 u8 bam_pipe = dst_pipe_idx;
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300588
589 dev_dbg(context->dev, "%s\n", __func__);
590
Shimrit Malichia00d7322012-08-05 13:56:28 +0300591 dbm_ep = bam_pipe;
592 context->ep_num_mapping[dbm_ep] = dep->number;
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300593
594 dwc3_msm_write_reg(context->base, DBM_DATA_FIFO(dbm_ep), addr);
595 dwc3_msm_write_reg_field(context->base, DBM_DATA_FIFO_SIZE(dbm_ep),
596 DBM_DATA_FIFO_SIZE_MASK, size);
597
598 return 0;
599}
600
601/**
602* Cleanups for msm endpoint on request complete.
603*
604* Also call original request complete.
605*
606* @usb_ep - pointer to usb_ep instance.
607* @request - pointer to usb_request instance.
608*
609* @return int - 0 on success, negetive on error.
610*/
611static void dwc3_msm_req_complete_func(struct usb_ep *ep,
612 struct usb_request *request)
613{
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300614 struct dwc3_ep *dep = to_dwc3_ep(ep);
615 struct dwc3_msm_req_complete *req_complete = NULL;
616
617 /* Find original request complete function and remove it from list */
618 list_for_each_entry(req_complete,
619 &context->req_complete_list,
620 list_item) {
621 if (req_complete->req == request)
622 break;
623 }
624 if (!req_complete || req_complete->req != request) {
625 dev_err(dep->dwc->dev, "%s: could not find the request\n",
626 __func__);
627 return;
628 }
629 list_del(&req_complete->list_item);
630
631 /*
632 * Release another one TRB to the pool since DBM queue took 2 TRBs
633 * (normal and link), and the dwc3/gadget.c :: dwc3_gadget_giveback
634 * released only one.
635 */
Manu Gautam55d34222012-12-19 16:49:47 +0530636 dep->busy_slot++;
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300637
638 /* Unconfigure dbm ep */
639 dwc3_msm_dbm_ep_unconfig(dep->number);
640
641 /*
642 * If this is the last endpoint we unconfigured, than reset also
643 * the event buffers.
644 */
645 if (0 == dwc3_msm_configured_dbm_ep_num())
646 dwc3_msm_event_buffer_config(0, 0);
647
648 /*
649 * Call original complete function, notice that dwc->lock is already
650 * taken by the caller of this function (dwc3_gadget_giveback()).
651 */
652 request->complete = req_complete->orig_complete;
Shimrit Malichia00d7322012-08-05 13:56:28 +0300653 if (request->complete)
654 request->complete(ep, request);
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300655
656 kfree(req_complete);
657}
658
659/**
660* Helper function.
661* See the header of the dwc3_msm_ep_queue function.
662*
663* @dwc3_ep - pointer to dwc3_ep instance.
664* @req - pointer to dwc3_request instance.
665*
666* @return int - 0 on success, negetive on error.
667*/
668static int __dwc3_msm_ep_queue(struct dwc3_ep *dep, struct dwc3_request *req)
669{
Ido Shayevitzfa65a582012-06-06 14:39:54 +0300670 struct dwc3_trb *trb;
671 struct dwc3_trb *trb_link;
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300672 struct dwc3_gadget_ep_cmd_params params;
673 u32 cmd;
674 int ret = 0;
675
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300676 /* We push the request to the dep->req_queued list to indicate that
677 * this request is issued with start transfer. The request will be out
678 * from this list in 2 cases. The first is that the transfer will be
679 * completed (not if the transfer is endless using a circular TRBs with
680 * with link TRB). The second case is an option to do stop stransfer,
681 * this can be initiated by the function driver when calling dequeue.
682 */
683 req->queued = true;
684 list_add_tail(&req->list, &dep->req_queued);
685
686 /* First, prepare a normal TRB, point to the fake buffer */
Ido Shayevitzfa65a582012-06-06 14:39:54 +0300687 trb = &dep->trb_pool[dep->free_slot & DWC3_TRB_MASK];
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300688 dep->free_slot++;
Ido Shayevitzfa65a582012-06-06 14:39:54 +0300689 memset(trb, 0, sizeof(*trb));
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300690
Ido Shayevitzfa65a582012-06-06 14:39:54 +0300691 req->trb = trb;
Shimrit Malichia00d7322012-08-05 13:56:28 +0300692 trb->bph = DBM_TRB_BIT | DBM_TRB_DMA | DBM_TRB_EP_NUM(dep->number);
Ido Shayevitzfa65a582012-06-06 14:39:54 +0300693 trb->size = DWC3_TRB_SIZE_LENGTH(req->request.length);
694 trb->ctrl = DWC3_TRBCTL_NORMAL | DWC3_TRB_CTRL_HWO | DWC3_TRB_CTRL_CHN;
Shimrit Malichia00d7322012-08-05 13:56:28 +0300695 req->trb_dma = dwc3_trb_dma_offset(dep, trb);
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300696
697 /* Second, prepare a Link TRB that points to the first TRB*/
Ido Shayevitzfa65a582012-06-06 14:39:54 +0300698 trb_link = &dep->trb_pool[dep->free_slot & DWC3_TRB_MASK];
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300699 dep->free_slot++;
Shimrit Malichia00d7322012-08-05 13:56:28 +0300700 memset(trb_link, 0, sizeof *trb_link);
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300701
Ido Shayevitzfa65a582012-06-06 14:39:54 +0300702 trb_link->bpl = lower_32_bits(req->trb_dma);
Shimrit Malichia00d7322012-08-05 13:56:28 +0300703 trb_link->bph = DBM_TRB_BIT |
Ido Shayevitzfa65a582012-06-06 14:39:54 +0300704 DBM_TRB_DMA | DBM_TRB_EP_NUM(dep->number);
705 trb_link->size = 0;
706 trb_link->ctrl = DWC3_TRBCTL_LINK_TRB | DWC3_TRB_CTRL_HWO;
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300707
708 /*
709 * Now start the transfer
710 */
711 memset(&params, 0, sizeof(params));
Shimrit Malichia00d7322012-08-05 13:56:28 +0300712 params.param0 = 0; /* TDAddr High */
713 params.param1 = lower_32_bits(req->trb_dma); /* DAddr Low */
714
Manu Gautam5b2bf9a2012-10-18 10:52:50 +0530715 /* DBM requires IOC to be set */
716 cmd = DWC3_DEPCMD_STARTTRANSFER | DWC3_DEPCMD_CMDIOC;
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300717 ret = dwc3_send_gadget_ep_cmd(dep->dwc, dep->number, cmd, &params);
718 if (ret < 0) {
719 dev_dbg(dep->dwc->dev,
720 "%s: failed to send STARTTRANSFER command\n",
721 __func__);
722
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300723 list_del(&req->list);
724 return ret;
725 }
Manu Gautam4a51a062012-12-07 11:24:39 +0530726 dep->flags |= DWC3_EP_BUSY;
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300727
728 return ret;
729}
730
731/**
732* Queue a usb request to the DBM endpoint.
733* This function should be called after the endpoint
734* was enabled by the ep_enable.
735*
736* This function prepares special structure of TRBs which
737* is familier with the DBM HW, so it will possible to use
738* this endpoint in DBM mode.
739*
740* The TRBs prepared by this function, is one normal TRB
741* which point to a fake buffer, followed by a link TRB
742* that points to the first TRB.
743*
744* The API of this function follow the regular API of
745* usb_ep_queue (see usb_ep_ops in include/linuk/usb/gadget.h).
746*
747* @usb_ep - pointer to usb_ep instance.
748* @request - pointer to usb_request instance.
749* @gfp_flags - possible flags.
750*
751* @return int - 0 on success, negetive on error.
752*/
753static int dwc3_msm_ep_queue(struct usb_ep *ep,
754 struct usb_request *request, gfp_t gfp_flags)
755{
756 struct dwc3_request *req = to_dwc3_request(request);
757 struct dwc3_ep *dep = to_dwc3_ep(ep);
758 struct dwc3 *dwc = dep->dwc;
759 struct dwc3_msm_req_complete *req_complete;
760 unsigned long flags;
761 int ret = 0;
762 u8 bam_pipe;
763 bool producer;
764 bool disable_wb;
765 bool internal_mem;
766 bool ioc;
Shimrit Malichia00d7322012-08-05 13:56:28 +0300767 u8 speed;
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300768
769 if (!(request->udc_priv & MSM_SPS_MODE)) {
770 /* Not SPS mode, call original queue */
771 dev_vdbg(dwc->dev, "%s: not sps mode, use regular queue\n",
772 __func__);
773
774 return (context->original_ep_ops[dep->number])->queue(ep,
775 request,
776 gfp_flags);
777 }
778
779 if (!dep->endpoint.desc) {
780 dev_err(dwc->dev,
781 "%s: trying to queue request %p to disabled ep %s\n",
782 __func__, request, ep->name);
783 return -EPERM;
784 }
785
786 if (dep->number == 0 || dep->number == 1) {
787 dev_err(dwc->dev,
788 "%s: trying to queue dbm request %p to control ep %s\n",
789 __func__, request, ep->name);
790 return -EPERM;
791 }
792
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300793
Manu Gautam4a51a062012-12-07 11:24:39 +0530794 if (dep->busy_slot != dep->free_slot || !list_empty(&dep->request_list)
795 || !list_empty(&dep->req_queued)) {
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300796 dev_err(dwc->dev,
797 "%s: trying to queue dbm request %p tp ep %s\n",
798 __func__, request, ep->name);
799 return -EPERM;
Manu Gautam4a51a062012-12-07 11:24:39 +0530800 } else {
801 dep->busy_slot = 0;
802 dep->free_slot = 0;
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300803 }
804
805 /*
806 * Override req->complete function, but before doing that,
807 * store it's original pointer in the req_complete_list.
808 */
809 req_complete = kzalloc(sizeof(*req_complete), GFP_KERNEL);
810 if (!req_complete) {
811 dev_err(dep->dwc->dev, "%s: not enough memory\n", __func__);
812 return -ENOMEM;
813 }
814 req_complete->req = request;
815 req_complete->orig_complete = request->complete;
816 list_add_tail(&req_complete->list_item, &context->req_complete_list);
817 request->complete = dwc3_msm_req_complete_func;
818
819 /*
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300820 * Configure the DBM endpoint
821 */
Shimrit Malichia00d7322012-08-05 13:56:28 +0300822 bam_pipe = request->udc_priv & MSM_PIPE_ID_MASK;
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300823 producer = ((request->udc_priv & MSM_PRODUCER) ? true : false);
824 disable_wb = ((request->udc_priv & MSM_DISABLE_WB) ? true : false);
825 internal_mem = ((request->udc_priv & MSM_INTERNAL_MEM) ? true : false);
826 ioc = ((request->udc_priv & MSM_ETD_IOC) ? true : false);
827
828 ret = dwc3_msm_dbm_ep_config(dep->number,
829 bam_pipe, producer,
830 disable_wb, internal_mem, ioc);
831 if (ret < 0) {
832 dev_err(context->dev,
833 "error %d after calling dwc3_msm_dbm_ep_config\n",
834 ret);
835 return ret;
836 }
837
838 dev_vdbg(dwc->dev, "%s: queing request %p to ep %s length %d\n",
839 __func__, request, ep->name, request->length);
840
841 /*
842 * We must obtain the lock of the dwc3 core driver,
843 * including disabling interrupts, so we will be sure
844 * that we are the only ones that configure the HW device
845 * core and ensure that we queuing the request will finish
846 * as soon as possible so we will release back the lock.
847 */
848 spin_lock_irqsave(&dwc->lock, flags);
849 ret = __dwc3_msm_ep_queue(dep, req);
850 spin_unlock_irqrestore(&dwc->lock, flags);
851 if (ret < 0) {
852 dev_err(context->dev,
853 "error %d after calling __dwc3_msm_ep_queue\n", ret);
854 return ret;
855 }
856
Shimrit Malichia00d7322012-08-05 13:56:28 +0300857 speed = dwc3_readl(dwc->regs, DWC3_DSTS) & DWC3_DSTS_CONNECTSPD;
858 dwc3_msm_write_reg(context->base, DBM_GEN_CFG, speed >> 2);
859
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300860 return 0;
861}
862
863/**
864 * Configure MSM endpoint.
865 * This function do specific configurations
866 * to an endpoint which need specific implementaion
867 * in the MSM architecture.
868 *
869 * This function should be called by usb function/class
870 * layer which need a support from the specific MSM HW
871 * which wrap the USB3 core. (like DBM specific endpoints)
872 *
873 * @ep - a pointer to some usb_ep instance
874 *
875 * @return int - 0 on success, negetive on error.
876 */
877int msm_ep_config(struct usb_ep *ep)
878{
879 struct dwc3_ep *dep = to_dwc3_ep(ep);
880 struct usb_ep_ops *new_ep_ops;
881
Manu Gautama302f612012-12-18 17:33:06 +0530882 dwc3_msm_event_buffer_config(dwc3_msm_read_reg(context->base,
883 DWC3_GEVNTADRLO(0)),
884 dwc3_msm_read_reg(context->base, DWC3_GEVNTSIZ(0)));
885
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300886 /* Save original ep ops for future restore*/
887 if (context->original_ep_ops[dep->number]) {
888 dev_err(context->dev,
889 "ep [%s,%d] already configured as msm endpoint\n",
890 ep->name, dep->number);
891 return -EPERM;
892 }
893 context->original_ep_ops[dep->number] = ep->ops;
894
895 /* Set new usb ops as we like */
896 new_ep_ops = kzalloc(sizeof(struct usb_ep_ops), GFP_KERNEL);
897 if (!new_ep_ops) {
898 dev_err(context->dev,
899 "%s: unable to allocate mem for new usb ep ops\n",
900 __func__);
901 return -ENOMEM;
902 }
903 (*new_ep_ops) = (*ep->ops);
904 new_ep_ops->queue = dwc3_msm_ep_queue;
Vijayavardhan Vennapusaf7c01a42013-03-15 15:29:11 +0530905 new_ep_ops->disable = ep->ops->disable;
906
Ido Shayevitz9fb83452012-04-01 17:45:58 +0300907 ep->ops = new_ep_ops;
908
909 /*
910 * Do HERE more usb endpoint configurations
911 * which are specific to MSM.
912 */
913
914 return 0;
915}
916EXPORT_SYMBOL(msm_ep_config);
917
918/**
919 * Un-configure MSM endpoint.
920 * Tear down configurations done in the
921 * dwc3_msm_ep_config function.
922 *
923 * @ep - a pointer to some usb_ep instance
924 *
925 * @return int - 0 on success, negetive on error.
926 */
927int msm_ep_unconfig(struct usb_ep *ep)
928{
929 struct dwc3_ep *dep = to_dwc3_ep(ep);
930 struct usb_ep_ops *old_ep_ops;
931
932 /* Restore original ep ops */
933 if (!context->original_ep_ops[dep->number]) {
934 dev_err(context->dev,
935 "ep [%s,%d] was not configured as msm endpoint\n",
936 ep->name, dep->number);
937 return -EINVAL;
938 }
939 old_ep_ops = (struct usb_ep_ops *)ep->ops;
940 ep->ops = context->original_ep_ops[dep->number];
941 context->original_ep_ops[dep->number] = NULL;
942 kfree(old_ep_ops);
943
944 /*
945 * Do HERE more usb endpoint un-configurations
946 * which are specific to MSM.
947 */
948
949 return 0;
950}
951EXPORT_SYMBOL(msm_ep_unconfig);
952
Manu Gautam6eb13e32013-02-01 15:19:15 +0530953static void dwc3_restart_usb_work(struct work_struct *w)
954{
955 struct dwc3_msm *mdwc = container_of(w, struct dwc3_msm,
956 restart_usb_work);
957
958 dev_dbg(mdwc->dev, "%s\n", __func__);
959
960 if (atomic_read(&mdwc->in_lpm) || !mdwc->otg_xceiv) {
961 dev_err(mdwc->dev, "%s failed!!!\n", __func__);
962 return;
963 }
964
965 if (!mdwc->ext_xceiv.bsv) {
966 dev_dbg(mdwc->dev, "%s bailing out in disconnect\n", __func__);
967 return;
968 }
969
970 /* Reset active USB connection */
971 mdwc->ext_xceiv.bsv = false;
972 queue_delayed_work(system_nrt_wq, &mdwc->resume_work, 0);
973 /* Make sure disconnect is processed before sending connect */
974 flush_delayed_work(&mdwc->resume_work);
975
976 mdwc->ext_xceiv.bsv = true;
977 queue_delayed_work(system_nrt_wq, &mdwc->resume_work, 0);
978}
979
980/**
981 * Reset USB peripheral connection
982 * Inform OTG for Vbus LOW followed by Vbus HIGH notification.
983 * This performs full hardware reset and re-initialization which
984 * might be required by some DBM client driver during uninit/cleanup.
985 */
986void msm_dwc3_restart_usb_session(void)
987{
988 struct dwc3_msm *mdwc = context;
989
990 dev_dbg(mdwc->dev, "%s\n", __func__);
991 queue_work(system_nrt_wq, &mdwc->restart_usb_work);
992
993 return;
994}
995EXPORT_SYMBOL(msm_dwc3_restart_usb_session);
996
Jack Phamfadd6432012-12-07 19:03:41 -0800997/**
998 * msm_register_usb_ext_notification: register for event notification
999 * @info: pointer to client usb_ext_notification structure. May be NULL.
1000 *
1001 * @return int - 0 on success, negative on error
1002 */
1003int msm_register_usb_ext_notification(struct usb_ext_notification *info)
1004{
1005 pr_debug("%s usb_ext: %p\n", __func__, info);
1006
1007 if (info) {
1008 if (usb_ext) {
1009 pr_err("%s: already registered\n", __func__);
1010 return -EEXIST;
1011 }
1012
1013 if (!info->notify) {
1014 pr_err("%s: notify is NULL\n", __func__);
1015 return -EINVAL;
1016 }
1017 }
1018
1019 usb_ext = info;
1020 return 0;
1021}
1022EXPORT_SYMBOL(msm_register_usb_ext_notification);
1023
Manu Gautam60e01352012-05-29 09:00:34 +05301024/* HSPHY */
1025static int dwc3_hsusb_config_vddcx(int high)
1026{
Vijayavardhan Vennapusa993798a2012-11-09 15:11:21 +05301027 int min_vol, max_vol, ret;
Manu Gautam60e01352012-05-29 09:00:34 +05301028 struct dwc3_msm *dwc = context;
Manu Gautam60e01352012-05-29 09:00:34 +05301029
Vijayavardhan Vennapusa993798a2012-11-09 15:11:21 +05301030 max_vol = dwc->vdd_high_vol_level;
1031 min_vol = high ? dwc->vdd_low_vol_level : dwc->vdd_no_vol_level;
Manu Gautam60e01352012-05-29 09:00:34 +05301032 ret = regulator_set_voltage(dwc->hsusb_vddcx, min_vol, max_vol);
1033 if (ret) {
1034 dev_err(dwc->dev, "unable to set voltage for HSUSB_VDDCX\n");
1035 return ret;
1036 }
1037
1038 dev_dbg(dwc->dev, "%s: min_vol:%d max_vol:%d\n", __func__,
1039 min_vol, max_vol);
1040
1041 return ret;
1042}
1043
1044static int dwc3_hsusb_ldo_init(int init)
1045{
1046 int rc = 0;
1047 struct dwc3_msm *dwc = context;
1048
1049 if (!init) {
1050 regulator_set_voltage(dwc->hsusb_1p8, 0, USB_HSPHY_1P8_VOL_MAX);
1051 regulator_set_voltage(dwc->hsusb_3p3, 0, USB_HSPHY_3P3_VOL_MAX);
1052 return 0;
1053 }
1054
1055 dwc->hsusb_3p3 = devm_regulator_get(dwc->dev, "HSUSB_3p3");
1056 if (IS_ERR(dwc->hsusb_3p3)) {
1057 dev_err(dwc->dev, "unable to get hsusb 3p3\n");
1058 return PTR_ERR(dwc->hsusb_3p3);
1059 }
1060
1061 rc = regulator_set_voltage(dwc->hsusb_3p3,
1062 USB_HSPHY_3P3_VOL_MIN, USB_HSPHY_3P3_VOL_MAX);
1063 if (rc) {
1064 dev_err(dwc->dev, "unable to set voltage for hsusb 3p3\n");
1065 return rc;
1066 }
1067 dwc->hsusb_1p8 = devm_regulator_get(dwc->dev, "HSUSB_1p8");
1068 if (IS_ERR(dwc->hsusb_1p8)) {
1069 dev_err(dwc->dev, "unable to get hsusb 1p8\n");
1070 rc = PTR_ERR(dwc->hsusb_1p8);
1071 goto devote_3p3;
1072 }
1073 rc = regulator_set_voltage(dwc->hsusb_1p8,
1074 USB_HSPHY_1P8_VOL_MIN, USB_HSPHY_1P8_VOL_MAX);
1075 if (rc) {
1076 dev_err(dwc->dev, "unable to set voltage for hsusb 1p8\n");
1077 goto devote_3p3;
1078 }
1079
1080 return 0;
1081
1082devote_3p3:
1083 regulator_set_voltage(dwc->hsusb_3p3, 0, USB_HSPHY_3P3_VOL_MAX);
1084
1085 return rc;
1086}
1087
1088static int dwc3_hsusb_ldo_enable(int on)
1089{
1090 int rc = 0;
1091 struct dwc3_msm *dwc = context;
1092
1093 dev_dbg(dwc->dev, "reg (%s)\n", on ? "HPM" : "LPM");
1094
1095 if (!on)
1096 goto disable_regulators;
1097
1098
1099 rc = regulator_set_optimum_mode(dwc->hsusb_1p8, USB_HSPHY_1P8_HPM_LOAD);
1100 if (rc < 0) {
1101 dev_err(dwc->dev, "Unable to set HPM of regulator HSUSB_1p8\n");
1102 return rc;
1103 }
1104
1105 rc = regulator_enable(dwc->hsusb_1p8);
1106 if (rc) {
1107 dev_err(dwc->dev, "Unable to enable HSUSB_1p8\n");
1108 goto put_1p8_lpm;
1109 }
1110
1111 rc = regulator_set_optimum_mode(dwc->hsusb_3p3, USB_HSPHY_3P3_HPM_LOAD);
1112 if (rc < 0) {
1113 dev_err(dwc->dev, "Unable to set HPM of regulator HSUSB_3p3\n");
1114 goto disable_1p8;
1115 }
1116
1117 rc = regulator_enable(dwc->hsusb_3p3);
1118 if (rc) {
1119 dev_err(dwc->dev, "Unable to enable HSUSB_3p3\n");
1120 goto put_3p3_lpm;
1121 }
1122
1123 return 0;
1124
1125disable_regulators:
1126 rc = regulator_disable(dwc->hsusb_3p3);
1127 if (rc)
1128 dev_err(dwc->dev, "Unable to disable HSUSB_3p3\n");
1129
1130put_3p3_lpm:
1131 rc = regulator_set_optimum_mode(dwc->hsusb_3p3, 0);
1132 if (rc < 0)
1133 dev_err(dwc->dev, "Unable to set LPM of regulator HSUSB_3p3\n");
1134
1135disable_1p8:
1136 rc = regulator_disable(dwc->hsusb_1p8);
1137 if (rc)
1138 dev_err(dwc->dev, "Unable to disable HSUSB_1p8\n");
1139
1140put_1p8_lpm:
1141 rc = regulator_set_optimum_mode(dwc->hsusb_1p8, 0);
1142 if (rc < 0)
1143 dev_err(dwc->dev, "Unable to set LPM of regulator HSUSB_1p8\n");
1144
1145 return rc < 0 ? rc : 0;
1146}
1147
1148/* SSPHY */
1149static int dwc3_ssusb_config_vddcx(int high)
1150{
Vijayavardhan Vennapusa993798a2012-11-09 15:11:21 +05301151 int min_vol, max_vol, ret;
Manu Gautam60e01352012-05-29 09:00:34 +05301152 struct dwc3_msm *dwc = context;
Manu Gautam60e01352012-05-29 09:00:34 +05301153
Vijayavardhan Vennapusa993798a2012-11-09 15:11:21 +05301154 max_vol = dwc->vdd_high_vol_level;
1155 min_vol = high ? dwc->vdd_low_vol_level : dwc->vdd_no_vol_level;
Manu Gautam60e01352012-05-29 09:00:34 +05301156 ret = regulator_set_voltage(dwc->ssusb_vddcx, min_vol, max_vol);
1157 if (ret) {
1158 dev_err(dwc->dev, "unable to set voltage for SSUSB_VDDCX\n");
1159 return ret;
1160 }
1161
1162 dev_dbg(dwc->dev, "%s: min_vol:%d max_vol:%d\n", __func__,
1163 min_vol, max_vol);
1164 return ret;
1165}
1166
1167/* 3.3v supply not needed for SS PHY */
1168static int dwc3_ssusb_ldo_init(int init)
1169{
1170 int rc = 0;
1171 struct dwc3_msm *dwc = context;
1172
1173 if (!init) {
1174 regulator_set_voltage(dwc->ssusb_1p8, 0, USB_SSPHY_1P8_VOL_MAX);
1175 return 0;
1176 }
1177
1178 dwc->ssusb_1p8 = devm_regulator_get(dwc->dev, "SSUSB_1p8");
1179 if (IS_ERR(dwc->ssusb_1p8)) {
1180 dev_err(dwc->dev, "unable to get ssusb 1p8\n");
1181 return PTR_ERR(dwc->ssusb_1p8);
1182 }
1183 rc = regulator_set_voltage(dwc->ssusb_1p8,
1184 USB_SSPHY_1P8_VOL_MIN, USB_SSPHY_1P8_VOL_MAX);
1185 if (rc)
1186 dev_err(dwc->dev, "unable to set voltage for ssusb 1p8\n");
1187
1188 return rc;
1189}
1190
1191static int dwc3_ssusb_ldo_enable(int on)
1192{
1193 int rc = 0;
1194 struct dwc3_msm *dwc = context;
1195
1196 dev_dbg(context->dev, "reg (%s)\n", on ? "HPM" : "LPM");
1197
1198 if (!on)
1199 goto disable_regulators;
1200
1201
1202 rc = regulator_set_optimum_mode(dwc->ssusb_1p8, USB_SSPHY_1P8_HPM_LOAD);
1203 if (rc < 0) {
1204 dev_err(dwc->dev, "Unable to set HPM of SSUSB_1p8\n");
1205 return rc;
1206 }
1207
1208 rc = regulator_enable(dwc->ssusb_1p8);
1209 if (rc) {
1210 dev_err(dwc->dev, "Unable to enable SSUSB_1p8\n");
1211 goto put_1p8_lpm;
1212 }
1213
1214 return 0;
1215
1216disable_regulators:
1217 rc = regulator_disable(dwc->ssusb_1p8);
1218 if (rc)
1219 dev_err(dwc->dev, "Unable to disable SSUSB_1p8\n");
1220
1221put_1p8_lpm:
1222 rc = regulator_set_optimum_mode(dwc->ssusb_1p8, 0);
1223 if (rc < 0)
1224 dev_err(dwc->dev, "Unable to set LPM of SSUSB_1p8\n");
1225
1226 return rc < 0 ? rc : 0;
1227}
1228
Vijayavardhan Vennapusab7434562012-12-12 16:48:49 +05301229static int dwc3_msm_link_clk_reset(bool assert)
1230{
1231 int ret = 0;
1232 struct dwc3_msm *mdwc = context;
1233
1234 if (assert) {
1235 /* Using asynchronous block reset to the hardware */
1236 dev_dbg(mdwc->dev, "block_reset ASSERT\n");
1237 clk_disable_unprepare(mdwc->ref_clk);
1238 clk_disable_unprepare(mdwc->iface_clk);
1239 clk_disable_unprepare(mdwc->core_clk);
1240 ret = clk_reset(mdwc->core_clk, CLK_RESET_ASSERT);
1241 if (ret)
1242 dev_err(mdwc->dev, "dwc3 core_clk assert failed\n");
1243 } else {
1244 dev_dbg(mdwc->dev, "block_reset DEASSERT\n");
1245 ret = clk_reset(mdwc->core_clk, CLK_RESET_DEASSERT);
1246 ndelay(200);
1247 clk_prepare_enable(mdwc->core_clk);
1248 clk_prepare_enable(mdwc->ref_clk);
1249 clk_prepare_enable(mdwc->iface_clk);
1250 if (ret)
1251 dev_err(mdwc->dev, "dwc3 core_clk deassert failed\n");
1252 }
1253
1254 return ret;
1255}
1256
1257/* Initialize QSCRATCH registers for HSPHY and SSPHY operation */
1258static void dwc3_msm_qscratch_reg_init(struct dwc3_msm *msm)
1259{
1260 u32 data = 0;
1261
1262 /* SSPHY Initialization: Use ref_clk from pads and set its parameters */
1263 dwc3_msm_write_reg(msm->base, SS_PHY_CTRL_REG, 0x10210002);
1264 msleep(30);
1265 /* Assert SSPHY reset */
1266 dwc3_msm_write_reg(msm->base, SS_PHY_CTRL_REG, 0x10210082);
1267 usleep_range(2000, 2200);
1268 /* De-assert SSPHY reset - power and ref_clock must be ON */
1269 dwc3_msm_write_reg(msm->base, SS_PHY_CTRL_REG, 0x10210002);
1270 usleep_range(2000, 2200);
1271 /* Ref clock must be stable now, enable ref clock for HS mode */
1272 dwc3_msm_write_reg(msm->base, SS_PHY_CTRL_REG, 0x10210102);
1273 usleep_range(2000, 2200);
1274 /*
1275 * HSPHY Initialization: Enable UTMI clock and clamp enable HVINTs,
1276 * and disable RETENTION (power-on default is ENABLED)
1277 */
1278 dwc3_msm_write_reg(msm->base, HS_PHY_CTRL_REG, 0x5220bb2);
1279 usleep_range(2000, 2200);
1280 /* Disable (bypass) VBUS and ID filters */
1281 dwc3_msm_write_reg(msm->base, QSCRATCH_GENERAL_CFG, 0x78);
Vijayavardhan Vennapusa26a49602012-12-18 13:51:45 +05301282 /*
1283 * write HSPHY init value to QSCRATCH reg to set HSPHY parameters like
1284 * VBUS valid threshold, disconnect valid threshold, DC voltage level,
1285 * preempasis and rise/fall time.
1286 */
1287 if (override_phy_init)
1288 msm->hsphy_init_seq = override_phy_init;
1289 if (msm->hsphy_init_seq)
1290 dwc3_msm_write_readback(msm->base,
1291 PARAMETER_OVERRIDE_X_REG, 0x03FFFFFF,
1292 msm->hsphy_init_seq & 0x03FFFFFF);
Vijayavardhan Vennapusab7434562012-12-12 16:48:49 +05301293
Manu Gautamd4108b72012-12-14 17:35:18 +05301294 /* Enable master clock for RAMs to allow BAM to access RAMs when
1295 * RAM clock gating is enabled via DWC3's GCTL. Otherwise, issues
1296 * are seen where RAM clocks get turned OFF in SS mode
1297 */
1298 dwc3_msm_write_reg(msm->base, CGCTL_REG,
1299 dwc3_msm_read_reg(msm->base, CGCTL_REG) | 0x18);
1300
Vijayavardhan Vennapusab7434562012-12-12 16:48:49 +05301301 /*
1302 * WORKAROUND: There is SSPHY suspend bug due to which USB enumerates
1303 * in HS mode instead of SS mode. Workaround it by asserting
1304 * LANE0.TX_ALT_BLOCK.EN_ALT_BUS to enable TX to use alt bus mode
1305 */
1306 data = dwc3_msm_ssusb_read_phycreg(msm->base, 0x102D);
1307 data |= (1 << 7);
1308 dwc3_msm_ssusb_write_phycreg(msm->base, 0x102D, data);
1309
1310 data = dwc3_msm_ssusb_read_phycreg(msm->base, 0x1010);
1311 data &= ~0xFF0;
Vijayavardhan Vennapusa164b0f42013-01-17 19:33:53 +05301312 data |= 0x20;
Vijayavardhan Vennapusab7434562012-12-12 16:48:49 +05301313 dwc3_msm_ssusb_write_phycreg(msm->base, 0x1010, data);
Vijayavardhan Vennapusa164b0f42013-01-17 19:33:53 +05301314
1315 /*
1316 * Fix RX Equalization setting as follows
1317 * LANE0.RX_OVRD_IN_HI. RX_EQ_EN set to 0
1318 * LANE0.RX_OVRD_IN_HI.RX_EQ_EN_OVRD set to 1
1319 * LANE0.RX_OVRD_IN_HI.RX_EQ set to 3
1320 * LANE0.RX_OVRD_IN_HI.RX_EQ_OVRD set to 1
1321 */
1322 data = dwc3_msm_ssusb_read_phycreg(msm->base, 0x1006);
1323 data &= ~(1 << 6);
1324 data |= (1 << 7);
1325 data &= ~(0x7 << 8);
1326 data |= (0x3 << 8);
1327 data |= (0x1 << 11);
1328 dwc3_msm_ssusb_write_phycreg(msm->base, 0x1006, data);
1329
1330 /*
1331 * Set EQ and TX launch amplitudes as follows
1332 * LANE0.TX_OVRD_DRV_LO.PREEMPH set to 22
1333 * LANE0.TX_OVRD_DRV_LO.AMPLITUDE set to 127
1334 * LANE0.TX_OVRD_DRV_LO.EN set to 1.
1335 */
1336 data = dwc3_msm_ssusb_read_phycreg(msm->base, 0x1002);
1337 data &= ~0x3F80;
1338 data |= (0x16 << 7);
1339 data &= ~0x7F;
1340 data |= (0x7F | (1 << 14));
1341 dwc3_msm_ssusb_write_phycreg(msm->base, 0x1002, data);
1342
1343 /* Set LOS_BIAS to 0x5 */
1344 dwc3_msm_write_readback(msm->base, SS_PHY_PARAM_CTRL_1, 0x07, 0x5);
Vijayavardhan Vennapusab7434562012-12-12 16:48:49 +05301345}
1346
Vijayavardhan Vennapusaf7c01a42013-03-15 15:29:11 +05301347static void dwc3_msm_block_reset(bool core_reset)
Vijayavardhan Vennapusab7434562012-12-12 16:48:49 +05301348{
Vijayavardhan Vennapusaf7c01a42013-03-15 15:29:11 +05301349
Vijayavardhan Vennapusab7434562012-12-12 16:48:49 +05301350 struct dwc3_msm *mdwc = context;
1351 int ret = 0;
1352
Vijayavardhan Vennapusaf7c01a42013-03-15 15:29:11 +05301353 if (core_reset) {
1354 ret = dwc3_msm_link_clk_reset(1);
1355 if (ret)
1356 return;
Vijayavardhan Vennapusab7434562012-12-12 16:48:49 +05301357
Vijayavardhan Vennapusaf7c01a42013-03-15 15:29:11 +05301358 usleep_range(1000, 1200);
1359 ret = dwc3_msm_link_clk_reset(0);
1360 if (ret)
1361 return;
Vijayavardhan Vennapusab7434562012-12-12 16:48:49 +05301362
Vijayavardhan Vennapusaf7c01a42013-03-15 15:29:11 +05301363 usleep_range(10000, 12000);
Vijayavardhan Vennapusab7434562012-12-12 16:48:49 +05301364
Vijayavardhan Vennapusaf7c01a42013-03-15 15:29:11 +05301365 /* Reinitialize QSCRATCH registers after block reset */
1366 dwc3_msm_qscratch_reg_init(mdwc);
1367 }
Manu Gautama302f612012-12-18 17:33:06 +05301368
1369 /* Reset the DBM */
1370 dwc3_msm_dbm_soft_reset(1);
1371 usleep_range(1000, 1200);
1372 dwc3_msm_dbm_soft_reset(0);
Vijayavardhan Vennapusab7434562012-12-12 16:48:49 +05301373}
1374
Manu Gautam8c642812012-06-07 10:35:10 +05301375static void dwc3_chg_enable_secondary_det(struct dwc3_msm *mdwc)
1376{
1377 u32 chg_ctrl;
1378
1379 /* Turn off VDP_SRC */
1380 dwc3_msm_write_reg(mdwc->base, CHARGING_DET_CTRL_REG, 0x0);
1381 msleep(20);
1382
1383 /* Before proceeding make sure VDP_SRC is OFF */
1384 chg_ctrl = dwc3_msm_read_reg(mdwc->base, CHARGING_DET_CTRL_REG);
1385 if (chg_ctrl & 0x3F)
1386 dev_err(mdwc->dev, "%s Unable to reset chg_det block: %x\n",
1387 __func__, chg_ctrl);
1388 /*
1389 * Configure DM as current source, DP as current sink
1390 * and enable battery charging comparators.
1391 */
1392 dwc3_msm_write_readback(mdwc->base, CHARGING_DET_CTRL_REG, 0x3F, 0x34);
1393}
1394
Manu Gautama1e331d2013-02-07 14:55:05 +05301395static bool dwc3_chg_det_check_linestate(struct dwc3_msm *mdwc)
1396{
1397 u32 chg_det;
Jack Pham9b4606b2013-04-02 17:32:25 -07001398
1399 if (!prop_chg_detect)
1400 return false;
Manu Gautama1e331d2013-02-07 14:55:05 +05301401
1402 chg_det = dwc3_msm_read_reg(mdwc->base, CHARGING_DET_OUTPUT_REG);
Jack Pham9b4606b2013-04-02 17:32:25 -07001403 return chg_det & (3 << 8);
Manu Gautama1e331d2013-02-07 14:55:05 +05301404}
1405
Manu Gautam8c642812012-06-07 10:35:10 +05301406static bool dwc3_chg_det_check_output(struct dwc3_msm *mdwc)
1407{
1408 u32 chg_det;
1409 bool ret = false;
1410
1411 chg_det = dwc3_msm_read_reg(mdwc->base, CHARGING_DET_OUTPUT_REG);
1412 ret = chg_det & 1;
1413
1414 return ret;
1415}
1416
1417static void dwc3_chg_enable_primary_det(struct dwc3_msm *mdwc)
1418{
1419 /*
1420 * Configure DP as current source, DM as current sink
1421 * and enable battery charging comparators.
1422 */
1423 dwc3_msm_write_readback(mdwc->base, CHARGING_DET_CTRL_REG, 0x3F, 0x30);
1424}
1425
1426static inline bool dwc3_chg_check_dcd(struct dwc3_msm *mdwc)
1427{
1428 u32 chg_state;
1429 bool ret = false;
1430
1431 chg_state = dwc3_msm_read_reg(mdwc->base, CHARGING_DET_OUTPUT_REG);
1432 ret = chg_state & 2;
1433
1434 return ret;
1435}
1436
1437static inline void dwc3_chg_disable_dcd(struct dwc3_msm *mdwc)
1438{
1439 dwc3_msm_write_readback(mdwc->base, CHARGING_DET_CTRL_REG, 0x3F, 0x0);
1440}
1441
1442static inline void dwc3_chg_enable_dcd(struct dwc3_msm *mdwc)
1443{
1444 /* Data contact detection enable, DCDENB */
1445 dwc3_msm_write_readback(mdwc->base, CHARGING_DET_CTRL_REG, 0x3F, 0x2);
1446}
1447
1448static void dwc3_chg_block_reset(struct dwc3_msm *mdwc)
1449{
1450 u32 chg_ctrl;
1451
1452 /* Clear charger detecting control bits */
1453 dwc3_msm_write_reg(mdwc->base, CHARGING_DET_CTRL_REG, 0x0);
1454
1455 /* Clear alt interrupt latch and enable bits */
1456 dwc3_msm_write_reg(mdwc->base, HS_PHY_IRQ_STAT_REG, 0xFFF);
1457 dwc3_msm_write_reg(mdwc->base, ALT_INTERRUPT_EN_REG, 0x0);
1458
1459 udelay(100);
1460
1461 /* Before proceeding make sure charger block is RESET */
1462 chg_ctrl = dwc3_msm_read_reg(mdwc->base, CHARGING_DET_CTRL_REG);
1463 if (chg_ctrl & 0x3F)
1464 dev_err(mdwc->dev, "%s Unable to reset chg_det block: %x\n",
1465 __func__, chg_ctrl);
1466}
1467
1468static const char *chg_to_string(enum dwc3_chg_type chg_type)
1469{
1470 switch (chg_type) {
Manu Gautama1e331d2013-02-07 14:55:05 +05301471 case DWC3_SDP_CHARGER: return "USB_SDP_CHARGER";
1472 case DWC3_DCP_CHARGER: return "USB_DCP_CHARGER";
1473 case DWC3_CDP_CHARGER: return "USB_CDP_CHARGER";
1474 case DWC3_PROPRIETARY_CHARGER: return "USB_PROPRIETARY_CHARGER";
Manu Gautam8c642812012-06-07 10:35:10 +05301475 default: return "INVALID_CHARGER";
1476 }
1477}
1478
1479#define DWC3_CHG_DCD_POLL_TIME (100 * HZ/1000) /* 100 msec */
1480#define DWC3_CHG_DCD_MAX_RETRIES 6 /* Tdcd_tmout = 6 * 100 msec */
1481#define DWC3_CHG_PRIMARY_DET_TIME (50 * HZ/1000) /* TVDPSRC_ON */
1482#define DWC3_CHG_SECONDARY_DET_TIME (50 * HZ/1000) /* TVDMSRC_ON */
1483
1484static void dwc3_chg_detect_work(struct work_struct *w)
1485{
1486 struct dwc3_msm *mdwc = container_of(w, struct dwc3_msm, chg_work.work);
1487 bool is_dcd = false, tmout, vout;
1488 unsigned long delay;
1489
1490 dev_dbg(mdwc->dev, "chg detection work\n");
1491 switch (mdwc->chg_state) {
1492 case USB_CHG_STATE_UNDEFINED:
1493 dwc3_chg_block_reset(mdwc);
1494 dwc3_chg_enable_dcd(mdwc);
1495 mdwc->chg_state = USB_CHG_STATE_WAIT_FOR_DCD;
1496 mdwc->dcd_retries = 0;
1497 delay = DWC3_CHG_DCD_POLL_TIME;
1498 break;
1499 case USB_CHG_STATE_WAIT_FOR_DCD:
1500 is_dcd = dwc3_chg_check_dcd(mdwc);
1501 tmout = ++mdwc->dcd_retries == DWC3_CHG_DCD_MAX_RETRIES;
1502 if (is_dcd || tmout) {
1503 dwc3_chg_disable_dcd(mdwc);
Manu Gautama1e331d2013-02-07 14:55:05 +05301504 if (dwc3_chg_det_check_linestate(mdwc)) {
1505 dev_dbg(mdwc->dev, "proprietary charger\n");
1506 mdwc->charger.chg_type =
1507 DWC3_PROPRIETARY_CHARGER;
1508 mdwc->chg_state = USB_CHG_STATE_DETECTED;
1509 delay = 0;
1510 break;
1511 }
Manu Gautam8c642812012-06-07 10:35:10 +05301512 dwc3_chg_enable_primary_det(mdwc);
1513 delay = DWC3_CHG_PRIMARY_DET_TIME;
1514 mdwc->chg_state = USB_CHG_STATE_DCD_DONE;
1515 } else {
1516 delay = DWC3_CHG_DCD_POLL_TIME;
1517 }
1518 break;
1519 case USB_CHG_STATE_DCD_DONE:
1520 vout = dwc3_chg_det_check_output(mdwc);
1521 if (vout) {
1522 dwc3_chg_enable_secondary_det(mdwc);
1523 delay = DWC3_CHG_SECONDARY_DET_TIME;
1524 mdwc->chg_state = USB_CHG_STATE_PRIMARY_DONE;
1525 } else {
Manu Gautama1e331d2013-02-07 14:55:05 +05301526 mdwc->charger.chg_type = DWC3_SDP_CHARGER;
Manu Gautam8c642812012-06-07 10:35:10 +05301527 mdwc->chg_state = USB_CHG_STATE_DETECTED;
1528 delay = 0;
1529 }
1530 break;
1531 case USB_CHG_STATE_PRIMARY_DONE:
1532 vout = dwc3_chg_det_check_output(mdwc);
1533 if (vout)
Manu Gautama1e331d2013-02-07 14:55:05 +05301534 mdwc->charger.chg_type = DWC3_DCP_CHARGER;
Manu Gautam8c642812012-06-07 10:35:10 +05301535 else
Manu Gautama1e331d2013-02-07 14:55:05 +05301536 mdwc->charger.chg_type = DWC3_CDP_CHARGER;
Manu Gautam8c642812012-06-07 10:35:10 +05301537 mdwc->chg_state = USB_CHG_STATE_SECONDARY_DONE;
1538 /* fall through */
1539 case USB_CHG_STATE_SECONDARY_DONE:
1540 mdwc->chg_state = USB_CHG_STATE_DETECTED;
1541 /* fall through */
1542 case USB_CHG_STATE_DETECTED:
1543 dwc3_chg_block_reset(mdwc);
Manu Gautama48296e2012-12-05 17:37:56 +05301544 /* Enable VDP_SRC */
1545 if (mdwc->charger.chg_type == DWC3_DCP_CHARGER)
1546 dwc3_msm_write_readback(mdwc->base,
1547 CHARGING_DET_CTRL_REG, 0x1F, 0x10);
Manu Gautam8c642812012-06-07 10:35:10 +05301548 dev_dbg(mdwc->dev, "chg_type = %s\n",
1549 chg_to_string(mdwc->charger.chg_type));
1550 mdwc->charger.notify_detection_complete(mdwc->otg_xceiv->otg,
1551 &mdwc->charger);
1552 return;
1553 default:
1554 return;
1555 }
1556
1557 queue_delayed_work(system_nrt_wq, &mdwc->chg_work, delay);
1558}
1559
1560static void dwc3_start_chg_det(struct dwc3_charger *charger, bool start)
1561{
1562 struct dwc3_msm *mdwc = context;
1563
1564 if (start == false) {
Jack Pham9354c6a2012-12-20 19:19:32 -08001565 dev_dbg(mdwc->dev, "canceling charging detection work\n");
Manu Gautam8c642812012-06-07 10:35:10 +05301566 cancel_delayed_work_sync(&mdwc->chg_work);
1567 mdwc->chg_state = USB_CHG_STATE_UNDEFINED;
1568 charger->chg_type = DWC3_INVALID_CHARGER;
1569 return;
1570 }
1571
1572 mdwc->chg_state = USB_CHG_STATE_UNDEFINED;
1573 charger->chg_type = DWC3_INVALID_CHARGER;
1574 queue_delayed_work(system_nrt_wq, &mdwc->chg_work, 0);
1575}
1576
Manu Gautamb5067272012-07-02 09:53:41 +05301577static int dwc3_msm_suspend(struct dwc3_msm *mdwc)
1578{
Manu Gautam2617deb2012-08-31 17:50:06 -07001579 int ret;
Manu Gautama48296e2012-12-05 17:37:56 +05301580 bool dcp;
Vijayavardhan Vennapusa45145882013-01-03 14:11:58 +05301581 bool host_bus_suspend;
Manu Gautam2617deb2012-08-31 17:50:06 -07001582
Manu Gautamb5067272012-07-02 09:53:41 +05301583 dev_dbg(mdwc->dev, "%s: entering lpm\n", __func__);
1584
1585 if (atomic_read(&mdwc->in_lpm)) {
1586 dev_dbg(mdwc->dev, "%s: Already suspended\n", __func__);
1587 return 0;
1588 }
1589
Manu Gautama48296e2012-12-05 17:37:56 +05301590 if (mdwc->hs_phy_irq)
1591 disable_irq(mdwc->hs_phy_irq);
1592
Manu Gautam98013c22012-11-20 17:42:42 +05301593 if (cancel_delayed_work_sync(&mdwc->chg_work))
1594 dev_dbg(mdwc->dev, "%s: chg_work was pending\n", __func__);
1595 if (mdwc->chg_state != USB_CHG_STATE_DETECTED) {
1596 /* charger detection wasn't complete; re-init flags */
1597 mdwc->chg_state = USB_CHG_STATE_UNDEFINED;
1598 mdwc->charger.chg_type = DWC3_INVALID_CHARGER;
Manu Gautama48296e2012-12-05 17:37:56 +05301599 dwc3_msm_write_readback(mdwc->base, CHARGING_DET_CTRL_REG,
1600 0x37, 0x0);
Manu Gautam98013c22012-11-20 17:42:42 +05301601 }
1602
Manu Gautama48296e2012-12-05 17:37:56 +05301603 dcp = mdwc->charger.chg_type == DWC3_DCP_CHARGER;
Vijayavardhan Vennapusa45145882013-01-03 14:11:58 +05301604 host_bus_suspend = mdwc->host_mode == 1;
Manu Gautam377821c2012-09-28 16:53:24 +05301605
Vijayavardhan Vennapusa4188de22012-11-06 15:20:18 +05301606 /* Sequence to put SSPHY in low power state:
1607 * 1. Clear REF_SS_PHY_EN in SS_PHY_CTRL_REG
1608 * 2. Clear REF_USE_PAD in SS_PHY_CTRL_REG
1609 * 3. Set TEST_POWERED_DOWN in SS_PHY_CTRL_REG to enable PHY retention
1610 * 4. Disable SSPHY ref clk
1611 */
1612 dwc3_msm_write_readback(mdwc->base, SS_PHY_CTRL_REG, (1 << 8), 0x0);
1613 dwc3_msm_write_readback(mdwc->base, SS_PHY_CTRL_REG, (1 << 28), 0x0);
1614 dwc3_msm_write_readback(mdwc->base, SS_PHY_CTRL_REG, (1 << 26),
1615 (1 << 26));
1616
Manu Gautam377821c2012-09-28 16:53:24 +05301617 usleep_range(1000, 1200);
Manu Gautam3e9ad352012-08-16 14:44:47 -07001618 clk_disable_unprepare(mdwc->ref_clk);
Manu Gautam377821c2012-09-28 16:53:24 +05301619
Vijayavardhan Vennapusa45145882013-01-03 14:11:58 +05301620 if (host_bus_suspend) {
1621 /* Sequence for host bus suspend case:
1622 * 1. Set suspend and sleep bits in GUSB2PHYCONFIG reg
1623 * 2. Clear interrupt latch register and enable BSV, ID HV intr
1624 * 3. Enable DP and DM HV interrupts in ALT_INTERRUPT_EN_REG
Vijayavardhan Vennapusa45145882013-01-03 14:11:58 +05301625 */
1626 dwc3_msm_write_reg(mdwc->base, DWC3_GUSB2PHYCFG(0),
1627 dwc3_msm_read_reg(mdwc->base, DWC3_GUSB2PHYCFG(0)) |
1628 0x00000140);
1629 dwc3_msm_write_reg(mdwc->base, HS_PHY_IRQ_STAT_REG, 0xFFF);
1630 if (mdwc->otg_xceiv && (!mdwc->ext_xceiv.otg_capability))
1631 dwc3_msm_write_readback(mdwc->base, HS_PHY_CTRL_REG,
1632 0x18000, 0x18000);
Vijayavardhan Vennapusa98bccc52013-01-24 13:07:34 +05301633 dwc3_msm_write_reg(mdwc->base, ALT_INTERRUPT_EN_REG, 0xFC0);
Vijayavardhan Vennapusa45145882013-01-03 14:11:58 +05301634 udelay(5);
1635 } else {
1636 /* Sequence to put hardware in low power state:
1637 * 1. Set OTGDISABLE to disable OTG block in HSPHY (saves power)
1638 * 2. Clear charger detection control fields (performed above)
1639 * 3. SUSPEND PHY and turn OFF core clock after some delay
1640 * 4. Clear interrupt latch register and enable BSV, ID HV intr
1641 * 5. Enable PHY retention
1642 */
1643 dwc3_msm_write_readback(mdwc->base, HS_PHY_CTRL_REG, 0x1000,
1644 0x1000);
1645 dwc3_msm_write_readback(mdwc->base, HS_PHY_CTRL_REG,
1646 0xC00000, 0x800000);
1647 dwc3_msm_write_reg(mdwc->base, HS_PHY_IRQ_STAT_REG, 0xFFF);
1648 if (mdwc->otg_xceiv && (!mdwc->ext_xceiv.otg_capability))
1649 dwc3_msm_write_readback(mdwc->base, HS_PHY_CTRL_REG,
1650 0x18000, 0x18000);
1651 if (!dcp)
1652 dwc3_msm_write_readback(mdwc->base, HS_PHY_CTRL_REG,
1653 0x2, 0x0);
1654 }
Manu Gautam377821c2012-09-28 16:53:24 +05301655
1656 /* make sure above writes are completed before turning off clocks */
1657 wmb();
1658 clk_disable_unprepare(mdwc->core_clk);
1659 clk_disable_unprepare(mdwc->iface_clk);
1660
Jack Pham22698b82013-02-13 17:45:06 -08001661 if (!host_bus_suspend) {
1662 clk_disable_unprepare(mdwc->utmi_clk);
1663
1664 /* USB PHY no more requires TCXO */
Vijayavardhan Vennapusadec1fe62013-02-12 16:05:14 +05301665 clk_disable_unprepare(mdwc->xo_clk);
Jack Pham22698b82013-02-13 17:45:06 -08001666 }
Manu Gautamb5067272012-07-02 09:53:41 +05301667
Manu Gautam2617deb2012-08-31 17:50:06 -07001668 if (mdwc->bus_perf_client) {
1669 ret = msm_bus_scale_client_update_request(
1670 mdwc->bus_perf_client, 0);
1671 if (ret)
1672 dev_err(mdwc->dev, "Failed to reset bus bw vote\n");
1673 }
1674
Vijayavardhan Vennapusa45145882013-01-03 14:11:58 +05301675 if (mdwc->otg_xceiv && mdwc->ext_xceiv.otg_capability && !dcp &&
1676 !host_bus_suspend)
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05301677 dwc3_hsusb_ldo_enable(0);
1678
Vijayavardhan Vennapusa6bc06962012-10-31 13:23:38 +05301679 dwc3_ssusb_ldo_enable(0);
1680 dwc3_ssusb_config_vddcx(0);
Vijayavardhan Vennapusa98bccc52013-01-24 13:07:34 +05301681 if (!host_bus_suspend)
1682 dwc3_hsusb_config_vddcx(0);
Manu Gautam377821c2012-09-28 16:53:24 +05301683 wake_unlock(&mdwc->wlock);
Manu Gautamb5067272012-07-02 09:53:41 +05301684 atomic_set(&mdwc->in_lpm, 1);
Manu Gautam377821c2012-09-28 16:53:24 +05301685
Manu Gautamb5067272012-07-02 09:53:41 +05301686 dev_info(mdwc->dev, "DWC3 in low power mode\n");
1687
Manu Gautama48296e2012-12-05 17:37:56 +05301688 if (mdwc->hs_phy_irq)
1689 enable_irq(mdwc->hs_phy_irq);
1690
Manu Gautamb5067272012-07-02 09:53:41 +05301691 return 0;
1692}
1693
1694static int dwc3_msm_resume(struct dwc3_msm *mdwc)
1695{
Manu Gautam2617deb2012-08-31 17:50:06 -07001696 int ret;
Manu Gautama48296e2012-12-05 17:37:56 +05301697 bool dcp;
Vijayavardhan Vennapusa45145882013-01-03 14:11:58 +05301698 bool host_bus_suspend;
Manu Gautam2617deb2012-08-31 17:50:06 -07001699
Manu Gautamb5067272012-07-02 09:53:41 +05301700 dev_dbg(mdwc->dev, "%s: exiting lpm\n", __func__);
1701
1702 if (!atomic_read(&mdwc->in_lpm)) {
1703 dev_dbg(mdwc->dev, "%s: Already resumed\n", __func__);
1704 return 0;
1705 }
1706
Manu Gautam377821c2012-09-28 16:53:24 +05301707 wake_lock(&mdwc->wlock);
1708
Manu Gautam2617deb2012-08-31 17:50:06 -07001709 if (mdwc->bus_perf_client) {
1710 ret = msm_bus_scale_client_update_request(
1711 mdwc->bus_perf_client, 1);
1712 if (ret)
1713 dev_err(mdwc->dev, "Failed to vote for bus scaling\n");
1714 }
1715
Manu Gautama48296e2012-12-05 17:37:56 +05301716 dcp = mdwc->charger.chg_type == DWC3_DCP_CHARGER;
Vijayavardhan Vennapusa45145882013-01-03 14:11:58 +05301717 host_bus_suspend = mdwc->host_mode == 1;
Vijayavardhan Vennapusa98bccc52013-01-24 13:07:34 +05301718
1719 if (!host_bus_suspend) {
1720 /* Vote for TCXO while waking up USB HSPHY */
Vijayavardhan Vennapusadec1fe62013-02-12 16:05:14 +05301721 ret = clk_prepare_enable(mdwc->xo_clk);
Vijayavardhan Vennapusa98bccc52013-01-24 13:07:34 +05301722 if (ret)
1723 dev_err(mdwc->dev, "%s failed to vote TCXO buffer%d\n",
1724 __func__, ret);
1725 }
1726
Vijayavardhan Vennapusa45145882013-01-03 14:11:58 +05301727 if (mdwc->otg_xceiv && mdwc->ext_xceiv.otg_capability && !dcp &&
1728 !host_bus_suspend)
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05301729 dwc3_hsusb_ldo_enable(1);
1730
Vijayavardhan Vennapusa6bc06962012-10-31 13:23:38 +05301731 dwc3_ssusb_ldo_enable(1);
1732 dwc3_ssusb_config_vddcx(1);
Jack Pham22698b82013-02-13 17:45:06 -08001733
1734 if (!host_bus_suspend) {
Vijayavardhan Vennapusa98bccc52013-01-24 13:07:34 +05301735 dwc3_hsusb_config_vddcx(1);
Jack Pham22698b82013-02-13 17:45:06 -08001736 clk_prepare_enable(mdwc->utmi_clk);
1737 }
1738
Manu Gautam3e9ad352012-08-16 14:44:47 -07001739 clk_prepare_enable(mdwc->ref_clk);
Manu Gautam377821c2012-09-28 16:53:24 +05301740 usleep_range(1000, 1200);
1741
Manu Gautam3e9ad352012-08-16 14:44:47 -07001742 clk_prepare_enable(mdwc->iface_clk);
Manu Gautam377821c2012-09-28 16:53:24 +05301743 clk_prepare_enable(mdwc->core_clk);
1744
Vijayavardhan Vennapusa45145882013-01-03 14:11:58 +05301745 if (host_bus_suspend) {
1746 /* Disable HV interrupt */
1747 if (mdwc->otg_xceiv && (!mdwc->ext_xceiv.otg_capability))
1748 dwc3_msm_write_readback(mdwc->base, HS_PHY_CTRL_REG,
1749 0x18000, 0x0);
1750 /* Clear interrupt latch register */
1751 dwc3_msm_write_reg(mdwc->base, HS_PHY_IRQ_STAT_REG, 0x000);
Manu Gautam377821c2012-09-28 16:53:24 +05301752
Vijayavardhan Vennapusa45145882013-01-03 14:11:58 +05301753 /* Disable DP and DM HV interrupt */
1754 dwc3_msm_write_reg(mdwc->base, ALT_INTERRUPT_EN_REG, 0x000);
Manu Gautam377821c2012-09-28 16:53:24 +05301755
Vijayavardhan Vennapusa98bccc52013-01-24 13:07:34 +05301756 /* Clear suspend bit in GUSB2PHYCONFIG register */
1757 dwc3_msm_write_readback(mdwc->base, DWC3_GUSB2PHYCFG(0),
1758 0x40, 0x0);
Vijayavardhan Vennapusa45145882013-01-03 14:11:58 +05301759 } else {
1760 /* Disable HV interrupt */
1761 if (mdwc->otg_xceiv && (!mdwc->ext_xceiv.otg_capability))
1762 dwc3_msm_write_readback(mdwc->base, HS_PHY_CTRL_REG,
1763 0x18000, 0x0);
1764 /* Disable Retention */
1765 dwc3_msm_write_readback(mdwc->base, HS_PHY_CTRL_REG, 0x2, 0x2);
1766
1767 dwc3_msm_write_reg(mdwc->base, DWC3_GUSB2PHYCFG(0),
1768 dwc3_msm_read_reg(mdwc->base, DWC3_GUSB2PHYCFG(0)) |
1769 0xF0000000);
1770 /* 10usec delay required before de-asserting PHY RESET */
1771 udelay(10);
1772 dwc3_msm_write_reg(mdwc->base, DWC3_GUSB2PHYCFG(0),
1773 dwc3_msm_read_reg(mdwc->base, DWC3_GUSB2PHYCFG(0)) &
1774 0x7FFFFFFF);
1775
1776 /* Bring PHY out of suspend */
1777 dwc3_msm_write_readback(mdwc->base, HS_PHY_CTRL_REG, 0xC00000,
1778 0x0);
1779
1780 }
Manu Gautamb5067272012-07-02 09:53:41 +05301781
Vijayavardhan Vennapusa4188de22012-11-06 15:20:18 +05301782 /* Assert SS PHY RESET */
1783 dwc3_msm_write_readback(mdwc->base, SS_PHY_CTRL_REG, (1 << 7),
1784 (1 << 7));
1785 dwc3_msm_write_readback(mdwc->base, SS_PHY_CTRL_REG, (1 << 28),
1786 (1 << 28));
1787 dwc3_msm_write_readback(mdwc->base, SS_PHY_CTRL_REG, (1 << 8),
1788 (1 << 8));
1789 dwc3_msm_write_readback(mdwc->base, SS_PHY_CTRL_REG, (1 << 26), 0x0);
1790 /* 10usec delay required before de-asserting SS PHY RESET */
1791 udelay(10);
1792 dwc3_msm_write_readback(mdwc->base, SS_PHY_CTRL_REG, (1 << 7), 0x0);
1793
Manu Gautamb5067272012-07-02 09:53:41 +05301794 atomic_set(&mdwc->in_lpm, 0);
Manu Gautam377821c2012-09-28 16:53:24 +05301795
1796 /* match disable_irq call from isr */
1797 if (mdwc->lpm_irq_seen && mdwc->hs_phy_irq) {
1798 enable_irq(mdwc->hs_phy_irq);
1799 mdwc->lpm_irq_seen = false;
1800 }
1801
Manu Gautamb5067272012-07-02 09:53:41 +05301802 dev_info(mdwc->dev, "DWC3 exited from low power mode\n");
1803
1804 return 0;
1805}
1806
1807static void dwc3_resume_work(struct work_struct *w)
1808{
1809 struct dwc3_msm *mdwc = container_of(w, struct dwc3_msm,
1810 resume_work.work);
1811
1812 dev_dbg(mdwc->dev, "%s: dwc3 resume work\n", __func__);
1813 /* handle any event that was queued while work was already running */
1814 if (!atomic_read(&mdwc->in_lpm)) {
1815 dev_dbg(mdwc->dev, "%s: notifying xceiv event\n", __func__);
1816 if (mdwc->otg_xceiv)
1817 mdwc->ext_xceiv.notify_ext_events(mdwc->otg_xceiv->otg,
1818 DWC3_EVENT_XCEIV_STATE);
1819 return;
1820 }
1821
1822 /* bail out if system resume in process, else initiate RESUME */
1823 if (atomic_read(&mdwc->pm_suspended)) {
1824 mdwc->resume_pending = true;
1825 } else {
1826 pm_runtime_get_sync(mdwc->dev);
1827 if (mdwc->otg_xceiv)
1828 mdwc->ext_xceiv.notify_ext_events(mdwc->otg_xceiv->otg,
1829 DWC3_EVENT_PHY_RESUME);
1830 pm_runtime_put_sync(mdwc->dev);
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05301831 if (mdwc->otg_xceiv && (mdwc->ext_xceiv.otg_capability))
1832 mdwc->ext_xceiv.notify_ext_events(mdwc->otg_xceiv->otg,
1833 DWC3_EVENT_XCEIV_STATE);
Manu Gautamb5067272012-07-02 09:53:41 +05301834 }
1835}
1836
Jack Pham0fc12332012-11-19 13:14:22 -08001837static u32 debug_id = true, debug_bsv, debug_connect;
Manu Gautamb5067272012-07-02 09:53:41 +05301838
1839static int dwc3_connect_show(struct seq_file *s, void *unused)
1840{
1841 if (debug_connect)
1842 seq_printf(s, "true\n");
1843 else
1844 seq_printf(s, "false\n");
1845
1846 return 0;
1847}
1848
1849static int dwc3_connect_open(struct inode *inode, struct file *file)
1850{
1851 return single_open(file, dwc3_connect_show, inode->i_private);
1852}
1853
1854static ssize_t dwc3_connect_write(struct file *file, const char __user *ubuf,
1855 size_t count, loff_t *ppos)
1856{
1857 struct seq_file *s = file->private_data;
1858 struct dwc3_msm *mdwc = s->private;
1859 char buf[8];
1860
1861 memset(buf, 0x00, sizeof(buf));
1862
1863 if (copy_from_user(&buf, ubuf, min_t(size_t, sizeof(buf) - 1, count)))
1864 return -EFAULT;
1865
1866 if (!strncmp(buf, "enable", 6) || !strncmp(buf, "true", 4)) {
1867 debug_connect = true;
1868 } else {
1869 debug_connect = debug_bsv = false;
1870 debug_id = true;
1871 }
1872
1873 mdwc->ext_xceiv.bsv = debug_bsv;
1874 mdwc->ext_xceiv.id = debug_id ? DWC3_ID_FLOAT : DWC3_ID_GROUND;
1875
1876 if (atomic_read(&mdwc->in_lpm)) {
1877 dev_dbg(mdwc->dev, "%s: calling resume_work\n", __func__);
1878 dwc3_resume_work(&mdwc->resume_work.work);
1879 } else {
1880 dev_dbg(mdwc->dev, "%s: notifying xceiv event\n", __func__);
1881 if (mdwc->otg_xceiv)
1882 mdwc->ext_xceiv.notify_ext_events(mdwc->otg_xceiv->otg,
1883 DWC3_EVENT_XCEIV_STATE);
1884 }
1885
1886 return count;
1887}
1888
1889const struct file_operations dwc3_connect_fops = {
1890 .open = dwc3_connect_open,
1891 .read = seq_read,
1892 .write = dwc3_connect_write,
1893 .llseek = seq_lseek,
1894 .release = single_release,
1895};
1896
1897static struct dentry *dwc3_debugfs_root;
1898
1899static void dwc3_debugfs_init(struct dwc3_msm *mdwc)
1900{
1901 dwc3_debugfs_root = debugfs_create_dir("msm_dwc3", NULL);
1902
1903 if (!dwc3_debugfs_root || IS_ERR(dwc3_debugfs_root))
1904 return;
1905
1906 if (!debugfs_create_bool("id", S_IRUGO | S_IWUSR, dwc3_debugfs_root,
Vijayavardhan Vennapusa54be1d62012-10-06 18:32:06 +05301907 &debug_id))
Manu Gautamb5067272012-07-02 09:53:41 +05301908 goto error;
1909
1910 if (!debugfs_create_bool("bsv", S_IRUGO | S_IWUSR, dwc3_debugfs_root,
Vijayavardhan Vennapusa54be1d62012-10-06 18:32:06 +05301911 &debug_bsv))
Manu Gautamb5067272012-07-02 09:53:41 +05301912 goto error;
1913
1914 if (!debugfs_create_file("connect", S_IRUGO | S_IWUSR,
1915 dwc3_debugfs_root, mdwc, &dwc3_connect_fops))
1916 goto error;
1917
1918 return;
1919
1920error:
1921 debugfs_remove_recursive(dwc3_debugfs_root);
1922}
Manu Gautam8c642812012-06-07 10:35:10 +05301923
Manu Gautam377821c2012-09-28 16:53:24 +05301924static irqreturn_t msm_dwc3_irq(int irq, void *data)
1925{
1926 struct dwc3_msm *mdwc = data;
1927
1928 if (atomic_read(&mdwc->in_lpm)) {
1929 dev_dbg(mdwc->dev, "%s received in LPM\n", __func__);
1930 mdwc->lpm_irq_seen = true;
1931 disable_irq_nosync(irq);
1932 queue_delayed_work(system_nrt_wq, &mdwc->resume_work, 0);
1933 } else {
1934 pr_info_ratelimited("%s: IRQ outside LPM\n", __func__);
1935 }
1936
1937 return IRQ_HANDLED;
1938}
1939
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05301940static int dwc3_msm_power_get_property_usb(struct power_supply *psy,
1941 enum power_supply_property psp,
1942 union power_supply_propval *val)
1943{
1944 struct dwc3_msm *mdwc = container_of(psy, struct dwc3_msm,
1945 usb_psy);
1946 switch (psp) {
1947 case POWER_SUPPLY_PROP_SCOPE:
1948 val->intval = mdwc->host_mode;
1949 break;
1950 case POWER_SUPPLY_PROP_CURRENT_MAX:
1951 val->intval = mdwc->current_max;
1952 break;
1953 case POWER_SUPPLY_PROP_PRESENT:
1954 val->intval = mdwc->vbus_active;
1955 break;
1956 case POWER_SUPPLY_PROP_ONLINE:
1957 val->intval = mdwc->online;
1958 break;
Manu Gautamfa40cae2013-03-01 16:37:12 +05301959 case POWER_SUPPLY_PROP_TYPE:
1960 val->intval = psy->type;
1961 break;
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05301962 default:
1963 return -EINVAL;
1964 }
1965 return 0;
1966}
1967
1968static int dwc3_msm_power_set_property_usb(struct power_supply *psy,
1969 enum power_supply_property psp,
1970 const union power_supply_propval *val)
1971{
1972 static bool init;
1973 struct dwc3_msm *mdwc = container_of(psy, struct dwc3_msm,
1974 usb_psy);
1975
1976 switch (psp) {
1977 case POWER_SUPPLY_PROP_SCOPE:
1978 mdwc->host_mode = val->intval;
1979 break;
1980 /* Process PMIC notification in PRESENT prop */
1981 case POWER_SUPPLY_PROP_PRESENT:
1982 dev_dbg(mdwc->dev, "%s: notify xceiv event\n", __func__);
Jack Pham9354c6a2012-12-20 19:19:32 -08001983 if (mdwc->otg_xceiv && !mdwc->ext_inuse &&
1984 (mdwc->ext_xceiv.otg_capability || !init)) {
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05301985 mdwc->ext_xceiv.bsv = val->intval;
Manu Gautamf71d9cb2013-02-07 13:52:12 +05301986 queue_delayed_work(system_nrt_wq,
Jack Pham4d91aab2013-03-08 10:02:16 -08001987 &mdwc->resume_work, 20);
Jack Pham9354c6a2012-12-20 19:19:32 -08001988
1989 if (!init)
1990 init = true;
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05301991 }
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05301992 mdwc->vbus_active = val->intval;
1993 break;
1994 case POWER_SUPPLY_PROP_ONLINE:
1995 mdwc->online = val->intval;
1996 break;
1997 case POWER_SUPPLY_PROP_CURRENT_MAX:
1998 mdwc->current_max = val->intval;
1999 break;
Manu Gautamfa40cae2013-03-01 16:37:12 +05302000 case POWER_SUPPLY_PROP_TYPE:
2001 psy->type = val->intval;
2002 break;
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05302003 default:
2004 return -EINVAL;
2005 }
2006
2007 power_supply_changed(&mdwc->usb_psy);
2008 return 0;
2009}
2010
Jack Pham9354c6a2012-12-20 19:19:32 -08002011static void dwc3_msm_external_power_changed(struct power_supply *psy)
2012{
2013 struct dwc3_msm *mdwc = container_of(psy, struct dwc3_msm, usb_psy);
2014 union power_supply_propval ret = {0,};
2015
2016 if (!mdwc->ext_vbus_psy)
2017 mdwc->ext_vbus_psy = power_supply_get_by_name("ext-vbus");
2018
2019 if (!mdwc->ext_vbus_psy) {
2020 pr_err("%s: Unable to get ext_vbus power_supply\n", __func__);
2021 return;
2022 }
2023
2024 mdwc->ext_vbus_psy->get_property(mdwc->ext_vbus_psy,
2025 POWER_SUPPLY_PROP_ONLINE, &ret);
2026 if (ret.intval) {
2027 dwc3_start_chg_det(&mdwc->charger, false);
2028 mdwc->ext_vbus_psy->get_property(mdwc->ext_vbus_psy,
2029 POWER_SUPPLY_PROP_CURRENT_MAX, &ret);
2030 power_supply_set_current_limit(&mdwc->usb_psy, ret.intval);
2031 }
2032
2033 power_supply_set_online(&mdwc->usb_psy, ret.intval);
2034 power_supply_changed(&mdwc->usb_psy);
2035}
2036
2037
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05302038static char *dwc3_msm_pm_power_supplied_to[] = {
2039 "battery",
2040};
2041
2042static enum power_supply_property dwc3_msm_pm_power_props_usb[] = {
2043 POWER_SUPPLY_PROP_PRESENT,
2044 POWER_SUPPLY_PROP_ONLINE,
2045 POWER_SUPPLY_PROP_CURRENT_MAX,
2046 POWER_SUPPLY_PROP_SCOPE,
2047};
2048
Jack Phamfadd6432012-12-07 19:03:41 -08002049static void dwc3_init_adc_work(struct work_struct *w);
2050
2051static void dwc3_ext_notify_online(int on)
2052{
2053 struct dwc3_msm *mdwc = context;
Jack Phamf12b7e12012-12-28 14:27:26 -08002054 bool notify_otg = false;
Jack Phamfadd6432012-12-07 19:03:41 -08002055
2056 if (!mdwc) {
2057 pr_err("%s: DWC3 driver already removed\n", __func__);
2058 return;
2059 }
2060
2061 dev_dbg(mdwc->dev, "notify %s%s\n", on ? "" : "dis", "connected");
2062
Jack Pham9354c6a2012-12-20 19:19:32 -08002063 if (!mdwc->ext_vbus_psy)
2064 mdwc->ext_vbus_psy = power_supply_get_by_name("ext-vbus");
2065
2066 mdwc->ext_inuse = on;
Jack Phamf12b7e12012-12-28 14:27:26 -08002067 if (on) {
2068 /* force OTG to exit B-peripheral state */
2069 mdwc->ext_xceiv.bsv = false;
2070 notify_otg = true;
Jack Pham9354c6a2012-12-20 19:19:32 -08002071 dwc3_start_chg_det(&mdwc->charger, false);
Jack Phamf12b7e12012-12-28 14:27:26 -08002072 } else {
2073 /* external client offline; tell OTG about cached ID/BSV */
2074 if (mdwc->ext_xceiv.id != mdwc->id_state) {
2075 mdwc->ext_xceiv.id = mdwc->id_state;
2076 notify_otg = true;
2077 }
2078
2079 mdwc->ext_xceiv.bsv = mdwc->vbus_active;
2080 notify_otg |= mdwc->vbus_active;
2081 }
Jack Pham9354c6a2012-12-20 19:19:32 -08002082
2083 if (mdwc->ext_vbus_psy)
2084 power_supply_set_present(mdwc->ext_vbus_psy, on);
Jack Phamf12b7e12012-12-28 14:27:26 -08002085
2086 if (notify_otg)
2087 queue_delayed_work(system_nrt_wq, &mdwc->resume_work, 0);
Jack Phamfadd6432012-12-07 19:03:41 -08002088}
2089
Jack Pham0cca9412013-03-08 13:22:42 -08002090static void dwc3_id_work(struct work_struct *w)
Jack Phamfadd6432012-12-07 19:03:41 -08002091{
Jack Pham0cca9412013-03-08 13:22:42 -08002092 struct dwc3_msm *mdwc = container_of(w, struct dwc3_msm, id_work);
Jack Pham5c585062013-03-25 18:39:12 -07002093 int ret;
Jack Phamfadd6432012-12-07 19:03:41 -08002094
Jack Pham0cca9412013-03-08 13:22:42 -08002095 /* Give external client a chance to handle */
Jack Pham5c585062013-03-25 18:39:12 -07002096 if (!mdwc->ext_inuse && usb_ext) {
2097 if (mdwc->pmic_id_irq)
2098 disable_irq(mdwc->pmic_id_irq);
2099
2100 ret = usb_ext->notify(usb_ext->ctxt, mdwc->id_state,
2101 dwc3_ext_notify_online);
2102 dev_dbg(mdwc->dev, "%s: external handler returned %d\n",
2103 __func__, ret);
2104
2105 if (mdwc->pmic_id_irq) {
2106 /* ID may have changed while IRQ disabled; update it */
2107 mdwc->id_state = !!irq_read_line(mdwc->pmic_id_irq);
2108 enable_irq(mdwc->pmic_id_irq);
Jack Pham0cca9412013-03-08 13:22:42 -08002109 }
Jack Pham5c585062013-03-25 18:39:12 -07002110
2111 mdwc->ext_inuse = (ret == 0);
Jack Pham0cca9412013-03-08 13:22:42 -08002112 }
Jack Phamfadd6432012-12-07 19:03:41 -08002113
Jack Pham0cca9412013-03-08 13:22:42 -08002114 if (!mdwc->ext_inuse) { /* notify OTG */
2115 mdwc->ext_xceiv.id = mdwc->id_state;
2116 dwc3_resume_work(&mdwc->resume_work.work);
2117 }
2118}
2119
2120static irqreturn_t dwc3_pmic_id_irq(int irq, void *data)
2121{
2122 struct dwc3_msm *mdwc = data;
Jack Pham5c585062013-03-25 18:39:12 -07002123 enum dwc3_id_state id;
Jack Pham0cca9412013-03-08 13:22:42 -08002124
2125 /* If we can't read ID line state for some reason, treat it as float */
Jack Pham5c585062013-03-25 18:39:12 -07002126 id = !!irq_read_line(irq);
2127 if (mdwc->id_state != id) {
2128 mdwc->id_state = id;
2129 queue_work(system_nrt_wq, &mdwc->id_work);
2130 }
Jack Pham0cca9412013-03-08 13:22:42 -08002131
2132 return IRQ_HANDLED;
Jack Phamfadd6432012-12-07 19:03:41 -08002133}
2134
Jack Pham0fc12332012-11-19 13:14:22 -08002135static void dwc3_adc_notification(enum qpnp_tm_state state, void *ctx)
2136{
2137 struct dwc3_msm *mdwc = ctx;
2138
2139 if (state >= ADC_TM_STATE_NUM) {
2140 pr_err("%s: invalid notification %d\n", __func__, state);
2141 return;
2142 }
2143
2144 dev_dbg(mdwc->dev, "%s: state = %s\n", __func__,
2145 state == ADC_TM_HIGH_STATE ? "high" : "low");
2146
Jack Phamf12b7e12012-12-28 14:27:26 -08002147 /* save ID state, but don't necessarily notify OTG */
Jack Pham0fc12332012-11-19 13:14:22 -08002148 if (state == ADC_TM_HIGH_STATE) {
Jack Phamf12b7e12012-12-28 14:27:26 -08002149 mdwc->id_state = DWC3_ID_FLOAT;
Jack Pham0fc12332012-11-19 13:14:22 -08002150 mdwc->adc_param.state_request = ADC_TM_LOW_THR_ENABLE;
2151 } else {
Jack Phamf12b7e12012-12-28 14:27:26 -08002152 mdwc->id_state = DWC3_ID_GROUND;
Jack Pham0fc12332012-11-19 13:14:22 -08002153 mdwc->adc_param.state_request = ADC_TM_HIGH_THR_ENABLE;
2154 }
2155
Jack Pham0cca9412013-03-08 13:22:42 -08002156 dwc3_id_work(&mdwc->id_work);
2157
Jack Phamfadd6432012-12-07 19:03:41 -08002158 /* re-arm ADC interrupt */
Jack Pham0fc12332012-11-19 13:14:22 -08002159 qpnp_adc_tm_usbid_configure(&mdwc->adc_param);
2160}
2161
2162static void dwc3_init_adc_work(struct work_struct *w)
2163{
2164 struct dwc3_msm *mdwc = container_of(w, struct dwc3_msm,
2165 init_adc_work.work);
2166 int ret;
2167
2168 ret = qpnp_adc_tm_is_ready();
2169 if (ret == -EPROBE_DEFER) {
Jack Pham90b4d122012-12-13 11:46:22 -08002170 queue_delayed_work(system_nrt_wq, to_delayed_work(w),
2171 msecs_to_jiffies(100));
Jack Pham0fc12332012-11-19 13:14:22 -08002172 return;
2173 }
2174
2175 mdwc->adc_param.low_thr = adc_low_threshold;
2176 mdwc->adc_param.high_thr = adc_high_threshold;
2177 mdwc->adc_param.timer_interval = adc_meas_interval;
2178 mdwc->adc_param.state_request = ADC_TM_HIGH_LOW_THR_ENABLE;
Siddartha Mohanadossa3e35512013-02-22 17:06:07 -08002179 mdwc->adc_param.btm_ctx = mdwc;
Jack Pham0fc12332012-11-19 13:14:22 -08002180 mdwc->adc_param.threshold_notification = dwc3_adc_notification;
2181
2182 ret = qpnp_adc_tm_usbid_configure(&mdwc->adc_param);
2183 if (ret) {
2184 dev_err(mdwc->dev, "%s: request ADC error %d\n", __func__, ret);
2185 return;
2186 }
2187
2188 mdwc->id_adc_detect = true;
2189}
2190
2191static ssize_t adc_enable_show(struct device *dev,
2192 struct device_attribute *attr, char *buf)
2193{
2194 return snprintf(buf, PAGE_SIZE, "%s\n", context->id_adc_detect ?
2195 "enabled" : "disabled");
2196}
2197
2198static ssize_t adc_enable_store(struct device *dev,
2199 struct device_attribute *attr, const char
2200 *buf, size_t size)
2201{
2202 if (!strnicmp(buf, "enable", 6)) {
2203 if (!context->id_adc_detect)
2204 dwc3_init_adc_work(&context->init_adc_work.work);
2205 return size;
2206 } else if (!strnicmp(buf, "disable", 7)) {
2207 qpnp_adc_tm_usbid_end();
2208 context->id_adc_detect = false;
2209 return size;
2210 }
2211
2212 return -EINVAL;
2213}
2214
2215static DEVICE_ATTR(adc_enable, S_IRUGO | S_IWUSR, adc_enable_show,
2216 adc_enable_store);
2217
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002218static int __devinit dwc3_msm_probe(struct platform_device *pdev)
2219{
2220 struct device_node *node = pdev->dev.of_node;
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002221 struct dwc3_msm *msm;
2222 struct resource *res;
Ido Shayevitz7ad8ded2012-08-28 04:30:58 +03002223 void __iomem *tcsr;
Manu Gautamf08f7b62013-04-02 16:09:42 +05302224 unsigned long flags;
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002225 int ret = 0;
Vijayavardhan Vennapusa993798a2012-11-09 15:11:21 +05302226 int len = 0;
2227 u32 tmp[3];
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002228
2229 msm = devm_kzalloc(&pdev->dev, sizeof(*msm), GFP_KERNEL);
2230 if (!msm) {
2231 dev_err(&pdev->dev, "not enough memory\n");
2232 return -ENOMEM;
2233 }
2234
2235 platform_set_drvdata(pdev, msm);
Ido Shayevitz9fb83452012-04-01 17:45:58 +03002236 context = msm;
Manu Gautam60e01352012-05-29 09:00:34 +05302237 msm->dev = &pdev->dev;
Ido Shayevitz9fb83452012-04-01 17:45:58 +03002238
2239 INIT_LIST_HEAD(&msm->req_complete_list);
Manu Gautam8c642812012-06-07 10:35:10 +05302240 INIT_DELAYED_WORK(&msm->chg_work, dwc3_chg_detect_work);
Manu Gautamb5067272012-07-02 09:53:41 +05302241 INIT_DELAYED_WORK(&msm->resume_work, dwc3_resume_work);
Manu Gautam6eb13e32013-02-01 15:19:15 +05302242 INIT_WORK(&msm->restart_usb_work, dwc3_restart_usb_work);
Jack Pham0cca9412013-03-08 13:22:42 -08002243 INIT_WORK(&msm->id_work, dwc3_id_work);
Jack Pham0fc12332012-11-19 13:14:22 -08002244 INIT_DELAYED_WORK(&msm->init_adc_work, dwc3_init_adc_work);
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002245
Vijayavardhan Vennapusadec1fe62013-02-12 16:05:14 +05302246 msm->xo_clk = clk_get(&pdev->dev, "xo");
2247 if (IS_ERR(msm->xo_clk)) {
Manu Gautam377821c2012-09-28 16:53:24 +05302248 dev_err(&pdev->dev, "%s unable to get TCXO buffer handle\n",
2249 __func__);
Vijayavardhan Vennapusadec1fe62013-02-12 16:05:14 +05302250 return PTR_ERR(msm->xo_clk);
Manu Gautam377821c2012-09-28 16:53:24 +05302251 }
2252
Vijayavardhan Vennapusadec1fe62013-02-12 16:05:14 +05302253 ret = clk_prepare_enable(msm->xo_clk);
Manu Gautam377821c2012-09-28 16:53:24 +05302254 if (ret) {
2255 dev_err(&pdev->dev, "%s failed to vote for TCXO buffer%d\n",
2256 __func__, ret);
Vijayavardhan Vennapusadec1fe62013-02-12 16:05:14 +05302257 goto put_xo;
Manu Gautam377821c2012-09-28 16:53:24 +05302258 }
2259
Manu Gautam1742db22012-06-19 13:33:24 +05302260 /*
2261 * DWC3 Core requires its CORE CLK (aka master / bus clk) to
2262 * run at 125Mhz in SSUSB mode and >60MHZ for HSUSB mode.
2263 */
2264 msm->core_clk = devm_clk_get(&pdev->dev, "core_clk");
2265 if (IS_ERR(msm->core_clk)) {
2266 dev_err(&pdev->dev, "failed to get core_clk\n");
Manu Gautam377821c2012-09-28 16:53:24 +05302267 ret = PTR_ERR(msm->core_clk);
Vijayavardhan Vennapusadec1fe62013-02-12 16:05:14 +05302268 goto disable_xo;
Manu Gautam1742db22012-06-19 13:33:24 +05302269 }
2270 clk_set_rate(msm->core_clk, 125000000);
2271 clk_prepare_enable(msm->core_clk);
2272
Manu Gautam3e9ad352012-08-16 14:44:47 -07002273 msm->iface_clk = devm_clk_get(&pdev->dev, "iface_clk");
2274 if (IS_ERR(msm->iface_clk)) {
2275 dev_err(&pdev->dev, "failed to get iface_clk\n");
2276 ret = PTR_ERR(msm->iface_clk);
2277 goto disable_core_clk;
2278 }
2279 clk_prepare_enable(msm->iface_clk);
2280
2281 msm->sleep_clk = devm_clk_get(&pdev->dev, "sleep_clk");
2282 if (IS_ERR(msm->sleep_clk)) {
2283 dev_err(&pdev->dev, "failed to get sleep_clk\n");
2284 ret = PTR_ERR(msm->sleep_clk);
2285 goto disable_iface_clk;
2286 }
2287 clk_prepare_enable(msm->sleep_clk);
2288
2289 msm->hsphy_sleep_clk = devm_clk_get(&pdev->dev, "sleep_a_clk");
2290 if (IS_ERR(msm->hsphy_sleep_clk)) {
2291 dev_err(&pdev->dev, "failed to get sleep_a_clk\n");
2292 ret = PTR_ERR(msm->hsphy_sleep_clk);
2293 goto disable_sleep_clk;
2294 }
2295 clk_prepare_enable(msm->hsphy_sleep_clk);
2296
Jack Pham22698b82013-02-13 17:45:06 -08002297 msm->utmi_clk = devm_clk_get(&pdev->dev, "utmi_clk");
2298 if (IS_ERR(msm->utmi_clk)) {
2299 dev_err(&pdev->dev, "failed to get utmi_clk\n");
2300 ret = PTR_ERR(msm->utmi_clk);
2301 goto disable_sleep_a_clk;
2302 }
2303 clk_prepare_enable(msm->utmi_clk);
2304
Manu Gautam3e9ad352012-08-16 14:44:47 -07002305 msm->ref_clk = devm_clk_get(&pdev->dev, "ref_clk");
2306 if (IS_ERR(msm->ref_clk)) {
2307 dev_err(&pdev->dev, "failed to get ref_clk\n");
2308 ret = PTR_ERR(msm->ref_clk);
Jack Pham22698b82013-02-13 17:45:06 -08002309 goto disable_utmi_clk;
Manu Gautam3e9ad352012-08-16 14:44:47 -07002310 }
2311 clk_prepare_enable(msm->ref_clk);
2312
Vijayavardhan Vennapusa993798a2012-11-09 15:11:21 +05302313 of_get_property(node, "qcom,vdd-voltage-level", &len);
2314 if (len == sizeof(tmp)) {
2315 of_property_read_u32_array(node, "qcom,vdd-voltage-level",
2316 tmp, len/sizeof(*tmp));
2317 msm->vdd_no_vol_level = tmp[0];
2318 msm->vdd_low_vol_level = tmp[1];
2319 msm->vdd_high_vol_level = tmp[2];
2320 } else {
2321 dev_err(&pdev->dev, "no qcom,vdd-voltage-level property\n");
2322 ret = -EINVAL;
2323 goto disable_ref_clk;
2324 }
2325
Manu Gautam60e01352012-05-29 09:00:34 +05302326 /* SS PHY */
Manu Gautam60e01352012-05-29 09:00:34 +05302327 msm->ssusb_vddcx = devm_regulator_get(&pdev->dev, "ssusb_vdd_dig");
2328 if (IS_ERR(msm->ssusb_vddcx)) {
Vijayavardhan Vennapusa993798a2012-11-09 15:11:21 +05302329 dev_err(&pdev->dev, "unable to get ssusb vddcx\n");
2330 ret = PTR_ERR(msm->ssusb_vddcx);
2331 goto disable_ref_clk;
Manu Gautam60e01352012-05-29 09:00:34 +05302332 }
2333
2334 ret = dwc3_ssusb_config_vddcx(1);
2335 if (ret) {
2336 dev_err(&pdev->dev, "ssusb vddcx configuration failed\n");
Manu Gautam3e9ad352012-08-16 14:44:47 -07002337 goto disable_ref_clk;
Manu Gautam60e01352012-05-29 09:00:34 +05302338 }
2339
2340 ret = regulator_enable(context->ssusb_vddcx);
2341 if (ret) {
2342 dev_err(&pdev->dev, "unable to enable the ssusb vddcx\n");
2343 goto unconfig_ss_vddcx;
2344 }
2345
2346 ret = dwc3_ssusb_ldo_init(1);
2347 if (ret) {
2348 dev_err(&pdev->dev, "ssusb vreg configuration failed\n");
2349 goto disable_ss_vddcx;
2350 }
2351
2352 ret = dwc3_ssusb_ldo_enable(1);
2353 if (ret) {
2354 dev_err(&pdev->dev, "ssusb vreg enable failed\n");
2355 goto free_ss_ldo_init;
2356 }
2357
2358 /* HS PHY */
Manu Gautam60e01352012-05-29 09:00:34 +05302359 msm->hsusb_vddcx = devm_regulator_get(&pdev->dev, "hsusb_vdd_dig");
2360 if (IS_ERR(msm->hsusb_vddcx)) {
Vijayavardhan Vennapusa993798a2012-11-09 15:11:21 +05302361 dev_err(&pdev->dev, "unable to get hsusb vddcx\n");
2362 ret = PTR_ERR(msm->hsusb_vddcx);
2363 goto disable_ss_ldo;
Manu Gautam60e01352012-05-29 09:00:34 +05302364 }
2365
2366 ret = dwc3_hsusb_config_vddcx(1);
2367 if (ret) {
2368 dev_err(&pdev->dev, "hsusb vddcx configuration failed\n");
2369 goto disable_ss_ldo;
2370 }
2371
2372 ret = regulator_enable(context->hsusb_vddcx);
2373 if (ret) {
2374 dev_err(&pdev->dev, "unable to enable the hsusb vddcx\n");
2375 goto unconfig_hs_vddcx;
2376 }
2377
2378 ret = dwc3_hsusb_ldo_init(1);
2379 if (ret) {
2380 dev_err(&pdev->dev, "hsusb vreg configuration failed\n");
2381 goto disable_hs_vddcx;
2382 }
2383
2384 ret = dwc3_hsusb_ldo_enable(1);
2385 if (ret) {
2386 dev_err(&pdev->dev, "hsusb vreg enable failed\n");
2387 goto free_hs_ldo_init;
2388 }
2389
Jack Pham5c585062013-03-25 18:39:12 -07002390 msm->id_state = msm->ext_xceiv.id = DWC3_ID_FLOAT;
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05302391 msm->ext_xceiv.otg_capability = of_property_read_bool(node,
Manu Gautam6c0ff032012-11-02 14:55:35 +05302392 "qcom,otg-capability");
2393 msm->charger.charging_disabled = of_property_read_bool(node,
2394 "qcom,charging-disabled");
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05302395
Vijayavardhan Vennapusa45145882013-01-03 14:11:58 +05302396 /*
2397 * DWC3 has separate IRQ line for OTG events (ID/BSV) and for
2398 * DP and DM linestate transitions during low power mode.
2399 */
2400 msm->hs_phy_irq = platform_get_irq_byname(pdev, "hs_phy_irq");
2401 if (msm->hs_phy_irq < 0) {
2402 dev_dbg(&pdev->dev, "pget_irq for hs_phy_irq failed\n");
2403 msm->hs_phy_irq = 0;
Jack Pham0fc12332012-11-19 13:14:22 -08002404 } else {
Jack Pham56a0a632013-03-08 13:18:42 -08002405 ret = devm_request_irq(&pdev->dev, msm->hs_phy_irq,
2406 msm_dwc3_irq, IRQF_TRIGGER_RISING,
2407 "msm_dwc3", msm);
Vijayavardhan Vennapusa45145882013-01-03 14:11:58 +05302408 if (ret) {
2409 dev_err(&pdev->dev, "irqreq HSPHYINT failed\n");
2410 goto disable_hs_ldo;
2411 }
2412 enable_irq_wake(msm->hs_phy_irq);
2413 }
Jack Pham0cca9412013-03-08 13:22:42 -08002414
Vijayavardhan Vennapusa45145882013-01-03 14:11:58 +05302415 if (msm->ext_xceiv.otg_capability) {
Jack Pham0cca9412013-03-08 13:22:42 -08002416 msm->pmic_id_irq = platform_get_irq_byname(pdev, "pmic_id_irq");
2417 if (msm->pmic_id_irq > 0) {
David Keitelad4a0282013-03-19 18:04:27 -07002418 /* check if PMIC ID IRQ is supported */
2419 ret = qpnp_misc_irqs_available(&pdev->dev);
2420
2421 if (ret == -EPROBE_DEFER) {
2422 /* qpnp hasn't probed yet; defer dwc probe */
Jack Pham0cca9412013-03-08 13:22:42 -08002423 goto disable_hs_ldo;
David Keitelad4a0282013-03-19 18:04:27 -07002424 } else if (ret == 0) {
2425 msm->pmic_id_irq = 0;
2426 } else {
2427 ret = devm_request_irq(&pdev->dev,
2428 msm->pmic_id_irq,
2429 dwc3_pmic_id_irq,
2430 IRQF_TRIGGER_RISING |
2431 IRQF_TRIGGER_FALLING,
2432 "dwc3_msm_pmic_id", msm);
2433 if (ret) {
2434 dev_err(&pdev->dev, "irqreq IDINT failed\n");
2435 goto disable_hs_ldo;
2436 }
Manu Gautamf08f7b62013-04-02 16:09:42 +05302437 local_irq_save(flags);
2438 /* Update initial ID state */
2439 msm->id_state = msm->ext_xceiv.id =
2440 !!irq_read_line(msm->pmic_id_irq);
2441 local_irq_restore(flags);
David Keitelad4a0282013-03-19 18:04:27 -07002442 enable_irq_wake(msm->pmic_id_irq);
Jack Pham0cca9412013-03-08 13:22:42 -08002443 }
David Keitelad4a0282013-03-19 18:04:27 -07002444 }
2445
2446 if (msm->pmic_id_irq <= 0) {
Jack Pham0cca9412013-03-08 13:22:42 -08002447 /* If no PMIC ID IRQ, use ADC for ID pin detection */
2448 queue_work(system_nrt_wq, &msm->init_adc_work.work);
2449 device_create_file(&pdev->dev, &dev_attr_adc_enable);
2450 msm->pmic_id_irq = 0;
2451 }
Manu Gautam377821c2012-09-28 16:53:24 +05302452 }
2453
Ido Shayevitz7ad8ded2012-08-28 04:30:58 +03002454 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
2455 if (!res) {
2456 dev_dbg(&pdev->dev, "missing TCSR memory resource\n");
2457 } else {
2458 tcsr = devm_ioremap_nocache(&pdev->dev, res->start,
2459 resource_size(res));
2460 if (!tcsr) {
2461 dev_dbg(&pdev->dev, "tcsr ioremap failed\n");
2462 } else {
2463 /* Enable USB3 on the primary USB port. */
2464 writel_relaxed(0x1, tcsr);
2465 /*
2466 * Ensure that TCSR write is completed before
2467 * USB registers initialization.
2468 */
2469 mb();
2470 }
2471 }
2472
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002473 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
2474 if (!res) {
2475 dev_err(&pdev->dev, "missing memory base resource\n");
Manu Gautam60e01352012-05-29 09:00:34 +05302476 ret = -ENODEV;
Jack Pham56a0a632013-03-08 13:18:42 -08002477 goto disable_hs_ldo;
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002478 }
2479
2480 msm->base = devm_ioremap_nocache(&pdev->dev, res->start,
2481 resource_size(res));
2482 if (!msm->base) {
2483 dev_err(&pdev->dev, "ioremap failed\n");
Manu Gautam60e01352012-05-29 09:00:34 +05302484 ret = -ENODEV;
Jack Pham56a0a632013-03-08 13:18:42 -08002485 goto disable_hs_ldo;
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002486 }
2487
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002488 msm->resource_size = resource_size(res);
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002489
Vijayavardhan Vennapusa26a49602012-12-18 13:51:45 +05302490 if (of_property_read_u32(node, "qcom,dwc-hsphy-init",
2491 &msm->hsphy_init_seq))
2492 dev_dbg(&pdev->dev, "unable to read hsphy init seq\n");
2493 else if (!msm->hsphy_init_seq)
2494 dev_warn(&pdev->dev, "incorrect hsphyinitseq.Using PORvalue\n");
2495
Vijayavardhan Vennapusab7434562012-12-12 16:48:49 +05302496 dwc3_msm_qscratch_reg_init(msm);
Vijayavardhan Vennapusad81aed32012-12-05 17:30:40 +05302497
Manu Gautamb5067272012-07-02 09:53:41 +05302498 pm_runtime_set_active(msm->dev);
Manu Gautam377821c2012-09-28 16:53:24 +05302499 pm_runtime_enable(msm->dev);
Manu Gautamb5067272012-07-02 09:53:41 +05302500
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002501 if (of_property_read_u32(node, "qcom,dwc-usb3-msm-dbm-eps",
2502 &msm->dbm_num_eps)) {
2503 dev_err(&pdev->dev,
2504 "unable to read platform data num of dbm eps\n");
2505 msm->dbm_num_eps = DBM_MAX_EPS;
2506 }
2507
2508 if (msm->dbm_num_eps > DBM_MAX_EPS) {
2509 dev_err(&pdev->dev,
2510 "Driver doesn't support number of DBM EPs. "
2511 "max: %d, dbm_num_eps: %d\n",
2512 DBM_MAX_EPS, msm->dbm_num_eps);
2513 ret = -ENODEV;
Vijayavardhan Vennapusa8eb68732013-03-26 13:05:38 +05302514 goto disable_hs_ldo;
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002515 }
2516
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05302517 msm->usb_psy.name = "usb";
2518 msm->usb_psy.type = POWER_SUPPLY_TYPE_USB;
2519 msm->usb_psy.supplied_to = dwc3_msm_pm_power_supplied_to;
2520 msm->usb_psy.num_supplicants = ARRAY_SIZE(
2521 dwc3_msm_pm_power_supplied_to);
2522 msm->usb_psy.properties = dwc3_msm_pm_power_props_usb;
2523 msm->usb_psy.num_properties = ARRAY_SIZE(dwc3_msm_pm_power_props_usb);
2524 msm->usb_psy.get_property = dwc3_msm_power_get_property_usb;
2525 msm->usb_psy.set_property = dwc3_msm_power_set_property_usb;
Jack Pham9354c6a2012-12-20 19:19:32 -08002526 msm->usb_psy.external_power_changed =
2527 dwc3_msm_external_power_changed;
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05302528
2529 ret = power_supply_register(&pdev->dev, &msm->usb_psy);
2530 if (ret < 0) {
2531 dev_err(&pdev->dev,
2532 "%s:power_supply_register usb failed\n",
2533 __func__);
Vijayavardhan Vennapusa8eb68732013-03-26 13:05:38 +05302534 goto disable_hs_ldo;
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05302535 }
2536
Vijayavardhan Vennapusa8eb68732013-03-26 13:05:38 +05302537 if (node) {
2538 ret = of_platform_populate(node, NULL, NULL, &pdev->dev);
2539 if (ret) {
2540 dev_err(&pdev->dev,
2541 "failed to add create dwc3 core\n");
2542 goto put_psupply;
2543 }
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002544 }
2545
Manu Gautam2617deb2012-08-31 17:50:06 -07002546 msm->bus_scale_table = msm_bus_cl_get_pdata(pdev);
2547 if (!msm->bus_scale_table) {
2548 dev_err(&pdev->dev, "bus scaling is disabled\n");
2549 } else {
2550 msm->bus_perf_client =
2551 msm_bus_scale_register_client(msm->bus_scale_table);
2552 ret = msm_bus_scale_client_update_request(
2553 msm->bus_perf_client, 1);
2554 if (ret)
2555 dev_err(&pdev->dev, "Failed to vote for bus scaling\n");
2556 }
2557
Manu Gautam8c642812012-06-07 10:35:10 +05302558 msm->otg_xceiv = usb_get_transceiver();
2559 if (msm->otg_xceiv) {
2560 msm->charger.start_detection = dwc3_start_chg_det;
2561 ret = dwc3_set_charger(msm->otg_xceiv->otg, &msm->charger);
2562 if (ret || !msm->charger.notify_detection_complete) {
2563 dev_err(&pdev->dev, "failed to register charger: %d\n",
2564 ret);
2565 goto put_xcvr;
2566 }
Manu Gautamb5067272012-07-02 09:53:41 +05302567
Vijayavardhan Vennapusab7434562012-12-12 16:48:49 +05302568 if (msm->ext_xceiv.otg_capability)
2569 msm->ext_xceiv.ext_block_reset = dwc3_msm_block_reset;
Manu Gautamb5067272012-07-02 09:53:41 +05302570 ret = dwc3_set_ext_xceiv(msm->otg_xceiv->otg, &msm->ext_xceiv);
2571 if (ret || !msm->ext_xceiv.notify_ext_events) {
2572 dev_err(&pdev->dev, "failed to register xceiver: %d\n",
2573 ret);
2574 goto put_xcvr;
2575 }
Manu Gautam8c642812012-06-07 10:35:10 +05302576 } else {
2577 dev_err(&pdev->dev, "%s: No OTG transceiver found\n", __func__);
2578 }
2579
Manu Gautamb5067272012-07-02 09:53:41 +05302580 wake_lock_init(&msm->wlock, WAKE_LOCK_SUSPEND, "msm_dwc3");
2581 wake_lock(&msm->wlock);
2582 dwc3_debugfs_init(msm);
2583
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002584 return 0;
2585
Manu Gautam8c642812012-06-07 10:35:10 +05302586put_xcvr:
2587 usb_put_transceiver(msm->otg_xceiv);
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05302588put_psupply:
2589 power_supply_unregister(&msm->usb_psy);
Manu Gautam60e01352012-05-29 09:00:34 +05302590disable_hs_ldo:
2591 dwc3_hsusb_ldo_enable(0);
2592free_hs_ldo_init:
2593 dwc3_hsusb_ldo_init(0);
2594disable_hs_vddcx:
2595 regulator_disable(context->hsusb_vddcx);
2596unconfig_hs_vddcx:
2597 dwc3_hsusb_config_vddcx(0);
2598disable_ss_ldo:
2599 dwc3_ssusb_ldo_enable(0);
2600free_ss_ldo_init:
2601 dwc3_ssusb_ldo_init(0);
2602disable_ss_vddcx:
2603 regulator_disable(context->ssusb_vddcx);
2604unconfig_ss_vddcx:
2605 dwc3_ssusb_config_vddcx(0);
Manu Gautam3e9ad352012-08-16 14:44:47 -07002606disable_ref_clk:
2607 clk_disable_unprepare(msm->ref_clk);
Jack Pham22698b82013-02-13 17:45:06 -08002608disable_utmi_clk:
2609 clk_disable_unprepare(msm->utmi_clk);
Manu Gautam3e9ad352012-08-16 14:44:47 -07002610disable_sleep_a_clk:
2611 clk_disable_unprepare(msm->hsphy_sleep_clk);
2612disable_sleep_clk:
2613 clk_disable_unprepare(msm->sleep_clk);
2614disable_iface_clk:
2615 clk_disable_unprepare(msm->iface_clk);
Manu Gautam1742db22012-06-19 13:33:24 +05302616disable_core_clk:
2617 clk_disable_unprepare(msm->core_clk);
Vijayavardhan Vennapusadec1fe62013-02-12 16:05:14 +05302618disable_xo:
2619 clk_disable_unprepare(msm->xo_clk);
2620put_xo:
2621 clk_put(msm->xo_clk);
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002622
2623 return ret;
2624}
2625
2626static int __devexit dwc3_msm_remove(struct platform_device *pdev)
2627{
2628 struct dwc3_msm *msm = platform_get_drvdata(pdev);
2629
Jack Pham0fc12332012-11-19 13:14:22 -08002630 if (msm->id_adc_detect)
2631 qpnp_adc_tm_usbid_end();
Manu Gautamb5067272012-07-02 09:53:41 +05302632 if (dwc3_debugfs_root)
2633 debugfs_remove_recursive(dwc3_debugfs_root);
Manu Gautam8c642812012-06-07 10:35:10 +05302634 if (msm->otg_xceiv) {
2635 dwc3_start_chg_det(&msm->charger, false);
2636 usb_put_transceiver(msm->otg_xceiv);
2637 }
Jack Pham0fc12332012-11-19 13:14:22 -08002638
Manu Gautamb5067272012-07-02 09:53:41 +05302639 pm_runtime_disable(msm->dev);
Manu Gautamb5067272012-07-02 09:53:41 +05302640 wake_lock_destroy(&msm->wlock);
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002641
Manu Gautam60e01352012-05-29 09:00:34 +05302642 dwc3_hsusb_ldo_enable(0);
2643 dwc3_hsusb_ldo_init(0);
2644 regulator_disable(msm->hsusb_vddcx);
2645 dwc3_hsusb_config_vddcx(0);
2646 dwc3_ssusb_ldo_enable(0);
2647 dwc3_ssusb_ldo_init(0);
2648 regulator_disable(msm->ssusb_vddcx);
2649 dwc3_ssusb_config_vddcx(0);
Manu Gautam1742db22012-06-19 13:33:24 +05302650 clk_disable_unprepare(msm->core_clk);
Manu Gautam3e9ad352012-08-16 14:44:47 -07002651 clk_disable_unprepare(msm->iface_clk);
2652 clk_disable_unprepare(msm->sleep_clk);
2653 clk_disable_unprepare(msm->hsphy_sleep_clk);
2654 clk_disable_unprepare(msm->ref_clk);
Vijayavardhan Vennapusadec1fe62013-02-12 16:05:14 +05302655 clk_disable_unprepare(msm->xo_clk);
2656 clk_put(msm->xo_clk);
Manu Gautam60e01352012-05-29 09:00:34 +05302657
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002658 return 0;
2659}
2660
Manu Gautamb5067272012-07-02 09:53:41 +05302661static int dwc3_msm_pm_suspend(struct device *dev)
2662{
2663 int ret = 0;
2664 struct dwc3_msm *mdwc = dev_get_drvdata(dev);
2665
2666 dev_dbg(dev, "dwc3-msm PM suspend\n");
2667
Manu Gautam8d98a572013-01-21 16:34:50 +05302668 flush_delayed_work_sync(&mdwc->resume_work);
2669 if (!atomic_read(&mdwc->in_lpm)) {
2670 dev_err(mdwc->dev, "Abort PM suspend!! (USB is outside LPM)\n");
2671 return -EBUSY;
2672 }
2673
Manu Gautamb5067272012-07-02 09:53:41 +05302674 ret = dwc3_msm_suspend(mdwc);
2675 if (!ret)
2676 atomic_set(&mdwc->pm_suspended, 1);
2677
2678 return ret;
2679}
2680
2681static int dwc3_msm_pm_resume(struct device *dev)
2682{
2683 int ret = 0;
2684 struct dwc3_msm *mdwc = dev_get_drvdata(dev);
2685
2686 dev_dbg(dev, "dwc3-msm PM resume\n");
2687
2688 atomic_set(&mdwc->pm_suspended, 0);
2689 if (mdwc->resume_pending) {
2690 mdwc->resume_pending = false;
2691
2692 ret = dwc3_msm_resume(mdwc);
2693 /* Update runtime PM status */
2694 pm_runtime_disable(dev);
2695 pm_runtime_set_active(dev);
2696 pm_runtime_enable(dev);
2697
2698 /* Let OTG know about resume event and update pm_count */
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05302699 if (mdwc->otg_xceiv) {
Manu Gautamb5067272012-07-02 09:53:41 +05302700 mdwc->ext_xceiv.notify_ext_events(mdwc->otg_xceiv->otg,
2701 DWC3_EVENT_PHY_RESUME);
Vijayavardhan Vennapusad2993b82012-10-22 13:08:21 +05302702 if (mdwc->ext_xceiv.otg_capability)
2703 mdwc->ext_xceiv.notify_ext_events(
2704 mdwc->otg_xceiv->otg,
2705 DWC3_EVENT_XCEIV_STATE);
2706 }
Manu Gautamb5067272012-07-02 09:53:41 +05302707 }
2708
2709 return ret;
2710}
2711
2712static int dwc3_msm_runtime_idle(struct device *dev)
2713{
2714 dev_dbg(dev, "DWC3-msm runtime idle\n");
2715
2716 return 0;
2717}
2718
2719static int dwc3_msm_runtime_suspend(struct device *dev)
2720{
2721 struct dwc3_msm *mdwc = dev_get_drvdata(dev);
2722
2723 dev_dbg(dev, "DWC3-msm runtime suspend\n");
2724
2725 return dwc3_msm_suspend(mdwc);
2726}
2727
2728static int dwc3_msm_runtime_resume(struct device *dev)
2729{
2730 struct dwc3_msm *mdwc = dev_get_drvdata(dev);
2731
2732 dev_dbg(dev, "DWC3-msm runtime resume\n");
2733
2734 return dwc3_msm_resume(mdwc);
2735}
2736
2737static const struct dev_pm_ops dwc3_msm_dev_pm_ops = {
2738 SET_SYSTEM_SLEEP_PM_OPS(dwc3_msm_pm_suspend, dwc3_msm_pm_resume)
2739 SET_RUNTIME_PM_OPS(dwc3_msm_runtime_suspend, dwc3_msm_runtime_resume,
2740 dwc3_msm_runtime_idle)
2741};
2742
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002743static const struct of_device_id of_dwc3_matach[] = {
2744 {
2745 .compatible = "qcom,dwc-usb3-msm",
2746 },
2747 { },
2748};
2749MODULE_DEVICE_TABLE(of, of_dwc3_matach);
2750
2751static struct platform_driver dwc3_msm_driver = {
2752 .probe = dwc3_msm_probe,
2753 .remove = __devexit_p(dwc3_msm_remove),
2754 .driver = {
2755 .name = "msm-dwc3",
Manu Gautamb5067272012-07-02 09:53:41 +05302756 .pm = &dwc3_msm_dev_pm_ops,
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002757 .of_match_table = of_dwc3_matach,
2758 },
2759};
2760
Manu Gautam377821c2012-09-28 16:53:24 +05302761MODULE_LICENSE("GPL v2");
Ido Shayevitzef72ddd2012-03-28 18:55:55 +02002762MODULE_DESCRIPTION("DesignWare USB3 MSM Glue Layer");
2763
2764static int __devinit dwc3_msm_init(void)
2765{
2766 return platform_driver_register(&dwc3_msm_driver);
2767}
2768module_init(dwc3_msm_init);
2769
2770static void __exit dwc3_msm_exit(void)
2771{
2772 platform_driver_unregister(&dwc3_msm_driver);
2773}
2774module_exit(dwc3_msm_exit);