phy-msm-usb.c 40.1 KB
Newer Older
1
/* Copyright (c) 2009-2011, Code Aurora Forum. All rights reserved.
2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License version 2 and
 * only version 2 as published by the Free Software Foundation.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
 * 02110-1301, USA.
 *
 */

#include <linux/module.h>
#include <linux/device.h>
#include <linux/platform_device.h>
#include <linux/clk.h>
#include <linux/slab.h>
#include <linux/interrupt.h>
#include <linux/err.h>
#include <linux/delay.h>
#include <linux/io.h>
#include <linux/ioport.h>
#include <linux/uaccess.h>
#include <linux/debugfs.h>
#include <linux/seq_file.h>
32
#include <linux/pm_runtime.h>
33 34 35 36 37 38 39 40

#include <linux/usb.h>
#include <linux/usb/otg.h>
#include <linux/usb/ulpi.h>
#include <linux/usb/gadget.h>
#include <linux/usb/hcd.h>
#include <linux/usb/msm_hsusb.h>
#include <linux/usb/msm_hsusb_hw.h>
41
#include <linux/regulator/consumer.h>
42 43 44 45 46

#define MSM_USB_BASE	(motg->regs)
#define DRIVER_NAME	"msm_otg"

#define ULPI_IO_TIMEOUT_USEC	(10 * 1000)
47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65

#define USB_PHY_3P3_VOL_MIN	3050000 /* uV */
#define USB_PHY_3P3_VOL_MAX	3300000 /* uV */
#define USB_PHY_3P3_HPM_LOAD	50000	/* uA */
#define USB_PHY_3P3_LPM_LOAD	4000	/* uA */

#define USB_PHY_1P8_VOL_MIN	1800000 /* uV */
#define USB_PHY_1P8_VOL_MAX	1800000 /* uV */
#define USB_PHY_1P8_HPM_LOAD	50000	/* uA */
#define USB_PHY_1P8_LPM_LOAD	4000	/* uA */

#define USB_PHY_VDD_DIG_VOL_MIN	1000000 /* uV */
#define USB_PHY_VDD_DIG_VOL_MAX	1320000 /* uV */

static int msm_hsusb_init_vddcx(struct msm_otg *motg, int init)
{
	int ret = 0;

	if (init) {
66
		ret = regulator_set_voltage(motg->vddcx,
67 68 69
				USB_PHY_VDD_DIG_VOL_MIN,
				USB_PHY_VDD_DIG_VOL_MAX);
		if (ret) {
70
			dev_err(motg->phy.dev, "Cannot set vddcx voltage\n");
71 72 73
			return ret;
		}

74
		ret = regulator_enable(motg->vddcx);
75
		if (ret)
76
			dev_err(motg->phy.dev, "unable to enable hsusb vddcx\n");
77
	} else {
78
		ret = regulator_set_voltage(motg->vddcx, 0,
79
			USB_PHY_VDD_DIG_VOL_MAX);
80
		if (ret)
81
			dev_err(motg->phy.dev, "Cannot set vddcx voltage\n");
82
		ret = regulator_disable(motg->vddcx);
83
		if (ret)
84
			dev_err(motg->phy.dev, "unable to disable hsusb vddcx\n");
85 86 87 88 89 90 91 92 93 94
	}

	return ret;
}

static int msm_hsusb_ldo_init(struct msm_otg *motg, int init)
{
	int rc = 0;

	if (init) {
95
		rc = regulator_set_voltage(motg->v3p3, USB_PHY_3P3_VOL_MIN,
96 97
				USB_PHY_3P3_VOL_MAX);
		if (rc) {
98
			dev_err(motg->phy.dev, "Cannot set v3p3 voltage\n");
99
			goto exit;
100
		}
101
		rc = regulator_enable(motg->v3p3);
102
		if (rc) {
103
			dev_err(motg->phy.dev, "unable to enable the hsusb 3p3\n");
104
			goto exit;
105
		}
106
		rc = regulator_set_voltage(motg->v1p8, USB_PHY_1P8_VOL_MIN,
107 108
				USB_PHY_1P8_VOL_MAX);
		if (rc) {
109
			dev_err(motg->phy.dev, "Cannot set v1p8 voltage\n");
110
			goto disable_3p3;
111
		}
112
		rc = regulator_enable(motg->v1p8);
113
		if (rc) {
114
			dev_err(motg->phy.dev, "unable to enable the hsusb 1p8\n");
115
			goto disable_3p3;
116 117 118 119 120
		}

		return 0;
	}

121
	regulator_disable(motg->v1p8);
122
disable_3p3:
123
	regulator_disable(motg->v3p3);
124
exit:
125 126 127
	return rc;
}

128
static int msm_hsusb_ldo_set_mode(struct msm_otg *motg, int on)
129 130 131 132
{
	int ret = 0;

	if (on) {
133
		ret = regulator_set_optimum_mode(motg->v1p8,
134 135
				USB_PHY_1P8_HPM_LOAD);
		if (ret < 0) {
136
			pr_err("Could not set HPM for v1p8\n");
137 138
			return ret;
		}
139
		ret = regulator_set_optimum_mode(motg->v3p3,
140 141
				USB_PHY_3P3_HPM_LOAD);
		if (ret < 0) {
142
			pr_err("Could not set HPM for v3p3\n");
143
			regulator_set_optimum_mode(motg->v1p8,
144 145 146 147
				USB_PHY_1P8_LPM_LOAD);
			return ret;
		}
	} else {
148
		ret = regulator_set_optimum_mode(motg->v1p8,
149 150
				USB_PHY_1P8_LPM_LOAD);
		if (ret < 0)
151
			pr_err("Could not set LPM for v1p8\n");
152
		ret = regulator_set_optimum_mode(motg->v3p3,
153 154
				USB_PHY_3P3_LPM_LOAD);
		if (ret < 0)
155
			pr_err("Could not set LPM for v3p3\n");
156 157 158 159 160 161
	}

	pr_debug("reg (%s)\n", on ? "HPM" : "LPM");
	return ret < 0 ? ret : 0;
}

162
static int ulpi_read(struct usb_phy *phy, u32 reg)
163
{
164
	struct msm_otg *motg = container_of(phy, struct msm_otg, phy);
165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
	int cnt = 0;

	/* initiate read operation */
	writel(ULPI_RUN | ULPI_READ | ULPI_ADDR(reg),
	       USB_ULPI_VIEWPORT);

	/* wait for completion */
	while (cnt < ULPI_IO_TIMEOUT_USEC) {
		if (!(readl(USB_ULPI_VIEWPORT) & ULPI_RUN))
			break;
		udelay(1);
		cnt++;
	}

	if (cnt >= ULPI_IO_TIMEOUT_USEC) {
180
		dev_err(phy->dev, "ulpi_read: timeout %08x\n",
181 182 183 184 185 186
			readl(USB_ULPI_VIEWPORT));
		return -ETIMEDOUT;
	}
	return ULPI_DATA_READ(readl(USB_ULPI_VIEWPORT));
}

187
static int ulpi_write(struct usb_phy *phy, u32 val, u32 reg)
188
{
189
	struct msm_otg *motg = container_of(phy, struct msm_otg, phy);
190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205
	int cnt = 0;

	/* initiate write operation */
	writel(ULPI_RUN | ULPI_WRITE |
	       ULPI_ADDR(reg) | ULPI_DATA(val),
	       USB_ULPI_VIEWPORT);

	/* wait for completion */
	while (cnt < ULPI_IO_TIMEOUT_USEC) {
		if (!(readl(USB_ULPI_VIEWPORT) & ULPI_RUN))
			break;
		udelay(1);
		cnt++;
	}

	if (cnt >= ULPI_IO_TIMEOUT_USEC) {
206
		dev_err(phy->dev, "ulpi_write: timeout\n");
207 208 209 210 211
		return -ETIMEDOUT;
	}
	return 0;
}

212
static struct usb_phy_io_ops msm_otg_io_ops = {
213 214 215 216 217 218 219 220 221 222 223 224 225
	.read = ulpi_read,
	.write = ulpi_write,
};

static void ulpi_init(struct msm_otg *motg)
{
	struct msm_otg_platform_data *pdata = motg->pdata;
	int *seq = pdata->phy_init_seq;

	if (!seq)
		return;

	while (seq[0] >= 0) {
226
		dev_vdbg(motg->phy.dev, "ulpi: write 0x%02x to 0x%02x\n",
227
				seq[0], seq[1]);
228
		ulpi_write(&motg->phy, seq[0], seq[1]);
229 230 231 232 233 234
		seq += 2;
	}
}

static int msm_otg_link_clk_reset(struct msm_otg *motg, bool assert)
{
235 236 237 238 239 240 241 242 243
	int ret = 0;

	if (!motg->pdata->link_clk_reset)
		return ret;

	ret = motg->pdata->link_clk_reset(motg->clk, assert);
	if (ret)
		dev_err(motg->phy.dev, "usb link clk reset %s failed\n",
			assert ? "assert" : "deassert");
244 245 246 247 248 249

	return ret;
}

static int msm_otg_phy_clk_reset(struct msm_otg *motg)
{
250
	int ret = 0;
251

252
	if (!motg->pdata->phy_clk_reset)
253
		return ret;
254 255

	ret = motg->pdata->phy_clk_reset(motg->phy_reset_clk);
256
	if (ret)
257 258
		dev_err(motg->phy.dev, "usb phy clk reset failed\n");

259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281
	return ret;
}

static int msm_otg_phy_reset(struct msm_otg *motg)
{
	u32 val;
	int ret;
	int retries;

	ret = msm_otg_link_clk_reset(motg, 1);
	if (ret)
		return ret;
	ret = msm_otg_phy_clk_reset(motg);
	if (ret)
		return ret;
	ret = msm_otg_link_clk_reset(motg, 0);
	if (ret)
		return ret;

	val = readl(USB_PORTSC) & ~PORTSC_PTS_MASK;
	writel(val | PORTSC_PTS_ULPI, USB_PORTSC);

	for (retries = 3; retries > 0; retries--) {
282
		ret = ulpi_write(&motg->phy, ULPI_FUNC_CTRL_SUSPENDM,
283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298
				ULPI_CLR(ULPI_FUNC_CTRL));
		if (!ret)
			break;
		ret = msm_otg_phy_clk_reset(motg);
		if (ret)
			return ret;
	}
	if (!retries)
		return -ETIMEDOUT;

	/* This reset calibrates the phy, if the above write succeeded */
	ret = msm_otg_phy_clk_reset(motg);
	if (ret)
		return ret;

	for (retries = 3; retries > 0; retries--) {
299
		ret = ulpi_read(&motg->phy, ULPI_DEBUG);
300 301 302 303 304 305 306 307 308
		if (ret != -ETIMEDOUT)
			break;
		ret = msm_otg_phy_clk_reset(motg);
		if (ret)
			return ret;
	}
	if (!retries)
		return -ETIMEDOUT;

309
	dev_info(motg->phy.dev, "phy_reset: success\n");
310 311 312 313
	return 0;
}

#define LINK_RESET_TIMEOUT_USEC		(250 * 1000)
314
static int msm_otg_reset(struct usb_phy *phy)
315
{
316
	struct msm_otg *motg = container_of(phy, struct msm_otg, phy);
317 318 319 320 321 322 323 324
	struct msm_otg_platform_data *pdata = motg->pdata;
	int cnt = 0;
	int ret;
	u32 val = 0;
	u32 ulpi_val = 0;

	ret = msm_otg_phy_reset(motg);
	if (ret) {
325
		dev_err(phy->dev, "phy_reset failed\n");
326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358
		return ret;
	}

	ulpi_init(motg);

	writel(USBCMD_RESET, USB_USBCMD);
	while (cnt < LINK_RESET_TIMEOUT_USEC) {
		if (!(readl(USB_USBCMD) & USBCMD_RESET))
			break;
		udelay(1);
		cnt++;
	}
	if (cnt >= LINK_RESET_TIMEOUT_USEC)
		return -ETIMEDOUT;

	/* select ULPI phy */
	writel(0x80000000, USB_PORTSC);

	msleep(100);

	writel(0x0, USB_AHBBURST);
	writel(0x00, USB_AHBMODE);

	if (pdata->otg_control == OTG_PHY_CONTROL) {
		val = readl(USB_OTGSC);
		if (pdata->mode == USB_OTG) {
			ulpi_val = ULPI_INT_IDGRD | ULPI_INT_SESS_VALID;
			val |= OTGSC_IDIE | OTGSC_BSVIE;
		} else if (pdata->mode == USB_PERIPHERAL) {
			ulpi_val = ULPI_INT_SESS_VALID;
			val |= OTGSC_BSVIE;
		}
		writel(val, USB_OTGSC);
359 360
		ulpi_write(phy, ulpi_val, ULPI_USB_INT_EN_RISE);
		ulpi_write(phy, ulpi_val, ULPI_USB_INT_EN_FALL);
361 362 363 364 365
	}

	return 0;
}

366
#define PHY_SUSPEND_TIMEOUT_USEC	(500 * 1000)
367 368
#define PHY_RESUME_TIMEOUT_USEC	(100 * 1000)

369 370 371
#ifdef CONFIG_PM

#define USB_PHY_SUSP_DIG_VOL  500000
372
static int msm_hsusb_config_vddcx(struct msm_otg *motg, int high)
373 374 375 376 377 378 379 380 381 382
{
	int max_vol = USB_PHY_VDD_DIG_VOL_MAX;
	int min_vol;
	int ret;

	if (high)
		min_vol = USB_PHY_VDD_DIG_VOL_MIN;
	else
		min_vol = USB_PHY_SUSP_DIG_VOL;

383
	ret = regulator_set_voltage(motg->vddcx, min_vol, max_vol);
384
	if (ret) {
385
		pr_err("Cannot set vddcx voltage\n");
386 387 388 389 390 391 392 393
		return ret;
	}

	pr_debug("%s: min_vol:%d max_vol:%d\n", __func__, min_vol, max_vol);

	return ret;
}

394 395
static int msm_otg_suspend(struct msm_otg *motg)
{
396 397
	struct usb_phy *phy = &motg->phy;
	struct usb_bus *bus = phy->otg->host;
398 399 400 401 402 403 404 405
	struct msm_otg_platform_data *pdata = motg->pdata;
	int cnt = 0;

	if (atomic_read(&motg->in_lpm))
		return 0;

	disable_irq(motg->irq);
	/*
406 407
	 * Chipidea 45-nm PHY suspend sequence:
	 *
408 409 410 411
	 * Interrupt Latch Register auto-clear feature is not present
	 * in all PHY versions. Latch register is clear on read type.
	 * Clear latch register to avoid spurious wakeup from
	 * low power mode (LPM).
412
	 *
413 414 415 416
	 * PHY comparators are disabled when PHY enters into low power
	 * mode (LPM). Keep PHY comparators ON in LPM only when we expect
	 * VBUS/Id notifications from USB PHY. Otherwise turn off USB
	 * PHY comparators. This save significant amount of power.
417
	 *
418 419 420
	 * PLL is not turned off when PHY enters into low power mode (LPM).
	 * Disable PLL for maximum power savings.
	 */
421 422

	if (motg->pdata->phy_type == CI_45NM_INTEGRATED_PHY) {
423
		ulpi_read(phy, 0x14);
424
		if (pdata->otg_control == OTG_PHY_CONTROL)
425 426
			ulpi_write(phy, 0x01, 0x30);
		ulpi_write(phy, 0x08, 0x09);
427
	}
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442

	/*
	 * PHY may take some time or even fail to enter into low power
	 * mode (LPM). Hence poll for 500 msec and reset the PHY and link
	 * in failure case.
	 */
	writel(readl(USB_PORTSC) | PORTSC_PHCD, USB_PORTSC);
	while (cnt < PHY_SUSPEND_TIMEOUT_USEC) {
		if (readl(USB_PORTSC) & PORTSC_PHCD)
			break;
		udelay(1);
		cnt++;
	}

	if (cnt >= PHY_SUSPEND_TIMEOUT_USEC) {
443 444
		dev_err(phy->dev, "Unable to suspend PHY\n");
		msm_otg_reset(phy);
445 446 447 448 449 450 451 452 453 454 455 456 457
		enable_irq(motg->irq);
		return -ETIMEDOUT;
	}

	/*
	 * PHY has capability to generate interrupt asynchronously in low
	 * power mode (LPM). This interrupt is level triggered. So USB IRQ
	 * line must be disabled till async interrupt enable bit is cleared
	 * in USBCMD register. Assert STP (ULPI interface STOP signal) to
	 * block data communication from PHY.
	 */
	writel(readl(USB_USBCMD) | ASYNC_INTR_CTRL | ULPI_STP_CTRL, USB_USBCMD);

458 459 460 461
	if (motg->pdata->phy_type == SNPS_28NM_INTEGRATED_PHY &&
			motg->pdata->otg_control == OTG_PMIC_CONTROL)
		writel(readl(USB_PHY_CTRL) | PHY_RETEN, USB_PHY_CTRL);

462 463
	clk_disable_unprepare(motg->pclk);
	clk_disable_unprepare(motg->clk);
464
	if (!IS_ERR(motg->core_clk))
465
		clk_disable_unprepare(motg->core_clk);
466

467
	if (!IS_ERR(motg->pclk_src))
468
		clk_disable_unprepare(motg->pclk_src);
469

470 471
	if (motg->pdata->phy_type == SNPS_28NM_INTEGRATED_PHY &&
			motg->pdata->otg_control == OTG_PMIC_CONTROL) {
472 473
		msm_hsusb_ldo_set_mode(motg, 0);
		msm_hsusb_config_vddcx(motg, 0);
474 475
	}

476
	if (device_may_wakeup(phy->dev))
477 478 479 480 481 482 483
		enable_irq_wake(motg->irq);
	if (bus)
		clear_bit(HCD_FLAG_HW_ACCESSIBLE, &(bus_to_hcd(bus))->flags);

	atomic_set(&motg->in_lpm, 1);
	enable_irq(motg->irq);

484
	dev_info(phy->dev, "USB in low power mode\n");
485 486 487 488 489 490

	return 0;
}

static int msm_otg_resume(struct msm_otg *motg)
{
491 492
	struct usb_phy *phy = &motg->phy;
	struct usb_bus *bus = phy->otg->host;
493 494 495 496 497 498
	int cnt = 0;
	unsigned temp;

	if (!atomic_read(&motg->in_lpm))
		return 0;

499
	if (!IS_ERR(motg->pclk_src))
500
		clk_prepare_enable(motg->pclk_src);
501

502 503
	clk_prepare_enable(motg->pclk);
	clk_prepare_enable(motg->clk);
504
	if (!IS_ERR(motg->core_clk))
505
		clk_prepare_enable(motg->core_clk);
506

507 508
	if (motg->pdata->phy_type == SNPS_28NM_INTEGRATED_PHY &&
			motg->pdata->otg_control == OTG_PMIC_CONTROL) {
509 510
		msm_hsusb_ldo_set_mode(motg, 1);
		msm_hsusb_config_vddcx(motg, 1);
511 512 513
		writel(readl(USB_PHY_CTRL) & ~PHY_RETEN, USB_PHY_CTRL);
	}

514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539
	temp = readl(USB_USBCMD);
	temp &= ~ASYNC_INTR_CTRL;
	temp &= ~ULPI_STP_CTRL;
	writel(temp, USB_USBCMD);

	/*
	 * PHY comes out of low power mode (LPM) in case of wakeup
	 * from asynchronous interrupt.
	 */
	if (!(readl(USB_PORTSC) & PORTSC_PHCD))
		goto skip_phy_resume;

	writel(readl(USB_PORTSC) & ~PORTSC_PHCD, USB_PORTSC);
	while (cnt < PHY_RESUME_TIMEOUT_USEC) {
		if (!(readl(USB_PORTSC) & PORTSC_PHCD))
			break;
		udelay(1);
		cnt++;
	}

	if (cnt >= PHY_RESUME_TIMEOUT_USEC) {
		/*
		 * This is a fatal error. Reset the link and
		 * PHY. USB state can not be restored. Re-insertion
		 * of USB cable is the only way to get USB working.
		 */
540
		dev_err(phy->dev, "Unable to resume USB. Re-plugin the cable\n");
541
		msm_otg_reset(phy);
542 543 544
	}

skip_phy_resume:
545
	if (device_may_wakeup(phy->dev))
546 547 548 549
		disable_irq_wake(motg->irq);
	if (bus)
		set_bit(HCD_FLAG_HW_ACCESSIBLE, &(bus_to_hcd(bus))->flags);

550 551
	atomic_set(&motg->in_lpm, 0);

552 553
	if (motg->async_int) {
		motg->async_int = 0;
554
		pm_runtime_put(phy->dev);
555 556 557
		enable_irq(motg->irq);
	}

558
	dev_info(phy->dev, "USB exited from low power mode\n");
559 560 561

	return 0;
}
562
#endif
563

564 565 566 567 568 569
static void msm_otg_notify_charger(struct msm_otg *motg, unsigned mA)
{
	if (motg->cur_power == mA)
		return;

	/* TODO: Notify PMIC about available current */
570
	dev_info(motg->phy.dev, "Avail curr from USB = %u\n", mA);
571 572 573
	motg->cur_power = mA;
}

574
static int msm_otg_set_power(struct usb_phy *phy, unsigned mA)
575
{
576
	struct msm_otg *motg = container_of(phy, struct msm_otg, phy);
577 578 579 580 581 582 583 584 585 586 587 588 589 590

	/*
	 * Gadget driver uses set_power method to notify about the
	 * available current based on suspend/configured states.
	 *
	 * IDEV_CHG can be drawn irrespective of suspend/un-configured
	 * states when CDP/ACA is connected.
	 */
	if (motg->chg_type == USB_SDP_CHARGER)
		msm_otg_notify_charger(motg, mA);

	return 0;
}

591
static void msm_otg_start_host(struct usb_phy *phy, int on)
592
{
593
	struct msm_otg *motg = container_of(phy, struct msm_otg, phy);
594 595 596
	struct msm_otg_platform_data *pdata = motg->pdata;
	struct usb_hcd *hcd;

597
	if (!phy->otg->host)
598 599
		return;

600
	hcd = bus_to_hcd(phy->otg->host);
601 602

	if (on) {
603
		dev_dbg(phy->dev, "host on\n");
604 605 606 607 608 609 610 611 612 613 614 615

		if (pdata->vbus_power)
			pdata->vbus_power(1);
		/*
		 * Some boards have a switch cotrolled by gpio
		 * to enable/disable internal HUB. Enable internal
		 * HUB before kicking the host.
		 */
		if (pdata->setup_gpio)
			pdata->setup_gpio(OTG_STATE_A_HOST);
#ifdef CONFIG_USB
		usb_add_hcd(hcd, hcd->irq, IRQF_SHARED);
616
		device_wakeup_enable(hcd->self.controller);
617 618
#endif
	} else {
619
		dev_dbg(phy->dev, "host off\n");
620 621 622 623 624 625 626 627 628 629 630

#ifdef CONFIG_USB
		usb_remove_hcd(hcd);
#endif
		if (pdata->setup_gpio)
			pdata->setup_gpio(OTG_STATE_UNDEFINED);
		if (pdata->vbus_power)
			pdata->vbus_power(0);
	}
}

631
static int msm_otg_set_host(struct usb_otg *otg, struct usb_bus *host)
632
{
633
	struct msm_otg *motg = container_of(otg->phy, struct msm_otg, phy);
634 635 636 637 638 639 640
	struct usb_hcd *hcd;

	/*
	 * Fail host registration if this board can support
	 * only peripheral configuration.
	 */
	if (motg->pdata->mode == USB_PERIPHERAL) {
641
		dev_info(otg->phy->dev, "Host mode is not supported\n");
642 643 644 645
		return -ENODEV;
	}

	if (!host) {
646 647 648
		if (otg->phy->state == OTG_STATE_A_HOST) {
			pm_runtime_get_sync(otg->phy->dev);
			msm_otg_start_host(otg->phy, 0);
649
			otg->host = NULL;
650
			otg->phy->state = OTG_STATE_UNDEFINED;
651 652 653 654 655 656 657 658 659 660 661 662
			schedule_work(&motg->sm_work);
		} else {
			otg->host = NULL;
		}

		return 0;
	}

	hcd = bus_to_hcd(host);
	hcd->power_budget = motg->pdata->power_budget;

	otg->host = host;
663
	dev_dbg(otg->phy->dev, "host driver registered w/ tranceiver\n");
664 665 666 667 668

	/*
	 * Kick the state machine work, if peripheral is not supported
	 * or peripheral is already registered with us.
	 */
669
	if (motg->pdata->mode == USB_HOST || otg->gadget) {
670
		pm_runtime_get_sync(otg->phy->dev);
671
		schedule_work(&motg->sm_work);
672
	}
673 674 675 676

	return 0;
}

677
static void msm_otg_start_peripheral(struct usb_phy *phy, int on)
678
{
679
	struct msm_otg *motg = container_of(phy, struct msm_otg, phy);
680 681
	struct msm_otg_platform_data *pdata = motg->pdata;

682
	if (!phy->otg->gadget)
683 684 685
		return;

	if (on) {
686
		dev_dbg(phy->dev, "gadget on\n");
687 688 689 690 691 692 693
		/*
		 * Some boards have a switch cotrolled by gpio
		 * to enable/disable internal HUB. Disable internal
		 * HUB before kicking the gadget.
		 */
		if (pdata->setup_gpio)
			pdata->setup_gpio(OTG_STATE_B_PERIPHERAL);
694
		usb_gadget_vbus_connect(phy->otg->gadget);
695
	} else {
696 697
		dev_dbg(phy->dev, "gadget off\n");
		usb_gadget_vbus_disconnect(phy->otg->gadget);
698 699 700 701 702 703
		if (pdata->setup_gpio)
			pdata->setup_gpio(OTG_STATE_UNDEFINED);
	}

}

704 705
static int msm_otg_set_peripheral(struct usb_otg *otg,
					struct usb_gadget *gadget)
706
{
707
	struct msm_otg *motg = container_of(otg->phy, struct msm_otg, phy);
708 709 710 711 712 713

	/*
	 * Fail peripheral registration if this board can support
	 * only host configuration.
	 */
	if (motg->pdata->mode == USB_HOST) {
714
		dev_info(otg->phy->dev, "Peripheral mode is not supported\n");
715 716 717 718
		return -ENODEV;
	}

	if (!gadget) {
719 720 721
		if (otg->phy->state == OTG_STATE_B_PERIPHERAL) {
			pm_runtime_get_sync(otg->phy->dev);
			msm_otg_start_peripheral(otg->phy, 0);
722
			otg->gadget = NULL;
723
			otg->phy->state = OTG_STATE_UNDEFINED;
724 725 726 727 728 729 730 731
			schedule_work(&motg->sm_work);
		} else {
			otg->gadget = NULL;
		}

		return 0;
	}
	otg->gadget = gadget;
732
	dev_dbg(otg->phy->dev, "peripheral driver registered w/ tranceiver\n");
733 734 735 736 737

	/*
	 * Kick the state machine work, if host is not supported
	 * or host is already registered with us.
	 */
738
	if (motg->pdata->mode == USB_PERIPHERAL || otg->host) {
739
		pm_runtime_get_sync(otg->phy->dev);
740
		schedule_work(&motg->sm_work);
741
	}
742 743 744 745

	return 0;
}

746 747
static bool msm_chg_check_secondary_det(struct msm_otg *motg)
{
748
	struct usb_phy *phy = &motg->phy;
749 750 751 752 753
	u32 chg_det;
	bool ret = false;

	switch (motg->pdata->phy_type) {
	case CI_45NM_INTEGRATED_PHY:
754
		chg_det = ulpi_read(phy, 0x34);
755 756 757
		ret = chg_det & (1 << 4);
		break;
	case SNPS_28NM_INTEGRATED_PHY:
758
		chg_det = ulpi_read(phy, 0x87);
759 760 761 762 763 764 765 766 767 768
		ret = chg_det & 1;
		break;
	default:
		break;
	}
	return ret;
}

static void msm_chg_enable_secondary_det(struct msm_otg *motg)
{
769
	struct usb_phy *phy = &motg->phy;
770 771 772 773
	u32 chg_det;

	switch (motg->pdata->phy_type) {
	case CI_45NM_INTEGRATED_PHY:
774
		chg_det = ulpi_read(phy, 0x34);
775 776
		/* Turn off charger block */
		chg_det |= ~(1 << 1);
777
		ulpi_write(phy, chg_det, 0x34);
778 779 780
		udelay(20);
		/* control chg block via ULPI */
		chg_det &= ~(1 << 3);
781
		ulpi_write(phy, chg_det, 0x34);
782 783
		/* put it in host mode for enabling D- source */
		chg_det &= ~(1 << 2);
784
		ulpi_write(phy, chg_det, 0x34);
785 786
		/* Turn on chg detect block */
		chg_det &= ~(1 << 1);
787
		ulpi_write(phy, chg_det, 0x34);
788 789 790
		udelay(20);
		/* enable chg detection */
		chg_det &= ~(1 << 0);
791
		ulpi_write(phy, chg_det, 0x34);
792 793 794 795 796 797
		break;
	case SNPS_28NM_INTEGRATED_PHY:
		/*
		 * Configure DM as current source, DP as current sink
		 * and enable battery charging comparators.
		 */
798 799 800
		ulpi_write(phy, 0x8, 0x85);
		ulpi_write(phy, 0x2, 0x85);
		ulpi_write(phy, 0x1, 0x85);
801 802 803 804 805 806 807 808
		break;
	default:
		break;
	}
}

static bool msm_chg_check_primary_det(struct msm_otg *motg)
{
809
	struct usb_phy *phy = &motg->phy;
810 811 812 813 814
	u32 chg_det;
	bool ret = false;

	switch (motg->pdata->phy_type) {
	case CI_45NM_INTEGRATED_PHY:
815
		chg_det = ulpi_read(phy, 0x34);
816 817 818
		ret = chg_det & (1 << 4);
		break;
	case SNPS_28NM_INTEGRATED_PHY:
819
		chg_det = ulpi_read(phy, 0x87);
820 821 822 823 824 825 826 827 828 829
		ret = chg_det & 1;
		break;
	default:
		break;
	}
	return ret;
}

static void msm_chg_enable_primary_det(struct msm_otg *motg)
{
830
	struct usb_phy *phy = &motg->phy;
831 832 833 834
	u32 chg_det;

	switch (motg->pdata->phy_type) {
	case CI_45NM_INTEGRATED_PHY:
835
		chg_det = ulpi_read(phy, 0x34);
836 837
		/* enable chg detection */
		chg_det &= ~(1 << 0);
838
		ulpi_write(phy, chg_det, 0x34);
839 840 841 842 843 844
		break;
	case SNPS_28NM_INTEGRATED_PHY:
		/*
		 * Configure DP as current source, DM as current sink
		 * and enable battery charging comparators.
		 */
845 846
		ulpi_write(phy, 0x2, 0x85);
		ulpi_write(phy, 0x1, 0x85);
847 848 849 850 851 852 853 854
		break;
	default:
		break;
	}
}

static bool msm_chg_check_dcd(struct msm_otg *motg)
{
855
	struct usb_phy *phy = &motg->phy;
856 857 858 859 860
	u32 line_state;
	bool ret = false;

	switch (motg->pdata->phy_type) {
	case CI_45NM_INTEGRATED_PHY:
861
		line_state = ulpi_read(phy, 0x15);
862 863 864
		ret = !(line_state & 1);
		break;
	case SNPS_28NM_INTEGRATED_PHY:
865
		line_state = ulpi_read(phy, 0x87);
866 867 868 869 870 871 872 873 874 875
		ret = line_state & 2;
		break;
	default:
		break;
	}
	return ret;
}

static void msm_chg_disable_dcd(struct msm_otg *motg)
{
876
	struct usb_phy *phy = &motg->phy;
877 878 879 880
	u32 chg_det;

	switch (motg->pdata->phy_type) {
	case CI_45NM_INTEGRATED_PHY:
881
		chg_det = ulpi_read(phy, 0x34);
882
		chg_det &= ~(1 << 5);
883
		ulpi_write(phy, chg_det, 0x34);
884 885
		break;
	case SNPS_28NM_INTEGRATED_PHY:
886
		ulpi_write(phy, 0x10, 0x86);
887 888 889 890 891 892 893 894
		break;
	default:
		break;
	}
}

static void msm_chg_enable_dcd(struct msm_otg *motg)
{
895
	struct usb_phy *phy = &motg->phy;
896 897 898 899
	u32 chg_det;

	switch (motg->pdata->phy_type) {
	case CI_45NM_INTEGRATED_PHY:
900
		chg_det = ulpi_read(phy, 0x34);
901 902
		/* Turn on D+ current source */
		chg_det |= (1 << 5);
903
		ulpi_write(phy, chg_det, 0x34);
904 905 906
		break;
	case SNPS_28NM_INTEGRATED_PHY:
		/* Data contact detection enable */
907
		ulpi_write(phy, 0x10, 0x85);
908 909 910 911 912 913 914 915
		break;
	default:
		break;
	}
}

static void msm_chg_block_on(struct msm_otg *motg)
{
916
	struct usb_phy *phy = &motg->phy;
917 918 919
	u32 func_ctrl, chg_det;

	/* put the controller in non-driving mode */
920
	func_ctrl = ulpi_read(phy, ULPI_FUNC_CTRL);
921 922
	func_ctrl &= ~ULPI_FUNC_CTRL_OPMODE_MASK;
	func_ctrl |= ULPI_FUNC_CTRL_OPMODE_NONDRIVING;
923
	ulpi_write(phy, func_ctrl, ULPI_FUNC_CTRL);
924 925 926

	switch (motg->pdata->phy_type) {
	case CI_45NM_INTEGRATED_PHY:
927
		chg_det = ulpi_read(phy, 0x34);
928 929
		/* control chg block via ULPI */
		chg_det &= ~(1 << 3);
930
		ulpi_write(phy, chg_det, 0x34);
931 932
		/* Turn on chg detect block */
		chg_det &= ~(1 << 1);
933
		ulpi_write(phy, chg_det, 0x34);
934 935 936 937
		udelay(20);
		break;
	case SNPS_28NM_INTEGRATED_PHY:
		/* Clear charger detecting control bits */
938
		ulpi_write(phy, 0x3F, 0x86);
939
		/* Clear alt interrupt latch and enable bits */
940 941
		ulpi_write(phy, 0x1F, 0x92);
		ulpi_write(phy, 0x1F, 0x95);
942 943 944 945 946 947 948 949 950
		udelay(100);
		break;
	default:
		break;
	}
}

static void msm_chg_block_off(struct msm_otg *motg)
{
951
	struct usb_phy *phy = &motg->phy;
952 953 954 955
	u32 func_ctrl, chg_det;

	switch (motg->pdata->phy_type) {
	case CI_45NM_INTEGRATED_PHY:
956
		chg_det = ulpi_read(phy, 0x34);
957 958
		/* Turn off charger block */
		chg_det |= ~(1 << 1);
959
		ulpi_write(phy, chg_det, 0x34);
960 961 962
		break;
	case SNPS_28NM_INTEGRATED_PHY:
		/* Clear charger detecting control bits */
963
		ulpi_write(phy, 0x3F, 0x86);
964
		/* Clear alt interrupt latch and enable bits */
965 966
		ulpi_write(phy, 0x1F, 0x92);
		ulpi_write(phy, 0x1F, 0x95);
967 968 969 970 971 972
		break;
	default:
		break;
	}

	/* put the controller in normal mode */
973
	func_ctrl = ulpi_read(phy, ULPI_FUNC_CTRL);
974 975
	func_ctrl &= ~ULPI_FUNC_CTRL_OPMODE_MASK;
	func_ctrl |= ULPI_FUNC_CTRL_OPMODE_NORMAL;
976
	ulpi_write(phy, func_ctrl, ULPI_FUNC_CTRL);
977 978 979 980 981 982 983 984 985
}

#define MSM_CHG_DCD_POLL_TIME		(100 * HZ/1000) /* 100 msec */
#define MSM_CHG_DCD_MAX_RETRIES		6 /* Tdcd_tmout = 6 * 100 msec */
#define MSM_CHG_PRIMARY_DET_TIME	(40 * HZ/1000) /* TVDPSRC_ON */
#define MSM_CHG_SECONDARY_DET_TIME	(40 * HZ/1000) /* TVDMSRC_ON */
static void msm_chg_detect_work(struct work_struct *w)
{
	struct msm_otg *motg = container_of(w, struct msm_otg, chg_work.work);
986
	struct usb_phy *phy = &motg->phy;
987 988 989
	bool is_dcd, tmout, vout;
	unsigned long delay;

990
	dev_dbg(phy->dev, "chg detection work\n");
991 992
	switch (motg->chg_state) {
	case USB_CHG_STATE_UNDEFINED:
993
		pm_runtime_get_sync(phy->dev);
994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035
		msm_chg_block_on(motg);
		msm_chg_enable_dcd(motg);
		motg->chg_state = USB_CHG_STATE_WAIT_FOR_DCD;
		motg->dcd_retries = 0;
		delay = MSM_CHG_DCD_POLL_TIME;
		break;
	case USB_CHG_STATE_WAIT_FOR_DCD:
		is_dcd = msm_chg_check_dcd(motg);
		tmout = ++motg->dcd_retries == MSM_CHG_DCD_MAX_RETRIES;
		if (is_dcd || tmout) {
			msm_chg_disable_dcd(motg);
			msm_chg_enable_primary_det(motg);
			delay = MSM_CHG_PRIMARY_DET_TIME;
			motg->chg_state = USB_CHG_STATE_DCD_DONE;
		} else {
			delay = MSM_CHG_DCD_POLL_TIME;
		}
		break;
	case USB_CHG_STATE_DCD_DONE:
		vout = msm_chg_check_primary_det(motg);
		if (vout) {
			msm_chg_enable_secondary_det(motg);
			delay = MSM_CHG_SECONDARY_DET_TIME;
			motg->chg_state = USB_CHG_STATE_PRIMARY_DONE;
		} else {
			motg->chg_type = USB_SDP_CHARGER;
			motg->chg_state = USB_CHG_STATE_DETECTED;
			delay = 0;
		}
		break;
	case USB_CHG_STATE_PRIMARY_DONE:
		vout = msm_chg_check_secondary_det(motg);
		if (vout)
			motg->chg_type = USB_DCP_CHARGER;
		else
			motg->chg_type = USB_CDP_CHARGER;
		motg->chg_state = USB_CHG_STATE_SECONDARY_DONE;
		/* fall through */
	case USB_CHG_STATE_SECONDARY_DONE:
		motg->chg_state = USB_CHG_STATE_DETECTED;
	case USB_CHG_STATE_DETECTED:
		msm_chg_block_off(motg);
1036
		dev_dbg(phy->dev, "charger = %d\n", motg->chg_type);
1037 1038 1039 1040 1041 1042 1043 1044 1045
		schedule_work(&motg->sm_work);
		return;
	default:
		return;
	}

	schedule_delayed_work(&motg->chg_work, delay);
}

1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099
/*
 * We support OTG, Peripheral only and Host only configurations. In case
 * of OTG, mode switch (host-->peripheral/peripheral-->host) can happen
 * via Id pin status or user request (debugfs). Id/BSV interrupts are not
 * enabled when switch is controlled by user and default mode is supplied
 * by board file, which can be changed by userspace later.
 */
static void msm_otg_init_sm(struct msm_otg *motg)
{
	struct msm_otg_platform_data *pdata = motg->pdata;
	u32 otgsc = readl(USB_OTGSC);

	switch (pdata->mode) {
	case USB_OTG:
		if (pdata->otg_control == OTG_PHY_CONTROL) {
			if (otgsc & OTGSC_ID)
				set_bit(ID, &motg->inputs);
			else
				clear_bit(ID, &motg->inputs);

			if (otgsc & OTGSC_BSV)
				set_bit(B_SESS_VLD, &motg->inputs);
			else
				clear_bit(B_SESS_VLD, &motg->inputs);
		} else if (pdata->otg_control == OTG_USER_CONTROL) {
			if (pdata->default_mode == USB_HOST) {
				clear_bit(ID, &motg->inputs);
			} else if (pdata->default_mode == USB_PERIPHERAL) {
				set_bit(ID, &motg->inputs);
				set_bit(B_SESS_VLD, &motg->inputs);
			} else {
				set_bit(ID, &motg->inputs);
				clear_bit(B_SESS_VLD, &motg->inputs);
			}
		}
		break;
	case USB_HOST:
		clear_bit(ID, &motg->inputs);
		break;
	case USB_PERIPHERAL:
		set_bit(ID, &motg->inputs);
		if (otgsc & OTGSC_BSV)
			set_bit(B_SESS_VLD, &motg->inputs);
		else
			clear_bit(B_SESS_VLD, &motg->inputs);
		break;
	default:
		break;
	}
}

static void msm_otg_sm_work(struct work_struct *w)
{
	struct msm_otg *motg = container_of(w, struct msm_otg, sm_work);
1100
	struct usb_otg *otg = motg->phy.otg;
1101

1102
	switch (otg->phy->state) {
1103
	case OTG_STATE_UNDEFINED:
1104 1105
		dev_dbg(otg->phy->dev, "OTG_STATE_UNDEFINED state\n");
		msm_otg_reset(otg->phy);
1106
		msm_otg_init_sm(motg);
1107
		otg->phy->state = OTG_STATE_B_IDLE;
1108 1109
		/* FALL THROUGH */
	case OTG_STATE_B_IDLE:
1110
		dev_dbg(otg->phy->dev, "OTG_STATE_B_IDLE state\n");
1111 1112 1113
		if (!test_bit(ID, &motg->inputs) && otg->host) {
			/* disable BSV bit */
			writel(readl(USB_OTGSC) & ~OTGSC_BSVIE, USB_OTGSC);
1114 1115
			msm_otg_start_host(otg->phy, 1);
			otg->phy->state = OTG_STATE_A_HOST;
1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129
		} else if (test_bit(B_SESS_VLD, &motg->inputs)) {
			switch (motg->chg_state) {
			case USB_CHG_STATE_UNDEFINED:
				msm_chg_detect_work(&motg->chg_work.work);
				break;
			case USB_CHG_STATE_DETECTED:
				switch (motg->chg_type) {
				case USB_DCP_CHARGER:
					msm_otg_notify_charger(motg,
							IDEV_CHG_MAX);
					break;
				case USB_CDP_CHARGER:
					msm_otg_notify_charger(motg,
							IDEV_CHG_MAX);
1130 1131 1132
					msm_otg_start_peripheral(otg->phy, 1);
					otg->phy->state
						= OTG_STATE_B_PERIPHERAL;
1133 1134 1135
					break;
				case USB_SDP_CHARGER:
					msm_otg_notify_charger(motg, IUNIT);
1136 1137 1138
					msm_otg_start_peripheral(otg->phy, 1);
					otg->phy->state
						= OTG_STATE_B_PERIPHERAL;
1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153
					break;
				default:
					break;
				}
				break;
			default:
				break;
			}
		} else {
			/*
			 * If charger detection work is pending, decrement
			 * the pm usage counter to balance with the one that
			 * is incremented in charger detection work.
			 */
			if (cancel_delayed_work_sync(&motg->chg_work)) {
1154 1155
				pm_runtime_put_sync(otg->phy->dev);
				msm_otg_reset(otg->phy);
1156 1157 1158 1159
			}
			msm_otg_notify_charger(motg, 0);
			motg->chg_state = USB_CHG_STATE_UNDEFINED;
			motg->chg_type = USB_INVALID_CHARGER;
1160
		}
1161
		pm_runtime_put_sync(otg->phy->dev);
1162 1163
		break;
	case OTG_STATE_B_PERIPHERAL:
1164
		dev_dbg(otg->phy->dev, "OTG_STATE_B_PERIPHERAL state\n");
1165 1166
		if (!test_bit(B_SESS_VLD, &motg->inputs) ||
				!test_bit(ID, &motg->inputs)) {
1167
			msm_otg_notify_charger(motg, 0);
1168
			msm_otg_start_peripheral(otg->phy, 0);
1169 1170
			motg->chg_state = USB_CHG_STATE_UNDEFINED;
			motg->chg_type = USB_INVALID_CHARGER;
1171 1172
			otg->phy->state = OTG_STATE_B_IDLE;
			msm_otg_reset(otg->phy);
1173 1174 1175 1176
			schedule_work(w);
		}
		break;
	case OTG_STATE_A_HOST:
1177
		dev_dbg(otg->phy->dev, "OTG_STATE_A_HOST state\n");
1178
		if (test_bit(ID, &motg->inputs)) {
1179 1180 1181
			msm_otg_start_host(otg->phy, 0);
			otg->phy->state = OTG_STATE_B_IDLE;
			msm_otg_reset(otg->phy);
1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192
			schedule_work(w);
		}
		break;
	default:
		break;
	}
}

static irqreturn_t msm_otg_irq(int irq, void *data)
{
	struct msm_otg *motg = data;
1193
	struct usb_phy *phy = &motg->phy;
1194 1195
	u32 otgsc = 0;

1196 1197 1198
	if (atomic_read(&motg->in_lpm)) {
		disable_irq_nosync(irq);
		motg->async_int = 1;
1199
		pm_runtime_get(phy->dev);
1200 1201 1202
		return IRQ_HANDLED;
	}

1203 1204 1205 1206 1207 1208 1209 1210 1211
	otgsc = readl(USB_OTGSC);
	if (!(otgsc & (OTGSC_IDIS | OTGSC_BSVIS)))
		return IRQ_NONE;

	if ((otgsc & OTGSC_IDIS) && (otgsc & OTGSC_IDIE)) {
		if (otgsc & OTGSC_ID)
			set_bit(ID, &motg->inputs);
		else
			clear_bit(ID, &motg->inputs);
1212 1213
		dev_dbg(phy->dev, "ID set/clear\n");
		pm_runtime_get_noresume(phy->dev);
1214 1215 1216 1217 1218
	} else if ((otgsc & OTGSC_BSVIS) && (otgsc & OTGSC_BSVIE)) {
		if (otgsc & OTGSC_BSV)
			set_bit(B_SESS_VLD, &motg->inputs);
		else
			clear_bit(B_SESS_VLD, &motg->inputs);
1219 1220
		dev_dbg(phy->dev, "BSV set/clear\n");
		pm_runtime_get_noresume(phy->dev);
1221 1222 1223 1224 1225 1226 1227 1228 1229 1230
	}

	writel(otgsc, USB_OTGSC);
	schedule_work(&motg->sm_work);
	return IRQ_HANDLED;
}

static int msm_otg_mode_show(struct seq_file *s, void *unused)
{
	struct msm_otg *motg = s->private;
1231
	struct usb_otg *otg = motg->phy.otg;
1232

1233
	switch (otg->phy->state) {
1234
	case OTG_STATE_A_HOST:
1235
		seq_puts(s, "host\n");
1236 1237
		break;
	case OTG_STATE_B_PERIPHERAL:
1238
		seq_puts(s, "peripheral\n");
1239 1240
		break;
	default:
1241
		seq_puts(s, "none\n");
1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255
		break;
	}

	return 0;
}

static int msm_otg_mode_open(struct inode *inode, struct file *file)
{
	return single_open(file, msm_otg_mode_show, inode->i_private);
}

static ssize_t msm_otg_mode_write(struct file *file, const char __user *ubuf,
				size_t count, loff_t *ppos)
{
1256 1257
	struct seq_file *s = file->private_data;
	struct msm_otg *motg = s->private;
1258
	char buf[16];
1259
	struct usb_otg *otg = motg->phy.otg;
1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282
	int status = count;
	enum usb_mode_type req_mode;

	memset(buf, 0x00, sizeof(buf));

	if (copy_from_user(&buf, ubuf, min_t(size_t, sizeof(buf) - 1, count))) {
		status = -EFAULT;
		goto out;
	}

	if (!strncmp(buf, "host", 4)) {
		req_mode = USB_HOST;
	} else if (!strncmp(buf, "peripheral", 10)) {
		req_mode = USB_PERIPHERAL;
	} else if (!strncmp(buf, "none", 4)) {
		req_mode = USB_NONE;
	} else {
		status = -EINVAL;
		goto out;
	}

	switch (req_mode) {
	case USB_NONE:
1283
		switch (otg->phy->state) {
1284 1285 1286 1287 1288 1289 1290 1291 1292 1293
		case OTG_STATE_A_HOST:
		case OTG_STATE_B_PERIPHERAL:
			set_bit(ID, &motg->inputs);
			clear_bit(B_SESS_VLD, &motg->inputs);
			break;
		default:
			goto out;
		}
		break;
	case USB_PERIPHERAL:
1294
		switch (otg->phy->state) {
1295 1296 1297 1298 1299 1300 1301 1302 1303 1304
		case OTG_STATE_B_IDLE:
		case OTG_STATE_A_HOST:
			set_bit(ID, &motg->inputs);
			set_bit(B_SESS_VLD, &motg->inputs);
			break;
		default:
			goto out;
		}
		break;
	case USB_HOST:
1305
		switch (otg->phy->state) {
1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317
		case OTG_STATE_B_IDLE:
		case OTG_STATE_B_PERIPHERAL:
			clear_bit(ID, &motg->inputs);
			break;
		default:
			goto out;
		}
		break;
	default:
		goto out;
	}

1318
	pm_runtime_get_sync(otg->phy->dev);
1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358
	schedule_work(&motg->sm_work);
out:
	return status;
}

const struct file_operations msm_otg_mode_fops = {
	.open = msm_otg_mode_open,
	.read = seq_read,
	.write = msm_otg_mode_write,
	.llseek = seq_lseek,
	.release = single_release,
};

static struct dentry *msm_otg_dbg_root;
static struct dentry *msm_otg_dbg_mode;

static int msm_otg_debugfs_init(struct msm_otg *motg)
{
	msm_otg_dbg_root = debugfs_create_dir("msm_otg", NULL);

	if (!msm_otg_dbg_root || IS_ERR(msm_otg_dbg_root))
		return -ENODEV;

	msm_otg_dbg_mode = debugfs_create_file("mode", S_IRUGO | S_IWUSR,
				msm_otg_dbg_root, motg, &msm_otg_mode_fops);
	if (!msm_otg_dbg_mode) {
		debugfs_remove(msm_otg_dbg_root);
		msm_otg_dbg_root = NULL;
		return -ENODEV;
	}

	return 0;
}

static void msm_otg_debugfs_cleanup(void)
{
	debugfs_remove(msm_otg_dbg_mode);
	debugfs_remove(msm_otg_dbg_root);
}

1359
static int msm_otg_probe(struct platform_device *pdev)
1360
{
1361
	struct regulator_bulk_data regs[3];
1362 1363 1364
	int ret = 0;
	struct resource *res;
	struct msm_otg *motg;
1365
	struct usb_phy *phy;
1366 1367

	dev_info(&pdev->dev, "msm_otg probe\n");
J
Jingoo Han 已提交
1368
	if (!dev_get_platdata(&pdev->dev)) {
1369 1370 1371 1372
		dev_err(&pdev->dev, "No platform data given. Bailing out\n");
		return -ENODEV;
	}

1373
	motg = devm_kzalloc(&pdev->dev, sizeof(struct msm_otg), GFP_KERNEL);
1374 1375 1376 1377 1378
	if (!motg) {
		dev_err(&pdev->dev, "unable to allocate msm_otg\n");
		return -ENOMEM;
	}

1379 1380
	motg->phy.otg = devm_kzalloc(&pdev->dev, sizeof(struct usb_otg),
				     GFP_KERNEL);
1381 1382
	if (!motg->phy.otg) {
		dev_err(&pdev->dev, "unable to allocate msm_otg\n");
1383
		return -ENOMEM;
1384 1385
	}

J
Jingoo Han 已提交
1386
	motg->pdata = dev_get_platdata(&pdev->dev);
1387 1388
	phy = &motg->phy;
	phy->dev = &pdev->dev;
1389

1390
	motg->phy_reset_clk = devm_clk_get(&pdev->dev, "usb_phy_clk");
1391 1392
	if (IS_ERR(motg->phy_reset_clk)) {
		dev_err(&pdev->dev, "failed to get usb_phy_clk\n");
1393
		return PTR_ERR(motg->phy_reset_clk);
1394 1395
	}

1396
	motg->clk = devm_clk_get(&pdev->dev, "usb_hs_clk");
1397 1398
	if (IS_ERR(motg->clk)) {
		dev_err(&pdev->dev, "failed to get usb_hs_clk\n");
1399
		return PTR_ERR(motg->clk);
1400
	}
1401 1402 1403 1404 1405 1406 1407 1408

	/*
	 * If USB Core is running its protocol engine based on CORE CLK,
	 * CORE CLK  must be running at >55Mhz for correct HSUSB
	 * operation and USB core cannot tolerate frequency changes on
	 * CORE CLK. For such USB cores, vote for maximum clk frequency
	 * on pclk source
	 */
1409
	 motg->pclk_src = ERR_PTR(-ENOENT);
1410
	 if (motg->pdata->pclk_src_name) {
1411 1412
		motg->pclk_src = devm_clk_get(&pdev->dev,
					motg->pdata->pclk_src_name);
1413
		if (IS_ERR(motg->pclk_src))
1414 1415
			return PTR_ERR(motg->pclk_src);
	}
1416

1417
	motg->pclk = devm_clk_get(&pdev->dev, "usb_hs_pclk");
1418 1419
	if (IS_ERR(motg->pclk)) {
		dev_err(&pdev->dev, "failed to get usb_hs_pclk\n");
1420
		return PTR_ERR(motg->pclk);
1421 1422 1423 1424 1425 1426 1427
	}

	/*
	 * USB core clock is not present on all MSM chips. This
	 * clock is introduced to remove the dependency on AXI
	 * bus frequency.
	 */
1428
	motg->core_clk = devm_clk_get(&pdev->dev, "usb_hs_core_clk");
1429 1430

	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1431 1432 1433
	motg->regs = devm_ioremap(&pdev->dev, res->start, resource_size(res));
	if (IS_ERR(motg->regs))
		return PTR_ERR(motg->regs);
1434 1435 1436 1437 1438 1439

	dev_info(&pdev->dev, "OTG regs = %p\n", motg->regs);

	motg->irq = platform_get_irq(pdev, 0);
	if (!motg->irq) {
		dev_err(&pdev->dev, "platform_get_irq failed\n");
1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458
		return motg->irq;
	}

	regs[0].supply = "HSUSB_VDDCX";
	regs[1].supply = "HSUSB_3p3";
	regs[2].supply = "HSUSB_1p8";

	ret = devm_regulator_bulk_get(motg->phy.dev, ARRAY_SIZE(regs), regs);
	if (ret)
		return ret;

	motg->vddcx = regs[0].consumer;
	motg->v3p3  = regs[1].consumer;
	motg->v1p8  = regs[2].consumer;

	clk_set_rate(motg->clk, 60000000);
	if (!IS_ERR(motg->pclk_src)) {
		clk_set_rate(motg->pclk_src, INT_MAX);
		clk_prepare_enable(motg->pclk_src);
1459 1460
	}

1461 1462
	clk_prepare_enable(motg->clk);
	clk_prepare_enable(motg->pclk);
1463

1464 1465 1466
	if (!IS_ERR(motg->core_clk))
		clk_prepare_enable(motg->core_clk);

1467 1468 1469
	ret = msm_hsusb_init_vddcx(motg, 1);
	if (ret) {
		dev_err(&pdev->dev, "hsusb vddcx configuration failed\n");
1470
		goto disable_clks;
1471 1472 1473 1474 1475
	}

	ret = msm_hsusb_ldo_init(motg, 1);
	if (ret) {
		dev_err(&pdev->dev, "hsusb vreg configuration failed\n");
1476
		goto disable_vddcx;
1477
	}
1478
	ret = msm_hsusb_ldo_set_mode(motg, 1);
1479 1480
	if (ret) {
		dev_err(&pdev->dev, "hsusb vreg enable failed\n");
1481
		goto disable_ldo;
1482 1483
	}

1484 1485 1486 1487
	writel(0, USB_USBINTR);
	writel(0, USB_OTGSC);

	INIT_WORK(&motg->sm_work, msm_otg_sm_work);
1488
	INIT_DELAYED_WORK(&motg->chg_work, msm_chg_detect_work);
1489
	ret = devm_request_irq(&pdev->dev, motg->irq, msm_otg_irq, IRQF_SHARED,
1490 1491 1492
					"msm_otg", motg);
	if (ret) {
		dev_err(&pdev->dev, "request irq failed\n");
1493
		goto disable_ldo;
1494 1495
	}

1496 1497 1498 1499
	phy->init = msm_otg_reset;
	phy->set_power = msm_otg_set_power;

	phy->io_ops = &msm_otg_io_ops;
1500

1501 1502 1503
	phy->otg->phy = &motg->phy;
	phy->otg->set_host = msm_otg_set_host;
	phy->otg->set_peripheral = msm_otg_set_peripheral;
1504

1505
	ret = usb_add_phy(&motg->phy, USB_PHY_TYPE_USB2);
1506
	if (ret) {
1507
		dev_err(&pdev->dev, "usb_add_phy failed\n");
1508
		goto disable_ldo;
1509 1510 1511 1512 1513 1514 1515 1516 1517
	}

	platform_set_drvdata(pdev, motg);
	device_init_wakeup(&pdev->dev, 1);

	if (motg->pdata->mode == USB_OTG &&
			motg->pdata->otg_control == OTG_USER_CONTROL) {
		ret = msm_otg_debugfs_init(motg);
		if (ret)
1518
			dev_dbg(&pdev->dev, "Can not create mode change file\n");
1519 1520
	}

1521 1522
	pm_runtime_set_active(&pdev->dev);
	pm_runtime_enable(&pdev->dev);
1523

1524
	return 0;
1525 1526 1527 1528 1529

disable_ldo:
	msm_hsusb_ldo_init(motg, 0);
disable_vddcx:
	msm_hsusb_init_vddcx(motg, 0);
1530
disable_clks:
1531 1532
	clk_disable_unprepare(motg->pclk);
	clk_disable_unprepare(motg->clk);
1533 1534 1535
	if (!IS_ERR(motg->core_clk))
		clk_disable_unprepare(motg->core_clk);
	if (!IS_ERR(motg->pclk_src))
1536
		clk_disable_unprepare(motg->pclk_src);
1537 1538 1539
	return ret;
}

B
Bill Pemberton 已提交
1540
static int msm_otg_remove(struct platform_device *pdev)
1541 1542
{
	struct msm_otg *motg = platform_get_drvdata(pdev);
1543
	struct usb_phy *phy = &motg->phy;
1544
	int cnt = 0;
1545

1546
	if (phy->otg->host || phy->otg->gadget)
1547 1548 1549
		return -EBUSY;

	msm_otg_debugfs_cleanup();
1550
	cancel_delayed_work_sync(&motg->chg_work);
1551
	cancel_work_sync(&motg->sm_work);
1552

1553
	pm_runtime_resume(&pdev->dev);
1554

1555
	device_init_wakeup(&pdev->dev, 0);
1556
	pm_runtime_disable(&pdev->dev);
1557

1558
	usb_remove_phy(phy);
1559
	disable_irq(motg->irq);
1560

1561 1562 1563
	/*
	 * Put PHY in low power mode.
	 */
1564 1565
	ulpi_read(phy, 0x14);
	ulpi_write(phy, 0x08, 0x09);
1566 1567 1568 1569 1570 1571 1572 1573 1574

	writel(readl(USB_PORTSC) | PORTSC_PHCD, USB_PORTSC);
	while (cnt < PHY_SUSPEND_TIMEOUT_USEC) {
		if (readl(USB_PORTSC) & PORTSC_PHCD)
			break;
		udelay(1);
		cnt++;
	}
	if (cnt >= PHY_SUSPEND_TIMEOUT_USEC)
1575
		dev_err(phy->dev, "Unable to suspend PHY\n");
1576

1577 1578
	clk_disable_unprepare(motg->pclk);
	clk_disable_unprepare(motg->clk);
1579
	if (!IS_ERR(motg->core_clk))
1580
		clk_disable_unprepare(motg->core_clk);
1581
	if (!IS_ERR(motg->pclk_src))
1582
		clk_disable_unprepare(motg->pclk_src);
1583

1584
	msm_hsusb_ldo_init(motg, 0);
1585

1586
	pm_runtime_set_suspended(&pdev->dev);
1587 1588 1589 1590

	return 0;
}

1591 1592 1593 1594
#ifdef CONFIG_PM_RUNTIME
static int msm_otg_runtime_idle(struct device *dev)
{
	struct msm_otg *motg = dev_get_drvdata(dev);
1595
	struct usb_otg *otg = motg->phy.otg;
1596 1597 1598 1599 1600 1601 1602 1603 1604

	dev_dbg(dev, "OTG runtime idle\n");

	/*
	 * It is observed some times that a spurious interrupt
	 * comes when PHY is put into LPM immediately after PHY reset.
	 * This 1 sec delay also prevents entering into LPM immediately
	 * after asynchronous interrupt.
	 */
1605
	if (otg->phy->state != OTG_STATE_UNDEFINED)
1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627
		pm_schedule_suspend(dev, 1000);

	return -EAGAIN;
}

static int msm_otg_runtime_suspend(struct device *dev)
{
	struct msm_otg *motg = dev_get_drvdata(dev);

	dev_dbg(dev, "OTG runtime suspend\n");
	return msm_otg_suspend(motg);
}

static int msm_otg_runtime_resume(struct device *dev)
{
	struct msm_otg *motg = dev_get_drvdata(dev);

	dev_dbg(dev, "OTG runtime resume\n");
	return msm_otg_resume(motg);
}
#endif

1628
#ifdef CONFIG_PM_SLEEP
1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660
static int msm_otg_pm_suspend(struct device *dev)
{
	struct msm_otg *motg = dev_get_drvdata(dev);

	dev_dbg(dev, "OTG PM suspend\n");
	return msm_otg_suspend(motg);
}

static int msm_otg_pm_resume(struct device *dev)
{
	struct msm_otg *motg = dev_get_drvdata(dev);
	int ret;

	dev_dbg(dev, "OTG PM resume\n");

	ret = msm_otg_resume(motg);
	if (ret)
		return ret;

	/*
	 * Runtime PM Documentation recommends bringing the
	 * device to full powered state upon resume.
	 */
	pm_runtime_disable(dev);
	pm_runtime_set_active(dev);
	pm_runtime_enable(dev);

	return 0;
}
#endif

static const struct dev_pm_ops msm_otg_dev_pm_ops = {
1661 1662 1663
	SET_SYSTEM_SLEEP_PM_OPS(msm_otg_pm_suspend, msm_otg_pm_resume)
	SET_RUNTIME_PM_OPS(msm_otg_runtime_suspend, msm_otg_runtime_resume,
				msm_otg_runtime_idle)
1664 1665
};

1666
static struct platform_driver msm_otg_driver = {
1667
	.probe = msm_otg_probe,
B
Bill Pemberton 已提交
1668
	.remove = msm_otg_remove,
1669 1670 1671
	.driver = {
		.name = DRIVER_NAME,
		.owner = THIS_MODULE,
1672
		.pm = &msm_otg_dev_pm_ops,
1673 1674 1675
	},
};

1676
module_platform_driver(msm_otg_driver);
1677 1678 1679

MODULE_LICENSE("GPL v2");
MODULE_DESCRIPTION("MSM USB transceiver driver");