blackfin.c 14.4 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17
/*
 * MUSB OTG controller driver for Blackfin Processors
 *
 * Copyright 2006-2008 Analog Devices Inc.
 *
 * Enter bugs at http://blackfin.uclinux.org/
 *
 * Licensed under the GPL-2 or later.
 */

#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/sched.h>
#include <linux/init.h>
#include <linux/list.h>
#include <linux/gpio.h>
#include <linux/io.h>
18
#include <linux/err.h>
19 20
#include <linux/platform_device.h>
#include <linux/dma-mapping.h>
21
#include <linux/prefetch.h>
22
#include <linux/usb/usb_phy_gen_xceiv.h>
23 24 25 26

#include <asm/cacheflush.h>

#include "musb_core.h"
27
#include "musbhsdma.h"
28 29
#include "blackfin.h"

30 31 32 33
struct bfin_glue {
	struct device		*dev;
	struct platform_device	*musb;
};
34
#define glue_to_musb(g)		platform_get_drvdata(g->musb)
35

36 37 38 39 40
/*
 * Load an endpoint's FIFO
 */
void musb_write_fifo(struct musb_hw_ep *hw_ep, u16 len, const u8 *src)
{
F
Felipe Balbi 已提交
41
	struct musb *musb = hw_ep->musb;
42 43
	void __iomem *fifo = hw_ep->fifo;
	void __iomem *epio = hw_ep->regs;
44
	u8 epnum = hw_ep->epnum;
45 46 47 48 49

	prefetch((u8 *)src);

	musb_writew(epio, MUSB_TXCOUNT, len);

50
	dev_dbg(musb->controller, "TX ep%d fifo %p count %d buf %p, epio %p\n",
51 52 53 54
			hw_ep->epnum, fifo, len, src, epio);

	dump_fifo_data(src, len);

55
	if (!ANOMALY_05000380 && epnum != 0) {
56 57 58 59
		u16 dma_reg;

		flush_dcache_range((unsigned long)src,
			(unsigned long)(src + len));
60 61

		/* Setup DMA address register */
62
		dma_reg = (u32)src;
63 64 65
		bfin_write16(USB_DMA_REG(epnum, USB_DMAx_ADDR_LOW), dma_reg);
		SSYNC();

66
		dma_reg = (u32)src >> 16;
67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94
		bfin_write16(USB_DMA_REG(epnum, USB_DMAx_ADDR_HIGH), dma_reg);
		SSYNC();

		/* Setup DMA count register */
		bfin_write16(USB_DMA_REG(epnum, USB_DMAx_COUNT_LOW), len);
		bfin_write16(USB_DMA_REG(epnum, USB_DMAx_COUNT_HIGH), 0);
		SSYNC();

		/* Enable the DMA */
		dma_reg = (epnum << 4) | DMA_ENA | INT_ENA | DIRECTION;
		bfin_write16(USB_DMA_REG(epnum, USB_DMAx_CTRL), dma_reg);
		SSYNC();

		/* Wait for compelete */
		while (!(bfin_read_USB_DMA_INTERRUPT() & (1 << epnum)))
			cpu_relax();

		/* acknowledge dma interrupt */
		bfin_write_USB_DMA_INTERRUPT(1 << epnum);
		SSYNC();

		/* Reset DMA */
		bfin_write16(USB_DMA_REG(epnum, USB_DMAx_CTRL), 0);
		SSYNC();
	} else {
		SSYNC();

		if (unlikely((unsigned long)src & 0x01))
95
			outsw_8((unsigned long)fifo, src, (len + 1) >> 1);
96
		else
97
			outsw((unsigned long)fifo, src, (len + 1) >> 1);
98
	}
99 100 101 102 103 104
}
/*
 * Unload an endpoint's FIFO
 */
void musb_read_fifo(struct musb_hw_ep *hw_ep, u16 len, u8 *dst)
{
F
Felipe Balbi 已提交
105
	struct musb *musb = hw_ep->musb;
106 107 108
	void __iomem *fifo = hw_ep->fifo;
	u8 epnum = hw_ep->epnum;

109
	if (ANOMALY_05000467 && epnum != 0) {
110
		u16 dma_reg;
111

112 113
		invalidate_dcache_range((unsigned long)dst,
			(unsigned long)(dst + len));
114 115

		/* Setup DMA address register */
116
		dma_reg = (u32)dst;
117 118 119
		bfin_write16(USB_DMA_REG(epnum, USB_DMAx_ADDR_LOW), dma_reg);
		SSYNC();

120
		dma_reg = (u32)dst >> 16;
121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161
		bfin_write16(USB_DMA_REG(epnum, USB_DMAx_ADDR_HIGH), dma_reg);
		SSYNC();

		/* Setup DMA count register */
		bfin_write16(USB_DMA_REG(epnum, USB_DMAx_COUNT_LOW), len);
		bfin_write16(USB_DMA_REG(epnum, USB_DMAx_COUNT_HIGH), 0);
		SSYNC();

		/* Enable the DMA */
		dma_reg = (epnum << 4) | DMA_ENA | INT_ENA;
		bfin_write16(USB_DMA_REG(epnum, USB_DMAx_CTRL), dma_reg);
		SSYNC();

		/* Wait for compelete */
		while (!(bfin_read_USB_DMA_INTERRUPT() & (1 << epnum)))
			cpu_relax();

		/* acknowledge dma interrupt */
		bfin_write_USB_DMA_INTERRUPT(1 << epnum);
		SSYNC();

		/* Reset DMA */
		bfin_write16(USB_DMA_REG(epnum, USB_DMAx_CTRL), 0);
		SSYNC();
	} else {
		SSYNC();
		/* Read the last byte of packet with odd size from address fifo + 4
		 * to trigger 1 byte access to EP0 FIFO.
		 */
		if (len == 1)
			*dst = (u8)inw((unsigned long)fifo + 4);
		else {
			if (unlikely((unsigned long)dst & 0x01))
				insw_8((unsigned long)fifo, dst, len >> 1);
			else
				insw((unsigned long)fifo, dst, len >> 1);

			if (len & 0x01)
				*(dst + len - 1) = (u8)inw((unsigned long)fifo + 4);
		}
	}
162
	dev_dbg(musb->controller, "%cX ep%d fifo %p count %d buf %p\n",
163 164
			'R', hw_ep->epnum, fifo, len, dst);

165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186
	dump_fifo_data(dst, len);
}

static irqreturn_t blackfin_interrupt(int irq, void *__hci)
{
	unsigned long	flags;
	irqreturn_t	retval = IRQ_NONE;
	struct musb	*musb = __hci;

	spin_lock_irqsave(&musb->lock, flags);

	musb->int_usb = musb_readb(musb->mregs, MUSB_INTRUSB);
	musb->int_tx = musb_readw(musb->mregs, MUSB_INTRTX);
	musb->int_rx = musb_readw(musb->mregs, MUSB_INTRRX);

	if (musb->int_usb || musb->int_tx || musb->int_rx) {
		musb_writeb(musb->mregs, MUSB_INTRUSB, musb->int_usb);
		musb_writew(musb->mregs, MUSB_INTRTX, musb->int_tx);
		musb_writew(musb->mregs, MUSB_INTRRX, musb->int_rx);
		retval = musb_interrupt(musb);
	}

187
	/* Start sampling ID pin, when plug is removed from MUSB */
188 189
	if ((musb->xceiv->state == OTG_STATE_B_IDLE
		|| musb->xceiv->state == OTG_STATE_A_WAIT_BCON) ||
190
		(musb->int_usb & MUSB_INTR_DISCONNECT && is_host_active(musb))) {
191 192 193 194
		mod_timer(&musb_conn_timer, jiffies + TIMER_DELAY);
		musb->a_wait_bcon = TIMER_DELAY;
	}

195 196
	spin_unlock_irqrestore(&musb->lock, flags);

197
	return retval;
198 199 200 201 202 203 204
}

static void musb_conn_timer_handler(unsigned long _musb)
{
	struct musb *musb = (void *)_musb;
	unsigned long flags;
	u16 val;
205
	static u8 toggle;
206 207

	spin_lock_irqsave(&musb->lock, flags);
208
	switch (musb->xceiv->state) {
209 210 211 212
	case OTG_STATE_A_IDLE:
	case OTG_STATE_A_WAIT_BCON:
		/* Start a new session */
		val = musb_readw(musb->mregs, MUSB_DEVCTL);
213 214
		val &= ~MUSB_DEVCTL_SESSION;
		musb_writew(musb->mregs, MUSB_DEVCTL, val);
215 216
		val |= MUSB_DEVCTL_SESSION;
		musb_writew(musb->mregs, MUSB_DEVCTL, val);
217 218 219 220 221 222 223 224 225 226 227 228 229 230 231
		/* Check if musb is host or peripheral. */
		val = musb_readw(musb->mregs, MUSB_DEVCTL);

		if (!(val & MUSB_DEVCTL_BDEVICE)) {
			gpio_set_value(musb->config->gpio_vrsel, 1);
			musb->xceiv->state = OTG_STATE_A_WAIT_BCON;
		} else {
			gpio_set_value(musb->config->gpio_vrsel, 0);
			/* Ignore VBUSERROR and SUSPEND IRQ */
			val = musb_readb(musb->mregs, MUSB_INTRUSBE);
			val &= ~MUSB_INTR_VBUSERROR;
			musb_writeb(musb->mregs, MUSB_INTRUSBE, val);

			val = MUSB_INTR_SUSPEND | MUSB_INTR_VBUSERROR;
			musb_writeb(musb->mregs, MUSB_INTRUSB, val);
232
			musb->xceiv->state = OTG_STATE_B_IDLE;
233 234 235 236
		}
		mod_timer(&musb_conn_timer, jiffies + TIMER_DELAY);
		break;
	case OTG_STATE_B_IDLE:
237 238
		/*
		 * Start a new session.  It seems that MUSB needs taking
239 240 241 242 243
		 * some time to recognize the type of the plug inserted?
		 */
		val = musb_readw(musb->mregs, MUSB_DEVCTL);
		val |= MUSB_DEVCTL_SESSION;
		musb_writew(musb->mregs, MUSB_DEVCTL, val);
244
		val = musb_readw(musb->mregs, MUSB_DEVCTL);
245

246 247
		if (!(val & MUSB_DEVCTL_BDEVICE)) {
			gpio_set_value(musb->config->gpio_vrsel, 1);
248
			musb->xceiv->state = OTG_STATE_A_WAIT_BCON;
249 250 251 252 253 254 255 256 257 258 259
		} else {
			gpio_set_value(musb->config->gpio_vrsel, 0);

			/* Ignore VBUSERROR and SUSPEND IRQ */
			val = musb_readb(musb->mregs, MUSB_INTRUSBE);
			val &= ~MUSB_INTR_VBUSERROR;
			musb_writeb(musb->mregs, MUSB_INTRUSBE, val);

			val = MUSB_INTR_SUSPEND | MUSB_INTR_VBUSERROR;
			musb_writeb(musb->mregs, MUSB_INTRUSB, val);

260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278
			/* Toggle the Soft Conn bit, so that we can response to
			 * the inserting of either A-plug or B-plug.
			 */
			if (toggle) {
				val = musb_readb(musb->mregs, MUSB_POWER);
				val &= ~MUSB_POWER_SOFTCONN;
				musb_writeb(musb->mregs, MUSB_POWER, val);
				toggle = 0;
			} else {
				val = musb_readb(musb->mregs, MUSB_POWER);
				val |= MUSB_POWER_SOFTCONN;
				musb_writeb(musb->mregs, MUSB_POWER, val);
				toggle = 1;
			}
			/* The delay time is set to 1/4 second by default,
			 * shortening it, if accelerating A-plug detection
			 * is needed in OTG mode.
			 */
			mod_timer(&musb_conn_timer, jiffies + TIMER_DELAY / 4);
279 280 281
		}
		break;
	default:
282
		dev_dbg(musb->controller, "%s state not handled\n",
283
			usb_otg_state_string(musb->xceiv->state));
284 285 286 287
		break;
	}
	spin_unlock_irqrestore(&musb->lock, flags);

288
	dev_dbg(musb->controller, "state is %s\n",
289
		usb_otg_state_string(musb->xceiv->state));
290 291
}

292
static void bfin_musb_enable(struct musb *musb)
293
{
294
	/* REVISIT is this really correct ? */
295 296
}

297
static void bfin_musb_disable(struct musb *musb)
298 299 300
{
}

301
static void bfin_musb_set_vbus(struct musb *musb, int is_on)
302
{
303 304 305 306
	int value = musb->config->gpio_vrsel_active;
	if (!is_on)
		value = !value;
	gpio_set_value(musb->config->gpio_vrsel, value);
307

308
	dev_dbg(musb->controller, "VBUS %s, devctl %02x "
309
		/* otg %3x conf %08x prcm %08x */ "\n",
310
		usb_otg_state_string(musb->xceiv->state),
311 312 313
		musb_readb(musb->mregs, MUSB_DEVCTL));
}

314
static int bfin_musb_set_power(struct usb_phy *x, unsigned mA)
315 316 317 318
{
	return 0;
}

319
static int bfin_musb_vbus_status(struct musb *musb)
320 321 322 323
{
	return 0;
}

324
static int bfin_musb_set_mode(struct musb *musb, u8 musb_mode)
325
{
326
	return -EIO;
327 328
}

329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349
static int bfin_musb_adjust_channel_params(struct dma_channel *channel,
				u16 packet_sz, u8 *mode,
				dma_addr_t *dma_addr, u32 *len)
{
	struct musb_dma_channel *musb_channel = channel->private_data;

	/*
	 * Anomaly 05000450 might cause data corruption when using DMA
	 * MODE 1 transmits with short packet.  So to work around this,
	 * we truncate all MODE 1 transfers down to a multiple of the
	 * max packet size, and then do the last short packet transfer
	 * (if there is any) using MODE 0.
	 */
	if (ANOMALY_05000450) {
		if (musb_channel->transmit && *mode == 1)
			*len = *len - (*len % packet_sz);
	}

	return 0;
}

350
static void bfin_musb_reg_init(struct musb *musb)
351
{
352 353 354 355
	if (ANOMALY_05000346) {
		bfin_write_USB_APHY_CALIB(ANOMALY_05000346_value);
		SSYNC();
	}
356

357 358 359 360
	if (ANOMALY_05000347) {
		bfin_write_USB_APHY_CNTRL(0x0);
		SSYNC();
	}
361 362

	/* Configure PLL oscillator register */
363 364
	bfin_write_USB_PLLOSC_CTRL(0x3080 |
			((480/musb->config->clkin) << 1));
365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385
	SSYNC();

	bfin_write_USB_SRP_CLKDIV((get_sclk()/1000) / 32 - 1);
	SSYNC();

	bfin_write_USB_EP_NI0_RXMAXP(64);
	SSYNC();

	bfin_write_USB_EP_NI0_TXMAXP(64);
	SSYNC();

	/* Route INTRUSB/INTR_RX/INTR_TX to USB_INT0*/
	bfin_write_USB_GLOBINTR(0x7);
	SSYNC();

	bfin_write_USB_GLOBAL_CTL(GLOBAL_ENA | EP1_TX_ENA | EP2_TX_ENA |
				EP3_TX_ENA | EP4_TX_ENA | EP5_TX_ENA |
				EP6_TX_ENA | EP7_TX_ENA | EP1_RX_ENA |
				EP2_RX_ENA | EP3_RX_ENA | EP4_RX_ENA |
				EP5_RX_ENA | EP6_RX_ENA | EP7_RX_ENA);
	SSYNC();
386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405
}

static int bfin_musb_init(struct musb *musb)
{

	/*
	 * Rev 1.0 BF549 EZ-KITs require PE7 to be high for both DEVICE
	 * and OTG HOST modes, while rev 1.1 and greater require PE7 to
	 * be low for DEVICE mode and high for HOST mode. We set it high
	 * here because we are in host mode
	 */

	if (gpio_request(musb->config->gpio_vrsel, "USB_VRSEL")) {
		printk(KERN_ERR "Failed ro request USB_VRSEL GPIO_%d\n",
			musb->config->gpio_vrsel);
		return -ENODEV;
	}
	gpio_direction_output(musb->config->gpio_vrsel, 0);

	usb_nop_xceiv_register();
406
	musb->xceiv = usb_get_phy(USB_PHY_TYPE_USB2);
407
	if (IS_ERR_OR_NULL(musb->xceiv)) {
408
		gpio_free(musb->config->gpio_vrsel);
409
		return -EPROBE_DEFER;
410 411 412
	}

	bfin_musb_reg_init(musb);
413

414 415 416 417
	setup_timer(&musb_conn_timer, musb_conn_timer_handler,
			(unsigned long) musb);

	musb->xceiv->set_power = bfin_musb_set_power;
418 419

	musb->isr = blackfin_interrupt;
420
	musb->double_buffer_not_ok = true;
421 422 423 424

	return 0;
}

425
static int bfin_musb_exit(struct musb *musb)
426 427 428
{
	gpio_free(musb->config->gpio_vrsel);

429
	usb_put_phy(musb->xceiv);
430
	usb_nop_xceiv_unregister();
431 432
	return 0;
}
433

434
static const struct musb_platform_ops bfin_ops = {
435 436 437 438 439 440 441 442 443 444
	.init		= bfin_musb_init,
	.exit		= bfin_musb_exit,

	.enable		= bfin_musb_enable,
	.disable	= bfin_musb_disable,

	.set_mode	= bfin_musb_set_mode,

	.vbus_status	= bfin_musb_vbus_status,
	.set_vbus	= bfin_musb_set_vbus,
445 446

	.adjust_channel_params = bfin_musb_adjust_channel_params,
447
};
448 449 450

static u64 bfin_dmamask = DMA_BIT_MASK(32);

B
Bill Pemberton 已提交
451
static int bfin_probe(struct platform_device *pdev)
452
{
453
	struct resource musb_resources[2];
454 455
	struct musb_hdrc_platform_data	*pdata = pdev->dev.platform_data;
	struct platform_device		*musb;
456
	struct bfin_glue		*glue;
457 458 459

	int				ret = -ENOMEM;

460 461 462 463 464 465
	glue = kzalloc(sizeof(*glue), GFP_KERNEL);
	if (!glue) {
		dev_err(&pdev->dev, "failed to allocate glue context\n");
		goto err0;
	}

466
	musb = platform_device_alloc("musb-hdrc", PLATFORM_DEVID_AUTO);
467 468
	if (!musb) {
		dev_err(&pdev->dev, "failed to allocate musb device\n");
469
		goto err1;
470 471 472 473 474 475
	}

	musb->dev.parent		= &pdev->dev;
	musb->dev.dma_mask		= &bfin_dmamask;
	musb->dev.coherent_dma_mask	= bfin_dmamask;

476 477 478
	glue->dev			= &pdev->dev;
	glue->musb			= musb;

479 480
	pdata->platform_ops		= &bfin_ops;

481
	platform_set_drvdata(pdev, glue);
482

483 484 485 486 487 488 489 490 491 492 493 494 495 496 497
	memset(musb_resources, 0x00, sizeof(*musb_resources) *
			ARRAY_SIZE(musb_resources));

	musb_resources[0].name = pdev->resource[0].name;
	musb_resources[0].start = pdev->resource[0].start;
	musb_resources[0].end = pdev->resource[0].end;
	musb_resources[0].flags = pdev->resource[0].flags;

	musb_resources[1].name = pdev->resource[1].name;
	musb_resources[1].start = pdev->resource[1].start;
	musb_resources[1].end = pdev->resource[1].end;
	musb_resources[1].flags = pdev->resource[1].flags;

	ret = platform_device_add_resources(musb, musb_resources,
			ARRAY_SIZE(musb_resources));
498 499
	if (ret) {
		dev_err(&pdev->dev, "failed to add resources\n");
500
		goto err3;
501 502 503 504 505
	}

	ret = platform_device_add_data(musb, pdata, sizeof(*pdata));
	if (ret) {
		dev_err(&pdev->dev, "failed to add platform_data\n");
506
		goto err3;
507 508 509 510 511
	}

	ret = platform_device_add(musb);
	if (ret) {
		dev_err(&pdev->dev, "failed to register musb device\n");
512
		goto err3;
513 514 515 516
	}

	return 0;

517
err3:
518 519
	platform_device_put(musb);

520 521 522
err1:
	kfree(glue);

523 524 525 526
err0:
	return ret;
}

B
Bill Pemberton 已提交
527
static int bfin_remove(struct platform_device *pdev)
528
{
529
	struct bfin_glue		*glue = platform_get_drvdata(pdev);
530

531
	platform_device_unregister(glue->musb);
532
	kfree(glue);
533 534 535 536

	return 0;
}

537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569
#ifdef CONFIG_PM
static int bfin_suspend(struct device *dev)
{
	struct bfin_glue	*glue = dev_get_drvdata(dev);
	struct musb		*musb = glue_to_musb(glue);

	if (is_host_active(musb))
		/*
		 * During hibernate gpio_vrsel will change from high to low
		 * low which will generate wakeup event resume the system
		 * immediately.  Set it to 0 before hibernate to avoid this
		 * wakeup event.
		 */
		gpio_set_value(musb->config->gpio_vrsel, 0);

	return 0;
}

static int bfin_resume(struct device *dev)
{
	struct bfin_glue	*glue = dev_get_drvdata(dev);
	struct musb		*musb = glue_to_musb(glue);

	bfin_musb_reg_init(musb);

	return 0;
}

static struct dev_pm_ops bfin_pm_ops = {
	.suspend	= bfin_suspend,
	.resume		= bfin_resume,
};

570
#define DEV_PM_OPS	&bfin_pm_ops
571 572 573 574
#else
#define DEV_PM_OPS	NULL
#endif

575
static struct platform_driver bfin_driver = {
576
	.probe		= bfin_probe,
577 578
	.remove		= __exit_p(bfin_remove),
	.driver		= {
579
		.name	= "musb-blackfin",
580
		.pm	= DEV_PM_OPS,
581 582 583 584 585 586
	},
};

MODULE_DESCRIPTION("Blackfin MUSB Glue Layer");
MODULE_AUTHOR("Bryan Wy <cooloney@kernel.org>");
MODULE_LICENSE("GPL v2");
587
module_platform_driver(bfin_driver);