linux/drivers/usb/gadget/at91_udc.c
<<
>>
Prefs
   1/*
   2 * at91_udc -- driver for at91-series USB peripheral controller
   3 *
   4 * Copyright (C) 2004 by Thomas Rathbone
   5 * Copyright (C) 2005 by HP Labs
   6 * Copyright (C) 2005 by David Brownell
   7 *
   8 * This program is free software; you can redistribute it and/or modify
   9 * it under the terms of the GNU General Public License as published by
  10 * the Free Software Foundation; either version 2 of the License, or
  11 * (at your option) any later version.
  12 */
  13
  14#undef  VERBOSE_DEBUG
  15#undef  PACKET_TRACE
  16
  17#include <linux/kernel.h>
  18#include <linux/module.h>
  19#include <linux/platform_device.h>
  20#include <linux/delay.h>
  21#include <linux/ioport.h>
  22#include <linux/slab.h>
  23#include <linux/errno.h>
  24#include <linux/list.h>
  25#include <linux/interrupt.h>
  26#include <linux/proc_fs.h>
  27#include <linux/prefetch.h>
  28#include <linux/clk.h>
  29#include <linux/usb/ch9.h>
  30#include <linux/usb/gadget.h>
  31#include <linux/of.h>
  32#include <linux/of_gpio.h>
  33#include <linux/platform_data/atmel.h>
  34
  35#include <asm/byteorder.h>
  36#include <mach/hardware.h>
  37#include <asm/io.h>
  38#include <asm/irq.h>
  39#include <asm/gpio.h>
  40
  41#include <mach/cpu.h>
  42#include <mach/at91sam9261_matrix.h>
  43#include <mach/at91_matrix.h>
  44
  45#include "at91_udc.h"
  46
  47
  48/*
  49 * This controller is simple and PIO-only.  It's used in many AT91-series
  50 * full speed USB controllers, including the at91rm9200 (arm920T, with MMU),
  51 * at91sam926x (arm926ejs, with MMU), and several no-mmu versions.
  52 *
  53 * This driver expects the board has been wired with two GPIOs supporting
  54 * a VBUS sensing IRQ, and a D+ pullup.  (They may be omitted, but the
  55 * testing hasn't covered such cases.)
  56 *
  57 * The pullup is most important (so it's integrated on sam926x parts).  It
  58 * provides software control over whether the host enumerates the device.
  59 *
  60 * The VBUS sensing helps during enumeration, and allows both USB clocks
  61 * (and the transceiver) to stay gated off until they're necessary, saving
  62 * power.  During USB suspend, the 48 MHz clock is gated off in hardware;
  63 * it may also be gated off by software during some Linux sleep states.
  64 */
  65
  66#define DRIVER_VERSION  "3 May 2006"
  67
  68static const char driver_name [] = "at91_udc";
  69static const char ep0name[] = "ep0";
  70
  71#define VBUS_POLL_TIMEOUT       msecs_to_jiffies(1000)
  72
  73#define at91_udp_read(udc, reg) \
  74        __raw_readl((udc)->udp_baseaddr + (reg))
  75#define at91_udp_write(udc, reg, val) \
  76        __raw_writel((val), (udc)->udp_baseaddr + (reg))
  77
  78/*-------------------------------------------------------------------------*/
  79
  80#ifdef CONFIG_USB_GADGET_DEBUG_FILES
  81
  82#include <linux/seq_file.h>
  83
  84static const char debug_filename[] = "driver/udc";
  85
  86#define FOURBITS "%s%s%s%s"
  87#define EIGHTBITS FOURBITS FOURBITS
  88
  89static void proc_ep_show(struct seq_file *s, struct at91_ep *ep)
  90{
  91        static char             *types[] = {
  92                "control", "out-iso", "out-bulk", "out-int",
  93                "BOGUS",   "in-iso",  "in-bulk",  "in-int"};
  94
  95        u32                     csr;
  96        struct at91_request     *req;
  97        unsigned long   flags;
  98        struct at91_udc *udc = ep->udc;
  99
 100        spin_lock_irqsave(&udc->lock, flags);
 101
 102        csr = __raw_readl(ep->creg);
 103
 104        /* NOTE:  not collecting per-endpoint irq statistics... */
 105
 106        seq_printf(s, "\n");
 107        seq_printf(s, "%s, maxpacket %d %s%s %s%s\n",
 108                        ep->ep.name, ep->ep.maxpacket,
 109                        ep->is_in ? "in" : "out",
 110                        ep->is_iso ? " iso" : "",
 111                        ep->is_pingpong
 112                                ? (ep->fifo_bank ? "pong" : "ping")
 113                                : "",
 114                        ep->stopped ? " stopped" : "");
 115        seq_printf(s, "csr %08x rxbytes=%d %s %s %s" EIGHTBITS "\n",
 116                csr,
 117                (csr & 0x07ff0000) >> 16,
 118                (csr & (1 << 15)) ? "enabled" : "disabled",
 119                (csr & (1 << 11)) ? "DATA1" : "DATA0",
 120                types[(csr & 0x700) >> 8],
 121
 122                /* iff type is control then print current direction */
 123                (!(csr & 0x700))
 124                        ? ((csr & (1 << 7)) ? " IN" : " OUT")
 125                        : "",
 126                (csr & (1 << 6)) ? " rxdatabk1" : "",
 127                (csr & (1 << 5)) ? " forcestall" : "",
 128                (csr & (1 << 4)) ? " txpktrdy" : "",
 129
 130                (csr & (1 << 3)) ? " stallsent" : "",
 131                (csr & (1 << 2)) ? " rxsetup" : "",
 132                (csr & (1 << 1)) ? " rxdatabk0" : "",
 133                (csr & (1 << 0)) ? " txcomp" : "");
 134        if (list_empty (&ep->queue))
 135                seq_printf(s, "\t(queue empty)\n");
 136
 137        else list_for_each_entry (req, &ep->queue, queue) {
 138                unsigned        length = req->req.actual;
 139
 140                seq_printf(s, "\treq %p len %d/%d buf %p\n",
 141                                &req->req, length,
 142                                req->req.length, req->req.buf);
 143        }
 144        spin_unlock_irqrestore(&udc->lock, flags);
 145}
 146
 147static void proc_irq_show(struct seq_file *s, const char *label, u32 mask)
 148{
 149        int i;
 150
 151        seq_printf(s, "%s %04x:%s%s" FOURBITS, label, mask,
 152                (mask & (1 << 13)) ? " wakeup" : "",
 153                (mask & (1 << 12)) ? " endbusres" : "",
 154
 155                (mask & (1 << 11)) ? " sofint" : "",
 156                (mask & (1 << 10)) ? " extrsm" : "",
 157                (mask & (1 << 9)) ? " rxrsm" : "",
 158                (mask & (1 << 8)) ? " rxsusp" : "");
 159        for (i = 0; i < 8; i++) {
 160                if (mask & (1 << i))
 161                        seq_printf(s, " ep%d", i);
 162        }
 163        seq_printf(s, "\n");
 164}
 165
 166static int proc_udc_show(struct seq_file *s, void *unused)
 167{
 168        struct at91_udc *udc = s->private;
 169        struct at91_ep  *ep;
 170        u32             tmp;
 171
 172        seq_printf(s, "%s: version %s\n", driver_name, DRIVER_VERSION);
 173
 174        seq_printf(s, "vbus %s, pullup %s, %s powered%s, gadget %s\n\n",
 175                udc->vbus ? "present" : "off",
 176                udc->enabled
 177                        ? (udc->vbus ? "active" : "enabled")
 178                        : "disabled",
 179                udc->selfpowered ? "self" : "VBUS",
 180                udc->suspended ? ", suspended" : "",
 181                udc->driver ? udc->driver->driver.name : "(none)");
 182
 183        /* don't access registers when interface isn't clocked */
 184        if (!udc->clocked) {
 185                seq_printf(s, "(not clocked)\n");
 186                return 0;
 187        }
 188
 189        tmp = at91_udp_read(udc, AT91_UDP_FRM_NUM);
 190        seq_printf(s, "frame %05x:%s%s frame=%d\n", tmp,
 191                (tmp & AT91_UDP_FRM_OK) ? " ok" : "",
 192                (tmp & AT91_UDP_FRM_ERR) ? " err" : "",
 193                (tmp & AT91_UDP_NUM));
 194
 195        tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
 196        seq_printf(s, "glbstate %02x:%s" FOURBITS "\n", tmp,
 197                (tmp & AT91_UDP_RMWUPE) ? " rmwupe" : "",
 198                (tmp & AT91_UDP_RSMINPR) ? " rsminpr" : "",
 199                (tmp & AT91_UDP_ESR) ? " esr" : "",
 200                (tmp & AT91_UDP_CONFG) ? " confg" : "",
 201                (tmp & AT91_UDP_FADDEN) ? " fadden" : "");
 202
 203        tmp = at91_udp_read(udc, AT91_UDP_FADDR);
 204        seq_printf(s, "faddr   %03x:%s fadd=%d\n", tmp,
 205                (tmp & AT91_UDP_FEN) ? " fen" : "",
 206                (tmp & AT91_UDP_FADD));
 207
 208        proc_irq_show(s, "imr   ", at91_udp_read(udc, AT91_UDP_IMR));
 209        proc_irq_show(s, "isr   ", at91_udp_read(udc, AT91_UDP_ISR));
 210
 211        if (udc->enabled && udc->vbus) {
 212                proc_ep_show(s, &udc->ep[0]);
 213                list_for_each_entry (ep, &udc->gadget.ep_list, ep.ep_list) {
 214                        if (ep->ep.desc)
 215                                proc_ep_show(s, ep);
 216                }
 217        }
 218        return 0;
 219}
 220
 221static int proc_udc_open(struct inode *inode, struct file *file)
 222{
 223        return single_open(file, proc_udc_show, PDE_DATA(inode));
 224}
 225
 226static const struct file_operations proc_ops = {
 227        .owner          = THIS_MODULE,
 228        .open           = proc_udc_open,
 229        .read           = seq_read,
 230        .llseek         = seq_lseek,
 231        .release        = single_release,
 232};
 233
 234static void create_debug_file(struct at91_udc *udc)
 235{
 236        udc->pde = proc_create_data(debug_filename, 0, NULL, &proc_ops, udc);
 237}
 238
 239static void remove_debug_file(struct at91_udc *udc)
 240{
 241        if (udc->pde)
 242                remove_proc_entry(debug_filename, NULL);
 243}
 244
 245#else
 246
 247static inline void create_debug_file(struct at91_udc *udc) {}
 248static inline void remove_debug_file(struct at91_udc *udc) {}
 249
 250#endif
 251
 252
 253/*-------------------------------------------------------------------------*/
 254
 255static void done(struct at91_ep *ep, struct at91_request *req, int status)
 256{
 257        unsigned        stopped = ep->stopped;
 258        struct at91_udc *udc = ep->udc;
 259
 260        list_del_init(&req->queue);
 261        if (req->req.status == -EINPROGRESS)
 262                req->req.status = status;
 263        else
 264                status = req->req.status;
 265        if (status && status != -ESHUTDOWN)
 266                VDBG("%s done %p, status %d\n", ep->ep.name, req, status);
 267
 268        ep->stopped = 1;
 269        spin_unlock(&udc->lock);
 270        req->req.complete(&ep->ep, &req->req);
 271        spin_lock(&udc->lock);
 272        ep->stopped = stopped;
 273
 274        /* ep0 is always ready; other endpoints need a non-empty queue */
 275        if (list_empty(&ep->queue) && ep->int_mask != (1 << 0))
 276                at91_udp_write(udc, AT91_UDP_IDR, ep->int_mask);
 277}
 278
 279/*-------------------------------------------------------------------------*/
 280
 281/* bits indicating OUT fifo has data ready */
 282#define RX_DATA_READY   (AT91_UDP_RX_DATA_BK0 | AT91_UDP_RX_DATA_BK1)
 283
 284/*
 285 * Endpoint FIFO CSR bits have a mix of bits, making it unsafe to just write
 286 * back most of the value you just read (because of side effects, including
 287 * bits that may change after reading and before writing).
 288 *
 289 * Except when changing a specific bit, always write values which:
 290 *  - clear SET_FX bits (setting them could change something)
 291 *  - set CLR_FX bits (clearing them could change something)
 292 *
 293 * There are also state bits like FORCESTALL, EPEDS, DIR, and EPTYPE
 294 * that shouldn't normally be changed.
 295 *
 296 * NOTE at91sam9260 docs mention synch between UDPCK and MCK clock domains,
 297 * implying a need to wait for one write to complete (test relevant bits)
 298 * before starting the next write.  This shouldn't be an issue given how
 299 * infrequently we write, except maybe for write-then-read idioms.
 300 */
 301#define SET_FX  (AT91_UDP_TXPKTRDY)
 302#define CLR_FX  (RX_DATA_READY | AT91_UDP_RXSETUP \
 303                | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)
 304
 305/* pull OUT packet data from the endpoint's fifo */
 306static int read_fifo (struct at91_ep *ep, struct at91_request *req)
 307{
 308        u32 __iomem     *creg = ep->creg;
 309        u8 __iomem      *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
 310        u32             csr;
 311        u8              *buf;
 312        unsigned int    count, bufferspace, is_done;
 313
 314        buf = req->req.buf + req->req.actual;
 315        bufferspace = req->req.length - req->req.actual;
 316
 317        /*
 318         * there might be nothing to read if ep_queue() calls us,
 319         * or if we already emptied both pingpong buffers
 320         */
 321rescan:
 322        csr = __raw_readl(creg);
 323        if ((csr & RX_DATA_READY) == 0)
 324                return 0;
 325
 326        count = (csr & AT91_UDP_RXBYTECNT) >> 16;
 327        if (count > ep->ep.maxpacket)
 328                count = ep->ep.maxpacket;
 329        if (count > bufferspace) {
 330                DBG("%s buffer overflow\n", ep->ep.name);
 331                req->req.status = -EOVERFLOW;
 332                count = bufferspace;
 333        }
 334        __raw_readsb(dreg, buf, count);
 335
 336        /* release and swap pingpong mem bank */
 337        csr |= CLR_FX;
 338        if (ep->is_pingpong) {
 339                if (ep->fifo_bank == 0) {
 340                        csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
 341                        ep->fifo_bank = 1;
 342                } else {
 343                        csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK1);
 344                        ep->fifo_bank = 0;
 345                }
 346        } else
 347                csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
 348        __raw_writel(csr, creg);
 349
 350        req->req.actual += count;
 351        is_done = (count < ep->ep.maxpacket);
 352        if (count == bufferspace)
 353                is_done = 1;
 354
 355        PACKET("%s %p out/%d%s\n", ep->ep.name, &req->req, count,
 356                        is_done ? " (done)" : "");
 357
 358        /*
 359         * avoid extra trips through IRQ logic for packets already in
 360         * the fifo ... maybe preventing an extra (expensive) OUT-NAK
 361         */
 362        if (is_done)
 363                done(ep, req, 0);
 364        else if (ep->is_pingpong) {
 365                /*
 366                 * One dummy read to delay the code because of a HW glitch:
 367                 * CSR returns bad RXCOUNT when read too soon after updating
 368                 * RX_DATA_BK flags.
 369                 */
 370                csr = __raw_readl(creg);
 371
 372                bufferspace -= count;
 373                buf += count;
 374                goto rescan;
 375        }
 376
 377        return is_done;
 378}
 379
 380/* load fifo for an IN packet */
 381static int write_fifo(struct at91_ep *ep, struct at91_request *req)
 382{
 383        u32 __iomem     *creg = ep->creg;
 384        u32             csr = __raw_readl(creg);
 385        u8 __iomem      *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
 386        unsigned        total, count, is_last;
 387        u8              *buf;
 388
 389        /*
 390         * TODO: allow for writing two packets to the fifo ... that'll
 391         * reduce the amount of IN-NAKing, but probably won't affect
 392         * throughput much.  (Unlike preventing OUT-NAKing!)
 393         */
 394
 395        /*
 396         * If ep_queue() calls us, the queue is empty and possibly in
 397         * odd states like TXCOMP not yet cleared (we do it, saving at
 398         * least one IRQ) or the fifo not yet being free.  Those aren't
 399         * issues normally (IRQ handler fast path).
 400         */
 401        if (unlikely(csr & (AT91_UDP_TXCOMP | AT91_UDP_TXPKTRDY))) {
 402                if (csr & AT91_UDP_TXCOMP) {
 403                        csr |= CLR_FX;
 404                        csr &= ~(SET_FX | AT91_UDP_TXCOMP);
 405                        __raw_writel(csr, creg);
 406                        csr = __raw_readl(creg);
 407                }
 408                if (csr & AT91_UDP_TXPKTRDY)
 409                        return 0;
 410        }
 411
 412        buf = req->req.buf + req->req.actual;
 413        prefetch(buf);
 414        total = req->req.length - req->req.actual;
 415        if (ep->ep.maxpacket < total) {
 416                count = ep->ep.maxpacket;
 417                is_last = 0;
 418        } else {
 419                count = total;
 420                is_last = (count < ep->ep.maxpacket) || !req->req.zero;
 421        }
 422
 423        /*
 424         * Write the packet, maybe it's a ZLP.
 425         *
 426         * NOTE:  incrementing req->actual before we receive the ACK means
 427         * gadget driver IN bytecounts can be wrong in fault cases.  That's
 428         * fixable with PIO drivers like this one (save "count" here, and
 429         * do the increment later on TX irq), but not for most DMA hardware.
 430         *
 431         * So all gadget drivers must accept that potential error.  Some
 432         * hardware supports precise fifo status reporting, letting them
 433         * recover when the actual bytecount matters (e.g. for USB Test
 434         * and Measurement Class devices).
 435         */
 436        __raw_writesb(dreg, buf, count);
 437        csr &= ~SET_FX;
 438        csr |= CLR_FX | AT91_UDP_TXPKTRDY;
 439        __raw_writel(csr, creg);
 440        req->req.actual += count;
 441
 442        PACKET("%s %p in/%d%s\n", ep->ep.name, &req->req, count,
 443                        is_last ? " (done)" : "");
 444        if (is_last)
 445                done(ep, req, 0);
 446        return is_last;
 447}
 448
 449static void nuke(struct at91_ep *ep, int status)
 450{
 451        struct at91_request *req;
 452
 453        /* terminate any request in the queue */
 454        ep->stopped = 1;
 455        if (list_empty(&ep->queue))
 456                return;
 457
 458        VDBG("%s %s\n", __func__, ep->ep.name);
 459        while (!list_empty(&ep->queue)) {
 460                req = list_entry(ep->queue.next, struct at91_request, queue);
 461                done(ep, req, status);
 462        }
 463}
 464
 465/*-------------------------------------------------------------------------*/
 466
 467static int at91_ep_enable(struct usb_ep *_ep,
 468                                const struct usb_endpoint_descriptor *desc)
 469{
 470        struct at91_ep  *ep = container_of(_ep, struct at91_ep, ep);
 471        struct at91_udc *udc;
 472        u16             maxpacket;
 473        u32             tmp;
 474        unsigned long   flags;
 475
 476        if (!_ep || !ep
 477                        || !desc || _ep->name == ep0name
 478                        || desc->bDescriptorType != USB_DT_ENDPOINT
 479                        || (maxpacket = usb_endpoint_maxp(desc)) == 0
 480                        || maxpacket > ep->maxpacket) {
 481                DBG("bad ep or descriptor\n");
 482                return -EINVAL;
 483        }
 484
 485        udc = ep->udc;
 486        if (!udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
 487                DBG("bogus device state\n");
 488                return -ESHUTDOWN;
 489        }
 490
 491        tmp = usb_endpoint_type(desc);
 492        switch (tmp) {
 493        case USB_ENDPOINT_XFER_CONTROL:
 494                DBG("only one control endpoint\n");
 495                return -EINVAL;
 496        case USB_ENDPOINT_XFER_INT:
 497                if (maxpacket > 64)
 498                        goto bogus_max;
 499                break;
 500        case USB_ENDPOINT_XFER_BULK:
 501                switch (maxpacket) {
 502                case 8:
 503                case 16:
 504                case 32:
 505                case 64:
 506                        goto ok;
 507                }
 508bogus_max:
 509                DBG("bogus maxpacket %d\n", maxpacket);
 510                return -EINVAL;
 511        case USB_ENDPOINT_XFER_ISOC:
 512                if (!ep->is_pingpong) {
 513                        DBG("iso requires double buffering\n");
 514                        return -EINVAL;
 515                }
 516                break;
 517        }
 518
 519ok:
 520        spin_lock_irqsave(&udc->lock, flags);
 521
 522        /* initialize endpoint to match this descriptor */
 523        ep->is_in = usb_endpoint_dir_in(desc);
 524        ep->is_iso = (tmp == USB_ENDPOINT_XFER_ISOC);
 525        ep->stopped = 0;
 526        if (ep->is_in)
 527                tmp |= 0x04;
 528        tmp <<= 8;
 529        tmp |= AT91_UDP_EPEDS;
 530        __raw_writel(tmp, ep->creg);
 531
 532        ep->ep.maxpacket = maxpacket;
 533
 534        /*
 535         * reset/init endpoint fifo.  NOTE:  leaves fifo_bank alone,
 536         * since endpoint resets don't reset hw pingpong state.
 537         */
 538        at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
 539        at91_udp_write(udc, AT91_UDP_RST_EP, 0);
 540
 541        spin_unlock_irqrestore(&udc->lock, flags);
 542        return 0;
 543}
 544
 545static int at91_ep_disable (struct usb_ep * _ep)
 546{
 547        struct at91_ep  *ep = container_of(_ep, struct at91_ep, ep);
 548        struct at91_udc *udc = ep->udc;
 549        unsigned long   flags;
 550
 551        if (ep == &ep->udc->ep[0])
 552                return -EINVAL;
 553
 554        spin_lock_irqsave(&udc->lock, flags);
 555
 556        nuke(ep, -ESHUTDOWN);
 557
 558        /* restore the endpoint's pristine config */
 559        ep->ep.desc = NULL;
 560        ep->ep.maxpacket = ep->maxpacket;
 561
 562        /* reset fifos and endpoint */
 563        if (ep->udc->clocked) {
 564                at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
 565                at91_udp_write(udc, AT91_UDP_RST_EP, 0);
 566                __raw_writel(0, ep->creg);
 567        }
 568
 569        spin_unlock_irqrestore(&udc->lock, flags);
 570        return 0;
 571}
 572
 573/*
 574 * this is a PIO-only driver, so there's nothing
 575 * interesting for request or buffer allocation.
 576 */
 577
 578static struct usb_request *
 579at91_ep_alloc_request(struct usb_ep *_ep, gfp_t gfp_flags)
 580{
 581        struct at91_request *req;
 582
 583        req = kzalloc(sizeof (struct at91_request), gfp_flags);
 584        if (!req)
 585                return NULL;
 586
 587        INIT_LIST_HEAD(&req->queue);
 588        return &req->req;
 589}
 590
 591static void at91_ep_free_request(struct usb_ep *_ep, struct usb_request *_req)
 592{
 593        struct at91_request *req;
 594
 595        req = container_of(_req, struct at91_request, req);
 596        BUG_ON(!list_empty(&req->queue));
 597        kfree(req);
 598}
 599
 600static int at91_ep_queue(struct usb_ep *_ep,
 601                        struct usb_request *_req, gfp_t gfp_flags)
 602{
 603        struct at91_request     *req;
 604        struct at91_ep          *ep;
 605        struct at91_udc         *udc;
 606        int                     status;
 607        unsigned long           flags;
 608
 609        req = container_of(_req, struct at91_request, req);
 610        ep = container_of(_ep, struct at91_ep, ep);
 611
 612        if (!_req || !_req->complete
 613                        || !_req->buf || !list_empty(&req->queue)) {
 614                DBG("invalid request\n");
 615                return -EINVAL;
 616        }
 617
 618        if (!_ep || (!ep->ep.desc && ep->ep.name != ep0name)) {
 619                DBG("invalid ep\n");
 620                return -EINVAL;
 621        }
 622
 623        udc = ep->udc;
 624
 625        if (!udc || !udc->driver || udc->gadget.speed == USB_SPEED_UNKNOWN) {
 626                DBG("invalid device\n");
 627                return -EINVAL;
 628        }
 629
 630        _req->status = -EINPROGRESS;
 631        _req->actual = 0;
 632
 633        spin_lock_irqsave(&udc->lock, flags);
 634
 635        /* try to kickstart any empty and idle queue */
 636        if (list_empty(&ep->queue) && !ep->stopped) {
 637                int     is_ep0;
 638
 639                /*
 640                 * If this control request has a non-empty DATA stage, this
 641                 * will start that stage.  It works just like a non-control
 642                 * request (until the status stage starts, maybe early).
 643                 *
 644                 * If the data stage is empty, then this starts a successful
 645                 * IN/STATUS stage.  (Unsuccessful ones use set_halt.)
 646                 */
 647                is_ep0 = (ep->ep.name == ep0name);
 648                if (is_ep0) {
 649                        u32     tmp;
 650
 651                        if (!udc->req_pending) {
 652                                status = -EINVAL;
 653                                goto done;
 654                        }
 655
 656                        /*
 657                         * defer changing CONFG until after the gadget driver
 658                         * reconfigures the endpoints.
 659                         */
 660                        if (udc->wait_for_config_ack) {
 661                                tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
 662                                tmp ^= AT91_UDP_CONFG;
 663                                VDBG("toggle config\n");
 664                                at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
 665                        }
 666                        if (req->req.length == 0) {
 667ep0_in_status:
 668                                PACKET("ep0 in/status\n");
 669                                status = 0;
 670                                tmp = __raw_readl(ep->creg);
 671                                tmp &= ~SET_FX;
 672                                tmp |= CLR_FX | AT91_UDP_TXPKTRDY;
 673                                __raw_writel(tmp, ep->creg);
 674                                udc->req_pending = 0;
 675                                goto done;
 676                        }
 677                }
 678
 679                if (ep->is_in)
 680                        status = write_fifo(ep, req);
 681                else {
 682                        status = read_fifo(ep, req);
 683
 684                        /* IN/STATUS stage is otherwise triggered by irq */
 685                        if (status && is_ep0)
 686                                goto ep0_in_status;
 687                }
 688        } else
 689                status = 0;
 690
 691        if (req && !status) {
 692                list_add_tail (&req->queue, &ep->queue);
 693                at91_udp_write(udc, AT91_UDP_IER, ep->int_mask);
 694        }
 695done:
 696        spin_unlock_irqrestore(&udc->lock, flags);
 697        return (status < 0) ? status : 0;
 698}
 699
 700static int at91_ep_dequeue(struct usb_ep *_ep, struct usb_request *_req)
 701{
 702        struct at91_ep          *ep;
 703        struct at91_request     *req;
 704        unsigned long           flags;
 705        struct at91_udc         *udc;
 706
 707        ep = container_of(_ep, struct at91_ep, ep);
 708        if (!_ep || ep->ep.name == ep0name)
 709                return -EINVAL;
 710
 711        udc = ep->udc;
 712
 713        spin_lock_irqsave(&udc->lock, flags);
 714
 715        /* make sure it's actually queued on this endpoint */
 716        list_for_each_entry (req, &ep->queue, queue) {
 717                if (&req->req == _req)
 718                        break;
 719        }
 720        if (&req->req != _req) {
 721                spin_unlock_irqrestore(&udc->lock, flags);
 722                return -EINVAL;
 723        }
 724
 725        done(ep, req, -ECONNRESET);
 726        spin_unlock_irqrestore(&udc->lock, flags);
 727        return 0;
 728}
 729
 730static int at91_ep_set_halt(struct usb_ep *_ep, int value)
 731{
 732        struct at91_ep  *ep = container_of(_ep, struct at91_ep, ep);
 733        struct at91_udc *udc = ep->udc;
 734        u32 __iomem     *creg;
 735        u32             csr;
 736        unsigned long   flags;
 737        int             status = 0;
 738
 739        if (!_ep || ep->is_iso || !ep->udc->clocked)
 740                return -EINVAL;
 741
 742        creg = ep->creg;
 743        spin_lock_irqsave(&udc->lock, flags);
 744
 745        csr = __raw_readl(creg);
 746
 747        /*
 748         * fail with still-busy IN endpoints, ensuring correct sequencing
 749         * of data tx then stall.  note that the fifo rx bytecount isn't
 750         * completely accurate as a tx bytecount.
 751         */
 752        if (ep->is_in && (!list_empty(&ep->queue) || (csr >> 16) != 0))
 753                status = -EAGAIN;
 754        else {
 755                csr |= CLR_FX;
 756                csr &= ~SET_FX;
 757                if (value) {
 758                        csr |= AT91_UDP_FORCESTALL;
 759                        VDBG("halt %s\n", ep->ep.name);
 760                } else {
 761                        at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
 762                        at91_udp_write(udc, AT91_UDP_RST_EP, 0);
 763                        csr &= ~AT91_UDP_FORCESTALL;
 764                }
 765                __raw_writel(csr, creg);
 766        }
 767
 768        spin_unlock_irqrestore(&udc->lock, flags);
 769        return status;
 770}
 771
 772static const struct usb_ep_ops at91_ep_ops = {
 773        .enable         = at91_ep_enable,
 774        .disable        = at91_ep_disable,
 775        .alloc_request  = at91_ep_alloc_request,
 776        .free_request   = at91_ep_free_request,
 777        .queue          = at91_ep_queue,
 778        .dequeue        = at91_ep_dequeue,
 779        .set_halt       = at91_ep_set_halt,
 780        /* there's only imprecise fifo status reporting */
 781};
 782
 783/*-------------------------------------------------------------------------*/
 784
 785static int at91_get_frame(struct usb_gadget *gadget)
 786{
 787        struct at91_udc *udc = to_udc(gadget);
 788
 789        if (!to_udc(gadget)->clocked)
 790                return -EINVAL;
 791        return at91_udp_read(udc, AT91_UDP_FRM_NUM) & AT91_UDP_NUM;
 792}
 793
 794static int at91_wakeup(struct usb_gadget *gadget)
 795{
 796        struct at91_udc *udc = to_udc(gadget);
 797        u32             glbstate;
 798        int             status = -EINVAL;
 799        unsigned long   flags;
 800
 801        DBG("%s\n", __func__ );
 802        spin_lock_irqsave(&udc->lock, flags);
 803
 804        if (!udc->clocked || !udc->suspended)
 805                goto done;
 806
 807        /* NOTE:  some "early versions" handle ESR differently ... */
 808
 809        glbstate = at91_udp_read(udc, AT91_UDP_GLB_STAT);
 810        if (!(glbstate & AT91_UDP_ESR))
 811                goto done;
 812        glbstate |= AT91_UDP_ESR;
 813        at91_udp_write(udc, AT91_UDP_GLB_STAT, glbstate);
 814
 815done:
 816        spin_unlock_irqrestore(&udc->lock, flags);
 817        return status;
 818}
 819
 820/* reinit == restore initial software state */
 821static void udc_reinit(struct at91_udc *udc)
 822{
 823        u32 i;
 824
 825        INIT_LIST_HEAD(&udc->gadget.ep_list);
 826        INIT_LIST_HEAD(&udc->gadget.ep0->ep_list);
 827
 828        for (i = 0; i < NUM_ENDPOINTS; i++) {
 829                struct at91_ep *ep = &udc->ep[i];
 830
 831                if (i != 0)
 832                        list_add_tail(&ep->ep.ep_list, &udc->gadget.ep_list);
 833                ep->ep.desc = NULL;
 834                ep->stopped = 0;
 835                ep->fifo_bank = 0;
 836                ep->ep.maxpacket = ep->maxpacket;
 837                ep->creg = (void __iomem *) udc->udp_baseaddr + AT91_UDP_CSR(i);
 838                /* initialize one queue per endpoint */
 839                INIT_LIST_HEAD(&ep->queue);
 840        }
 841}
 842
 843static void stop_activity(struct at91_udc *udc)
 844{
 845        struct usb_gadget_driver *driver = udc->driver;
 846        int i;
 847
 848        if (udc->gadget.speed == USB_SPEED_UNKNOWN)
 849                driver = NULL;
 850        udc->gadget.speed = USB_SPEED_UNKNOWN;
 851        udc->suspended = 0;
 852
 853        for (i = 0; i < NUM_ENDPOINTS; i++) {
 854                struct at91_ep *ep = &udc->ep[i];
 855                ep->stopped = 1;
 856                nuke(ep, -ESHUTDOWN);
 857        }
 858        if (driver) {
 859                spin_unlock(&udc->lock);
 860                driver->disconnect(&udc->gadget);
 861                spin_lock(&udc->lock);
 862        }
 863
 864        udc_reinit(udc);
 865}
 866
 867static void clk_on(struct at91_udc *udc)
 868{
 869        if (udc->clocked)
 870                return;
 871        udc->clocked = 1;
 872        clk_enable(udc->iclk);
 873        clk_enable(udc->fclk);
 874}
 875
 876static void clk_off(struct at91_udc *udc)
 877{
 878        if (!udc->clocked)
 879                return;
 880        udc->clocked = 0;
 881        udc->gadget.speed = USB_SPEED_UNKNOWN;
 882        clk_disable(udc->fclk);
 883        clk_disable(udc->iclk);
 884}
 885
 886/*
 887 * activate/deactivate link with host; minimize power usage for
 888 * inactive links by cutting clocks and transceiver power.
 889 */
 890static void pullup(struct at91_udc *udc, int is_on)
 891{
 892        int     active = !udc->board.pullup_active_low;
 893
 894        if (!udc->enabled || !udc->vbus)
 895                is_on = 0;
 896        DBG("%sactive\n", is_on ? "" : "in");
 897
 898        if (is_on) {
 899                clk_on(udc);
 900                at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
 901                at91_udp_write(udc, AT91_UDP_TXVC, 0);
 902                if (cpu_is_at91rm9200())
 903                        gpio_set_value(udc->board.pullup_pin, active);
 904                else if (cpu_is_at91sam9260() || cpu_is_at91sam9263() || cpu_is_at91sam9g20()) {
 905                        u32     txvc = at91_udp_read(udc, AT91_UDP_TXVC);
 906
 907                        txvc |= AT91_UDP_TXVC_PUON;
 908                        at91_udp_write(udc, AT91_UDP_TXVC, txvc);
 909                } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
 910                        u32     usbpucr;
 911
 912                        usbpucr = at91_matrix_read(AT91_MATRIX_USBPUCR);
 913                        usbpucr |= AT91_MATRIX_USBPUCR_PUON;
 914                        at91_matrix_write(AT91_MATRIX_USBPUCR, usbpucr);
 915                }
 916        } else {
 917                stop_activity(udc);
 918                at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
 919                at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
 920                if (cpu_is_at91rm9200())
 921                        gpio_set_value(udc->board.pullup_pin, !active);
 922                else if (cpu_is_at91sam9260() || cpu_is_at91sam9263() || cpu_is_at91sam9g20()) {
 923                        u32     txvc = at91_udp_read(udc, AT91_UDP_TXVC);
 924
 925                        txvc &= ~AT91_UDP_TXVC_PUON;
 926                        at91_udp_write(udc, AT91_UDP_TXVC, txvc);
 927                } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
 928                        u32     usbpucr;
 929
 930                        usbpucr = at91_matrix_read(AT91_MATRIX_USBPUCR);
 931                        usbpucr &= ~AT91_MATRIX_USBPUCR_PUON;
 932                        at91_matrix_write(AT91_MATRIX_USBPUCR, usbpucr);
 933                }
 934                clk_off(udc);
 935        }
 936}
 937
 938/* vbus is here!  turn everything on that's ready */
 939static int at91_vbus_session(struct usb_gadget *gadget, int is_active)
 940{
 941        struct at91_udc *udc = to_udc(gadget);
 942        unsigned long   flags;
 943
 944        /* VDBG("vbus %s\n", is_active ? "on" : "off"); */
 945        spin_lock_irqsave(&udc->lock, flags);
 946        udc->vbus = (is_active != 0);
 947        if (udc->driver)
 948                pullup(udc, is_active);
 949        else
 950                pullup(udc, 0);
 951        spin_unlock_irqrestore(&udc->lock, flags);
 952        return 0;
 953}
 954
 955static int at91_pullup(struct usb_gadget *gadget, int is_on)
 956{
 957        struct at91_udc *udc = to_udc(gadget);
 958        unsigned long   flags;
 959
 960        spin_lock_irqsave(&udc->lock, flags);
 961        udc->enabled = is_on = !!is_on;
 962        pullup(udc, is_on);
 963        spin_unlock_irqrestore(&udc->lock, flags);
 964        return 0;
 965}
 966
 967static int at91_set_selfpowered(struct usb_gadget *gadget, int is_on)
 968{
 969        struct at91_udc *udc = to_udc(gadget);
 970        unsigned long   flags;
 971
 972        spin_lock_irqsave(&udc->lock, flags);
 973        udc->selfpowered = (is_on != 0);
 974        spin_unlock_irqrestore(&udc->lock, flags);
 975        return 0;
 976}
 977
 978static int at91_start(struct usb_gadget *gadget,
 979                struct usb_gadget_driver *driver);
 980static int at91_stop(struct usb_gadget *gadget,
 981                struct usb_gadget_driver *driver);
 982static const struct usb_gadget_ops at91_udc_ops = {
 983        .get_frame              = at91_get_frame,
 984        .wakeup                 = at91_wakeup,
 985        .set_selfpowered        = at91_set_selfpowered,
 986        .vbus_session           = at91_vbus_session,
 987        .pullup                 = at91_pullup,
 988        .udc_start              = at91_start,
 989        .udc_stop               = at91_stop,
 990
 991        /*
 992         * VBUS-powered devices may also also want to support bigger
 993         * power budgets after an appropriate SET_CONFIGURATION.
 994         */
 995        /* .vbus_power          = at91_vbus_power, */
 996};
 997
 998/*-------------------------------------------------------------------------*/
 999
1000static int handle_ep(struct at91_ep *ep)
1001{
1002        struct at91_request     *req;
1003        u32 __iomem             *creg = ep->creg;
1004        u32                     csr = __raw_readl(creg);
1005
1006        if (!list_empty(&ep->queue))
1007                req = list_entry(ep->queue.next,
1008                        struct at91_request, queue);
1009        else
1010                req = NULL;
1011
1012        if (ep->is_in) {
1013                if (csr & (AT91_UDP_STALLSENT | AT91_UDP_TXCOMP)) {
1014                        csr |= CLR_FX;
1015                        csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_TXCOMP);
1016                        __raw_writel(csr, creg);
1017                }
1018                if (req)
1019                        return write_fifo(ep, req);
1020
1021        } else {
1022                if (csr & AT91_UDP_STALLSENT) {
1023                        /* STALLSENT bit == ISOERR */
1024                        if (ep->is_iso && req)
1025                                req->req.status = -EILSEQ;
1026                        csr |= CLR_FX;
1027                        csr &= ~(SET_FX | AT91_UDP_STALLSENT);
1028                        __raw_writel(csr, creg);
1029                        csr = __raw_readl(creg);
1030                }
1031                if (req && (csr & RX_DATA_READY))
1032                        return read_fifo(ep, req);
1033        }
1034        return 0;
1035}
1036
1037union setup {
1038        u8                      raw[8];
1039        struct usb_ctrlrequest  r;
1040};
1041
1042static void handle_setup(struct at91_udc *udc, struct at91_ep *ep, u32 csr)
1043{
1044        u32 __iomem     *creg = ep->creg;
1045        u8 __iomem      *dreg = ep->creg + (AT91_UDP_FDR(0) - AT91_UDP_CSR(0));
1046        unsigned        rxcount, i = 0;
1047        u32             tmp;
1048        union setup     pkt;
1049        int             status = 0;
1050
1051        /* read and ack SETUP; hard-fail for bogus packets */
1052        rxcount = (csr & AT91_UDP_RXBYTECNT) >> 16;
1053        if (likely(rxcount == 8)) {
1054                while (rxcount--)
1055                        pkt.raw[i++] = __raw_readb(dreg);
1056                if (pkt.r.bRequestType & USB_DIR_IN) {
1057                        csr |= AT91_UDP_DIR;
1058                        ep->is_in = 1;
1059                } else {
1060                        csr &= ~AT91_UDP_DIR;
1061                        ep->is_in = 0;
1062                }
1063        } else {
1064                /* REVISIT this happens sometimes under load; why?? */
1065                ERR("SETUP len %d, csr %08x\n", rxcount, csr);
1066                status = -EINVAL;
1067        }
1068        csr |= CLR_FX;
1069        csr &= ~(SET_FX | AT91_UDP_RXSETUP);
1070        __raw_writel(csr, creg);
1071        udc->wait_for_addr_ack = 0;
1072        udc->wait_for_config_ack = 0;
1073        ep->stopped = 0;
1074        if (unlikely(status != 0))
1075                goto stall;
1076
1077#define w_index         le16_to_cpu(pkt.r.wIndex)
1078#define w_value         le16_to_cpu(pkt.r.wValue)
1079#define w_length        le16_to_cpu(pkt.r.wLength)
1080
1081        VDBG("SETUP %02x.%02x v%04x i%04x l%04x\n",
1082                        pkt.r.bRequestType, pkt.r.bRequest,
1083                        w_value, w_index, w_length);
1084
1085        /*
1086         * A few standard requests get handled here, ones that touch
1087         * hardware ... notably for device and endpoint features.
1088         */
1089        udc->req_pending = 1;
1090        csr = __raw_readl(creg);
1091        csr |= CLR_FX;
1092        csr &= ~SET_FX;
1093        switch ((pkt.r.bRequestType << 8) | pkt.r.bRequest) {
1094
1095        case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1096                        | USB_REQ_SET_ADDRESS:
1097                __raw_writel(csr | AT91_UDP_TXPKTRDY, creg);
1098                udc->addr = w_value;
1099                udc->wait_for_addr_ack = 1;
1100                udc->req_pending = 0;
1101                /* FADDR is set later, when we ack host STATUS */
1102                return;
1103
1104        case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1105                        | USB_REQ_SET_CONFIGURATION:
1106                tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_CONFG;
1107                if (pkt.r.wValue)
1108                        udc->wait_for_config_ack = (tmp == 0);
1109                else
1110                        udc->wait_for_config_ack = (tmp != 0);
1111                if (udc->wait_for_config_ack)
1112                        VDBG("wait for config\n");
1113                /* CONFG is toggled later, if gadget driver succeeds */
1114                break;
1115
1116        /*
1117         * Hosts may set or clear remote wakeup status, and
1118         * devices may report they're VBUS powered.
1119         */
1120        case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1121                        | USB_REQ_GET_STATUS:
1122                tmp = (udc->selfpowered << USB_DEVICE_SELF_POWERED);
1123                if (at91_udp_read(udc, AT91_UDP_GLB_STAT) & AT91_UDP_ESR)
1124                        tmp |= (1 << USB_DEVICE_REMOTE_WAKEUP);
1125                PACKET("get device status\n");
1126                __raw_writeb(tmp, dreg);
1127                __raw_writeb(0, dreg);
1128                goto write_in;
1129                /* then STATUS starts later, automatically */
1130        case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1131                        | USB_REQ_SET_FEATURE:
1132                if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1133                        goto stall;
1134                tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
1135                tmp |= AT91_UDP_ESR;
1136                at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
1137                goto succeed;
1138        case ((USB_TYPE_STANDARD|USB_RECIP_DEVICE) << 8)
1139                        | USB_REQ_CLEAR_FEATURE:
1140                if (w_value != USB_DEVICE_REMOTE_WAKEUP)
1141                        goto stall;
1142                tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
1143                tmp &= ~AT91_UDP_ESR;
1144                at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
1145                goto succeed;
1146
1147        /*
1148         * Interfaces have no feature settings; this is pretty useless.
1149         * we won't even insist the interface exists...
1150         */
1151        case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1152                        | USB_REQ_GET_STATUS:
1153                PACKET("get interface status\n");
1154                __raw_writeb(0, dreg);
1155                __raw_writeb(0, dreg);
1156                goto write_in;
1157                /* then STATUS starts later, automatically */
1158        case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1159                        | USB_REQ_SET_FEATURE:
1160        case ((USB_TYPE_STANDARD|USB_RECIP_INTERFACE) << 8)
1161                        | USB_REQ_CLEAR_FEATURE:
1162                goto stall;
1163
1164        /*
1165         * Hosts may clear bulk/intr endpoint halt after the gadget
1166         * driver sets it (not widely used); or set it (for testing)
1167         */
1168        case ((USB_DIR_IN|USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1169                        | USB_REQ_GET_STATUS:
1170                tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1171                ep = &udc->ep[tmp];
1172                if (tmp >= NUM_ENDPOINTS || (tmp && !ep->ep.desc))
1173                        goto stall;
1174
1175                if (tmp) {
1176                        if ((w_index & USB_DIR_IN)) {
1177                                if (!ep->is_in)
1178                                        goto stall;
1179                        } else if (ep->is_in)
1180                                goto stall;
1181                }
1182                PACKET("get %s status\n", ep->ep.name);
1183                if (__raw_readl(ep->creg) & AT91_UDP_FORCESTALL)
1184                        tmp = (1 << USB_ENDPOINT_HALT);
1185                else
1186                        tmp = 0;
1187                __raw_writeb(tmp, dreg);
1188                __raw_writeb(0, dreg);
1189                goto write_in;
1190                /* then STATUS starts later, automatically */
1191        case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1192                        | USB_REQ_SET_FEATURE:
1193                tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1194                ep = &udc->ep[tmp];
1195                if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
1196                        goto stall;
1197                if (!ep->ep.desc || ep->is_iso)
1198                        goto stall;
1199                if ((w_index & USB_DIR_IN)) {
1200                        if (!ep->is_in)
1201                                goto stall;
1202                } else if (ep->is_in)
1203                        goto stall;
1204
1205                tmp = __raw_readl(ep->creg);
1206                tmp &= ~SET_FX;
1207                tmp |= CLR_FX | AT91_UDP_FORCESTALL;
1208                __raw_writel(tmp, ep->creg);
1209                goto succeed;
1210        case ((USB_TYPE_STANDARD|USB_RECIP_ENDPOINT) << 8)
1211                        | USB_REQ_CLEAR_FEATURE:
1212                tmp = w_index & USB_ENDPOINT_NUMBER_MASK;
1213                ep = &udc->ep[tmp];
1214                if (w_value != USB_ENDPOINT_HALT || tmp >= NUM_ENDPOINTS)
1215                        goto stall;
1216                if (tmp == 0)
1217                        goto succeed;
1218                if (!ep->ep.desc || ep->is_iso)
1219                        goto stall;
1220                if ((w_index & USB_DIR_IN)) {
1221                        if (!ep->is_in)
1222                                goto stall;
1223                } else if (ep->is_in)
1224                        goto stall;
1225
1226                at91_udp_write(udc, AT91_UDP_RST_EP, ep->int_mask);
1227                at91_udp_write(udc, AT91_UDP_RST_EP, 0);
1228                tmp = __raw_readl(ep->creg);
1229                tmp |= CLR_FX;
1230                tmp &= ~(SET_FX | AT91_UDP_FORCESTALL);
1231                __raw_writel(tmp, ep->creg);
1232                if (!list_empty(&ep->queue))
1233                        handle_ep(ep);
1234                goto succeed;
1235        }
1236
1237#undef w_value
1238#undef w_index
1239#undef w_length
1240
1241        /* pass request up to the gadget driver */
1242        if (udc->driver) {
1243                spin_unlock(&udc->lock);
1244                status = udc->driver->setup(&udc->gadget, &pkt.r);
1245                spin_lock(&udc->lock);
1246        }
1247        else
1248                status = -ENODEV;
1249        if (status < 0) {
1250stall:
1251                VDBG("req %02x.%02x protocol STALL; stat %d\n",
1252                                pkt.r.bRequestType, pkt.r.bRequest, status);
1253                csr |= AT91_UDP_FORCESTALL;
1254                __raw_writel(csr, creg);
1255                udc->req_pending = 0;
1256        }
1257        return;
1258
1259succeed:
1260        /* immediate successful (IN) STATUS after zero length DATA */
1261        PACKET("ep0 in/status\n");
1262write_in:
1263        csr |= AT91_UDP_TXPKTRDY;
1264        __raw_writel(csr, creg);
1265        udc->req_pending = 0;
1266}
1267
1268static void handle_ep0(struct at91_udc *udc)
1269{
1270        struct at91_ep          *ep0 = &udc->ep[0];
1271        u32 __iomem             *creg = ep0->creg;
1272        u32                     csr = __raw_readl(creg);
1273        struct at91_request     *req;
1274
1275        if (unlikely(csr & AT91_UDP_STALLSENT)) {
1276                nuke(ep0, -EPROTO);
1277                udc->req_pending = 0;
1278                csr |= CLR_FX;
1279                csr &= ~(SET_FX | AT91_UDP_STALLSENT | AT91_UDP_FORCESTALL);
1280                __raw_writel(csr, creg);
1281                VDBG("ep0 stalled\n");
1282                csr = __raw_readl(creg);
1283        }
1284        if (csr & AT91_UDP_RXSETUP) {
1285                nuke(ep0, 0);
1286                udc->req_pending = 0;
1287                handle_setup(udc, ep0, csr);
1288                return;
1289        }
1290
1291        if (list_empty(&ep0->queue))
1292                req = NULL;
1293        else
1294                req = list_entry(ep0->queue.next, struct at91_request, queue);
1295
1296        /* host ACKed an IN packet that we sent */
1297        if (csr & AT91_UDP_TXCOMP) {
1298                csr |= CLR_FX;
1299                csr &= ~(SET_FX | AT91_UDP_TXCOMP);
1300
1301                /* write more IN DATA? */
1302                if (req && ep0->is_in) {
1303                        if (handle_ep(ep0))
1304                                udc->req_pending = 0;
1305
1306                /*
1307                 * Ack after:
1308                 *  - last IN DATA packet (including GET_STATUS)
1309                 *  - IN/STATUS for OUT DATA
1310                 *  - IN/STATUS for any zero-length DATA stage
1311                 * except for the IN DATA case, the host should send
1312                 * an OUT status later, which we'll ack.
1313                 */
1314                } else {
1315                        udc->req_pending = 0;
1316                        __raw_writel(csr, creg);
1317
1318                        /*
1319                         * SET_ADDRESS takes effect only after the STATUS
1320                         * (to the original address) gets acked.
1321                         */
1322                        if (udc->wait_for_addr_ack) {
1323                                u32     tmp;
1324
1325                                at91_udp_write(udc, AT91_UDP_FADDR,
1326                                                AT91_UDP_FEN | udc->addr);
1327                                tmp = at91_udp_read(udc, AT91_UDP_GLB_STAT);
1328                                tmp &= ~AT91_UDP_FADDEN;
1329                                if (udc->addr)
1330                                        tmp |= AT91_UDP_FADDEN;
1331                                at91_udp_write(udc, AT91_UDP_GLB_STAT, tmp);
1332
1333                                udc->wait_for_addr_ack = 0;
1334                                VDBG("address %d\n", udc->addr);
1335                        }
1336                }
1337        }
1338
1339        /* OUT packet arrived ... */
1340        else if (csr & AT91_UDP_RX_DATA_BK0) {
1341                csr |= CLR_FX;
1342                csr &= ~(SET_FX | AT91_UDP_RX_DATA_BK0);
1343
1344                /* OUT DATA stage */
1345                if (!ep0->is_in) {
1346                        if (req) {
1347                                if (handle_ep(ep0)) {
1348                                        /* send IN/STATUS */
1349                                        PACKET("ep0 in/status\n");
1350                                        csr = __raw_readl(creg);
1351                                        csr &= ~SET_FX;
1352                                        csr |= CLR_FX | AT91_UDP_TXPKTRDY;
1353                                        __raw_writel(csr, creg);
1354                                        udc->req_pending = 0;
1355                                }
1356                        } else if (udc->req_pending) {
1357                                /*
1358                                 * AT91 hardware has a hard time with this
1359                                 * "deferred response" mode for control-OUT
1360                                 * transfers.  (For control-IN it's fine.)
1361                                 *
1362                                 * The normal solution leaves OUT data in the
1363                                 * fifo until the gadget driver is ready.
1364                                 * We couldn't do that here without disabling
1365                                 * the IRQ that tells about SETUP packets,
1366                                 * e.g. when the host gets impatient...
1367                                 *
1368                                 * Working around it by copying into a buffer
1369                                 * would almost be a non-deferred response,
1370                                 * except that it wouldn't permit reliable
1371                                 * stalling of the request.  Instead, demand
1372                                 * that gadget drivers not use this mode.
1373                                 */
1374                                DBG("no control-OUT deferred responses!\n");
1375                                __raw_writel(csr | AT91_UDP_FORCESTALL, creg);
1376                                udc->req_pending = 0;
1377                        }
1378
1379                /* STATUS stage for control-IN; ack.  */
1380                } else {
1381                        PACKET("ep0 out/status ACK\n");
1382                        __raw_writel(csr, creg);
1383
1384                        /* "early" status stage */
1385                        if (req)
1386                                done(ep0, req, 0);
1387                }
1388        }
1389}
1390
1391static irqreturn_t at91_udc_irq (int irq, void *_udc)
1392{
1393        struct at91_udc         *udc = _udc;
1394        u32                     rescans = 5;
1395        int                     disable_clock = 0;
1396        unsigned long           flags;
1397
1398        spin_lock_irqsave(&udc->lock, flags);
1399
1400        if (!udc->clocked) {
1401                clk_on(udc);
1402                disable_clock = 1;
1403        }
1404
1405        while (rescans--) {
1406                u32 status;
1407
1408                status = at91_udp_read(udc, AT91_UDP_ISR)
1409                        & at91_udp_read(udc, AT91_UDP_IMR);
1410                if (!status)
1411                        break;
1412
1413                /* USB reset irq:  not maskable */
1414                if (status & AT91_UDP_ENDBUSRES) {
1415                        at91_udp_write(udc, AT91_UDP_IDR, ~MINIMUS_INTERRUPTUS);
1416                        at91_udp_write(udc, AT91_UDP_IER, MINIMUS_INTERRUPTUS);
1417                        /* Atmel code clears this irq twice */
1418                        at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
1419                        at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_ENDBUSRES);
1420                        VDBG("end bus reset\n");
1421                        udc->addr = 0;
1422                        stop_activity(udc);
1423
1424                        /* enable ep0 */
1425                        at91_udp_write(udc, AT91_UDP_CSR(0),
1426                                        AT91_UDP_EPEDS | AT91_UDP_EPTYPE_CTRL);
1427                        udc->gadget.speed = USB_SPEED_FULL;
1428                        udc->suspended = 0;
1429                        at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_EP(0));
1430
1431                        /*
1432                         * NOTE:  this driver keeps clocks off unless the
1433                         * USB host is present.  That saves power, but for
1434                         * boards that don't support VBUS detection, both
1435                         * clocks need to be active most of the time.
1436                         */
1437
1438                /* host initiated suspend (3+ms bus idle) */
1439                } else if (status & AT91_UDP_RXSUSP) {
1440                        at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXSUSP);
1441                        at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXRSM);
1442                        at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXSUSP);
1443                        /* VDBG("bus suspend\n"); */
1444                        if (udc->suspended)
1445                                continue;
1446                        udc->suspended = 1;
1447
1448                        /*
1449                         * NOTE:  when suspending a VBUS-powered device, the
1450                         * gadget driver should switch into slow clock mode
1451                         * and then into standby to avoid drawing more than
1452                         * 500uA power (2500uA for some high-power configs).
1453                         */
1454                        if (udc->driver && udc->driver->suspend) {
1455                                spin_unlock(&udc->lock);
1456                                udc->driver->suspend(&udc->gadget);
1457                                spin_lock(&udc->lock);
1458                        }
1459
1460                /* host initiated resume */
1461                } else if (status & AT91_UDP_RXRSM) {
1462                        at91_udp_write(udc, AT91_UDP_IDR, AT91_UDP_RXRSM);
1463                        at91_udp_write(udc, AT91_UDP_IER, AT91_UDP_RXSUSP);
1464                        at91_udp_write(udc, AT91_UDP_ICR, AT91_UDP_RXRSM);
1465                        /* VDBG("bus resume\n"); */
1466                        if (!udc->suspended)
1467                                continue;
1468                        udc->suspended = 0;
1469
1470                        /*
1471                         * NOTE:  for a VBUS-powered device, the gadget driver
1472                         * would normally want to switch out of slow clock
1473                         * mode into normal mode.
1474                         */
1475                        if (udc->driver && udc->driver->resume) {
1476                                spin_unlock(&udc->lock);
1477                                udc->driver->resume(&udc->gadget);
1478                                spin_lock(&udc->lock);
1479                        }
1480
1481                /* endpoint IRQs are cleared by handling them */
1482                } else {
1483                        int             i;
1484                        unsigned        mask = 1;
1485                        struct at91_ep  *ep = &udc->ep[1];
1486
1487                        if (status & mask)
1488                                handle_ep0(udc);
1489                        for (i = 1; i < NUM_ENDPOINTS; i++) {
1490                                mask <<= 1;
1491                                if (status & mask)
1492                                        handle_ep(ep);
1493                                ep++;
1494                        }
1495                }
1496        }
1497
1498        if (disable_clock)
1499                clk_off(udc);
1500
1501        spin_unlock_irqrestore(&udc->lock, flags);
1502
1503        return IRQ_HANDLED;
1504}
1505
1506/*-------------------------------------------------------------------------*/
1507
1508static void nop_release(struct device *dev)
1509{
1510        /* nothing to free */
1511}
1512
1513static struct at91_udc controller = {
1514        .gadget = {
1515                .ops    = &at91_udc_ops,
1516                .ep0    = &controller.ep[0].ep,
1517                .name   = driver_name,
1518                .dev    = {
1519                        .init_name = "gadget",
1520                        .release = nop_release,
1521                }
1522        },
1523        .ep[0] = {
1524                .ep = {
1525                        .name   = ep0name,
1526                        .ops    = &at91_ep_ops,
1527                },
1528                .udc            = &controller,
1529                .maxpacket      = 8,
1530                .int_mask       = 1 << 0,
1531        },
1532        .ep[1] = {
1533                .ep = {
1534                        .name   = "ep1",
1535                        .ops    = &at91_ep_ops,
1536                },
1537                .udc            = &controller,
1538                .is_pingpong    = 1,
1539                .maxpacket      = 64,
1540                .int_mask       = 1 << 1,
1541        },
1542        .ep[2] = {
1543                .ep = {
1544                        .name   = "ep2",
1545                        .ops    = &at91_ep_ops,
1546                },
1547                .udc            = &controller,
1548                .is_pingpong    = 1,
1549                .maxpacket      = 64,
1550                .int_mask       = 1 << 2,
1551        },
1552        .ep[3] = {
1553                .ep = {
1554                        /* could actually do bulk too */
1555                        .name   = "ep3-int",
1556                        .ops    = &at91_ep_ops,
1557                },
1558                .udc            = &controller,
1559                .maxpacket      = 8,
1560                .int_mask       = 1 << 3,
1561        },
1562        .ep[4] = {
1563                .ep = {
1564                        .name   = "ep4",
1565                        .ops    = &at91_ep_ops,
1566                },
1567                .udc            = &controller,
1568                .is_pingpong    = 1,
1569                .maxpacket      = 256,
1570                .int_mask       = 1 << 4,
1571        },
1572        .ep[5] = {
1573                .ep = {
1574                        .name   = "ep5",
1575                        .ops    = &at91_ep_ops,
1576                },
1577                .udc            = &controller,
1578                .is_pingpong    = 1,
1579                .maxpacket      = 256,
1580                .int_mask       = 1 << 5,
1581        },
1582        /* ep6 and ep7 are also reserved (custom silicon might use them) */
1583};
1584
1585static void at91_vbus_update(struct at91_udc *udc, unsigned value)
1586{
1587        value ^= udc->board.vbus_active_low;
1588        if (value != udc->vbus)
1589                at91_vbus_session(&udc->gadget, value);
1590}
1591
1592static irqreturn_t at91_vbus_irq(int irq, void *_udc)
1593{
1594        struct at91_udc *udc = _udc;
1595
1596        /* vbus needs at least brief debouncing */
1597        udelay(10);
1598        at91_vbus_update(udc, gpio_get_value(udc->board.vbus_pin));
1599
1600        return IRQ_HANDLED;
1601}
1602
1603static void at91_vbus_timer_work(struct work_struct *work)
1604{
1605        struct at91_udc *udc = container_of(work, struct at91_udc,
1606                                            vbus_timer_work);
1607
1608        at91_vbus_update(udc, gpio_get_value_cansleep(udc->board.vbus_pin));
1609
1610        if (!timer_pending(&udc->vbus_timer))
1611                mod_timer(&udc->vbus_timer, jiffies + VBUS_POLL_TIMEOUT);
1612}
1613
1614static void at91_vbus_timer(unsigned long data)
1615{
1616        struct at91_udc *udc = (struct at91_udc *)data;
1617
1618        /*
1619         * If we are polling vbus it is likely that the gpio is on an
1620         * bus such as i2c or spi which may sleep, so schedule some work
1621         * to read the vbus gpio
1622         */
1623        schedule_work(&udc->vbus_timer_work);
1624}
1625
1626static int at91_start(struct usb_gadget *gadget,
1627                struct usb_gadget_driver *driver)
1628{
1629        struct at91_udc *udc;
1630
1631        udc = container_of(gadget, struct at91_udc, gadget);
1632        udc->driver = driver;
1633        udc->gadget.dev.of_node = udc->pdev->dev.of_node;
1634        udc->enabled = 1;
1635        udc->selfpowered = 1;
1636
1637        DBG("bound to %s\n", driver->driver.name);
1638        return 0;
1639}
1640
1641static int at91_stop(struct usb_gadget *gadget,
1642                struct usb_gadget_driver *driver)
1643{
1644        struct at91_udc *udc;
1645        unsigned long   flags;
1646
1647        udc = container_of(gadget, struct at91_udc, gadget);
1648        spin_lock_irqsave(&udc->lock, flags);
1649        udc->enabled = 0;
1650        at91_udp_write(udc, AT91_UDP_IDR, ~0);
1651        spin_unlock_irqrestore(&udc->lock, flags);
1652
1653        udc->driver = NULL;
1654
1655        DBG("unbound from %s\n", driver->driver.name);
1656        return 0;
1657}
1658
1659/*-------------------------------------------------------------------------*/
1660
1661static void at91udc_shutdown(struct platform_device *dev)
1662{
1663        struct at91_udc *udc = platform_get_drvdata(dev);
1664        unsigned long   flags;
1665
1666        /* force disconnect on reboot */
1667        spin_lock_irqsave(&udc->lock, flags);
1668        pullup(platform_get_drvdata(dev), 0);
1669        spin_unlock_irqrestore(&udc->lock, flags);
1670}
1671
1672static void at91udc_of_init(struct at91_udc *udc,
1673                                     struct device_node *np)
1674{
1675        struct at91_udc_data *board = &udc->board;
1676        u32 val;
1677        enum of_gpio_flags flags;
1678
1679        if (of_property_read_u32(np, "atmel,vbus-polled", &val) == 0)
1680                board->vbus_polled = 1;
1681
1682        board->vbus_pin = of_get_named_gpio_flags(np, "atmel,vbus-gpio", 0,
1683                                                  &flags);
1684        board->vbus_active_low = (flags & OF_GPIO_ACTIVE_LOW) ? 1 : 0;
1685
1686        board->pullup_pin = of_get_named_gpio_flags(np, "atmel,pullup-gpio", 0,
1687                                                  &flags);
1688
1689        board->pullup_active_low = (flags & OF_GPIO_ACTIVE_LOW) ? 1 : 0;
1690}
1691
1692static int at91udc_probe(struct platform_device *pdev)
1693{
1694        struct device   *dev = &pdev->dev;
1695        struct at91_udc *udc;
1696        int             retval;
1697        struct resource *res;
1698
1699        if (!dev->platform_data && !pdev->dev.of_node) {
1700                /* small (so we copy it) but critical! */
1701                DBG("missing platform_data\n");
1702                return -ENODEV;
1703        }
1704
1705        if (pdev->num_resources != 2) {
1706                DBG("invalid num_resources\n");
1707                return -ENODEV;
1708        }
1709        if ((pdev->resource[0].flags != IORESOURCE_MEM)
1710                        || (pdev->resource[1].flags != IORESOURCE_IRQ)) {
1711                DBG("invalid resource type\n");
1712                return -ENODEV;
1713        }
1714
1715        res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1716        if (!res)
1717                return -ENXIO;
1718
1719        if (!request_mem_region(res->start, resource_size(res), driver_name)) {
1720                DBG("someone's using UDC memory\n");
1721                return -EBUSY;
1722        }
1723
1724        /* init software state */
1725        udc = &controller;
1726        udc->gadget.dev.parent = dev;
1727        if (pdev->dev.of_node)
1728                at91udc_of_init(udc, pdev->dev.of_node);
1729        else
1730                memcpy(&udc->board, dev->platform_data,
1731                       sizeof(struct at91_udc_data));
1732        udc->pdev = pdev;
1733        udc->enabled = 0;
1734        spin_lock_init(&udc->lock);
1735
1736        /* rm9200 needs manual D+ pullup; off by default */
1737        if (cpu_is_at91rm9200()) {
1738                if (!gpio_is_valid(udc->board.pullup_pin)) {
1739                        DBG("no D+ pullup?\n");
1740                        retval = -ENODEV;
1741                        goto fail0;
1742                }
1743                retval = gpio_request(udc->board.pullup_pin, "udc_pullup");
1744                if (retval) {
1745                        DBG("D+ pullup is busy\n");
1746                        goto fail0;
1747                }
1748                gpio_direction_output(udc->board.pullup_pin,
1749                                udc->board.pullup_active_low);
1750        }
1751
1752        /* newer chips have more FIFO memory than rm9200 */
1753        if (cpu_is_at91sam9260() || cpu_is_at91sam9g20()) {
1754                udc->ep[0].maxpacket = 64;
1755                udc->ep[3].maxpacket = 64;
1756                udc->ep[4].maxpacket = 512;
1757                udc->ep[5].maxpacket = 512;
1758        } else if (cpu_is_at91sam9261() || cpu_is_at91sam9g10()) {
1759                udc->ep[3].maxpacket = 64;
1760        } else if (cpu_is_at91sam9263()) {
1761                udc->ep[0].maxpacket = 64;
1762                udc->ep[3].maxpacket = 64;
1763        }
1764
1765        udc->udp_baseaddr = ioremap(res->start, resource_size(res));
1766        if (!udc->udp_baseaddr) {
1767                retval = -ENOMEM;
1768                goto fail0a;
1769        }
1770
1771        udc_reinit(udc);
1772
1773        /* get interface and function clocks */
1774        udc->iclk = clk_get(dev, "udc_clk");
1775        udc->fclk = clk_get(dev, "udpck");
1776        if (IS_ERR(udc->iclk) || IS_ERR(udc->fclk)) {
1777                DBG("clocks missing\n");
1778                retval = -ENODEV;
1779                /* NOTE: we "know" here that refcounts on these are NOPs */
1780                goto fail1;
1781        }
1782
1783        /* don't do anything until we have both gadget driver and VBUS */
1784        clk_enable(udc->iclk);
1785        at91_udp_write(udc, AT91_UDP_TXVC, AT91_UDP_TXVC_TXVDIS);
1786        at91_udp_write(udc, AT91_UDP_IDR, 0xffffffff);
1787        /* Clear all pending interrupts - UDP may be used by bootloader. */
1788        at91_udp_write(udc, AT91_UDP_ICR, 0xffffffff);
1789        clk_disable(udc->iclk);
1790
1791        /* request UDC and maybe VBUS irqs */
1792        udc->udp_irq = platform_get_irq(pdev, 0);
1793        retval = request_irq(udc->udp_irq, at91_udc_irq,
1794                        0, driver_name, udc);
1795        if (retval < 0) {
1796                DBG("request irq %d failed\n", udc->udp_irq);
1797                goto fail1;
1798        }
1799        if (gpio_is_valid(udc->board.vbus_pin)) {
1800                retval = gpio_request(udc->board.vbus_pin, "udc_vbus");
1801                if (retval < 0) {
1802                        DBG("request vbus pin failed\n");
1803                        goto fail2;
1804                }
1805                gpio_direction_input(udc->board.vbus_pin);
1806
1807                /*
1808                 * Get the initial state of VBUS - we cannot expect
1809                 * a pending interrupt.
1810                 */
1811                udc->vbus = gpio_get_value_cansleep(udc->board.vbus_pin) ^
1812                        udc->board.vbus_active_low;
1813
1814                if (udc->board.vbus_polled) {
1815                        INIT_WORK(&udc->vbus_timer_work, at91_vbus_timer_work);
1816                        setup_timer(&udc->vbus_timer, at91_vbus_timer,
1817                                    (unsigned long)udc);
1818                        mod_timer(&udc->vbus_timer,
1819                                  jiffies + VBUS_POLL_TIMEOUT);
1820                } else {
1821                        if (request_irq(gpio_to_irq(udc->board.vbus_pin),
1822                                        at91_vbus_irq, 0, driver_name, udc)) {
1823                                DBG("request vbus irq %d failed\n",
1824                                    udc->board.vbus_pin);
1825                                retval = -EBUSY;
1826                                goto fail3;
1827                        }
1828                }
1829        } else {
1830                DBG("no VBUS detection, assuming always-on\n");
1831                udc->vbus = 1;
1832        }
1833        retval = usb_add_gadget_udc(dev, &udc->gadget);
1834        if (retval)
1835                goto fail4;
1836        dev_set_drvdata(dev, udc);
1837        device_init_wakeup(dev, 1);
1838        create_debug_file(udc);
1839
1840        INFO("%s version %s\n", driver_name, DRIVER_VERSION);
1841        return 0;
1842fail4:
1843        if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled)
1844                free_irq(gpio_to_irq(udc->board.vbus_pin), udc);
1845fail3:
1846        if (gpio_is_valid(udc->board.vbus_pin))
1847                gpio_free(udc->board.vbus_pin);
1848fail2:
1849        free_irq(udc->udp_irq, udc);
1850fail1:
1851        iounmap(udc->udp_baseaddr);
1852fail0a:
1853        if (cpu_is_at91rm9200())
1854                gpio_free(udc->board.pullup_pin);
1855fail0:
1856        release_mem_region(res->start, resource_size(res));
1857        DBG("%s probe failed, %d\n", driver_name, retval);
1858        return retval;
1859}
1860
1861static int __exit at91udc_remove(struct platform_device *pdev)
1862{
1863        struct at91_udc *udc = platform_get_drvdata(pdev);
1864        struct resource *res;
1865        unsigned long   flags;
1866
1867        DBG("remove\n");
1868
1869        usb_del_gadget_udc(&udc->gadget);
1870        if (udc->driver)
1871                return -EBUSY;
1872
1873        spin_lock_irqsave(&udc->lock, flags);
1874        pullup(udc, 0);
1875        spin_unlock_irqrestore(&udc->lock, flags);
1876
1877        device_init_wakeup(&pdev->dev, 0);
1878        remove_debug_file(udc);
1879        if (gpio_is_valid(udc->board.vbus_pin)) {
1880                free_irq(gpio_to_irq(udc->board.vbus_pin), udc);
1881                gpio_free(udc->board.vbus_pin);
1882        }
1883        free_irq(udc->udp_irq, udc);
1884        iounmap(udc->udp_baseaddr);
1885
1886        if (cpu_is_at91rm9200())
1887                gpio_free(udc->board.pullup_pin);
1888
1889        res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
1890        release_mem_region(res->start, resource_size(res));
1891
1892        clk_put(udc->iclk);
1893        clk_put(udc->fclk);
1894
1895        return 0;
1896}
1897
1898#ifdef CONFIG_PM
1899static int at91udc_suspend(struct platform_device *pdev, pm_message_t mesg)
1900{
1901        struct at91_udc *udc = platform_get_drvdata(pdev);
1902        int             wake = udc->driver && device_may_wakeup(&pdev->dev);
1903        unsigned long   flags;
1904
1905        /* Unless we can act normally to the host (letting it wake us up
1906         * whenever it has work for us) force disconnect.  Wakeup requires
1907         * PLLB for USB events (signaling for reset, wakeup, or incoming
1908         * tokens) and VBUS irqs (on systems which support them).
1909         */
1910        if ((!udc->suspended && udc->addr)
1911                        || !wake
1912                        || at91_suspend_entering_slow_clock()) {
1913                spin_lock_irqsave(&udc->lock, flags);
1914                pullup(udc, 0);
1915                wake = 0;
1916                spin_unlock_irqrestore(&udc->lock, flags);
1917        } else
1918                enable_irq_wake(udc->udp_irq);
1919
1920        udc->active_suspend = wake;
1921        if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled && wake)
1922                enable_irq_wake(udc->board.vbus_pin);
1923        return 0;
1924}
1925
1926static int at91udc_resume(struct platform_device *pdev)
1927{
1928        struct at91_udc *udc = platform_get_drvdata(pdev);
1929        unsigned long   flags;
1930
1931        if (gpio_is_valid(udc->board.vbus_pin) && !udc->board.vbus_polled &&
1932            udc->active_suspend)
1933                disable_irq_wake(udc->board.vbus_pin);
1934
1935        /* maybe reconnect to host; if so, clocks on */
1936        if (udc->active_suspend)
1937                disable_irq_wake(udc->udp_irq);
1938        else {
1939                spin_lock_irqsave(&udc->lock, flags);
1940                pullup(udc, 1);
1941                spin_unlock_irqrestore(&udc->lock, flags);
1942        }
1943        return 0;
1944}
1945#else
1946#define at91udc_suspend NULL
1947#define at91udc_resume  NULL
1948#endif
1949
1950#if defined(CONFIG_OF)
1951static const struct of_device_id at91_udc_dt_ids[] = {
1952        { .compatible = "atmel,at91rm9200-udc" },
1953        { /* sentinel */ }
1954};
1955
1956MODULE_DEVICE_TABLE(of, at91_udc_dt_ids);
1957#endif
1958
1959static struct platform_driver at91_udc_driver = {
1960        .remove         = __exit_p(at91udc_remove),
1961        .shutdown       = at91udc_shutdown,
1962        .suspend        = at91udc_suspend,
1963        .resume         = at91udc_resume,
1964        .driver         = {
1965                .name   = (char *) driver_name,
1966                .owner  = THIS_MODULE,
1967                .of_match_table = of_match_ptr(at91_udc_dt_ids),
1968        },
1969};
1970
1971module_platform_driver_probe(at91_udc_driver, at91udc_probe);
1972
1973MODULE_DESCRIPTION("AT91 udc driver");
1974MODULE_AUTHOR("Thomas Rathbone, David Brownell");
1975MODULE_LICENSE("GPL");
1976MODULE_ALIAS("platform:at91_udc");
1977