Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux
1
fork

Configure Feed

Select the types of activity you want to include in your feed.

at v3.9-rc4 2655 lines 69 kB view raw
1/* 2 * Handles the Intel 27x USB Device Controller (UDC) 3 * 4 * Inspired by original driver by Frank Becker, David Brownell, and others. 5 * Copyright (C) 2008 Robert Jarzmik 6 * 7 * This program is free software; you can redistribute it and/or modify 8 * it under the terms of the GNU General Public License as published by 9 * the Free Software Foundation; either version 2 of the License, or 10 * (at your option) any later version. 11 */ 12#include <linux/module.h> 13#include <linux/kernel.h> 14#include <linux/types.h> 15#include <linux/errno.h> 16#include <linux/err.h> 17#include <linux/platform_device.h> 18#include <linux/delay.h> 19#include <linux/list.h> 20#include <linux/interrupt.h> 21#include <linux/proc_fs.h> 22#include <linux/clk.h> 23#include <linux/irq.h> 24#include <linux/gpio.h> 25#include <linux/slab.h> 26#include <linux/prefetch.h> 27 28#include <asm/byteorder.h> 29#include <mach/hardware.h> 30 31#include <linux/usb.h> 32#include <linux/usb/ch9.h> 33#include <linux/usb/gadget.h> 34#include <mach/udc.h> 35 36#include "pxa27x_udc.h" 37 38/* 39 * This driver handles the USB Device Controller (UDC) in Intel's PXA 27x 40 * series processors. 41 * 42 * Such controller drivers work with a gadget driver. The gadget driver 43 * returns descriptors, implements configuration and data protocols used 44 * by the host to interact with this device, and allocates endpoints to 45 * the different protocol interfaces. The controller driver virtualizes 46 * usb hardware so that the gadget drivers will be more portable. 47 * 48 * This UDC hardware wants to implement a bit too much USB protocol. The 49 * biggest issues are: that the endpoints have to be set up before the 50 * controller can be enabled (minor, and not uncommon); and each endpoint 51 * can only have one configuration, interface and alternative interface 52 * number (major, and very unusual). Once set up, these cannot be changed 53 * without a controller reset. 54 * 55 * The workaround is to setup all combinations necessary for the gadgets which 56 * will work with this driver. This is done in pxa_udc structure, statically. 57 * See pxa_udc, udc_usb_ep versus pxa_ep, and matching function find_pxa_ep. 58 * (You could modify this if needed. Some drivers have a "fifo_mode" module 59 * parameter to facilitate such changes.) 60 * 61 * The combinations have been tested with these gadgets : 62 * - zero gadget 63 * - file storage gadget 64 * - ether gadget 65 * 66 * The driver doesn't use DMA, only IO access and IRQ callbacks. No use is 67 * made of UDC's double buffering either. USB "On-The-Go" is not implemented. 68 * 69 * All the requests are handled the same way : 70 * - the drivers tries to handle the request directly to the IO 71 * - if the IO fifo is not big enough, the remaining is send/received in 72 * interrupt handling. 73 */ 74 75#define DRIVER_VERSION "2008-04-18" 76#define DRIVER_DESC "PXA 27x USB Device Controller driver" 77 78static const char driver_name[] = "pxa27x_udc"; 79static struct pxa_udc *the_controller; 80 81static void handle_ep(struct pxa_ep *ep); 82 83/* 84 * Debug filesystem 85 */ 86#ifdef CONFIG_USB_GADGET_DEBUG_FS 87 88#include <linux/debugfs.h> 89#include <linux/uaccess.h> 90#include <linux/seq_file.h> 91 92static int state_dbg_show(struct seq_file *s, void *p) 93{ 94 struct pxa_udc *udc = s->private; 95 int pos = 0, ret; 96 u32 tmp; 97 98 ret = -ENODEV; 99 if (!udc->driver) 100 goto out; 101 102 /* basic device status */ 103 pos += seq_printf(s, DRIVER_DESC "\n" 104 "%s version: %s\nGadget driver: %s\n", 105 driver_name, DRIVER_VERSION, 106 udc->driver ? udc->driver->driver.name : "(none)"); 107 108 tmp = udc_readl(udc, UDCCR); 109 pos += seq_printf(s, 110 "udccr=0x%0x(%s%s%s%s%s%s%s%s%s%s), " 111 "con=%d,inter=%d,altinter=%d\n", tmp, 112 (tmp & UDCCR_OEN) ? " oen":"", 113 (tmp & UDCCR_AALTHNP) ? " aalthnp":"", 114 (tmp & UDCCR_AHNP) ? " rem" : "", 115 (tmp & UDCCR_BHNP) ? " rstir" : "", 116 (tmp & UDCCR_DWRE) ? " dwre" : "", 117 (tmp & UDCCR_SMAC) ? " smac" : "", 118 (tmp & UDCCR_EMCE) ? " emce" : "", 119 (tmp & UDCCR_UDR) ? " udr" : "", 120 (tmp & UDCCR_UDA) ? " uda" : "", 121 (tmp & UDCCR_UDE) ? " ude" : "", 122 (tmp & UDCCR_ACN) >> UDCCR_ACN_S, 123 (tmp & UDCCR_AIN) >> UDCCR_AIN_S, 124 (tmp & UDCCR_AAISN) >> UDCCR_AAISN_S); 125 /* registers for device and ep0 */ 126 pos += seq_printf(s, "udcicr0=0x%08x udcicr1=0x%08x\n", 127 udc_readl(udc, UDCICR0), udc_readl(udc, UDCICR1)); 128 pos += seq_printf(s, "udcisr0=0x%08x udcisr1=0x%08x\n", 129 udc_readl(udc, UDCISR0), udc_readl(udc, UDCISR1)); 130 pos += seq_printf(s, "udcfnr=%d\n", udc_readl(udc, UDCFNR)); 131 pos += seq_printf(s, "irqs: reset=%lu, suspend=%lu, resume=%lu, " 132 "reconfig=%lu\n", 133 udc->stats.irqs_reset, udc->stats.irqs_suspend, 134 udc->stats.irqs_resume, udc->stats.irqs_reconfig); 135 136 ret = 0; 137out: 138 return ret; 139} 140 141static int queues_dbg_show(struct seq_file *s, void *p) 142{ 143 struct pxa_udc *udc = s->private; 144 struct pxa_ep *ep; 145 struct pxa27x_request *req; 146 int pos = 0, i, maxpkt, ret; 147 148 ret = -ENODEV; 149 if (!udc->driver) 150 goto out; 151 152 /* dump endpoint queues */ 153 for (i = 0; i < NR_PXA_ENDPOINTS; i++) { 154 ep = &udc->pxa_ep[i]; 155 maxpkt = ep->fifo_size; 156 pos += seq_printf(s, "%-12s max_pkt=%d %s\n", 157 EPNAME(ep), maxpkt, "pio"); 158 159 if (list_empty(&ep->queue)) { 160 pos += seq_printf(s, "\t(nothing queued)\n"); 161 continue; 162 } 163 164 list_for_each_entry(req, &ep->queue, queue) { 165 pos += seq_printf(s, "\treq %p len %d/%d buf %p\n", 166 &req->req, req->req.actual, 167 req->req.length, req->req.buf); 168 } 169 } 170 171 ret = 0; 172out: 173 return ret; 174} 175 176static int eps_dbg_show(struct seq_file *s, void *p) 177{ 178 struct pxa_udc *udc = s->private; 179 struct pxa_ep *ep; 180 int pos = 0, i, ret; 181 u32 tmp; 182 183 ret = -ENODEV; 184 if (!udc->driver) 185 goto out; 186 187 ep = &udc->pxa_ep[0]; 188 tmp = udc_ep_readl(ep, UDCCSR); 189 pos += seq_printf(s, "udccsr0=0x%03x(%s%s%s%s%s%s%s)\n", tmp, 190 (tmp & UDCCSR0_SA) ? " sa" : "", 191 (tmp & UDCCSR0_RNE) ? " rne" : "", 192 (tmp & UDCCSR0_FST) ? " fst" : "", 193 (tmp & UDCCSR0_SST) ? " sst" : "", 194 (tmp & UDCCSR0_DME) ? " dme" : "", 195 (tmp & UDCCSR0_IPR) ? " ipr" : "", 196 (tmp & UDCCSR0_OPC) ? " opc" : ""); 197 for (i = 0; i < NR_PXA_ENDPOINTS; i++) { 198 ep = &udc->pxa_ep[i]; 199 tmp = i? udc_ep_readl(ep, UDCCR) : udc_readl(udc, UDCCR); 200 pos += seq_printf(s, "%-12s: " 201 "IN %lu(%lu reqs), OUT %lu(%lu reqs), " 202 "irqs=%lu, udccr=0x%08x, udccsr=0x%03x, " 203 "udcbcr=%d\n", 204 EPNAME(ep), 205 ep->stats.in_bytes, ep->stats.in_ops, 206 ep->stats.out_bytes, ep->stats.out_ops, 207 ep->stats.irqs, 208 tmp, udc_ep_readl(ep, UDCCSR), 209 udc_ep_readl(ep, UDCBCR)); 210 } 211 212 ret = 0; 213out: 214 return ret; 215} 216 217static int eps_dbg_open(struct inode *inode, struct file *file) 218{ 219 return single_open(file, eps_dbg_show, inode->i_private); 220} 221 222static int queues_dbg_open(struct inode *inode, struct file *file) 223{ 224 return single_open(file, queues_dbg_show, inode->i_private); 225} 226 227static int state_dbg_open(struct inode *inode, struct file *file) 228{ 229 return single_open(file, state_dbg_show, inode->i_private); 230} 231 232static const struct file_operations state_dbg_fops = { 233 .owner = THIS_MODULE, 234 .open = state_dbg_open, 235 .llseek = seq_lseek, 236 .read = seq_read, 237 .release = single_release, 238}; 239 240static const struct file_operations queues_dbg_fops = { 241 .owner = THIS_MODULE, 242 .open = queues_dbg_open, 243 .llseek = seq_lseek, 244 .read = seq_read, 245 .release = single_release, 246}; 247 248static const struct file_operations eps_dbg_fops = { 249 .owner = THIS_MODULE, 250 .open = eps_dbg_open, 251 .llseek = seq_lseek, 252 .read = seq_read, 253 .release = single_release, 254}; 255 256static void pxa_init_debugfs(struct pxa_udc *udc) 257{ 258 struct dentry *root, *state, *queues, *eps; 259 260 root = debugfs_create_dir(udc->gadget.name, NULL); 261 if (IS_ERR(root) || !root) 262 goto err_root; 263 264 state = debugfs_create_file("udcstate", 0400, root, udc, 265 &state_dbg_fops); 266 if (!state) 267 goto err_state; 268 queues = debugfs_create_file("queues", 0400, root, udc, 269 &queues_dbg_fops); 270 if (!queues) 271 goto err_queues; 272 eps = debugfs_create_file("epstate", 0400, root, udc, 273 &eps_dbg_fops); 274 if (!eps) 275 goto err_eps; 276 277 udc->debugfs_root = root; 278 udc->debugfs_state = state; 279 udc->debugfs_queues = queues; 280 udc->debugfs_eps = eps; 281 return; 282err_eps: 283 debugfs_remove(eps); 284err_queues: 285 debugfs_remove(queues); 286err_state: 287 debugfs_remove(root); 288err_root: 289 dev_err(udc->dev, "debugfs is not available\n"); 290} 291 292static void pxa_cleanup_debugfs(struct pxa_udc *udc) 293{ 294 debugfs_remove(udc->debugfs_eps); 295 debugfs_remove(udc->debugfs_queues); 296 debugfs_remove(udc->debugfs_state); 297 debugfs_remove(udc->debugfs_root); 298 udc->debugfs_eps = NULL; 299 udc->debugfs_queues = NULL; 300 udc->debugfs_state = NULL; 301 udc->debugfs_root = NULL; 302} 303 304#else 305static inline void pxa_init_debugfs(struct pxa_udc *udc) 306{ 307} 308 309static inline void pxa_cleanup_debugfs(struct pxa_udc *udc) 310{ 311} 312#endif 313 314/** 315 * is_match_usb_pxa - check if usb_ep and pxa_ep match 316 * @udc_usb_ep: usb endpoint 317 * @ep: pxa endpoint 318 * @config: configuration required in pxa_ep 319 * @interface: interface required in pxa_ep 320 * @altsetting: altsetting required in pxa_ep 321 * 322 * Returns 1 if all criteria match between pxa and usb endpoint, 0 otherwise 323 */ 324static int is_match_usb_pxa(struct udc_usb_ep *udc_usb_ep, struct pxa_ep *ep, 325 int config, int interface, int altsetting) 326{ 327 if (usb_endpoint_num(&udc_usb_ep->desc) != ep->addr) 328 return 0; 329 if (usb_endpoint_dir_in(&udc_usb_ep->desc) != ep->dir_in) 330 return 0; 331 if (usb_endpoint_type(&udc_usb_ep->desc) != ep->type) 332 return 0; 333 if ((ep->config != config) || (ep->interface != interface) 334 || (ep->alternate != altsetting)) 335 return 0; 336 return 1; 337} 338 339/** 340 * find_pxa_ep - find pxa_ep structure matching udc_usb_ep 341 * @udc: pxa udc 342 * @udc_usb_ep: udc_usb_ep structure 343 * 344 * Match udc_usb_ep and all pxa_ep available, to see if one matches. 345 * This is necessary because of the strong pxa hardware restriction requiring 346 * that once pxa endpoints are initialized, their configuration is freezed, and 347 * no change can be made to their address, direction, or in which configuration, 348 * interface or altsetting they are active ... which differs from more usual 349 * models which have endpoints be roughly just addressable fifos, and leave 350 * configuration events up to gadget drivers (like all control messages). 351 * 352 * Note that there is still a blurred point here : 353 * - we rely on UDCCR register "active interface" and "active altsetting". 354 * This is a nonsense in regard of USB spec, where multiple interfaces are 355 * active at the same time. 356 * - if we knew for sure that the pxa can handle multiple interface at the 357 * same time, assuming Intel's Developer Guide is wrong, this function 358 * should be reviewed, and a cache of couples (iface, altsetting) should 359 * be kept in the pxa_udc structure. In this case this function would match 360 * against the cache of couples instead of the "last altsetting" set up. 361 * 362 * Returns the matched pxa_ep structure or NULL if none found 363 */ 364static struct pxa_ep *find_pxa_ep(struct pxa_udc *udc, 365 struct udc_usb_ep *udc_usb_ep) 366{ 367 int i; 368 struct pxa_ep *ep; 369 int cfg = udc->config; 370 int iface = udc->last_interface; 371 int alt = udc->last_alternate; 372 373 if (udc_usb_ep == &udc->udc_usb_ep[0]) 374 return &udc->pxa_ep[0]; 375 376 for (i = 1; i < NR_PXA_ENDPOINTS; i++) { 377 ep = &udc->pxa_ep[i]; 378 if (is_match_usb_pxa(udc_usb_ep, ep, cfg, iface, alt)) 379 return ep; 380 } 381 return NULL; 382} 383 384/** 385 * update_pxa_ep_matches - update pxa_ep cached values in all udc_usb_ep 386 * @udc: pxa udc 387 * 388 * Context: in_interrupt() 389 * 390 * Updates all pxa_ep fields in udc_usb_ep structures, if this field was 391 * previously set up (and is not NULL). The update is necessary is a 392 * configuration change or altsetting change was issued by the USB host. 393 */ 394static void update_pxa_ep_matches(struct pxa_udc *udc) 395{ 396 int i; 397 struct udc_usb_ep *udc_usb_ep; 398 399 for (i = 1; i < NR_USB_ENDPOINTS; i++) { 400 udc_usb_ep = &udc->udc_usb_ep[i]; 401 if (udc_usb_ep->pxa_ep) 402 udc_usb_ep->pxa_ep = find_pxa_ep(udc, udc_usb_ep); 403 } 404} 405 406/** 407 * pio_irq_enable - Enables irq generation for one endpoint 408 * @ep: udc endpoint 409 */ 410static void pio_irq_enable(struct pxa_ep *ep) 411{ 412 struct pxa_udc *udc = ep->dev; 413 int index = EPIDX(ep); 414 u32 udcicr0 = udc_readl(udc, UDCICR0); 415 u32 udcicr1 = udc_readl(udc, UDCICR1); 416 417 if (index < 16) 418 udc_writel(udc, UDCICR0, udcicr0 | (3 << (index * 2))); 419 else 420 udc_writel(udc, UDCICR1, udcicr1 | (3 << ((index - 16) * 2))); 421} 422 423/** 424 * pio_irq_disable - Disables irq generation for one endpoint 425 * @ep: udc endpoint 426 */ 427static void pio_irq_disable(struct pxa_ep *ep) 428{ 429 struct pxa_udc *udc = ep->dev; 430 int index = EPIDX(ep); 431 u32 udcicr0 = udc_readl(udc, UDCICR0); 432 u32 udcicr1 = udc_readl(udc, UDCICR1); 433 434 if (index < 16) 435 udc_writel(udc, UDCICR0, udcicr0 & ~(3 << (index * 2))); 436 else 437 udc_writel(udc, UDCICR1, udcicr1 & ~(3 << ((index - 16) * 2))); 438} 439 440/** 441 * udc_set_mask_UDCCR - set bits in UDCCR 442 * @udc: udc device 443 * @mask: bits to set in UDCCR 444 * 445 * Sets bits in UDCCR, leaving DME and FST bits as they were. 446 */ 447static inline void udc_set_mask_UDCCR(struct pxa_udc *udc, int mask) 448{ 449 u32 udccr = udc_readl(udc, UDCCR); 450 udc_writel(udc, UDCCR, 451 (udccr & UDCCR_MASK_BITS) | (mask & UDCCR_MASK_BITS)); 452} 453 454/** 455 * udc_clear_mask_UDCCR - clears bits in UDCCR 456 * @udc: udc device 457 * @mask: bit to clear in UDCCR 458 * 459 * Clears bits in UDCCR, leaving DME and FST bits as they were. 460 */ 461static inline void udc_clear_mask_UDCCR(struct pxa_udc *udc, int mask) 462{ 463 u32 udccr = udc_readl(udc, UDCCR); 464 udc_writel(udc, UDCCR, 465 (udccr & UDCCR_MASK_BITS) & ~(mask & UDCCR_MASK_BITS)); 466} 467 468/** 469 * ep_write_UDCCSR - set bits in UDCCSR 470 * @udc: udc device 471 * @mask: bits to set in UDCCR 472 * 473 * Sets bits in UDCCSR (UDCCSR0 and UDCCSR*). 474 * 475 * A specific case is applied to ep0 : the ACM bit is always set to 1, for 476 * SET_INTERFACE and SET_CONFIGURATION. 477 */ 478static inline void ep_write_UDCCSR(struct pxa_ep *ep, int mask) 479{ 480 if (is_ep0(ep)) 481 mask |= UDCCSR0_ACM; 482 udc_ep_writel(ep, UDCCSR, mask); 483} 484 485/** 486 * ep_count_bytes_remain - get how many bytes in udc endpoint 487 * @ep: udc endpoint 488 * 489 * Returns number of bytes in OUT fifos. Broken for IN fifos (-EOPNOTSUPP) 490 */ 491static int ep_count_bytes_remain(struct pxa_ep *ep) 492{ 493 if (ep->dir_in) 494 return -EOPNOTSUPP; 495 return udc_ep_readl(ep, UDCBCR) & 0x3ff; 496} 497 498/** 499 * ep_is_empty - checks if ep has byte ready for reading 500 * @ep: udc endpoint 501 * 502 * If endpoint is the control endpoint, checks if there are bytes in the 503 * control endpoint fifo. If endpoint is a data endpoint, checks if bytes 504 * are ready for reading on OUT endpoint. 505 * 506 * Returns 0 if ep not empty, 1 if ep empty, -EOPNOTSUPP if IN endpoint 507 */ 508static int ep_is_empty(struct pxa_ep *ep) 509{ 510 int ret; 511 512 if (!is_ep0(ep) && ep->dir_in) 513 return -EOPNOTSUPP; 514 if (is_ep0(ep)) 515 ret = !(udc_ep_readl(ep, UDCCSR) & UDCCSR0_RNE); 516 else 517 ret = !(udc_ep_readl(ep, UDCCSR) & UDCCSR_BNE); 518 return ret; 519} 520 521/** 522 * ep_is_full - checks if ep has place to write bytes 523 * @ep: udc endpoint 524 * 525 * If endpoint is not the control endpoint and is an IN endpoint, checks if 526 * there is place to write bytes into the endpoint. 527 * 528 * Returns 0 if ep not full, 1 if ep full, -EOPNOTSUPP if OUT endpoint 529 */ 530static int ep_is_full(struct pxa_ep *ep) 531{ 532 if (is_ep0(ep)) 533 return (udc_ep_readl(ep, UDCCSR) & UDCCSR0_IPR); 534 if (!ep->dir_in) 535 return -EOPNOTSUPP; 536 return (!(udc_ep_readl(ep, UDCCSR) & UDCCSR_BNF)); 537} 538 539/** 540 * epout_has_pkt - checks if OUT endpoint fifo has a packet available 541 * @ep: pxa endpoint 542 * 543 * Returns 1 if a complete packet is available, 0 if not, -EOPNOTSUPP for IN ep. 544 */ 545static int epout_has_pkt(struct pxa_ep *ep) 546{ 547 if (!is_ep0(ep) && ep->dir_in) 548 return -EOPNOTSUPP; 549 if (is_ep0(ep)) 550 return (udc_ep_readl(ep, UDCCSR) & UDCCSR0_OPC); 551 return (udc_ep_readl(ep, UDCCSR) & UDCCSR_PC); 552} 553 554/** 555 * set_ep0state - Set ep0 automata state 556 * @dev: udc device 557 * @state: state 558 */ 559static void set_ep0state(struct pxa_udc *udc, int state) 560{ 561 struct pxa_ep *ep = &udc->pxa_ep[0]; 562 char *old_stname = EP0_STNAME(udc); 563 564 udc->ep0state = state; 565 ep_dbg(ep, "state=%s->%s, udccsr0=0x%03x, udcbcr=%d\n", old_stname, 566 EP0_STNAME(udc), udc_ep_readl(ep, UDCCSR), 567 udc_ep_readl(ep, UDCBCR)); 568} 569 570/** 571 * ep0_idle - Put control endpoint into idle state 572 * @dev: udc device 573 */ 574static void ep0_idle(struct pxa_udc *dev) 575{ 576 set_ep0state(dev, WAIT_FOR_SETUP); 577} 578 579/** 580 * inc_ep_stats_reqs - Update ep stats counts 581 * @ep: physical endpoint 582 * @req: usb request 583 * @is_in: ep direction (USB_DIR_IN or 0) 584 * 585 */ 586static void inc_ep_stats_reqs(struct pxa_ep *ep, int is_in) 587{ 588 if (is_in) 589 ep->stats.in_ops++; 590 else 591 ep->stats.out_ops++; 592} 593 594/** 595 * inc_ep_stats_bytes - Update ep stats counts 596 * @ep: physical endpoint 597 * @count: bytes transferred on endpoint 598 * @is_in: ep direction (USB_DIR_IN or 0) 599 */ 600static void inc_ep_stats_bytes(struct pxa_ep *ep, int count, int is_in) 601{ 602 if (is_in) 603 ep->stats.in_bytes += count; 604 else 605 ep->stats.out_bytes += count; 606} 607 608/** 609 * pxa_ep_setup - Sets up an usb physical endpoint 610 * @ep: pxa27x physical endpoint 611 * 612 * Find the physical pxa27x ep, and setup its UDCCR 613 */ 614static __init void pxa_ep_setup(struct pxa_ep *ep) 615{ 616 u32 new_udccr; 617 618 new_udccr = ((ep->config << UDCCONR_CN_S) & UDCCONR_CN) 619 | ((ep->interface << UDCCONR_IN_S) & UDCCONR_IN) 620 | ((ep->alternate << UDCCONR_AISN_S) & UDCCONR_AISN) 621 | ((EPADDR(ep) << UDCCONR_EN_S) & UDCCONR_EN) 622 | ((EPXFERTYPE(ep) << UDCCONR_ET_S) & UDCCONR_ET) 623 | ((ep->dir_in) ? UDCCONR_ED : 0) 624 | ((ep->fifo_size << UDCCONR_MPS_S) & UDCCONR_MPS) 625 | UDCCONR_EE; 626 627 udc_ep_writel(ep, UDCCR, new_udccr); 628} 629 630/** 631 * pxa_eps_setup - Sets up all usb physical endpoints 632 * @dev: udc device 633 * 634 * Setup all pxa physical endpoints, except ep0 635 */ 636static __init void pxa_eps_setup(struct pxa_udc *dev) 637{ 638 unsigned int i; 639 640 dev_dbg(dev->dev, "%s: dev=%p\n", __func__, dev); 641 642 for (i = 1; i < NR_PXA_ENDPOINTS; i++) 643 pxa_ep_setup(&dev->pxa_ep[i]); 644} 645 646/** 647 * pxa_ep_alloc_request - Allocate usb request 648 * @_ep: usb endpoint 649 * @gfp_flags: 650 * 651 * For the pxa27x, these can just wrap kmalloc/kfree. gadget drivers 652 * must still pass correctly initialized endpoints, since other controller 653 * drivers may care about how it's currently set up (dma issues etc). 654 */ 655static struct usb_request * 656pxa_ep_alloc_request(struct usb_ep *_ep, gfp_t gfp_flags) 657{ 658 struct pxa27x_request *req; 659 660 req = kzalloc(sizeof *req, gfp_flags); 661 if (!req) 662 return NULL; 663 664 INIT_LIST_HEAD(&req->queue); 665 req->in_use = 0; 666 req->udc_usb_ep = container_of(_ep, struct udc_usb_ep, usb_ep); 667 668 return &req->req; 669} 670 671/** 672 * pxa_ep_free_request - Free usb request 673 * @_ep: usb endpoint 674 * @_req: usb request 675 * 676 * Wrapper around kfree to free _req 677 */ 678static void pxa_ep_free_request(struct usb_ep *_ep, struct usb_request *_req) 679{ 680 struct pxa27x_request *req; 681 682 req = container_of(_req, struct pxa27x_request, req); 683 WARN_ON(!list_empty(&req->queue)); 684 kfree(req); 685} 686 687/** 688 * ep_add_request - add a request to the endpoint's queue 689 * @ep: usb endpoint 690 * @req: usb request 691 * 692 * Context: ep->lock held 693 * 694 * Queues the request in the endpoint's queue, and enables the interrupts 695 * on the endpoint. 696 */ 697static void ep_add_request(struct pxa_ep *ep, struct pxa27x_request *req) 698{ 699 if (unlikely(!req)) 700 return; 701 ep_vdbg(ep, "req:%p, lg=%d, udccsr=0x%03x\n", req, 702 req->req.length, udc_ep_readl(ep, UDCCSR)); 703 704 req->in_use = 1; 705 list_add_tail(&req->queue, &ep->queue); 706 pio_irq_enable(ep); 707} 708 709/** 710 * ep_del_request - removes a request from the endpoint's queue 711 * @ep: usb endpoint 712 * @req: usb request 713 * 714 * Context: ep->lock held 715 * 716 * Unqueue the request from the endpoint's queue. If there are no more requests 717 * on the endpoint, and if it's not the control endpoint, interrupts are 718 * disabled on the endpoint. 719 */ 720static void ep_del_request(struct pxa_ep *ep, struct pxa27x_request *req) 721{ 722 if (unlikely(!req)) 723 return; 724 ep_vdbg(ep, "req:%p, lg=%d, udccsr=0x%03x\n", req, 725 req->req.length, udc_ep_readl(ep, UDCCSR)); 726 727 list_del_init(&req->queue); 728 req->in_use = 0; 729 if (!is_ep0(ep) && list_empty(&ep->queue)) 730 pio_irq_disable(ep); 731} 732 733/** 734 * req_done - Complete an usb request 735 * @ep: pxa physical endpoint 736 * @req: pxa request 737 * @status: usb request status sent to gadget API 738 * @pflags: flags of previous spinlock_irq_save() or NULL if no lock held 739 * 740 * Context: ep->lock held if flags not NULL, else ep->lock released 741 * 742 * Retire a pxa27x usb request. Endpoint must be locked. 743 */ 744static void req_done(struct pxa_ep *ep, struct pxa27x_request *req, int status, 745 unsigned long *pflags) 746{ 747 unsigned long flags; 748 749 ep_del_request(ep, req); 750 if (likely(req->req.status == -EINPROGRESS)) 751 req->req.status = status; 752 else 753 status = req->req.status; 754 755 if (status && status != -ESHUTDOWN) 756 ep_dbg(ep, "complete req %p stat %d len %u/%u\n", 757 &req->req, status, 758 req->req.actual, req->req.length); 759 760 if (pflags) 761 spin_unlock_irqrestore(&ep->lock, *pflags); 762 local_irq_save(flags); 763 req->req.complete(&req->udc_usb_ep->usb_ep, &req->req); 764 local_irq_restore(flags); 765 if (pflags) 766 spin_lock_irqsave(&ep->lock, *pflags); 767} 768 769/** 770 * ep_end_out_req - Ends endpoint OUT request 771 * @ep: physical endpoint 772 * @req: pxa request 773 * @pflags: flags of previous spinlock_irq_save() or NULL if no lock held 774 * 775 * Context: ep->lock held or released (see req_done()) 776 * 777 * Ends endpoint OUT request (completes usb request). 778 */ 779static void ep_end_out_req(struct pxa_ep *ep, struct pxa27x_request *req, 780 unsigned long *pflags) 781{ 782 inc_ep_stats_reqs(ep, !USB_DIR_IN); 783 req_done(ep, req, 0, pflags); 784} 785 786/** 787 * ep0_end_out_req - Ends control endpoint OUT request (ends data stage) 788 * @ep: physical endpoint 789 * @req: pxa request 790 * @pflags: flags of previous spinlock_irq_save() or NULL if no lock held 791 * 792 * Context: ep->lock held or released (see req_done()) 793 * 794 * Ends control endpoint OUT request (completes usb request), and puts 795 * control endpoint into idle state 796 */ 797static void ep0_end_out_req(struct pxa_ep *ep, struct pxa27x_request *req, 798 unsigned long *pflags) 799{ 800 set_ep0state(ep->dev, OUT_STATUS_STAGE); 801 ep_end_out_req(ep, req, pflags); 802 ep0_idle(ep->dev); 803} 804 805/** 806 * ep_end_in_req - Ends endpoint IN request 807 * @ep: physical endpoint 808 * @req: pxa request 809 * @pflags: flags of previous spinlock_irq_save() or NULL if no lock held 810 * 811 * Context: ep->lock held or released (see req_done()) 812 * 813 * Ends endpoint IN request (completes usb request). 814 */ 815static void ep_end_in_req(struct pxa_ep *ep, struct pxa27x_request *req, 816 unsigned long *pflags) 817{ 818 inc_ep_stats_reqs(ep, USB_DIR_IN); 819 req_done(ep, req, 0, pflags); 820} 821 822/** 823 * ep0_end_in_req - Ends control endpoint IN request (ends data stage) 824 * @ep: physical endpoint 825 * @req: pxa request 826 * @pflags: flags of previous spinlock_irq_save() or NULL if no lock held 827 * 828 * Context: ep->lock held or released (see req_done()) 829 * 830 * Ends control endpoint IN request (completes usb request), and puts 831 * control endpoint into status state 832 */ 833static void ep0_end_in_req(struct pxa_ep *ep, struct pxa27x_request *req, 834 unsigned long *pflags) 835{ 836 set_ep0state(ep->dev, IN_STATUS_STAGE); 837 ep_end_in_req(ep, req, pflags); 838} 839 840/** 841 * nuke - Dequeue all requests 842 * @ep: pxa endpoint 843 * @status: usb request status 844 * 845 * Context: ep->lock released 846 * 847 * Dequeues all requests on an endpoint. As a side effect, interrupts will be 848 * disabled on that endpoint (because no more requests). 849 */ 850static void nuke(struct pxa_ep *ep, int status) 851{ 852 struct pxa27x_request *req; 853 unsigned long flags; 854 855 spin_lock_irqsave(&ep->lock, flags); 856 while (!list_empty(&ep->queue)) { 857 req = list_entry(ep->queue.next, struct pxa27x_request, queue); 858 req_done(ep, req, status, &flags); 859 } 860 spin_unlock_irqrestore(&ep->lock, flags); 861} 862 863/** 864 * read_packet - transfer 1 packet from an OUT endpoint into request 865 * @ep: pxa physical endpoint 866 * @req: usb request 867 * 868 * Takes bytes from OUT endpoint and transfers them info the usb request. 869 * If there is less space in request than bytes received in OUT endpoint, 870 * bytes are left in the OUT endpoint. 871 * 872 * Returns how many bytes were actually transferred 873 */ 874static int read_packet(struct pxa_ep *ep, struct pxa27x_request *req) 875{ 876 u32 *buf; 877 int bytes_ep, bufferspace, count, i; 878 879 bytes_ep = ep_count_bytes_remain(ep); 880 bufferspace = req->req.length - req->req.actual; 881 882 buf = (u32 *)(req->req.buf + req->req.actual); 883 prefetchw(buf); 884 885 if (likely(!ep_is_empty(ep))) 886 count = min(bytes_ep, bufferspace); 887 else /* zlp */ 888 count = 0; 889 890 for (i = count; i > 0; i -= 4) 891 *buf++ = udc_ep_readl(ep, UDCDR); 892 req->req.actual += count; 893 894 ep_write_UDCCSR(ep, UDCCSR_PC); 895 896 return count; 897} 898 899/** 900 * write_packet - transfer 1 packet from request into an IN endpoint 901 * @ep: pxa physical endpoint 902 * @req: usb request 903 * @max: max bytes that fit into endpoint 904 * 905 * Takes bytes from usb request, and transfers them into the physical 906 * endpoint. If there are no bytes to transfer, doesn't write anything 907 * to physical endpoint. 908 * 909 * Returns how many bytes were actually transferred. 910 */ 911static int write_packet(struct pxa_ep *ep, struct pxa27x_request *req, 912 unsigned int max) 913{ 914 int length, count, remain, i; 915 u32 *buf; 916 u8 *buf_8; 917 918 buf = (u32 *)(req->req.buf + req->req.actual); 919 prefetch(buf); 920 921 length = min(req->req.length - req->req.actual, max); 922 req->req.actual += length; 923 924 remain = length & 0x3; 925 count = length & ~(0x3); 926 for (i = count; i > 0 ; i -= 4) 927 udc_ep_writel(ep, UDCDR, *buf++); 928 929 buf_8 = (u8 *)buf; 930 for (i = remain; i > 0; i--) 931 udc_ep_writeb(ep, UDCDR, *buf_8++); 932 933 ep_vdbg(ep, "length=%d+%d, udccsr=0x%03x\n", count, remain, 934 udc_ep_readl(ep, UDCCSR)); 935 936 return length; 937} 938 939/** 940 * read_fifo - Transfer packets from OUT endpoint into usb request 941 * @ep: pxa physical endpoint 942 * @req: usb request 943 * 944 * Context: callable when in_interrupt() 945 * 946 * Unload as many packets as possible from the fifo we use for usb OUT 947 * transfers and put them into the request. Caller should have made sure 948 * there's at least one packet ready. 949 * Doesn't complete the request, that's the caller's job 950 * 951 * Returns 1 if the request completed, 0 otherwise 952 */ 953static int read_fifo(struct pxa_ep *ep, struct pxa27x_request *req) 954{ 955 int count, is_short, completed = 0; 956 957 while (epout_has_pkt(ep)) { 958 count = read_packet(ep, req); 959 inc_ep_stats_bytes(ep, count, !USB_DIR_IN); 960 961 is_short = (count < ep->fifo_size); 962 ep_dbg(ep, "read udccsr:%03x, count:%d bytes%s req %p %d/%d\n", 963 udc_ep_readl(ep, UDCCSR), count, is_short ? "/S" : "", 964 &req->req, req->req.actual, req->req.length); 965 966 /* completion */ 967 if (is_short || req->req.actual == req->req.length) { 968 completed = 1; 969 break; 970 } 971 /* finished that packet. the next one may be waiting... */ 972 } 973 return completed; 974} 975 976/** 977 * write_fifo - transfer packets from usb request into an IN endpoint 978 * @ep: pxa physical endpoint 979 * @req: pxa usb request 980 * 981 * Write to an IN endpoint fifo, as many packets as possible. 982 * irqs will use this to write the rest later. 983 * caller guarantees at least one packet buffer is ready (or a zlp). 984 * Doesn't complete the request, that's the caller's job 985 * 986 * Returns 1 if request fully transferred, 0 if partial transfer 987 */ 988static int write_fifo(struct pxa_ep *ep, struct pxa27x_request *req) 989{ 990 unsigned max; 991 int count, is_short, is_last = 0, completed = 0, totcount = 0; 992 u32 udccsr; 993 994 max = ep->fifo_size; 995 do { 996 is_short = 0; 997 998 udccsr = udc_ep_readl(ep, UDCCSR); 999 if (udccsr & UDCCSR_PC) { 1000 ep_vdbg(ep, "Clearing Transmit Complete, udccsr=%x\n", 1001 udccsr); 1002 ep_write_UDCCSR(ep, UDCCSR_PC); 1003 } 1004 if (udccsr & UDCCSR_TRN) { 1005 ep_vdbg(ep, "Clearing Underrun on, udccsr=%x\n", 1006 udccsr); 1007 ep_write_UDCCSR(ep, UDCCSR_TRN); 1008 } 1009 1010 count = write_packet(ep, req, max); 1011 inc_ep_stats_bytes(ep, count, USB_DIR_IN); 1012 totcount += count; 1013 1014 /* last packet is usually short (or a zlp) */ 1015 if (unlikely(count < max)) { 1016 is_last = 1; 1017 is_short = 1; 1018 } else { 1019 if (likely(req->req.length > req->req.actual) 1020 || req->req.zero) 1021 is_last = 0; 1022 else 1023 is_last = 1; 1024 /* interrupt/iso maxpacket may not fill the fifo */ 1025 is_short = unlikely(max < ep->fifo_size); 1026 } 1027 1028 if (is_short) 1029 ep_write_UDCCSR(ep, UDCCSR_SP); 1030 1031 /* requests complete when all IN data is in the FIFO */ 1032 if (is_last) { 1033 completed = 1; 1034 break; 1035 } 1036 } while (!ep_is_full(ep)); 1037 1038 ep_dbg(ep, "wrote count:%d bytes%s%s, left:%d req=%p\n", 1039 totcount, is_last ? "/L" : "", is_short ? "/S" : "", 1040 req->req.length - req->req.actual, &req->req); 1041 1042 return completed; 1043} 1044 1045/** 1046 * read_ep0_fifo - Transfer packets from control endpoint into usb request 1047 * @ep: control endpoint 1048 * @req: pxa usb request 1049 * 1050 * Special ep0 version of the above read_fifo. Reads as many bytes from control 1051 * endpoint as can be read, and stores them into usb request (limited by request 1052 * maximum length). 1053 * 1054 * Returns 0 if usb request only partially filled, 1 if fully filled 1055 */ 1056static int read_ep0_fifo(struct pxa_ep *ep, struct pxa27x_request *req) 1057{ 1058 int count, is_short, completed = 0; 1059 1060 while (epout_has_pkt(ep)) { 1061 count = read_packet(ep, req); 1062 ep_write_UDCCSR(ep, UDCCSR0_OPC); 1063 inc_ep_stats_bytes(ep, count, !USB_DIR_IN); 1064 1065 is_short = (count < ep->fifo_size); 1066 ep_dbg(ep, "read udccsr:%03x, count:%d bytes%s req %p %d/%d\n", 1067 udc_ep_readl(ep, UDCCSR), count, is_short ? "/S" : "", 1068 &req->req, req->req.actual, req->req.length); 1069 1070 if (is_short || req->req.actual >= req->req.length) { 1071 completed = 1; 1072 break; 1073 } 1074 } 1075 1076 return completed; 1077} 1078 1079/** 1080 * write_ep0_fifo - Send a request to control endpoint (ep0 in) 1081 * @ep: control endpoint 1082 * @req: request 1083 * 1084 * Context: callable when in_interrupt() 1085 * 1086 * Sends a request (or a part of the request) to the control endpoint (ep0 in). 1087 * If the request doesn't fit, the remaining part will be sent from irq. 1088 * The request is considered fully written only if either : 1089 * - last write transferred all remaining bytes, but fifo was not fully filled 1090 * - last write was a 0 length write 1091 * 1092 * Returns 1 if request fully written, 0 if request only partially sent 1093 */ 1094static int write_ep0_fifo(struct pxa_ep *ep, struct pxa27x_request *req) 1095{ 1096 unsigned count; 1097 int is_last, is_short; 1098 1099 count = write_packet(ep, req, EP0_FIFO_SIZE); 1100 inc_ep_stats_bytes(ep, count, USB_DIR_IN); 1101 1102 is_short = (count < EP0_FIFO_SIZE); 1103 is_last = ((count == 0) || (count < EP0_FIFO_SIZE)); 1104 1105 /* Sends either a short packet or a 0 length packet */ 1106 if (unlikely(is_short)) 1107 ep_write_UDCCSR(ep, UDCCSR0_IPR); 1108 1109 ep_dbg(ep, "in %d bytes%s%s, %d left, req=%p, udccsr0=0x%03x\n", 1110 count, is_short ? "/S" : "", is_last ? "/L" : "", 1111 req->req.length - req->req.actual, 1112 &req->req, udc_ep_readl(ep, UDCCSR)); 1113 1114 return is_last; 1115} 1116 1117/** 1118 * pxa_ep_queue - Queue a request into an IN endpoint 1119 * @_ep: usb endpoint 1120 * @_req: usb request 1121 * @gfp_flags: flags 1122 * 1123 * Context: normally called when !in_interrupt, but callable when in_interrupt() 1124 * in the special case of ep0 setup : 1125 * (irq->handle_ep0_ctrl_req->gadget_setup->pxa_ep_queue) 1126 * 1127 * Returns 0 if succedeed, error otherwise 1128 */ 1129static int pxa_ep_queue(struct usb_ep *_ep, struct usb_request *_req, 1130 gfp_t gfp_flags) 1131{ 1132 struct udc_usb_ep *udc_usb_ep; 1133 struct pxa_ep *ep; 1134 struct pxa27x_request *req; 1135 struct pxa_udc *dev; 1136 unsigned long flags; 1137 int rc = 0; 1138 int is_first_req; 1139 unsigned length; 1140 int recursion_detected; 1141 1142 req = container_of(_req, struct pxa27x_request, req); 1143 udc_usb_ep = container_of(_ep, struct udc_usb_ep, usb_ep); 1144 1145 if (unlikely(!_req || !_req->complete || !_req->buf)) 1146 return -EINVAL; 1147 1148 if (unlikely(!_ep)) 1149 return -EINVAL; 1150 1151 dev = udc_usb_ep->dev; 1152 ep = udc_usb_ep->pxa_ep; 1153 if (unlikely(!ep)) 1154 return -EINVAL; 1155 1156 dev = ep->dev; 1157 if (unlikely(!dev->driver || dev->gadget.speed == USB_SPEED_UNKNOWN)) { 1158 ep_dbg(ep, "bogus device state\n"); 1159 return -ESHUTDOWN; 1160 } 1161 1162 /* iso is always one packet per request, that's the only way 1163 * we can report per-packet status. that also helps with dma. 1164 */ 1165 if (unlikely(EPXFERTYPE_is_ISO(ep) 1166 && req->req.length > ep->fifo_size)) 1167 return -EMSGSIZE; 1168 1169 spin_lock_irqsave(&ep->lock, flags); 1170 recursion_detected = ep->in_handle_ep; 1171 1172 is_first_req = list_empty(&ep->queue); 1173 ep_dbg(ep, "queue req %p(first=%s), len %d buf %p\n", 1174 _req, is_first_req ? "yes" : "no", 1175 _req->length, _req->buf); 1176 1177 if (!ep->enabled) { 1178 _req->status = -ESHUTDOWN; 1179 rc = -ESHUTDOWN; 1180 goto out_locked; 1181 } 1182 1183 if (req->in_use) { 1184 ep_err(ep, "refusing to queue req %p (already queued)\n", req); 1185 goto out_locked; 1186 } 1187 1188 length = _req->length; 1189 _req->status = -EINPROGRESS; 1190 _req->actual = 0; 1191 1192 ep_add_request(ep, req); 1193 spin_unlock_irqrestore(&ep->lock, flags); 1194 1195 if (is_ep0(ep)) { 1196 switch (dev->ep0state) { 1197 case WAIT_ACK_SET_CONF_INTERF: 1198 if (length == 0) { 1199 ep_end_in_req(ep, req, NULL); 1200 } else { 1201 ep_err(ep, "got a request of %d bytes while" 1202 "in state WAIT_ACK_SET_CONF_INTERF\n", 1203 length); 1204 ep_del_request(ep, req); 1205 rc = -EL2HLT; 1206 } 1207 ep0_idle(ep->dev); 1208 break; 1209 case IN_DATA_STAGE: 1210 if (!ep_is_full(ep)) 1211 if (write_ep0_fifo(ep, req)) 1212 ep0_end_in_req(ep, req, NULL); 1213 break; 1214 case OUT_DATA_STAGE: 1215 if ((length == 0) || !epout_has_pkt(ep)) 1216 if (read_ep0_fifo(ep, req)) 1217 ep0_end_out_req(ep, req, NULL); 1218 break; 1219 default: 1220 ep_err(ep, "odd state %s to send me a request\n", 1221 EP0_STNAME(ep->dev)); 1222 ep_del_request(ep, req); 1223 rc = -EL2HLT; 1224 break; 1225 } 1226 } else { 1227 if (!recursion_detected) 1228 handle_ep(ep); 1229 } 1230 1231out: 1232 return rc; 1233out_locked: 1234 spin_unlock_irqrestore(&ep->lock, flags); 1235 goto out; 1236} 1237 1238/** 1239 * pxa_ep_dequeue - Dequeue one request 1240 * @_ep: usb endpoint 1241 * @_req: usb request 1242 * 1243 * Return 0 if no error, -EINVAL or -ECONNRESET otherwise 1244 */ 1245static int pxa_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req) 1246{ 1247 struct pxa_ep *ep; 1248 struct udc_usb_ep *udc_usb_ep; 1249 struct pxa27x_request *req; 1250 unsigned long flags; 1251 int rc = -EINVAL; 1252 1253 if (!_ep) 1254 return rc; 1255 udc_usb_ep = container_of(_ep, struct udc_usb_ep, usb_ep); 1256 ep = udc_usb_ep->pxa_ep; 1257 if (!ep || is_ep0(ep)) 1258 return rc; 1259 1260 spin_lock_irqsave(&ep->lock, flags); 1261 1262 /* make sure it's actually queued on this endpoint */ 1263 list_for_each_entry(req, &ep->queue, queue) { 1264 if (&req->req == _req) { 1265 rc = 0; 1266 break; 1267 } 1268 } 1269 1270 spin_unlock_irqrestore(&ep->lock, flags); 1271 if (!rc) 1272 req_done(ep, req, -ECONNRESET, NULL); 1273 return rc; 1274} 1275 1276/** 1277 * pxa_ep_set_halt - Halts operations on one endpoint 1278 * @_ep: usb endpoint 1279 * @value: 1280 * 1281 * Returns 0 if no error, -EINVAL, -EROFS, -EAGAIN otherwise 1282 */ 1283static int pxa_ep_set_halt(struct usb_ep *_ep, int value) 1284{ 1285 struct pxa_ep *ep; 1286 struct udc_usb_ep *udc_usb_ep; 1287 unsigned long flags; 1288 int rc; 1289 1290 1291 if (!_ep) 1292 return -EINVAL; 1293 udc_usb_ep = container_of(_ep, struct udc_usb_ep, usb_ep); 1294 ep = udc_usb_ep->pxa_ep; 1295 if (!ep || is_ep0(ep)) 1296 return -EINVAL; 1297 1298 if (value == 0) { 1299 /* 1300 * This path (reset toggle+halt) is needed to implement 1301 * SET_INTERFACE on normal hardware. but it can't be 1302 * done from software on the PXA UDC, and the hardware 1303 * forgets to do it as part of SET_INTERFACE automagic. 1304 */ 1305 ep_dbg(ep, "only host can clear halt\n"); 1306 return -EROFS; 1307 } 1308 1309 spin_lock_irqsave(&ep->lock, flags); 1310 1311 rc = -EAGAIN; 1312 if (ep->dir_in && (ep_is_full(ep) || !list_empty(&ep->queue))) 1313 goto out; 1314 1315 /* FST, FEF bits are the same for control and non control endpoints */ 1316 rc = 0; 1317 ep_write_UDCCSR(ep, UDCCSR_FST | UDCCSR_FEF); 1318 if (is_ep0(ep)) 1319 set_ep0state(ep->dev, STALL); 1320 1321out: 1322 spin_unlock_irqrestore(&ep->lock, flags); 1323 return rc; 1324} 1325 1326/** 1327 * pxa_ep_fifo_status - Get how many bytes in physical endpoint 1328 * @_ep: usb endpoint 1329 * 1330 * Returns number of bytes in OUT fifos. Broken for IN fifos. 1331 */ 1332static int pxa_ep_fifo_status(struct usb_ep *_ep) 1333{ 1334 struct pxa_ep *ep; 1335 struct udc_usb_ep *udc_usb_ep; 1336 1337 if (!_ep) 1338 return -ENODEV; 1339 udc_usb_ep = container_of(_ep, struct udc_usb_ep, usb_ep); 1340 ep = udc_usb_ep->pxa_ep; 1341 if (!ep || is_ep0(ep)) 1342 return -ENODEV; 1343 1344 if (ep->dir_in) 1345 return -EOPNOTSUPP; 1346 if (ep->dev->gadget.speed == USB_SPEED_UNKNOWN || ep_is_empty(ep)) 1347 return 0; 1348 else 1349 return ep_count_bytes_remain(ep) + 1; 1350} 1351 1352/** 1353 * pxa_ep_fifo_flush - Flushes one endpoint 1354 * @_ep: usb endpoint 1355 * 1356 * Discards all data in one endpoint(IN or OUT), except control endpoint. 1357 */ 1358static void pxa_ep_fifo_flush(struct usb_ep *_ep) 1359{ 1360 struct pxa_ep *ep; 1361 struct udc_usb_ep *udc_usb_ep; 1362 unsigned long flags; 1363 1364 if (!_ep) 1365 return; 1366 udc_usb_ep = container_of(_ep, struct udc_usb_ep, usb_ep); 1367 ep = udc_usb_ep->pxa_ep; 1368 if (!ep || is_ep0(ep)) 1369 return; 1370 1371 spin_lock_irqsave(&ep->lock, flags); 1372 1373 if (unlikely(!list_empty(&ep->queue))) 1374 ep_dbg(ep, "called while queue list not empty\n"); 1375 ep_dbg(ep, "called\n"); 1376 1377 /* for OUT, just read and discard the FIFO contents. */ 1378 if (!ep->dir_in) { 1379 while (!ep_is_empty(ep)) 1380 udc_ep_readl(ep, UDCDR); 1381 } else { 1382 /* most IN status is the same, but ISO can't stall */ 1383 ep_write_UDCCSR(ep, 1384 UDCCSR_PC | UDCCSR_FEF | UDCCSR_TRN 1385 | (EPXFERTYPE_is_ISO(ep) ? 0 : UDCCSR_SST)); 1386 } 1387 1388 spin_unlock_irqrestore(&ep->lock, flags); 1389} 1390 1391/** 1392 * pxa_ep_enable - Enables usb endpoint 1393 * @_ep: usb endpoint 1394 * @desc: usb endpoint descriptor 1395 * 1396 * Nothing much to do here, as ep configuration is done once and for all 1397 * before udc is enabled. After udc enable, no physical endpoint configuration 1398 * can be changed. 1399 * Function makes sanity checks and flushes the endpoint. 1400 */ 1401static int pxa_ep_enable(struct usb_ep *_ep, 1402 const struct usb_endpoint_descriptor *desc) 1403{ 1404 struct pxa_ep *ep; 1405 struct udc_usb_ep *udc_usb_ep; 1406 struct pxa_udc *udc; 1407 1408 if (!_ep || !desc) 1409 return -EINVAL; 1410 1411 udc_usb_ep = container_of(_ep, struct udc_usb_ep, usb_ep); 1412 if (udc_usb_ep->pxa_ep) { 1413 ep = udc_usb_ep->pxa_ep; 1414 ep_warn(ep, "usb_ep %s already enabled, doing nothing\n", 1415 _ep->name); 1416 } else { 1417 ep = find_pxa_ep(udc_usb_ep->dev, udc_usb_ep); 1418 } 1419 1420 if (!ep || is_ep0(ep)) { 1421 dev_err(udc_usb_ep->dev->dev, 1422 "unable to match pxa_ep for ep %s\n", 1423 _ep->name); 1424 return -EINVAL; 1425 } 1426 1427 if ((desc->bDescriptorType != USB_DT_ENDPOINT) 1428 || (ep->type != usb_endpoint_type(desc))) { 1429 ep_err(ep, "type mismatch\n"); 1430 return -EINVAL; 1431 } 1432 1433 if (ep->fifo_size < usb_endpoint_maxp(desc)) { 1434 ep_err(ep, "bad maxpacket\n"); 1435 return -ERANGE; 1436 } 1437 1438 udc_usb_ep->pxa_ep = ep; 1439 udc = ep->dev; 1440 1441 if (!udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) { 1442 ep_err(ep, "bogus device state\n"); 1443 return -ESHUTDOWN; 1444 } 1445 1446 ep->enabled = 1; 1447 1448 /* flush fifo (mostly for OUT buffers) */ 1449 pxa_ep_fifo_flush(_ep); 1450 1451 ep_dbg(ep, "enabled\n"); 1452 return 0; 1453} 1454 1455/** 1456 * pxa_ep_disable - Disable usb endpoint 1457 * @_ep: usb endpoint 1458 * 1459 * Same as for pxa_ep_enable, no physical endpoint configuration can be 1460 * changed. 1461 * Function flushes the endpoint and related requests. 1462 */ 1463static int pxa_ep_disable(struct usb_ep *_ep) 1464{ 1465 struct pxa_ep *ep; 1466 struct udc_usb_ep *udc_usb_ep; 1467 1468 if (!_ep) 1469 return -EINVAL; 1470 1471 udc_usb_ep = container_of(_ep, struct udc_usb_ep, usb_ep); 1472 ep = udc_usb_ep->pxa_ep; 1473 if (!ep || is_ep0(ep) || !list_empty(&ep->queue)) 1474 return -EINVAL; 1475 1476 ep->enabled = 0; 1477 nuke(ep, -ESHUTDOWN); 1478 1479 pxa_ep_fifo_flush(_ep); 1480 udc_usb_ep->pxa_ep = NULL; 1481 1482 ep_dbg(ep, "disabled\n"); 1483 return 0; 1484} 1485 1486static struct usb_ep_ops pxa_ep_ops = { 1487 .enable = pxa_ep_enable, 1488 .disable = pxa_ep_disable, 1489 1490 .alloc_request = pxa_ep_alloc_request, 1491 .free_request = pxa_ep_free_request, 1492 1493 .queue = pxa_ep_queue, 1494 .dequeue = pxa_ep_dequeue, 1495 1496 .set_halt = pxa_ep_set_halt, 1497 .fifo_status = pxa_ep_fifo_status, 1498 .fifo_flush = pxa_ep_fifo_flush, 1499}; 1500 1501/** 1502 * dplus_pullup - Connect or disconnect pullup resistor to D+ pin 1503 * @udc: udc device 1504 * @on: 0 if disconnect pullup resistor, 1 otherwise 1505 * Context: any 1506 * 1507 * Handle D+ pullup resistor, make the device visible to the usb bus, and 1508 * declare it as a full speed usb device 1509 */ 1510static void dplus_pullup(struct pxa_udc *udc, int on) 1511{ 1512 if (on) { 1513 if (gpio_is_valid(udc->mach->gpio_pullup)) 1514 gpio_set_value(udc->mach->gpio_pullup, 1515 !udc->mach->gpio_pullup_inverted); 1516 if (udc->mach->udc_command) 1517 udc->mach->udc_command(PXA2XX_UDC_CMD_CONNECT); 1518 } else { 1519 if (gpio_is_valid(udc->mach->gpio_pullup)) 1520 gpio_set_value(udc->mach->gpio_pullup, 1521 udc->mach->gpio_pullup_inverted); 1522 if (udc->mach->udc_command) 1523 udc->mach->udc_command(PXA2XX_UDC_CMD_DISCONNECT); 1524 } 1525 udc->pullup_on = on; 1526} 1527 1528/** 1529 * pxa_udc_get_frame - Returns usb frame number 1530 * @_gadget: usb gadget 1531 */ 1532static int pxa_udc_get_frame(struct usb_gadget *_gadget) 1533{ 1534 struct pxa_udc *udc = to_gadget_udc(_gadget); 1535 1536 return (udc_readl(udc, UDCFNR) & 0x7ff); 1537} 1538 1539/** 1540 * pxa_udc_wakeup - Force udc device out of suspend 1541 * @_gadget: usb gadget 1542 * 1543 * Returns 0 if successful, error code otherwise 1544 */ 1545static int pxa_udc_wakeup(struct usb_gadget *_gadget) 1546{ 1547 struct pxa_udc *udc = to_gadget_udc(_gadget); 1548 1549 /* host may not have enabled remote wakeup */ 1550 if ((udc_readl(udc, UDCCR) & UDCCR_DWRE) == 0) 1551 return -EHOSTUNREACH; 1552 udc_set_mask_UDCCR(udc, UDCCR_UDR); 1553 return 0; 1554} 1555 1556static void udc_enable(struct pxa_udc *udc); 1557static void udc_disable(struct pxa_udc *udc); 1558 1559/** 1560 * should_enable_udc - Tells if UDC should be enabled 1561 * @udc: udc device 1562 * Context: any 1563 * 1564 * The UDC should be enabled if : 1565 1566 * - the pullup resistor is connected 1567 * - and a gadget driver is bound 1568 * - and vbus is sensed (or no vbus sense is available) 1569 * 1570 * Returns 1 if UDC should be enabled, 0 otherwise 1571 */ 1572static int should_enable_udc(struct pxa_udc *udc) 1573{ 1574 int put_on; 1575 1576 put_on = ((udc->pullup_on) && (udc->driver)); 1577 put_on &= ((udc->vbus_sensed) || (IS_ERR_OR_NULL(udc->transceiver))); 1578 return put_on; 1579} 1580 1581/** 1582 * should_disable_udc - Tells if UDC should be disabled 1583 * @udc: udc device 1584 * Context: any 1585 * 1586 * The UDC should be disabled if : 1587 * - the pullup resistor is not connected 1588 * - or no gadget driver is bound 1589 * - or no vbus is sensed (when vbus sesing is available) 1590 * 1591 * Returns 1 if UDC should be disabled 1592 */ 1593static int should_disable_udc(struct pxa_udc *udc) 1594{ 1595 int put_off; 1596 1597 put_off = ((!udc->pullup_on) || (!udc->driver)); 1598 put_off |= ((!udc->vbus_sensed) && (!IS_ERR_OR_NULL(udc->transceiver))); 1599 return put_off; 1600} 1601 1602/** 1603 * pxa_udc_pullup - Offer manual D+ pullup control 1604 * @_gadget: usb gadget using the control 1605 * @is_active: 0 if disconnect, else connect D+ pullup resistor 1606 * Context: !in_interrupt() 1607 * 1608 * Returns 0 if OK, -EOPNOTSUPP if udc driver doesn't handle D+ pullup 1609 */ 1610static int pxa_udc_pullup(struct usb_gadget *_gadget, int is_active) 1611{ 1612 struct pxa_udc *udc = to_gadget_udc(_gadget); 1613 1614 if (!gpio_is_valid(udc->mach->gpio_pullup) && !udc->mach->udc_command) 1615 return -EOPNOTSUPP; 1616 1617 dplus_pullup(udc, is_active); 1618 1619 if (should_enable_udc(udc)) 1620 udc_enable(udc); 1621 if (should_disable_udc(udc)) 1622 udc_disable(udc); 1623 return 0; 1624} 1625 1626static void udc_enable(struct pxa_udc *udc); 1627static void udc_disable(struct pxa_udc *udc); 1628 1629/** 1630 * pxa_udc_vbus_session - Called by external transceiver to enable/disable udc 1631 * @_gadget: usb gadget 1632 * @is_active: 0 if should disable the udc, 1 if should enable 1633 * 1634 * Enables the udc, and optionnaly activates D+ pullup resistor. Or disables the 1635 * udc, and deactivates D+ pullup resistor. 1636 * 1637 * Returns 0 1638 */ 1639static int pxa_udc_vbus_session(struct usb_gadget *_gadget, int is_active) 1640{ 1641 struct pxa_udc *udc = to_gadget_udc(_gadget); 1642 1643 udc->vbus_sensed = is_active; 1644 if (should_enable_udc(udc)) 1645 udc_enable(udc); 1646 if (should_disable_udc(udc)) 1647 udc_disable(udc); 1648 1649 return 0; 1650} 1651 1652/** 1653 * pxa_udc_vbus_draw - Called by gadget driver after SET_CONFIGURATION completed 1654 * @_gadget: usb gadget 1655 * @mA: current drawn 1656 * 1657 * Context: !in_interrupt() 1658 * 1659 * Called after a configuration was chosen by a USB host, to inform how much 1660 * current can be drawn by the device from VBus line. 1661 * 1662 * Returns 0 or -EOPNOTSUPP if no transceiver is handling the udc 1663 */ 1664static int pxa_udc_vbus_draw(struct usb_gadget *_gadget, unsigned mA) 1665{ 1666 struct pxa_udc *udc; 1667 1668 udc = to_gadget_udc(_gadget); 1669 if (!IS_ERR_OR_NULL(udc->transceiver)) 1670 return usb_phy_set_power(udc->transceiver, mA); 1671 return -EOPNOTSUPP; 1672} 1673 1674static int pxa27x_udc_start(struct usb_gadget *g, 1675 struct usb_gadget_driver *driver); 1676static int pxa27x_udc_stop(struct usb_gadget *g, 1677 struct usb_gadget_driver *driver); 1678 1679static const struct usb_gadget_ops pxa_udc_ops = { 1680 .get_frame = pxa_udc_get_frame, 1681 .wakeup = pxa_udc_wakeup, 1682 .pullup = pxa_udc_pullup, 1683 .vbus_session = pxa_udc_vbus_session, 1684 .vbus_draw = pxa_udc_vbus_draw, 1685 .udc_start = pxa27x_udc_start, 1686 .udc_stop = pxa27x_udc_stop, 1687}; 1688 1689/** 1690 * udc_disable - disable udc device controller 1691 * @udc: udc device 1692 * Context: any 1693 * 1694 * Disables the udc device : disables clocks, udc interrupts, control endpoint 1695 * interrupts. 1696 */ 1697static void udc_disable(struct pxa_udc *udc) 1698{ 1699 if (!udc->enabled) 1700 return; 1701 1702 udc_writel(udc, UDCICR0, 0); 1703 udc_writel(udc, UDCICR1, 0); 1704 1705 udc_clear_mask_UDCCR(udc, UDCCR_UDE); 1706 clk_disable(udc->clk); 1707 1708 ep0_idle(udc); 1709 udc->gadget.speed = USB_SPEED_UNKNOWN; 1710 1711 udc->enabled = 0; 1712} 1713 1714/** 1715 * udc_init_data - Initialize udc device data structures 1716 * @dev: udc device 1717 * 1718 * Initializes gadget endpoint list, endpoints locks. No action is taken 1719 * on the hardware. 1720 */ 1721static __init void udc_init_data(struct pxa_udc *dev) 1722{ 1723 int i; 1724 struct pxa_ep *ep; 1725 1726 /* device/ep0 records init */ 1727 INIT_LIST_HEAD(&dev->gadget.ep_list); 1728 INIT_LIST_HEAD(&dev->gadget.ep0->ep_list); 1729 dev->udc_usb_ep[0].pxa_ep = &dev->pxa_ep[0]; 1730 ep0_idle(dev); 1731 1732 /* PXA endpoints init */ 1733 for (i = 0; i < NR_PXA_ENDPOINTS; i++) { 1734 ep = &dev->pxa_ep[i]; 1735 1736 ep->enabled = is_ep0(ep); 1737 INIT_LIST_HEAD(&ep->queue); 1738 spin_lock_init(&ep->lock); 1739 } 1740 1741 /* USB endpoints init */ 1742 for (i = 1; i < NR_USB_ENDPOINTS; i++) 1743 list_add_tail(&dev->udc_usb_ep[i].usb_ep.ep_list, 1744 &dev->gadget.ep_list); 1745} 1746 1747/** 1748 * udc_enable - Enables the udc device 1749 * @dev: udc device 1750 * 1751 * Enables the udc device : enables clocks, udc interrupts, control endpoint 1752 * interrupts, sets usb as UDC client and setups endpoints. 1753 */ 1754static void udc_enable(struct pxa_udc *udc) 1755{ 1756 if (udc->enabled) 1757 return; 1758 1759 udc_writel(udc, UDCICR0, 0); 1760 udc_writel(udc, UDCICR1, 0); 1761 udc_clear_mask_UDCCR(udc, UDCCR_UDE); 1762 1763 clk_enable(udc->clk); 1764 1765 ep0_idle(udc); 1766 udc->gadget.speed = USB_SPEED_FULL; 1767 memset(&udc->stats, 0, sizeof(udc->stats)); 1768 1769 udc_set_mask_UDCCR(udc, UDCCR_UDE); 1770 ep_write_UDCCSR(&udc->pxa_ep[0], UDCCSR0_ACM); 1771 udelay(2); 1772 if (udc_readl(udc, UDCCR) & UDCCR_EMCE) 1773 dev_err(udc->dev, "Configuration errors, udc disabled\n"); 1774 1775 /* 1776 * Caller must be able to sleep in order to cope with startup transients 1777 */ 1778 msleep(100); 1779 1780 /* enable suspend/resume and reset irqs */ 1781 udc_writel(udc, UDCICR1, 1782 UDCICR1_IECC | UDCICR1_IERU 1783 | UDCICR1_IESU | UDCICR1_IERS); 1784 1785 /* enable ep0 irqs */ 1786 pio_irq_enable(&udc->pxa_ep[0]); 1787 1788 udc->enabled = 1; 1789} 1790 1791/** 1792 * pxa27x_start - Register gadget driver 1793 * @driver: gadget driver 1794 * @bind: bind function 1795 * 1796 * When a driver is successfully registered, it will receive control requests 1797 * including set_configuration(), which enables non-control requests. Then 1798 * usb traffic follows until a disconnect is reported. Then a host may connect 1799 * again, or the driver might get unbound. 1800 * 1801 * Note that the udc is not automatically enabled. Check function 1802 * should_enable_udc(). 1803 * 1804 * Returns 0 if no error, -EINVAL, -ENODEV, -EBUSY otherwise 1805 */ 1806static int pxa27x_udc_start(struct usb_gadget *g, 1807 struct usb_gadget_driver *driver) 1808{ 1809 struct pxa_udc *udc = to_pxa(g); 1810 int retval; 1811 1812 /* first hook up the driver ... */ 1813 udc->driver = driver; 1814 udc->gadget.dev.driver = &driver->driver; 1815 dplus_pullup(udc, 1); 1816 1817 if (!IS_ERR_OR_NULL(udc->transceiver)) { 1818 retval = otg_set_peripheral(udc->transceiver->otg, 1819 &udc->gadget); 1820 if (retval) { 1821 dev_err(udc->dev, "can't bind to transceiver\n"); 1822 goto fail; 1823 } 1824 } 1825 1826 if (should_enable_udc(udc)) 1827 udc_enable(udc); 1828 return 0; 1829 1830fail: 1831 udc->driver = NULL; 1832 udc->gadget.dev.driver = NULL; 1833 return retval; 1834} 1835 1836/** 1837 * stop_activity - Stops udc endpoints 1838 * @udc: udc device 1839 * @driver: gadget driver 1840 * 1841 * Disables all udc endpoints (even control endpoint), report disconnect to 1842 * the gadget user. 1843 */ 1844static void stop_activity(struct pxa_udc *udc, struct usb_gadget_driver *driver) 1845{ 1846 int i; 1847 1848 /* don't disconnect drivers more than once */ 1849 if (udc->gadget.speed == USB_SPEED_UNKNOWN) 1850 driver = NULL; 1851 udc->gadget.speed = USB_SPEED_UNKNOWN; 1852 1853 for (i = 0; i < NR_USB_ENDPOINTS; i++) 1854 pxa_ep_disable(&udc->udc_usb_ep[i].usb_ep); 1855} 1856 1857/** 1858 * pxa27x_udc_stop - Unregister the gadget driver 1859 * @driver: gadget driver 1860 * 1861 * Returns 0 if no error, -ENODEV, -EINVAL otherwise 1862 */ 1863static int pxa27x_udc_stop(struct usb_gadget *g, 1864 struct usb_gadget_driver *driver) 1865{ 1866 struct pxa_udc *udc = to_pxa(g); 1867 1868 stop_activity(udc, driver); 1869 udc_disable(udc); 1870 dplus_pullup(udc, 0); 1871 1872 udc->driver = NULL; 1873 1874 1875 if (!IS_ERR_OR_NULL(udc->transceiver)) 1876 return otg_set_peripheral(udc->transceiver->otg, NULL); 1877 return 0; 1878} 1879 1880/** 1881 * handle_ep0_ctrl_req - handle control endpoint control request 1882 * @udc: udc device 1883 * @req: control request 1884 */ 1885static void handle_ep0_ctrl_req(struct pxa_udc *udc, 1886 struct pxa27x_request *req) 1887{ 1888 struct pxa_ep *ep = &udc->pxa_ep[0]; 1889 union { 1890 struct usb_ctrlrequest r; 1891 u32 word[2]; 1892 } u; 1893 int i; 1894 int have_extrabytes = 0; 1895 unsigned long flags; 1896 1897 nuke(ep, -EPROTO); 1898 spin_lock_irqsave(&ep->lock, flags); 1899 1900 /* 1901 * In the PXA320 manual, in the section about Back-to-Back setup 1902 * packets, it describes this situation. The solution is to set OPC to 1903 * get rid of the status packet, and then continue with the setup 1904 * packet. Generalize to pxa27x CPUs. 1905 */ 1906 if (epout_has_pkt(ep) && (ep_count_bytes_remain(ep) == 0)) 1907 ep_write_UDCCSR(ep, UDCCSR0_OPC); 1908 1909 /* read SETUP packet */ 1910 for (i = 0; i < 2; i++) { 1911 if (unlikely(ep_is_empty(ep))) 1912 goto stall; 1913 u.word[i] = udc_ep_readl(ep, UDCDR); 1914 } 1915 1916 have_extrabytes = !ep_is_empty(ep); 1917 while (!ep_is_empty(ep)) { 1918 i = udc_ep_readl(ep, UDCDR); 1919 ep_err(ep, "wrong to have extra bytes for setup : 0x%08x\n", i); 1920 } 1921 1922 ep_dbg(ep, "SETUP %02x.%02x v%04x i%04x l%04x\n", 1923 u.r.bRequestType, u.r.bRequest, 1924 le16_to_cpu(u.r.wValue), le16_to_cpu(u.r.wIndex), 1925 le16_to_cpu(u.r.wLength)); 1926 if (unlikely(have_extrabytes)) 1927 goto stall; 1928 1929 if (u.r.bRequestType & USB_DIR_IN) 1930 set_ep0state(udc, IN_DATA_STAGE); 1931 else 1932 set_ep0state(udc, OUT_DATA_STAGE); 1933 1934 /* Tell UDC to enter Data Stage */ 1935 ep_write_UDCCSR(ep, UDCCSR0_SA | UDCCSR0_OPC); 1936 1937 spin_unlock_irqrestore(&ep->lock, flags); 1938 i = udc->driver->setup(&udc->gadget, &u.r); 1939 spin_lock_irqsave(&ep->lock, flags); 1940 if (i < 0) 1941 goto stall; 1942out: 1943 spin_unlock_irqrestore(&ep->lock, flags); 1944 return; 1945stall: 1946 ep_dbg(ep, "protocol STALL, udccsr0=%03x err %d\n", 1947 udc_ep_readl(ep, UDCCSR), i); 1948 ep_write_UDCCSR(ep, UDCCSR0_FST | UDCCSR0_FTF); 1949 set_ep0state(udc, STALL); 1950 goto out; 1951} 1952 1953/** 1954 * handle_ep0 - Handle control endpoint data transfers 1955 * @udc: udc device 1956 * @fifo_irq: 1 if triggered by fifo service type irq 1957 * @opc_irq: 1 if triggered by output packet complete type irq 1958 * 1959 * Context : when in_interrupt() or with ep->lock held 1960 * 1961 * Tries to transfer all pending request data into the endpoint and/or 1962 * transfer all pending data in the endpoint into usb requests. 1963 * Handles states of ep0 automata. 1964 * 1965 * PXA27x hardware handles several standard usb control requests without 1966 * driver notification. The requests fully handled by hardware are : 1967 * SET_ADDRESS, SET_FEATURE, CLEAR_FEATURE, GET_CONFIGURATION, GET_INTERFACE, 1968 * GET_STATUS 1969 * The requests handled by hardware, but with irq notification are : 1970 * SYNCH_FRAME, SET_CONFIGURATION, SET_INTERFACE 1971 * The remaining standard requests really handled by handle_ep0 are : 1972 * GET_DESCRIPTOR, SET_DESCRIPTOR, specific requests. 1973 * Requests standardized outside of USB 2.0 chapter 9 are handled more 1974 * uniformly, by gadget drivers. 1975 * 1976 * The control endpoint state machine is _not_ USB spec compliant, it's even 1977 * hardly compliant with Intel PXA270 developers guide. 1978 * The key points which inferred this state machine are : 1979 * - on every setup token, bit UDCCSR0_SA is raised and held until cleared by 1980 * software. 1981 * - on every OUT packet received, UDCCSR0_OPC is raised and held until 1982 * cleared by software. 1983 * - clearing UDCCSR0_OPC always flushes ep0. If in setup stage, never do it 1984 * before reading ep0. 1985 * This is true only for PXA27x. This is not true anymore for PXA3xx family 1986 * (check Back-to-Back setup packet in developers guide). 1987 * - irq can be called on a "packet complete" event (opc_irq=1), while 1988 * UDCCSR0_OPC is not yet raised (delta can be as big as 100ms 1989 * from experimentation). 1990 * - as UDCCSR0_SA can be activated while in irq handling, and clearing 1991 * UDCCSR0_OPC would flush the setup data, we almost never clear UDCCSR0_OPC 1992 * => we never actually read the "status stage" packet of an IN data stage 1993 * => this is not documented in Intel documentation 1994 * - hardware as no idea of STATUS STAGE, it only handle SETUP STAGE and DATA 1995 * STAGE. The driver add STATUS STAGE to send last zero length packet in 1996 * OUT_STATUS_STAGE. 1997 * - special attention was needed for IN_STATUS_STAGE. If a packet complete 1998 * event is detected, we terminate the status stage without ackowledging the 1999 * packet (not to risk to loose a potential SETUP packet) 2000 */ 2001static void handle_ep0(struct pxa_udc *udc, int fifo_irq, int opc_irq) 2002{ 2003 u32 udccsr0; 2004 struct pxa_ep *ep = &udc->pxa_ep[0]; 2005 struct pxa27x_request *req = NULL; 2006 int completed = 0; 2007 2008 if (!list_empty(&ep->queue)) 2009 req = list_entry(ep->queue.next, struct pxa27x_request, queue); 2010 2011 udccsr0 = udc_ep_readl(ep, UDCCSR); 2012 ep_dbg(ep, "state=%s, req=%p, udccsr0=0x%03x, udcbcr=%d, irq_msk=%x\n", 2013 EP0_STNAME(udc), req, udccsr0, udc_ep_readl(ep, UDCBCR), 2014 (fifo_irq << 1 | opc_irq)); 2015 2016 if (udccsr0 & UDCCSR0_SST) { 2017 ep_dbg(ep, "clearing stall status\n"); 2018 nuke(ep, -EPIPE); 2019 ep_write_UDCCSR(ep, UDCCSR0_SST); 2020 ep0_idle(udc); 2021 } 2022 2023 if (udccsr0 & UDCCSR0_SA) { 2024 nuke(ep, 0); 2025 set_ep0state(udc, SETUP_STAGE); 2026 } 2027 2028 switch (udc->ep0state) { 2029 case WAIT_FOR_SETUP: 2030 /* 2031 * Hardware bug : beware, we cannot clear OPC, since we would 2032 * miss a potential OPC irq for a setup packet. 2033 * So, we only do ... nothing, and hope for a next irq with 2034 * UDCCSR0_SA set. 2035 */ 2036 break; 2037 case SETUP_STAGE: 2038 udccsr0 &= UDCCSR0_CTRL_REQ_MASK; 2039 if (likely(udccsr0 == UDCCSR0_CTRL_REQ_MASK)) 2040 handle_ep0_ctrl_req(udc, req); 2041 break; 2042 case IN_DATA_STAGE: /* GET_DESCRIPTOR */ 2043 if (epout_has_pkt(ep)) 2044 ep_write_UDCCSR(ep, UDCCSR0_OPC); 2045 if (req && !ep_is_full(ep)) 2046 completed = write_ep0_fifo(ep, req); 2047 if (completed) 2048 ep0_end_in_req(ep, req, NULL); 2049 break; 2050 case OUT_DATA_STAGE: /* SET_DESCRIPTOR */ 2051 if (epout_has_pkt(ep) && req) 2052 completed = read_ep0_fifo(ep, req); 2053 if (completed) 2054 ep0_end_out_req(ep, req, NULL); 2055 break; 2056 case STALL: 2057 ep_write_UDCCSR(ep, UDCCSR0_FST); 2058 break; 2059 case IN_STATUS_STAGE: 2060 /* 2061 * Hardware bug : beware, we cannot clear OPC, since we would 2062 * miss a potential PC irq for a setup packet. 2063 * So, we only put the ep0 into WAIT_FOR_SETUP state. 2064 */ 2065 if (opc_irq) 2066 ep0_idle(udc); 2067 break; 2068 case OUT_STATUS_STAGE: 2069 case WAIT_ACK_SET_CONF_INTERF: 2070 ep_warn(ep, "should never get in %s state here!!!\n", 2071 EP0_STNAME(ep->dev)); 2072 ep0_idle(udc); 2073 break; 2074 } 2075} 2076 2077/** 2078 * handle_ep - Handle endpoint data tranfers 2079 * @ep: pxa physical endpoint 2080 * 2081 * Tries to transfer all pending request data into the endpoint and/or 2082 * transfer all pending data in the endpoint into usb requests. 2083 * 2084 * Is always called when in_interrupt() and with ep->lock released. 2085 */ 2086static void handle_ep(struct pxa_ep *ep) 2087{ 2088 struct pxa27x_request *req; 2089 int completed; 2090 u32 udccsr; 2091 int is_in = ep->dir_in; 2092 int loop = 0; 2093 unsigned long flags; 2094 2095 spin_lock_irqsave(&ep->lock, flags); 2096 if (ep->in_handle_ep) 2097 goto recursion_detected; 2098 ep->in_handle_ep = 1; 2099 2100 do { 2101 completed = 0; 2102 udccsr = udc_ep_readl(ep, UDCCSR); 2103 2104 if (likely(!list_empty(&ep->queue))) 2105 req = list_entry(ep->queue.next, 2106 struct pxa27x_request, queue); 2107 else 2108 req = NULL; 2109 2110 ep_dbg(ep, "req:%p, udccsr 0x%03x loop=%d\n", 2111 req, udccsr, loop++); 2112 2113 if (unlikely(udccsr & (UDCCSR_SST | UDCCSR_TRN))) 2114 udc_ep_writel(ep, UDCCSR, 2115 udccsr & (UDCCSR_SST | UDCCSR_TRN)); 2116 if (!req) 2117 break; 2118 2119 if (unlikely(is_in)) { 2120 if (likely(!ep_is_full(ep))) 2121 completed = write_fifo(ep, req); 2122 } else { 2123 if (likely(epout_has_pkt(ep))) 2124 completed = read_fifo(ep, req); 2125 } 2126 2127 if (completed) { 2128 if (is_in) 2129 ep_end_in_req(ep, req, &flags); 2130 else 2131 ep_end_out_req(ep, req, &flags); 2132 } 2133 } while (completed); 2134 2135 ep->in_handle_ep = 0; 2136recursion_detected: 2137 spin_unlock_irqrestore(&ep->lock, flags); 2138} 2139 2140/** 2141 * pxa27x_change_configuration - Handle SET_CONF usb request notification 2142 * @udc: udc device 2143 * @config: usb configuration 2144 * 2145 * Post the request to upper level. 2146 * Don't use any pxa specific harware configuration capabilities 2147 */ 2148static void pxa27x_change_configuration(struct pxa_udc *udc, int config) 2149{ 2150 struct usb_ctrlrequest req ; 2151 2152 dev_dbg(udc->dev, "config=%d\n", config); 2153 2154 udc->config = config; 2155 udc->last_interface = 0; 2156 udc->last_alternate = 0; 2157 2158 req.bRequestType = 0; 2159 req.bRequest = USB_REQ_SET_CONFIGURATION; 2160 req.wValue = config; 2161 req.wIndex = 0; 2162 req.wLength = 0; 2163 2164 set_ep0state(udc, WAIT_ACK_SET_CONF_INTERF); 2165 udc->driver->setup(&udc->gadget, &req); 2166 ep_write_UDCCSR(&udc->pxa_ep[0], UDCCSR0_AREN); 2167} 2168 2169/** 2170 * pxa27x_change_interface - Handle SET_INTERF usb request notification 2171 * @udc: udc device 2172 * @iface: interface number 2173 * @alt: alternate setting number 2174 * 2175 * Post the request to upper level. 2176 * Don't use any pxa specific harware configuration capabilities 2177 */ 2178static void pxa27x_change_interface(struct pxa_udc *udc, int iface, int alt) 2179{ 2180 struct usb_ctrlrequest req; 2181 2182 dev_dbg(udc->dev, "interface=%d, alternate setting=%d\n", iface, alt); 2183 2184 udc->last_interface = iface; 2185 udc->last_alternate = alt; 2186 2187 req.bRequestType = USB_RECIP_INTERFACE; 2188 req.bRequest = USB_REQ_SET_INTERFACE; 2189 req.wValue = alt; 2190 req.wIndex = iface; 2191 req.wLength = 0; 2192 2193 set_ep0state(udc, WAIT_ACK_SET_CONF_INTERF); 2194 udc->driver->setup(&udc->gadget, &req); 2195 ep_write_UDCCSR(&udc->pxa_ep[0], UDCCSR0_AREN); 2196} 2197 2198/* 2199 * irq_handle_data - Handle data transfer 2200 * @irq: irq IRQ number 2201 * @udc: dev pxa_udc device structure 2202 * 2203 * Called from irq handler, transferts data to or from endpoint to queue 2204 */ 2205static void irq_handle_data(int irq, struct pxa_udc *udc) 2206{ 2207 int i; 2208 struct pxa_ep *ep; 2209 u32 udcisr0 = udc_readl(udc, UDCISR0) & UDCCISR0_EP_MASK; 2210 u32 udcisr1 = udc_readl(udc, UDCISR1) & UDCCISR1_EP_MASK; 2211 2212 if (udcisr0 & UDCISR_INT_MASK) { 2213 udc->pxa_ep[0].stats.irqs++; 2214 udc_writel(udc, UDCISR0, UDCISR_INT(0, UDCISR_INT_MASK)); 2215 handle_ep0(udc, !!(udcisr0 & UDCICR_FIFOERR), 2216 !!(udcisr0 & UDCICR_PKTCOMPL)); 2217 } 2218 2219 udcisr0 >>= 2; 2220 for (i = 1; udcisr0 != 0 && i < 16; udcisr0 >>= 2, i++) { 2221 if (!(udcisr0 & UDCISR_INT_MASK)) 2222 continue; 2223 2224 udc_writel(udc, UDCISR0, UDCISR_INT(i, UDCISR_INT_MASK)); 2225 2226 WARN_ON(i >= ARRAY_SIZE(udc->pxa_ep)); 2227 if (i < ARRAY_SIZE(udc->pxa_ep)) { 2228 ep = &udc->pxa_ep[i]; 2229 ep->stats.irqs++; 2230 handle_ep(ep); 2231 } 2232 } 2233 2234 for (i = 16; udcisr1 != 0 && i < 24; udcisr1 >>= 2, i++) { 2235 udc_writel(udc, UDCISR1, UDCISR_INT(i - 16, UDCISR_INT_MASK)); 2236 if (!(udcisr1 & UDCISR_INT_MASK)) 2237 continue; 2238 2239 WARN_ON(i >= ARRAY_SIZE(udc->pxa_ep)); 2240 if (i < ARRAY_SIZE(udc->pxa_ep)) { 2241 ep = &udc->pxa_ep[i]; 2242 ep->stats.irqs++; 2243 handle_ep(ep); 2244 } 2245 } 2246 2247} 2248 2249/** 2250 * irq_udc_suspend - Handle IRQ "UDC Suspend" 2251 * @udc: udc device 2252 */ 2253static void irq_udc_suspend(struct pxa_udc *udc) 2254{ 2255 udc_writel(udc, UDCISR1, UDCISR1_IRSU); 2256 udc->stats.irqs_suspend++; 2257 2258 if (udc->gadget.speed != USB_SPEED_UNKNOWN 2259 && udc->driver && udc->driver->suspend) 2260 udc->driver->suspend(&udc->gadget); 2261 ep0_idle(udc); 2262} 2263 2264/** 2265 * irq_udc_resume - Handle IRQ "UDC Resume" 2266 * @udc: udc device 2267 */ 2268static void irq_udc_resume(struct pxa_udc *udc) 2269{ 2270 udc_writel(udc, UDCISR1, UDCISR1_IRRU); 2271 udc->stats.irqs_resume++; 2272 2273 if (udc->gadget.speed != USB_SPEED_UNKNOWN 2274 && udc->driver && udc->driver->resume) 2275 udc->driver->resume(&udc->gadget); 2276} 2277 2278/** 2279 * irq_udc_reconfig - Handle IRQ "UDC Change Configuration" 2280 * @udc: udc device 2281 */ 2282static void irq_udc_reconfig(struct pxa_udc *udc) 2283{ 2284 unsigned config, interface, alternate, config_change; 2285 u32 udccr = udc_readl(udc, UDCCR); 2286 2287 udc_writel(udc, UDCISR1, UDCISR1_IRCC); 2288 udc->stats.irqs_reconfig++; 2289 2290 config = (udccr & UDCCR_ACN) >> UDCCR_ACN_S; 2291 config_change = (config != udc->config); 2292 pxa27x_change_configuration(udc, config); 2293 2294 interface = (udccr & UDCCR_AIN) >> UDCCR_AIN_S; 2295 alternate = (udccr & UDCCR_AAISN) >> UDCCR_AAISN_S; 2296 pxa27x_change_interface(udc, interface, alternate); 2297 2298 if (config_change) 2299 update_pxa_ep_matches(udc); 2300 udc_set_mask_UDCCR(udc, UDCCR_SMAC); 2301} 2302 2303/** 2304 * irq_udc_reset - Handle IRQ "UDC Reset" 2305 * @udc: udc device 2306 */ 2307static void irq_udc_reset(struct pxa_udc *udc) 2308{ 2309 u32 udccr = udc_readl(udc, UDCCR); 2310 struct pxa_ep *ep = &udc->pxa_ep[0]; 2311 2312 dev_info(udc->dev, "USB reset\n"); 2313 udc_writel(udc, UDCISR1, UDCISR1_IRRS); 2314 udc->stats.irqs_reset++; 2315 2316 if ((udccr & UDCCR_UDA) == 0) { 2317 dev_dbg(udc->dev, "USB reset start\n"); 2318 stop_activity(udc, udc->driver); 2319 } 2320 udc->gadget.speed = USB_SPEED_FULL; 2321 memset(&udc->stats, 0, sizeof udc->stats); 2322 2323 nuke(ep, -EPROTO); 2324 ep_write_UDCCSR(ep, UDCCSR0_FTF | UDCCSR0_OPC); 2325 ep0_idle(udc); 2326} 2327 2328/** 2329 * pxa_udc_irq - Main irq handler 2330 * @irq: irq number 2331 * @_dev: udc device 2332 * 2333 * Handles all udc interrupts 2334 */ 2335static irqreturn_t pxa_udc_irq(int irq, void *_dev) 2336{ 2337 struct pxa_udc *udc = _dev; 2338 u32 udcisr0 = udc_readl(udc, UDCISR0); 2339 u32 udcisr1 = udc_readl(udc, UDCISR1); 2340 u32 udccr = udc_readl(udc, UDCCR); 2341 u32 udcisr1_spec; 2342 2343 dev_vdbg(udc->dev, "Interrupt, UDCISR0:0x%08x, UDCISR1:0x%08x, " 2344 "UDCCR:0x%08x\n", udcisr0, udcisr1, udccr); 2345 2346 udcisr1_spec = udcisr1 & 0xf8000000; 2347 if (unlikely(udcisr1_spec & UDCISR1_IRSU)) 2348 irq_udc_suspend(udc); 2349 if (unlikely(udcisr1_spec & UDCISR1_IRRU)) 2350 irq_udc_resume(udc); 2351 if (unlikely(udcisr1_spec & UDCISR1_IRCC)) 2352 irq_udc_reconfig(udc); 2353 if (unlikely(udcisr1_spec & UDCISR1_IRRS)) 2354 irq_udc_reset(udc); 2355 2356 if ((udcisr0 & UDCCISR0_EP_MASK) | (udcisr1 & UDCCISR1_EP_MASK)) 2357 irq_handle_data(irq, udc); 2358 2359 return IRQ_HANDLED; 2360} 2361 2362static struct pxa_udc memory = { 2363 .gadget = { 2364 .ops = &pxa_udc_ops, 2365 .ep0 = &memory.udc_usb_ep[0].usb_ep, 2366 .name = driver_name, 2367 .dev = { 2368 .init_name = "gadget", 2369 }, 2370 }, 2371 2372 .udc_usb_ep = { 2373 USB_EP_CTRL, 2374 USB_EP_OUT_BULK(1), 2375 USB_EP_IN_BULK(2), 2376 USB_EP_IN_ISO(3), 2377 USB_EP_OUT_ISO(4), 2378 USB_EP_IN_INT(5), 2379 }, 2380 2381 .pxa_ep = { 2382 PXA_EP_CTRL, 2383 /* Endpoints for gadget zero */ 2384 PXA_EP_OUT_BULK(1, 1, 3, 0, 0), 2385 PXA_EP_IN_BULK(2, 2, 3, 0, 0), 2386 /* Endpoints for ether gadget, file storage gadget */ 2387 PXA_EP_OUT_BULK(3, 1, 1, 0, 0), 2388 PXA_EP_IN_BULK(4, 2, 1, 0, 0), 2389 PXA_EP_IN_ISO(5, 3, 1, 0, 0), 2390 PXA_EP_OUT_ISO(6, 4, 1, 0, 0), 2391 PXA_EP_IN_INT(7, 5, 1, 0, 0), 2392 /* Endpoints for RNDIS, serial */ 2393 PXA_EP_OUT_BULK(8, 1, 2, 0, 0), 2394 PXA_EP_IN_BULK(9, 2, 2, 0, 0), 2395 PXA_EP_IN_INT(10, 5, 2, 0, 0), 2396 /* 2397 * All the following endpoints are only for completion. They 2398 * won't never work, as multiple interfaces are really broken on 2399 * the pxa. 2400 */ 2401 PXA_EP_OUT_BULK(11, 1, 2, 1, 0), 2402 PXA_EP_IN_BULK(12, 2, 2, 1, 0), 2403 /* Endpoint for CDC Ether */ 2404 PXA_EP_OUT_BULK(13, 1, 1, 1, 1), 2405 PXA_EP_IN_BULK(14, 2, 1, 1, 1), 2406 } 2407}; 2408 2409/** 2410 * pxa_udc_probe - probes the udc device 2411 * @_dev: platform device 2412 * 2413 * Perform basic init : allocates udc clock, creates sysfs files, requests 2414 * irq. 2415 */ 2416static int __init pxa_udc_probe(struct platform_device *pdev) 2417{ 2418 struct resource *regs; 2419 struct pxa_udc *udc = &memory; 2420 int retval = 0, gpio; 2421 2422 regs = platform_get_resource(pdev, IORESOURCE_MEM, 0); 2423 if (!regs) 2424 return -ENXIO; 2425 udc->irq = platform_get_irq(pdev, 0); 2426 if (udc->irq < 0) 2427 return udc->irq; 2428 2429 udc->dev = &pdev->dev; 2430 udc->mach = pdev->dev.platform_data; 2431 udc->transceiver = usb_get_phy(USB_PHY_TYPE_USB2); 2432 2433 gpio = udc->mach->gpio_pullup; 2434 if (gpio_is_valid(gpio)) { 2435 retval = gpio_request(gpio, "USB D+ pullup"); 2436 if (retval == 0) 2437 gpio_direction_output(gpio, 2438 udc->mach->gpio_pullup_inverted); 2439 } 2440 if (retval) { 2441 dev_err(&pdev->dev, "Couldn't request gpio %d : %d\n", 2442 gpio, retval); 2443 return retval; 2444 } 2445 2446 udc->clk = clk_get(&pdev->dev, NULL); 2447 if (IS_ERR(udc->clk)) { 2448 retval = PTR_ERR(udc->clk); 2449 goto err_clk; 2450 } 2451 2452 retval = -ENOMEM; 2453 udc->regs = ioremap(regs->start, resource_size(regs)); 2454 if (!udc->regs) { 2455 dev_err(&pdev->dev, "Unable to map UDC I/O memory\n"); 2456 goto err_map; 2457 } 2458 2459 device_initialize(&udc->gadget.dev); 2460 udc->gadget.dev.parent = &pdev->dev; 2461 udc->gadget.dev.dma_mask = NULL; 2462 udc->vbus_sensed = 0; 2463 2464 the_controller = udc; 2465 platform_set_drvdata(pdev, udc); 2466 udc_init_data(udc); 2467 pxa_eps_setup(udc); 2468 2469 /* irq setup after old hardware state is cleaned up */ 2470 retval = request_irq(udc->irq, pxa_udc_irq, 2471 IRQF_SHARED, driver_name, udc); 2472 if (retval != 0) { 2473 dev_err(udc->dev, "%s: can't get irq %i, err %d\n", 2474 driver_name, udc->irq, retval); 2475 goto err_irq; 2476 } 2477 2478 retval = device_add(&udc->gadget.dev); 2479 if (retval) { 2480 dev_err(udc->dev, "device_add error %d\n", retval); 2481 goto err_dev_add; 2482 } 2483 2484 retval = usb_add_gadget_udc(&pdev->dev, &udc->gadget); 2485 if (retval) 2486 goto err_add_udc; 2487 2488 pxa_init_debugfs(udc); 2489 2490 return 0; 2491 2492err_add_udc: 2493 device_unregister(&udc->gadget.dev); 2494err_dev_add: 2495 free_irq(udc->irq, udc); 2496err_irq: 2497 iounmap(udc->regs); 2498err_map: 2499 clk_put(udc->clk); 2500 udc->clk = NULL; 2501err_clk: 2502 return retval; 2503} 2504 2505/** 2506 * pxa_udc_remove - removes the udc device driver 2507 * @_dev: platform device 2508 */ 2509static int __exit pxa_udc_remove(struct platform_device *_dev) 2510{ 2511 struct pxa_udc *udc = platform_get_drvdata(_dev); 2512 int gpio = udc->mach->gpio_pullup; 2513 2514 usb_del_gadget_udc(&udc->gadget); 2515 device_del(&udc->gadget.dev); 2516 usb_gadget_unregister_driver(udc->driver); 2517 free_irq(udc->irq, udc); 2518 pxa_cleanup_debugfs(udc); 2519 if (gpio_is_valid(gpio)) 2520 gpio_free(gpio); 2521 2522 usb_put_phy(udc->transceiver); 2523 2524 udc->transceiver = NULL; 2525 platform_set_drvdata(_dev, NULL); 2526 the_controller = NULL; 2527 clk_put(udc->clk); 2528 iounmap(udc->regs); 2529 2530 return 0; 2531} 2532 2533static void pxa_udc_shutdown(struct platform_device *_dev) 2534{ 2535 struct pxa_udc *udc = platform_get_drvdata(_dev); 2536 2537 if (udc_readl(udc, UDCCR) & UDCCR_UDE) 2538 udc_disable(udc); 2539} 2540 2541#ifdef CONFIG_PXA27x 2542extern void pxa27x_clear_otgph(void); 2543#else 2544#define pxa27x_clear_otgph() do {} while (0) 2545#endif 2546 2547#ifdef CONFIG_PM 2548/** 2549 * pxa_udc_suspend - Suspend udc device 2550 * @_dev: platform device 2551 * @state: suspend state 2552 * 2553 * Suspends udc : saves configuration registers (UDCCR*), then disables the udc 2554 * device. 2555 */ 2556static int pxa_udc_suspend(struct platform_device *_dev, pm_message_t state) 2557{ 2558 int i; 2559 struct pxa_udc *udc = platform_get_drvdata(_dev); 2560 struct pxa_ep *ep; 2561 2562 ep = &udc->pxa_ep[0]; 2563 udc->udccsr0 = udc_ep_readl(ep, UDCCSR); 2564 for (i = 1; i < NR_PXA_ENDPOINTS; i++) { 2565 ep = &udc->pxa_ep[i]; 2566 ep->udccsr_value = udc_ep_readl(ep, UDCCSR); 2567 ep->udccr_value = udc_ep_readl(ep, UDCCR); 2568 ep_dbg(ep, "udccsr:0x%03x, udccr:0x%x\n", 2569 ep->udccsr_value, ep->udccr_value); 2570 } 2571 2572 udc_disable(udc); 2573 udc->pullup_resume = udc->pullup_on; 2574 dplus_pullup(udc, 0); 2575 2576 return 0; 2577} 2578 2579/** 2580 * pxa_udc_resume - Resume udc device 2581 * @_dev: platform device 2582 * 2583 * Resumes udc : restores configuration registers (UDCCR*), then enables the udc 2584 * device. 2585 */ 2586static int pxa_udc_resume(struct platform_device *_dev) 2587{ 2588 int i; 2589 struct pxa_udc *udc = platform_get_drvdata(_dev); 2590 struct pxa_ep *ep; 2591 2592 ep = &udc->pxa_ep[0]; 2593 udc_ep_writel(ep, UDCCSR, udc->udccsr0 & (UDCCSR0_FST | UDCCSR0_DME)); 2594 for (i = 1; i < NR_PXA_ENDPOINTS; i++) { 2595 ep = &udc->pxa_ep[i]; 2596 udc_ep_writel(ep, UDCCSR, ep->udccsr_value); 2597 udc_ep_writel(ep, UDCCR, ep->udccr_value); 2598 ep_dbg(ep, "udccsr:0x%03x, udccr:0x%x\n", 2599 ep->udccsr_value, ep->udccr_value); 2600 } 2601 2602 dplus_pullup(udc, udc->pullup_resume); 2603 if (should_enable_udc(udc)) 2604 udc_enable(udc); 2605 /* 2606 * We do not handle OTG yet. 2607 * 2608 * OTGPH bit is set when sleep mode is entered. 2609 * it indicates that OTG pad is retaining its state. 2610 * Upon exit from sleep mode and before clearing OTGPH, 2611 * Software must configure the USB OTG pad, UDC, and UHC 2612 * to the state they were in before entering sleep mode. 2613 */ 2614 pxa27x_clear_otgph(); 2615 2616 return 0; 2617} 2618#endif 2619 2620/* work with hotplug and coldplug */ 2621MODULE_ALIAS("platform:pxa27x-udc"); 2622 2623static struct platform_driver udc_driver = { 2624 .driver = { 2625 .name = "pxa27x-udc", 2626 .owner = THIS_MODULE, 2627 }, 2628 .remove = __exit_p(pxa_udc_remove), 2629 .shutdown = pxa_udc_shutdown, 2630#ifdef CONFIG_PM 2631 .suspend = pxa_udc_suspend, 2632 .resume = pxa_udc_resume 2633#endif 2634}; 2635 2636static int __init udc_init(void) 2637{ 2638 if (!cpu_is_pxa27x() && !cpu_is_pxa3xx()) 2639 return -ENODEV; 2640 2641 printk(KERN_INFO "%s: version %s\n", driver_name, DRIVER_VERSION); 2642 return platform_driver_probe(&udc_driver, pxa_udc_probe); 2643} 2644module_init(udc_init); 2645 2646 2647static void __exit udc_exit(void) 2648{ 2649 platform_driver_unregister(&udc_driver); 2650} 2651module_exit(udc_exit); 2652 2653MODULE_DESCRIPTION(DRIVER_DESC); 2654MODULE_AUTHOR("Robert Jarzmik"); 2655MODULE_LICENSE("GPL");