Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 1 | /* |
| 2 | * Driver for the NXP ISP1760 chip |
| 3 | * |
| 4 | * However, the code might contain some bugs. What doesn't work for sure is: |
| 5 | * - ISO |
| 6 | * - OTG |
| 7 | e The interrupt line is configured as active low, level. |
| 8 | * |
| 9 | * (c) 2007 Sebastian Siewior <bigeasy@linutronix.de> |
| 10 | * |
| 11 | */ |
| 12 | #include <linux/module.h> |
| 13 | #include <linux/kernel.h> |
| 14 | #include <linux/slab.h> |
| 15 | #include <linux/list.h> |
| 16 | #include <linux/usb.h> |
| 17 | #include <linux/debugfs.h> |
| 18 | #include <linux/uaccess.h> |
| 19 | #include <linux/io.h> |
| 20 | #include <asm/unaligned.h> |
| 21 | |
| 22 | #include "../core/hcd.h" |
| 23 | #include "isp1760-hcd.h" |
| 24 | |
| 25 | static struct kmem_cache *qtd_cachep; |
| 26 | static struct kmem_cache *qh_cachep; |
| 27 | |
| 28 | struct isp1760_hcd { |
| 29 | u32 hcs_params; |
| 30 | spinlock_t lock; |
| 31 | struct inter_packet_info atl_ints[32]; |
| 32 | struct inter_packet_info int_ints[32]; |
| 33 | struct memory_chunk memory_pool[BLOCKS]; |
| 34 | |
| 35 | /* periodic schedule support */ |
| 36 | #define DEFAULT_I_TDPS 1024 |
| 37 | unsigned periodic_size; |
| 38 | unsigned i_thresh; |
| 39 | unsigned long reset_done; |
| 40 | unsigned long next_statechange; |
Nate Case | 3faefc8 | 2008-06-17 11:11:38 -0500 | [diff] [blame] | 41 | unsigned int devflags; |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 42 | }; |
| 43 | |
| 44 | static inline struct isp1760_hcd *hcd_to_priv(struct usb_hcd *hcd) |
| 45 | { |
| 46 | return (struct isp1760_hcd *) (hcd->hcd_priv); |
| 47 | } |
| 48 | static inline struct usb_hcd *priv_to_hcd(struct isp1760_hcd *priv) |
| 49 | { |
| 50 | return container_of((void *) priv, struct usb_hcd, hcd_priv); |
| 51 | } |
| 52 | |
| 53 | /* Section 2.2 Host Controller Capability Registers */ |
| 54 | #define HC_LENGTH(p) (((p)>>00)&0x00ff) /* bits 7:0 */ |
| 55 | #define HC_VERSION(p) (((p)>>16)&0xffff) /* bits 31:16 */ |
| 56 | #define HCS_INDICATOR(p) ((p)&(1 << 16)) /* true: has port indicators */ |
| 57 | #define HCS_PPC(p) ((p)&(1 << 4)) /* true: port power control */ |
| 58 | #define HCS_N_PORTS(p) (((p)>>0)&0xf) /* bits 3:0, ports on HC */ |
| 59 | #define HCC_ISOC_CACHE(p) ((p)&(1 << 7)) /* true: can cache isoc frame */ |
| 60 | #define HCC_ISOC_THRES(p) (((p)>>4)&0x7) /* bits 6:4, uframes cached */ |
| 61 | |
| 62 | /* Section 2.3 Host Controller Operational Registers */ |
| 63 | #define CMD_LRESET (1<<7) /* partial reset (no ports, etc) */ |
| 64 | #define CMD_RESET (1<<1) /* reset HC not bus */ |
| 65 | #define CMD_RUN (1<<0) /* start/stop HC */ |
| 66 | #define STS_PCD (1<<2) /* port change detect */ |
| 67 | #define FLAG_CF (1<<0) /* true: we'll support "high speed" */ |
| 68 | |
| 69 | #define PORT_OWNER (1<<13) /* true: companion hc owns this port */ |
| 70 | #define PORT_POWER (1<<12) /* true: has power (see PPC) */ |
| 71 | #define PORT_USB11(x) (((x) & (3 << 10)) == (1 << 10)) /* USB 1.1 device */ |
| 72 | #define PORT_RESET (1<<8) /* reset port */ |
| 73 | #define PORT_SUSPEND (1<<7) /* suspend port */ |
| 74 | #define PORT_RESUME (1<<6) /* resume it */ |
| 75 | #define PORT_PE (1<<2) /* port enable */ |
| 76 | #define PORT_CSC (1<<1) /* connect status change */ |
| 77 | #define PORT_CONNECT (1<<0) /* device connected */ |
| 78 | #define PORT_RWC_BITS (PORT_CSC) |
| 79 | |
| 80 | struct isp1760_qtd { |
| 81 | struct isp1760_qtd *hw_next; |
| 82 | u8 packet_type; |
| 83 | u8 toggle; |
| 84 | |
| 85 | void *data_buffer; |
| 86 | /* the rest is HCD-private */ |
| 87 | struct list_head qtd_list; |
| 88 | struct urb *urb; |
| 89 | size_t length; |
| 90 | |
| 91 | /* isp special*/ |
| 92 | u32 status; |
| 93 | #define URB_COMPLETE_NOTIFY (1 << 0) |
| 94 | #define URB_ENQUEUED (1 << 1) |
| 95 | #define URB_TYPE_ATL (1 << 2) |
| 96 | #define URB_TYPE_INT (1 << 3) |
| 97 | }; |
| 98 | |
| 99 | struct isp1760_qh { |
| 100 | /* first part defined by EHCI spec */ |
| 101 | struct list_head qtd_list; |
| 102 | struct isp1760_hcd *priv; |
| 103 | |
| 104 | /* periodic schedule info */ |
| 105 | unsigned short period; /* polling interval */ |
| 106 | struct usb_device *dev; |
| 107 | |
| 108 | u32 toggle; |
| 109 | u32 ping; |
| 110 | }; |
| 111 | |
| 112 | #define ehci_port_speed(priv, portsc) (1 << USB_PORT_FEAT_HIGHSPEED) |
| 113 | |
| 114 | static unsigned int isp1760_readl(__u32 __iomem *regs) |
| 115 | { |
| 116 | return readl(regs); |
| 117 | } |
| 118 | |
| 119 | static void isp1760_writel(const unsigned int val, __u32 __iomem *regs) |
| 120 | { |
| 121 | writel(val, regs); |
| 122 | } |
| 123 | |
| 124 | /* |
| 125 | * The next two copy via MMIO data to/from the device. memcpy_{to|from}io() |
| 126 | * doesn't quite work because some people have to enforce 32-bit access |
| 127 | */ |
| 128 | static void priv_read_copy(struct isp1760_hcd *priv, u32 *src, |
Enrico Scholz | 3f02a95 | 2008-07-17 20:09:30 +0200 | [diff] [blame] | 129 | __u32 __iomem *dst, u32 len) |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 130 | { |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 131 | u32 val; |
| 132 | u8 *buff8; |
| 133 | |
| 134 | if (!src) { |
| 135 | printk(KERN_ERR "ERROR: buffer: %p len: %d\n", src, len); |
| 136 | return; |
| 137 | } |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 138 | |
| 139 | while (len >= 4) { |
| 140 | *src = __raw_readl(dst); |
| 141 | len -= 4; |
| 142 | src++; |
| 143 | dst++; |
| 144 | } |
| 145 | |
| 146 | if (!len) |
| 147 | return; |
| 148 | |
| 149 | /* in case we have 3, 2 or 1 by left. The dst buffer may not be fully |
| 150 | * allocated. |
| 151 | */ |
| 152 | val = isp1760_readl(dst); |
| 153 | |
| 154 | buff8 = (u8 *)src; |
| 155 | while (len) { |
| 156 | |
| 157 | *buff8 = val; |
| 158 | val >>= 8; |
| 159 | len--; |
| 160 | buff8++; |
| 161 | } |
| 162 | } |
| 163 | |
| 164 | static void priv_write_copy(const struct isp1760_hcd *priv, const u32 *src, |
| 165 | __u32 __iomem *dst, u32 len) |
| 166 | { |
| 167 | while (len >= 4) { |
| 168 | __raw_writel(*src, dst); |
| 169 | len -= 4; |
| 170 | src++; |
| 171 | dst++; |
| 172 | } |
| 173 | |
| 174 | if (!len) |
| 175 | return; |
| 176 | /* in case we have 3, 2 or 1 by left. The buffer is allocated and the |
| 177 | * extra bytes should not be read by the HW |
| 178 | */ |
| 179 | |
| 180 | __raw_writel(*src, dst); |
| 181 | } |
| 182 | |
| 183 | /* memory management of the 60kb on the chip from 0x1000 to 0xffff */ |
| 184 | static void init_memory(struct isp1760_hcd *priv) |
| 185 | { |
| 186 | int i; |
| 187 | u32 payload; |
| 188 | |
| 189 | payload = 0x1000; |
| 190 | for (i = 0; i < BLOCK_1_NUM; i++) { |
| 191 | priv->memory_pool[i].start = payload; |
| 192 | priv->memory_pool[i].size = BLOCK_1_SIZE; |
| 193 | priv->memory_pool[i].free = 1; |
| 194 | payload += priv->memory_pool[i].size; |
| 195 | } |
| 196 | |
| 197 | |
| 198 | for (i = BLOCK_1_NUM; i < BLOCK_1_NUM + BLOCK_2_NUM; i++) { |
| 199 | priv->memory_pool[i].start = payload; |
| 200 | priv->memory_pool[i].size = BLOCK_2_SIZE; |
| 201 | priv->memory_pool[i].free = 1; |
| 202 | payload += priv->memory_pool[i].size; |
| 203 | } |
| 204 | |
| 205 | |
| 206 | for (i = BLOCK_1_NUM + BLOCK_2_NUM; i < BLOCKS; i++) { |
| 207 | priv->memory_pool[i].start = payload; |
| 208 | priv->memory_pool[i].size = BLOCK_3_SIZE; |
| 209 | priv->memory_pool[i].free = 1; |
| 210 | payload += priv->memory_pool[i].size; |
| 211 | } |
| 212 | |
| 213 | BUG_ON(payload - priv->memory_pool[i - 1].size > PAYLOAD_SIZE); |
| 214 | } |
| 215 | |
| 216 | static u32 alloc_mem(struct isp1760_hcd *priv, u32 size) |
| 217 | { |
| 218 | int i; |
| 219 | |
| 220 | if (!size) |
| 221 | return ISP1760_NULL_POINTER; |
| 222 | |
| 223 | for (i = 0; i < BLOCKS; i++) { |
| 224 | if (priv->memory_pool[i].size >= size && |
| 225 | priv->memory_pool[i].free) { |
| 226 | |
| 227 | priv->memory_pool[i].free = 0; |
| 228 | return priv->memory_pool[i].start; |
| 229 | } |
| 230 | } |
| 231 | |
| 232 | printk(KERN_ERR "ISP1760 MEM: can not allocate %d bytes of memory\n", |
| 233 | size); |
| 234 | printk(KERN_ERR "Current memory map:\n"); |
| 235 | for (i = 0; i < BLOCKS; i++) { |
| 236 | printk(KERN_ERR "Pool %2d size %4d status: %d\n", |
| 237 | i, priv->memory_pool[i].size, |
| 238 | priv->memory_pool[i].free); |
| 239 | } |
| 240 | /* XXX maybe -ENOMEM could be possible */ |
| 241 | BUG(); |
| 242 | return 0; |
| 243 | } |
| 244 | |
| 245 | static void free_mem(struct isp1760_hcd *priv, u32 mem) |
| 246 | { |
| 247 | int i; |
| 248 | |
| 249 | if (mem == ISP1760_NULL_POINTER) |
| 250 | return; |
| 251 | |
| 252 | for (i = 0; i < BLOCKS; i++) { |
| 253 | if (priv->memory_pool[i].start == mem) { |
| 254 | |
| 255 | BUG_ON(priv->memory_pool[i].free); |
| 256 | |
| 257 | priv->memory_pool[i].free = 1; |
| 258 | return ; |
| 259 | } |
| 260 | } |
| 261 | |
| 262 | printk(KERN_ERR "Trying to free not-here-allocated memory :%08x\n", |
| 263 | mem); |
| 264 | BUG(); |
| 265 | } |
| 266 | |
| 267 | static void isp1760_init_regs(struct usb_hcd *hcd) |
| 268 | { |
| 269 | isp1760_writel(0, hcd->regs + HC_BUFFER_STATUS_REG); |
| 270 | isp1760_writel(NO_TRANSFER_ACTIVE, hcd->regs + |
| 271 | HC_ATL_PTD_SKIPMAP_REG); |
| 272 | isp1760_writel(NO_TRANSFER_ACTIVE, hcd->regs + |
| 273 | HC_INT_PTD_SKIPMAP_REG); |
| 274 | isp1760_writel(NO_TRANSFER_ACTIVE, hcd->regs + |
| 275 | HC_ISO_PTD_SKIPMAP_REG); |
| 276 | |
| 277 | isp1760_writel(~NO_TRANSFER_ACTIVE, hcd->regs + |
| 278 | HC_ATL_PTD_DONEMAP_REG); |
| 279 | isp1760_writel(~NO_TRANSFER_ACTIVE, hcd->regs + |
| 280 | HC_INT_PTD_DONEMAP_REG); |
| 281 | isp1760_writel(~NO_TRANSFER_ACTIVE, hcd->regs + |
| 282 | HC_ISO_PTD_DONEMAP_REG); |
| 283 | } |
| 284 | |
| 285 | static int handshake(struct isp1760_hcd *priv, void __iomem *ptr, |
| 286 | u32 mask, u32 done, int usec) |
| 287 | { |
| 288 | u32 result; |
| 289 | |
| 290 | do { |
| 291 | result = isp1760_readl(ptr); |
| 292 | if (result == ~0) |
| 293 | return -ENODEV; |
| 294 | result &= mask; |
| 295 | if (result == done) |
| 296 | return 0; |
| 297 | udelay(1); |
| 298 | usec--; |
| 299 | } while (usec > 0); |
| 300 | return -ETIMEDOUT; |
| 301 | } |
| 302 | |
| 303 | /* reset a non-running (STS_HALT == 1) controller */ |
| 304 | static int ehci_reset(struct isp1760_hcd *priv) |
| 305 | { |
| 306 | int retval; |
| 307 | struct usb_hcd *hcd = priv_to_hcd(priv); |
| 308 | u32 command = isp1760_readl(hcd->regs + HC_USBCMD); |
| 309 | |
| 310 | command |= CMD_RESET; |
| 311 | isp1760_writel(command, hcd->regs + HC_USBCMD); |
| 312 | hcd->state = HC_STATE_HALT; |
| 313 | priv->next_statechange = jiffies; |
| 314 | retval = handshake(priv, hcd->regs + HC_USBCMD, |
| 315 | CMD_RESET, 0, 250 * 1000); |
| 316 | return retval; |
| 317 | } |
| 318 | |
| 319 | static void qh_destroy(struct isp1760_qh *qh) |
| 320 | { |
| 321 | BUG_ON(!list_empty(&qh->qtd_list)); |
| 322 | kmem_cache_free(qh_cachep, qh); |
| 323 | } |
| 324 | |
| 325 | static struct isp1760_qh *isp1760_qh_alloc(struct isp1760_hcd *priv, |
| 326 | gfp_t flags) |
| 327 | { |
| 328 | struct isp1760_qh *qh; |
| 329 | |
| 330 | qh = kmem_cache_zalloc(qh_cachep, flags); |
| 331 | if (!qh) |
| 332 | return qh; |
| 333 | |
| 334 | INIT_LIST_HEAD(&qh->qtd_list); |
| 335 | qh->priv = priv; |
| 336 | return qh; |
| 337 | } |
| 338 | |
| 339 | /* magic numbers that can affect system performance */ |
| 340 | #define EHCI_TUNE_CERR 3 /* 0-3 qtd retries; 0 == don't stop */ |
| 341 | #define EHCI_TUNE_RL_HS 4 /* nak throttle; see 4.9 */ |
| 342 | #define EHCI_TUNE_RL_TT 0 |
| 343 | #define EHCI_TUNE_MULT_HS 1 /* 1-3 transactions/uframe; 4.10.3 */ |
| 344 | #define EHCI_TUNE_MULT_TT 1 |
| 345 | #define EHCI_TUNE_FLS 2 /* (small) 256 frame schedule */ |
| 346 | |
| 347 | /* one-time init, only for memory state */ |
| 348 | static int priv_init(struct usb_hcd *hcd) |
| 349 | { |
| 350 | struct isp1760_hcd *priv = hcd_to_priv(hcd); |
| 351 | u32 hcc_params; |
| 352 | |
| 353 | spin_lock_init(&priv->lock); |
| 354 | |
| 355 | /* |
| 356 | * hw default: 1K periodic list heads, one per frame. |
| 357 | * periodic_size can shrink by USBCMD update if hcc_params allows. |
| 358 | */ |
| 359 | priv->periodic_size = DEFAULT_I_TDPS; |
| 360 | |
| 361 | /* controllers may cache some of the periodic schedule ... */ |
| 362 | hcc_params = isp1760_readl(hcd->regs + HC_HCCPARAMS); |
| 363 | /* full frame cache */ |
| 364 | if (HCC_ISOC_CACHE(hcc_params)) |
| 365 | priv->i_thresh = 8; |
| 366 | else /* N microframes cached */ |
| 367 | priv->i_thresh = 2 + HCC_ISOC_THRES(hcc_params); |
| 368 | |
| 369 | return 0; |
| 370 | } |
| 371 | |
| 372 | static int isp1760_hc_setup(struct usb_hcd *hcd) |
| 373 | { |
| 374 | struct isp1760_hcd *priv = hcd_to_priv(hcd); |
| 375 | int result; |
Nate Case | 3faefc8 | 2008-06-17 11:11:38 -0500 | [diff] [blame] | 376 | u32 scratch, hwmode; |
| 377 | |
| 378 | /* Setup HW Mode Control: This assumes a level active-low interrupt */ |
| 379 | hwmode = HW_DATA_BUS_32BIT; |
| 380 | |
| 381 | if (priv->devflags & ISP1760_FLAG_BUS_WIDTH_16) |
| 382 | hwmode &= ~HW_DATA_BUS_32BIT; |
| 383 | if (priv->devflags & ISP1760_FLAG_ANALOG_OC) |
| 384 | hwmode |= HW_ANA_DIGI_OC; |
| 385 | if (priv->devflags & ISP1760_FLAG_DACK_POL_HIGH) |
| 386 | hwmode |= HW_DACK_POL_HIGH; |
| 387 | if (priv->devflags & ISP1760_FLAG_DREQ_POL_HIGH) |
| 388 | hwmode |= HW_DREQ_POL_HIGH; |
| 389 | |
| 390 | /* |
| 391 | * We have to set this first in case we're in 16-bit mode. |
| 392 | * Write it twice to ensure correct upper bits if switching |
| 393 | * to 16-bit mode. |
| 394 | */ |
| 395 | isp1760_writel(hwmode, hcd->regs + HC_HW_MODE_CTRL); |
| 396 | isp1760_writel(hwmode, hcd->regs + HC_HW_MODE_CTRL); |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 397 | |
| 398 | isp1760_writel(0xdeadbabe, hcd->regs + HC_SCRATCH_REG); |
Nate Case | 3faefc8 | 2008-06-17 11:11:38 -0500 | [diff] [blame] | 399 | /* Change bus pattern */ |
| 400 | scratch = isp1760_readl(hcd->regs + HC_CHIP_ID_REG); |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 401 | scratch = isp1760_readl(hcd->regs + HC_SCRATCH_REG); |
| 402 | if (scratch != 0xdeadbabe) { |
| 403 | printk(KERN_ERR "ISP1760: Scratch test failed.\n"); |
| 404 | return -ENODEV; |
| 405 | } |
| 406 | |
| 407 | /* pre reset */ |
| 408 | isp1760_init_regs(hcd); |
| 409 | |
| 410 | /* reset */ |
| 411 | isp1760_writel(SW_RESET_RESET_ALL, hcd->regs + HC_RESET_REG); |
| 412 | mdelay(100); |
| 413 | |
| 414 | isp1760_writel(SW_RESET_RESET_HC, hcd->regs + HC_RESET_REG); |
| 415 | mdelay(100); |
| 416 | |
| 417 | result = ehci_reset(priv); |
| 418 | if (result) |
| 419 | return result; |
| 420 | |
| 421 | /* Step 11 passed */ |
| 422 | |
Nate Case | 3faefc8 | 2008-06-17 11:11:38 -0500 | [diff] [blame] | 423 | isp1760_info(priv, "bus width: %d, oc: %s\n", |
| 424 | (priv->devflags & ISP1760_FLAG_BUS_WIDTH_16) ? |
| 425 | 16 : 32, (priv->devflags & ISP1760_FLAG_ANALOG_OC) ? |
| 426 | "analog" : "digital"); |
| 427 | |
| 428 | /* ATL reset */ |
| 429 | isp1760_writel(hwmode | ALL_ATX_RESET, hcd->regs + HC_HW_MODE_CTRL); |
| 430 | mdelay(10); |
| 431 | isp1760_writel(hwmode, hcd->regs + HC_HW_MODE_CTRL); |
| 432 | |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 433 | isp1760_writel(INTERRUPT_ENABLE_MASK, hcd->regs + HC_INTERRUPT_REG); |
| 434 | isp1760_writel(INTERRUPT_ENABLE_MASK, hcd->regs + HC_INTERRUPT_ENABLE); |
| 435 | |
Nate Case | 3faefc8 | 2008-06-17 11:11:38 -0500 | [diff] [blame] | 436 | /* |
| 437 | * PORT 1 Control register of the ISP1760 is the OTG control |
Thomas Hommel | 42c6539 | 2008-12-18 10:31:40 +0100 | [diff] [blame] | 438 | * register on ISP1761. Since there is no OTG or device controller |
| 439 | * support in this driver, we use port 1 as a "normal" USB host port on |
| 440 | * both chips. |
Nate Case | 3faefc8 | 2008-06-17 11:11:38 -0500 | [diff] [blame] | 441 | */ |
Thomas Hommel | 42c6539 | 2008-12-18 10:31:40 +0100 | [diff] [blame] | 442 | isp1760_writel(PORT1_POWER | PORT1_INIT2, |
| 443 | hcd->regs + HC_PORT1_CTRL); |
| 444 | mdelay(10); |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 445 | |
| 446 | priv->hcs_params = isp1760_readl(hcd->regs + HC_HCSPARAMS); |
| 447 | |
| 448 | return priv_init(hcd); |
| 449 | } |
| 450 | |
| 451 | static void isp1760_init_maps(struct usb_hcd *hcd) |
| 452 | { |
| 453 | /*set last maps, for iso its only 1, else 32 tds bitmap*/ |
| 454 | isp1760_writel(0x80000000, hcd->regs + HC_ATL_PTD_LASTPTD_REG); |
| 455 | isp1760_writel(0x80000000, hcd->regs + HC_INT_PTD_LASTPTD_REG); |
| 456 | isp1760_writel(0x00000001, hcd->regs + HC_ISO_PTD_LASTPTD_REG); |
| 457 | } |
| 458 | |
| 459 | static void isp1760_enable_interrupts(struct usb_hcd *hcd) |
| 460 | { |
| 461 | isp1760_writel(0, hcd->regs + HC_ATL_IRQ_MASK_AND_REG); |
| 462 | isp1760_writel(0, hcd->regs + HC_ATL_IRQ_MASK_OR_REG); |
| 463 | isp1760_writel(0, hcd->regs + HC_INT_IRQ_MASK_AND_REG); |
| 464 | isp1760_writel(0, hcd->regs + HC_INT_IRQ_MASK_OR_REG); |
| 465 | isp1760_writel(0, hcd->regs + HC_ISO_IRQ_MASK_AND_REG); |
| 466 | isp1760_writel(0xffffffff, hcd->regs + HC_ISO_IRQ_MASK_OR_REG); |
| 467 | /* step 23 passed */ |
| 468 | } |
| 469 | |
| 470 | static int isp1760_run(struct usb_hcd *hcd) |
| 471 | { |
| 472 | struct isp1760_hcd *priv = hcd_to_priv(hcd); |
| 473 | int retval; |
| 474 | u32 temp; |
| 475 | u32 command; |
| 476 | u32 chipid; |
| 477 | |
| 478 | hcd->uses_new_polling = 1; |
| 479 | hcd->poll_rh = 0; |
| 480 | |
| 481 | hcd->state = HC_STATE_RUNNING; |
| 482 | isp1760_enable_interrupts(hcd); |
| 483 | temp = isp1760_readl(hcd->regs + HC_HW_MODE_CTRL); |
Nate Case | 3faefc8 | 2008-06-17 11:11:38 -0500 | [diff] [blame] | 484 | isp1760_writel(temp | HW_GLOBAL_INTR_EN, hcd->regs + HC_HW_MODE_CTRL); |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 485 | |
| 486 | command = isp1760_readl(hcd->regs + HC_USBCMD); |
| 487 | command &= ~(CMD_LRESET|CMD_RESET); |
| 488 | command |= CMD_RUN; |
| 489 | isp1760_writel(command, hcd->regs + HC_USBCMD); |
| 490 | |
| 491 | retval = handshake(priv, hcd->regs + HC_USBCMD, CMD_RUN, CMD_RUN, |
| 492 | 250 * 1000); |
| 493 | if (retval) |
| 494 | return retval; |
| 495 | |
| 496 | /* |
| 497 | * XXX |
| 498 | * Spec says to write FLAG_CF as last config action, priv code grabs |
| 499 | * the semaphore while doing so. |
| 500 | */ |
| 501 | down_write(&ehci_cf_port_reset_rwsem); |
| 502 | isp1760_writel(FLAG_CF, hcd->regs + HC_CONFIGFLAG); |
| 503 | |
| 504 | retval = handshake(priv, hcd->regs + HC_CONFIGFLAG, FLAG_CF, FLAG_CF, |
| 505 | 250 * 1000); |
| 506 | up_write(&ehci_cf_port_reset_rwsem); |
| 507 | if (retval) |
| 508 | return retval; |
| 509 | |
| 510 | chipid = isp1760_readl(hcd->regs + HC_CHIP_ID_REG); |
| 511 | isp1760_info(priv, "USB ISP %04x HW rev. %d started\n", chipid & 0xffff, |
| 512 | chipid >> 16); |
| 513 | |
| 514 | /* PTD Register Init Part 2, Step 28 */ |
| 515 | /* enable INTs */ |
| 516 | isp1760_init_maps(hcd); |
| 517 | |
| 518 | /* GRR this is run-once init(), being done every time the HC starts. |
| 519 | * So long as they're part of class devices, we can't do it init() |
| 520 | * since the class device isn't created that early. |
| 521 | */ |
| 522 | return 0; |
| 523 | } |
| 524 | |
| 525 | static u32 base_to_chip(u32 base) |
| 526 | { |
| 527 | return ((base - 0x400) >> 3); |
| 528 | } |
| 529 | |
| 530 | static void transform_into_atl(struct isp1760_hcd *priv, struct isp1760_qh *qh, |
| 531 | struct isp1760_qtd *qtd, struct urb *urb, |
| 532 | u32 payload, struct ptd *ptd) |
| 533 | { |
| 534 | u32 dw0; |
| 535 | u32 dw1; |
| 536 | u32 dw2; |
| 537 | u32 dw3; |
| 538 | u32 maxpacket; |
| 539 | u32 multi; |
| 540 | u32 pid_code; |
| 541 | u32 rl = RL_COUNTER; |
| 542 | u32 nak = NAK_COUNTER; |
| 543 | |
| 544 | /* according to 3.6.2, max packet len can not be > 0x400 */ |
| 545 | maxpacket = usb_maxpacket(urb->dev, urb->pipe, usb_pipeout(urb->pipe)); |
| 546 | multi = 1 + ((maxpacket >> 11) & 0x3); |
| 547 | maxpacket &= 0x7ff; |
| 548 | |
| 549 | /* DW0 */ |
| 550 | dw0 = PTD_VALID; |
| 551 | dw0 |= PTD_LENGTH(qtd->length); |
| 552 | dw0 |= PTD_MAXPACKET(maxpacket); |
| 553 | dw0 |= PTD_ENDPOINT(usb_pipeendpoint(urb->pipe)); |
| 554 | dw1 = usb_pipeendpoint(urb->pipe) >> 1; |
| 555 | |
| 556 | /* DW1 */ |
| 557 | dw1 |= PTD_DEVICE_ADDR(usb_pipedevice(urb->pipe)); |
| 558 | |
| 559 | pid_code = qtd->packet_type; |
| 560 | dw1 |= PTD_PID_TOKEN(pid_code); |
| 561 | |
| 562 | if (usb_pipebulk(urb->pipe)) |
| 563 | dw1 |= PTD_TRANS_BULK; |
| 564 | else if (usb_pipeint(urb->pipe)) |
| 565 | dw1 |= PTD_TRANS_INT; |
| 566 | |
| 567 | if (urb->dev->speed != USB_SPEED_HIGH) { |
| 568 | /* split transaction */ |
| 569 | |
| 570 | dw1 |= PTD_TRANS_SPLIT; |
| 571 | if (urb->dev->speed == USB_SPEED_LOW) |
| 572 | dw1 |= PTD_SE_USB_LOSPEED; |
| 573 | |
| 574 | dw1 |= PTD_PORT_NUM(urb->dev->ttport); |
| 575 | dw1 |= PTD_HUB_NUM(urb->dev->tt->hub->devnum); |
| 576 | |
| 577 | /* SE bit for Split INT transfers */ |
| 578 | if (usb_pipeint(urb->pipe) && |
| 579 | (urb->dev->speed == USB_SPEED_LOW)) |
| 580 | dw1 |= 2 << 16; |
| 581 | |
| 582 | dw3 = 0; |
| 583 | rl = 0; |
| 584 | nak = 0; |
| 585 | } else { |
| 586 | dw0 |= PTD_MULTI(multi); |
| 587 | if (usb_pipecontrol(urb->pipe) || usb_pipebulk(urb->pipe)) |
| 588 | dw3 = qh->ping; |
| 589 | else |
| 590 | dw3 = 0; |
| 591 | } |
| 592 | /* DW2 */ |
| 593 | dw2 = 0; |
| 594 | dw2 |= PTD_DATA_START_ADDR(base_to_chip(payload)); |
| 595 | dw2 |= PTD_RL_CNT(rl); |
| 596 | dw3 |= PTD_NAC_CNT(nak); |
| 597 | |
| 598 | /* DW3 */ |
| 599 | if (usb_pipecontrol(urb->pipe)) |
| 600 | dw3 |= PTD_DATA_TOGGLE(qtd->toggle); |
| 601 | else |
| 602 | dw3 |= qh->toggle; |
| 603 | |
| 604 | |
| 605 | dw3 |= PTD_ACTIVE; |
| 606 | /* Cerr */ |
| 607 | dw3 |= PTD_CERR(ERR_COUNTER); |
| 608 | |
| 609 | memset(ptd, 0, sizeof(*ptd)); |
| 610 | |
| 611 | ptd->dw0 = cpu_to_le32(dw0); |
| 612 | ptd->dw1 = cpu_to_le32(dw1); |
| 613 | ptd->dw2 = cpu_to_le32(dw2); |
| 614 | ptd->dw3 = cpu_to_le32(dw3); |
| 615 | } |
| 616 | |
| 617 | static void transform_add_int(struct isp1760_hcd *priv, struct isp1760_qh *qh, |
| 618 | struct isp1760_qtd *qtd, struct urb *urb, |
| 619 | u32 payload, struct ptd *ptd) |
| 620 | { |
| 621 | u32 maxpacket; |
| 622 | u32 multi; |
| 623 | u32 numberofusofs; |
| 624 | u32 i; |
| 625 | u32 usofmask, usof; |
| 626 | u32 period; |
| 627 | |
| 628 | maxpacket = usb_maxpacket(urb->dev, urb->pipe, usb_pipeout(urb->pipe)); |
| 629 | multi = 1 + ((maxpacket >> 11) & 0x3); |
| 630 | maxpacket &= 0x7ff; |
| 631 | /* length of the data per uframe */ |
| 632 | maxpacket = multi * maxpacket; |
| 633 | |
| 634 | numberofusofs = urb->transfer_buffer_length / maxpacket; |
| 635 | if (urb->transfer_buffer_length % maxpacket) |
| 636 | numberofusofs += 1; |
| 637 | |
| 638 | usofmask = 1; |
| 639 | usof = 0; |
| 640 | for (i = 0; i < numberofusofs; i++) { |
| 641 | usof |= usofmask; |
| 642 | usofmask <<= 1; |
| 643 | } |
| 644 | |
| 645 | if (urb->dev->speed != USB_SPEED_HIGH) { |
| 646 | /* split */ |
Harvey Harrison | 551509d | 2009-02-11 14:11:36 -0800 | [diff] [blame] | 647 | ptd->dw5 = cpu_to_le32(0x1c); |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 648 | |
| 649 | if (qh->period >= 32) |
| 650 | period = qh->period / 2; |
| 651 | else |
| 652 | period = qh->period; |
| 653 | |
| 654 | } else { |
| 655 | |
| 656 | if (qh->period >= 8) |
| 657 | period = qh->period/8; |
| 658 | else |
| 659 | period = qh->period; |
| 660 | |
| 661 | if (period >= 32) |
| 662 | period = 16; |
| 663 | |
| 664 | if (qh->period >= 8) { |
| 665 | /* millisecond period */ |
| 666 | period = (period << 3); |
| 667 | } else { |
| 668 | /* usof based tranmsfers */ |
| 669 | /* minimum 4 usofs */ |
| 670 | usof = 0x11; |
| 671 | } |
| 672 | } |
| 673 | |
| 674 | ptd->dw2 |= cpu_to_le32(period); |
| 675 | ptd->dw4 = cpu_to_le32(usof); |
| 676 | } |
| 677 | |
| 678 | static void transform_into_int(struct isp1760_hcd *priv, struct isp1760_qh *qh, |
| 679 | struct isp1760_qtd *qtd, struct urb *urb, |
| 680 | u32 payload, struct ptd *ptd) |
| 681 | { |
| 682 | transform_into_atl(priv, qh, qtd, urb, payload, ptd); |
| 683 | transform_add_int(priv, qh, qtd, urb, payload, ptd); |
| 684 | } |
| 685 | |
| 686 | static int qtd_fill(struct isp1760_qtd *qtd, void *databuffer, size_t len, |
| 687 | u32 token) |
| 688 | { |
| 689 | int count; |
| 690 | |
| 691 | qtd->data_buffer = databuffer; |
| 692 | qtd->packet_type = GET_QTD_TOKEN_TYPE(token); |
| 693 | qtd->toggle = GET_DATA_TOGGLE(token); |
| 694 | |
| 695 | if (len > HC_ATL_PL_SIZE) |
| 696 | count = HC_ATL_PL_SIZE; |
| 697 | else |
| 698 | count = len; |
| 699 | |
| 700 | qtd->length = count; |
| 701 | return count; |
| 702 | } |
| 703 | |
| 704 | static int check_error(struct ptd *ptd) |
| 705 | { |
| 706 | int error = 0; |
| 707 | u32 dw3; |
| 708 | |
| 709 | dw3 = le32_to_cpu(ptd->dw3); |
| 710 | if (dw3 & DW3_HALT_BIT) |
| 711 | error = -EPIPE; |
| 712 | |
| 713 | if (dw3 & DW3_ERROR_BIT) { |
| 714 | printk(KERN_ERR "error bit is set in DW3\n"); |
| 715 | error = -EPIPE; |
| 716 | } |
| 717 | |
| 718 | if (dw3 & DW3_QTD_ACTIVE) { |
| 719 | printk(KERN_ERR "transfer active bit is set DW3\n"); |
| 720 | printk(KERN_ERR "nak counter: %d, rl: %d\n", (dw3 >> 19) & 0xf, |
| 721 | (le32_to_cpu(ptd->dw2) >> 25) & 0xf); |
| 722 | } |
| 723 | |
| 724 | return error; |
| 725 | } |
| 726 | |
| 727 | static void check_int_err_status(u32 dw4) |
| 728 | { |
| 729 | u32 i; |
| 730 | |
| 731 | dw4 >>= 8; |
| 732 | |
| 733 | for (i = 0; i < 8; i++) { |
| 734 | switch (dw4 & 0x7) { |
| 735 | case INT_UNDERRUN: |
| 736 | printk(KERN_ERR "ERROR: under run , %d\n", i); |
| 737 | break; |
| 738 | |
| 739 | case INT_EXACT: |
| 740 | printk(KERN_ERR "ERROR: transaction error, %d\n", i); |
| 741 | break; |
| 742 | |
| 743 | case INT_BABBLE: |
| 744 | printk(KERN_ERR "ERROR: babble error, %d\n", i); |
| 745 | break; |
| 746 | } |
| 747 | dw4 >>= 3; |
| 748 | } |
| 749 | } |
| 750 | |
| 751 | static void enqueue_one_qtd(struct isp1760_qtd *qtd, struct isp1760_hcd *priv, |
| 752 | u32 payload) |
| 753 | { |
| 754 | u32 token; |
| 755 | struct usb_hcd *hcd = priv_to_hcd(priv); |
| 756 | |
| 757 | token = qtd->packet_type; |
| 758 | |
| 759 | if (qtd->length && (qtd->length <= HC_ATL_PL_SIZE)) { |
| 760 | switch (token) { |
| 761 | case IN_PID: |
| 762 | break; |
| 763 | case OUT_PID: |
| 764 | case SETUP_PID: |
| 765 | priv_write_copy(priv, qtd->data_buffer, |
| 766 | hcd->regs + payload, |
| 767 | qtd->length); |
| 768 | } |
| 769 | } |
| 770 | } |
| 771 | |
| 772 | static void enqueue_one_atl_qtd(u32 atl_regs, u32 payload, |
| 773 | struct isp1760_hcd *priv, struct isp1760_qh *qh, |
| 774 | struct urb *urb, u32 slot, struct isp1760_qtd *qtd) |
| 775 | { |
| 776 | struct ptd ptd; |
| 777 | struct usb_hcd *hcd = priv_to_hcd(priv); |
| 778 | |
| 779 | transform_into_atl(priv, qh, qtd, urb, payload, &ptd); |
| 780 | priv_write_copy(priv, (u32 *)&ptd, hcd->regs + atl_regs, sizeof(ptd)); |
| 781 | enqueue_one_qtd(qtd, priv, payload); |
| 782 | |
| 783 | priv->atl_ints[slot].urb = urb; |
| 784 | priv->atl_ints[slot].qh = qh; |
| 785 | priv->atl_ints[slot].qtd = qtd; |
| 786 | priv->atl_ints[slot].data_buffer = qtd->data_buffer; |
| 787 | priv->atl_ints[slot].payload = payload; |
| 788 | qtd->status |= URB_ENQUEUED | URB_TYPE_ATL; |
| 789 | qtd->status |= slot << 16; |
| 790 | } |
| 791 | |
| 792 | static void enqueue_one_int_qtd(u32 int_regs, u32 payload, |
| 793 | struct isp1760_hcd *priv, struct isp1760_qh *qh, |
| 794 | struct urb *urb, u32 slot, struct isp1760_qtd *qtd) |
| 795 | { |
| 796 | struct ptd ptd; |
| 797 | struct usb_hcd *hcd = priv_to_hcd(priv); |
| 798 | |
| 799 | transform_into_int(priv, qh, qtd, urb, payload, &ptd); |
| 800 | priv_write_copy(priv, (u32 *)&ptd, hcd->regs + int_regs, sizeof(ptd)); |
| 801 | enqueue_one_qtd(qtd, priv, payload); |
| 802 | |
| 803 | priv->int_ints[slot].urb = urb; |
| 804 | priv->int_ints[slot].qh = qh; |
| 805 | priv->int_ints[slot].qtd = qtd; |
| 806 | priv->int_ints[slot].data_buffer = qtd->data_buffer; |
| 807 | priv->int_ints[slot].payload = payload; |
| 808 | qtd->status |= URB_ENQUEUED | URB_TYPE_INT; |
| 809 | qtd->status |= slot << 16; |
| 810 | } |
| 811 | |
Adrian Bunk | 473bca9 | 2008-05-05 21:25:33 +0300 | [diff] [blame] | 812 | static void enqueue_an_ATL_packet(struct usb_hcd *hcd, struct isp1760_qh *qh, |
| 813 | struct isp1760_qtd *qtd) |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 814 | { |
| 815 | struct isp1760_hcd *priv = hcd_to_priv(hcd); |
| 816 | u32 skip_map, or_map; |
| 817 | u32 queue_entry; |
| 818 | u32 slot; |
| 819 | u32 atl_regs, payload; |
| 820 | u32 buffstatus; |
| 821 | |
Catalin Marinas | e6bdfe3 | 2009-03-23 12:38:16 +0000 | [diff] [blame^] | 822 | /* |
| 823 | * When this function is called from the interrupt handler to enqueue |
| 824 | * a follow-up packet, the SKIP register gets written and read back |
| 825 | * almost immediately. With ISP1761, this register requires a delay of |
| 826 | * 195ns between a write and subsequent read (see section 15.1.1.3). |
| 827 | */ |
| 828 | ndelay(195); |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 829 | skip_map = isp1760_readl(hcd->regs + HC_ATL_PTD_SKIPMAP_REG); |
| 830 | |
| 831 | BUG_ON(!skip_map); |
| 832 | slot = __ffs(skip_map); |
| 833 | queue_entry = 1 << slot; |
| 834 | |
| 835 | atl_regs = ATL_REGS_OFFSET + slot * sizeof(struct ptd); |
| 836 | |
| 837 | payload = alloc_mem(priv, qtd->length); |
| 838 | |
| 839 | enqueue_one_atl_qtd(atl_regs, payload, priv, qh, qtd->urb, slot, qtd); |
| 840 | |
| 841 | or_map = isp1760_readl(hcd->regs + HC_ATL_IRQ_MASK_OR_REG); |
| 842 | or_map |= queue_entry; |
| 843 | isp1760_writel(or_map, hcd->regs + HC_ATL_IRQ_MASK_OR_REG); |
| 844 | |
| 845 | skip_map &= ~queue_entry; |
| 846 | isp1760_writel(skip_map, hcd->regs + HC_ATL_PTD_SKIPMAP_REG); |
| 847 | |
| 848 | buffstatus = isp1760_readl(hcd->regs + HC_BUFFER_STATUS_REG); |
| 849 | buffstatus |= ATL_BUFFER; |
| 850 | isp1760_writel(buffstatus, hcd->regs + HC_BUFFER_STATUS_REG); |
| 851 | } |
| 852 | |
Adrian Bunk | 473bca9 | 2008-05-05 21:25:33 +0300 | [diff] [blame] | 853 | static void enqueue_an_INT_packet(struct usb_hcd *hcd, struct isp1760_qh *qh, |
| 854 | struct isp1760_qtd *qtd) |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 855 | { |
| 856 | struct isp1760_hcd *priv = hcd_to_priv(hcd); |
| 857 | u32 skip_map, or_map; |
| 858 | u32 queue_entry; |
| 859 | u32 slot; |
| 860 | u32 int_regs, payload; |
| 861 | u32 buffstatus; |
| 862 | |
Catalin Marinas | e6bdfe3 | 2009-03-23 12:38:16 +0000 | [diff] [blame^] | 863 | /* |
| 864 | * When this function is called from the interrupt handler to enqueue |
| 865 | * a follow-up packet, the SKIP register gets written and read back |
| 866 | * almost immediately. With ISP1761, this register requires a delay of |
| 867 | * 195ns between a write and subsequent read (see section 15.1.1.3). |
| 868 | */ |
| 869 | ndelay(195); |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 870 | skip_map = isp1760_readl(hcd->regs + HC_INT_PTD_SKIPMAP_REG); |
| 871 | |
| 872 | BUG_ON(!skip_map); |
| 873 | slot = __ffs(skip_map); |
| 874 | queue_entry = 1 << slot; |
| 875 | |
| 876 | int_regs = INT_REGS_OFFSET + slot * sizeof(struct ptd); |
| 877 | |
| 878 | payload = alloc_mem(priv, qtd->length); |
| 879 | |
| 880 | enqueue_one_int_qtd(int_regs, payload, priv, qh, qtd->urb, slot, qtd); |
| 881 | |
| 882 | or_map = isp1760_readl(hcd->regs + HC_INT_IRQ_MASK_OR_REG); |
| 883 | or_map |= queue_entry; |
| 884 | isp1760_writel(or_map, hcd->regs + HC_INT_IRQ_MASK_OR_REG); |
| 885 | |
| 886 | skip_map &= ~queue_entry; |
| 887 | isp1760_writel(skip_map, hcd->regs + HC_INT_PTD_SKIPMAP_REG); |
| 888 | |
| 889 | buffstatus = isp1760_readl(hcd->regs + HC_BUFFER_STATUS_REG); |
| 890 | buffstatus |= INT_BUFFER; |
| 891 | isp1760_writel(buffstatus, hcd->regs + HC_BUFFER_STATUS_REG); |
| 892 | } |
| 893 | |
| 894 | static void isp1760_urb_done(struct isp1760_hcd *priv, struct urb *urb, int status) |
| 895 | __releases(priv->lock) |
| 896 | __acquires(priv->lock) |
| 897 | { |
| 898 | if (!urb->unlinked) { |
| 899 | if (status == -EINPROGRESS) |
| 900 | status = 0; |
| 901 | } |
| 902 | |
| 903 | /* complete() can reenter this HCD */ |
| 904 | usb_hcd_unlink_urb_from_ep(priv_to_hcd(priv), urb); |
| 905 | spin_unlock(&priv->lock); |
| 906 | usb_hcd_giveback_urb(priv_to_hcd(priv), urb, status); |
| 907 | spin_lock(&priv->lock); |
| 908 | } |
| 909 | |
| 910 | static void isp1760_qtd_free(struct isp1760_qtd *qtd) |
| 911 | { |
| 912 | kmem_cache_free(qtd_cachep, qtd); |
| 913 | } |
| 914 | |
| 915 | static struct isp1760_qtd *clean_this_qtd(struct isp1760_qtd *qtd) |
| 916 | { |
| 917 | struct isp1760_qtd *tmp_qtd; |
| 918 | |
| 919 | tmp_qtd = qtd->hw_next; |
| 920 | list_del(&qtd->qtd_list); |
| 921 | isp1760_qtd_free(qtd); |
| 922 | return tmp_qtd; |
| 923 | } |
| 924 | |
| 925 | /* |
| 926 | * Remove this QTD from the QH list and free its memory. If this QTD |
| 927 | * isn't the last one than remove also his successor(s). |
| 928 | * Returns the QTD which is part of an new URB and should be enqueued. |
| 929 | */ |
| 930 | static struct isp1760_qtd *clean_up_qtdlist(struct isp1760_qtd *qtd) |
| 931 | { |
| 932 | struct isp1760_qtd *tmp_qtd; |
| 933 | int last_one; |
| 934 | |
| 935 | do { |
| 936 | tmp_qtd = qtd->hw_next; |
| 937 | last_one = qtd->status & URB_COMPLETE_NOTIFY; |
| 938 | list_del(&qtd->qtd_list); |
| 939 | isp1760_qtd_free(qtd); |
| 940 | qtd = tmp_qtd; |
| 941 | } while (!last_one && qtd); |
| 942 | |
| 943 | return qtd; |
| 944 | } |
| 945 | |
| 946 | static void do_atl_int(struct usb_hcd *usb_hcd) |
| 947 | { |
| 948 | struct isp1760_hcd *priv = hcd_to_priv(usb_hcd); |
| 949 | u32 done_map, skip_map; |
| 950 | struct ptd ptd; |
| 951 | struct urb *urb = NULL; |
| 952 | u32 atl_regs_base; |
| 953 | u32 atl_regs; |
| 954 | u32 queue_entry; |
| 955 | u32 payload; |
| 956 | u32 length; |
| 957 | u32 or_map; |
| 958 | u32 status = -EINVAL; |
| 959 | int error; |
| 960 | struct isp1760_qtd *qtd; |
| 961 | struct isp1760_qh *qh; |
| 962 | u32 rl; |
| 963 | u32 nakcount; |
| 964 | |
| 965 | done_map = isp1760_readl(usb_hcd->regs + |
| 966 | HC_ATL_PTD_DONEMAP_REG); |
| 967 | skip_map = isp1760_readl(usb_hcd->regs + |
| 968 | HC_ATL_PTD_SKIPMAP_REG); |
| 969 | |
| 970 | or_map = isp1760_readl(usb_hcd->regs + HC_ATL_IRQ_MASK_OR_REG); |
| 971 | or_map &= ~done_map; |
| 972 | isp1760_writel(or_map, usb_hcd->regs + HC_ATL_IRQ_MASK_OR_REG); |
| 973 | |
| 974 | atl_regs_base = ATL_REGS_OFFSET; |
| 975 | while (done_map) { |
| 976 | u32 dw1; |
| 977 | u32 dw2; |
| 978 | u32 dw3; |
| 979 | |
| 980 | status = 0; |
| 981 | |
| 982 | queue_entry = __ffs(done_map); |
| 983 | done_map &= ~(1 << queue_entry); |
| 984 | skip_map |= 1 << queue_entry; |
| 985 | |
| 986 | atl_regs = atl_regs_base + queue_entry * sizeof(struct ptd); |
| 987 | |
| 988 | urb = priv->atl_ints[queue_entry].urb; |
| 989 | qtd = priv->atl_ints[queue_entry].qtd; |
| 990 | qh = priv->atl_ints[queue_entry].qh; |
| 991 | payload = priv->atl_ints[queue_entry].payload; |
| 992 | |
| 993 | if (!qh) { |
| 994 | printk(KERN_ERR "qh is 0\n"); |
| 995 | continue; |
| 996 | } |
Enrico Scholz | 3f02a95 | 2008-07-17 20:09:30 +0200 | [diff] [blame] | 997 | isp1760_writel(atl_regs + ISP_BANK(0), usb_hcd->regs + |
| 998 | HC_MEMORY_REG); |
| 999 | isp1760_writel(payload + ISP_BANK(1), usb_hcd->regs + |
| 1000 | HC_MEMORY_REG); |
| 1001 | /* |
| 1002 | * write bank1 address twice to ensure the 90ns delay (time |
| 1003 | * between BANK0 write and the priv_read_copy() call is at |
Enrico Scholz | 380ec67 | 2008-08-20 00:06:22 +0200 | [diff] [blame] | 1004 | * least 3*t_WHWL + 2*t_w11 = 3*25ns + 2*17ns = 109ns) |
Enrico Scholz | 3f02a95 | 2008-07-17 20:09:30 +0200 | [diff] [blame] | 1005 | */ |
| 1006 | isp1760_writel(payload + ISP_BANK(1), usb_hcd->regs + |
| 1007 | HC_MEMORY_REG); |
| 1008 | |
| 1009 | priv_read_copy(priv, (u32 *)&ptd, usb_hcd->regs + atl_regs + |
| 1010 | ISP_BANK(0), sizeof(ptd)); |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 1011 | |
| 1012 | dw1 = le32_to_cpu(ptd.dw1); |
| 1013 | dw2 = le32_to_cpu(ptd.dw2); |
| 1014 | dw3 = le32_to_cpu(ptd.dw3); |
| 1015 | rl = (dw2 >> 25) & 0x0f; |
| 1016 | nakcount = (dw3 >> 19) & 0xf; |
| 1017 | |
| 1018 | /* Transfer Error, *but* active and no HALT -> reload */ |
| 1019 | if ((dw3 & DW3_ERROR_BIT) && (dw3 & DW3_QTD_ACTIVE) && |
| 1020 | !(dw3 & DW3_HALT_BIT)) { |
| 1021 | |
| 1022 | /* according to ppriv code, we have to |
| 1023 | * reload this one if trasfered bytes != requested bytes |
| 1024 | * else act like everything went smooth.. |
| 1025 | * XXX This just doesn't feel right and hasn't |
| 1026 | * triggered so far. |
| 1027 | */ |
| 1028 | |
| 1029 | length = PTD_XFERRED_LENGTH(dw3); |
| 1030 | printk(KERN_ERR "Should reload now.... transfered %d " |
| 1031 | "of %zu\n", length, qtd->length); |
| 1032 | BUG(); |
| 1033 | } |
| 1034 | |
| 1035 | if (!nakcount && (dw3 & DW3_QTD_ACTIVE)) { |
| 1036 | u32 buffstatus; |
| 1037 | |
| 1038 | /* XXX |
| 1039 | * NAKs are handled in HW by the chip. Usually if the |
| 1040 | * device is not able to send data fast enough. |
| 1041 | * This did not trigger for a long time now. |
| 1042 | */ |
| 1043 | printk(KERN_ERR "Reloading ptd %p/%p... qh %p readed: " |
Randy Dunlap | 2202647 | 2008-04-30 13:53:54 -0700 | [diff] [blame] | 1044 | "%d of %zu done: %08x cur: %08x\n", qtd, |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 1045 | urb, qh, PTD_XFERRED_LENGTH(dw3), |
| 1046 | qtd->length, done_map, |
| 1047 | (1 << queue_entry)); |
| 1048 | |
| 1049 | /* RL counter = ERR counter */ |
| 1050 | dw3 &= ~(0xf << 19); |
| 1051 | dw3 |= rl << 19; |
| 1052 | dw3 &= ~(3 << (55 - 32)); |
| 1053 | dw3 |= ERR_COUNTER << (55 - 32); |
| 1054 | |
| 1055 | /* |
| 1056 | * It is not needed to write skip map back because it |
| 1057 | * is unchanged. Just make sure that this entry is |
| 1058 | * unskipped once it gets written to the HW. |
| 1059 | */ |
| 1060 | skip_map &= ~(1 << queue_entry); |
| 1061 | or_map = isp1760_readl(usb_hcd->regs + |
| 1062 | HC_ATL_IRQ_MASK_OR_REG); |
| 1063 | or_map |= 1 << queue_entry; |
| 1064 | isp1760_writel(or_map, usb_hcd->regs + |
| 1065 | HC_ATL_IRQ_MASK_OR_REG); |
| 1066 | |
| 1067 | ptd.dw3 = cpu_to_le32(dw3); |
| 1068 | priv_write_copy(priv, (u32 *)&ptd, usb_hcd->regs + |
| 1069 | atl_regs, sizeof(ptd)); |
| 1070 | |
Harvey Harrison | 551509d | 2009-02-11 14:11:36 -0800 | [diff] [blame] | 1071 | ptd.dw0 |= cpu_to_le32(PTD_VALID); |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 1072 | priv_write_copy(priv, (u32 *)&ptd, usb_hcd->regs + |
| 1073 | atl_regs, sizeof(ptd)); |
| 1074 | |
| 1075 | buffstatus = isp1760_readl(usb_hcd->regs + |
| 1076 | HC_BUFFER_STATUS_REG); |
| 1077 | buffstatus |= ATL_BUFFER; |
| 1078 | isp1760_writel(buffstatus, usb_hcd->regs + |
| 1079 | HC_BUFFER_STATUS_REG); |
| 1080 | continue; |
| 1081 | } |
| 1082 | |
| 1083 | error = check_error(&ptd); |
| 1084 | if (error) { |
| 1085 | status = error; |
| 1086 | priv->atl_ints[queue_entry].qh->toggle = 0; |
| 1087 | priv->atl_ints[queue_entry].qh->ping = 0; |
| 1088 | urb->status = -EPIPE; |
| 1089 | |
| 1090 | #if 0 |
| 1091 | printk(KERN_ERR "Error in %s().\n", __func__); |
| 1092 | printk(KERN_ERR "IN dw0: %08x dw1: %08x dw2: %08x " |
| 1093 | "dw3: %08x dw4: %08x dw5: %08x dw6: " |
| 1094 | "%08x dw7: %08x\n", |
| 1095 | ptd.dw0, ptd.dw1, ptd.dw2, ptd.dw3, |
| 1096 | ptd.dw4, ptd.dw5, ptd.dw6, ptd.dw7); |
| 1097 | #endif |
| 1098 | } else { |
| 1099 | if (usb_pipetype(urb->pipe) == PIPE_BULK) { |
| 1100 | priv->atl_ints[queue_entry].qh->toggle = dw3 & |
| 1101 | (1 << 25); |
| 1102 | priv->atl_ints[queue_entry].qh->ping = dw3 & |
| 1103 | (1 << 26); |
| 1104 | } |
| 1105 | } |
| 1106 | |
| 1107 | length = PTD_XFERRED_LENGTH(dw3); |
| 1108 | if (length) { |
| 1109 | switch (DW1_GET_PID(dw1)) { |
| 1110 | case IN_PID: |
| 1111 | priv_read_copy(priv, |
| 1112 | priv->atl_ints[queue_entry].data_buffer, |
Enrico Scholz | 3f02a95 | 2008-07-17 20:09:30 +0200 | [diff] [blame] | 1113 | usb_hcd->regs + payload + ISP_BANK(1), |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 1114 | length); |
| 1115 | |
| 1116 | case OUT_PID: |
| 1117 | |
| 1118 | urb->actual_length += length; |
| 1119 | |
| 1120 | case SETUP_PID: |
| 1121 | break; |
| 1122 | } |
| 1123 | } |
| 1124 | |
| 1125 | priv->atl_ints[queue_entry].data_buffer = NULL; |
| 1126 | priv->atl_ints[queue_entry].urb = NULL; |
| 1127 | priv->atl_ints[queue_entry].qtd = NULL; |
| 1128 | priv->atl_ints[queue_entry].qh = NULL; |
| 1129 | |
| 1130 | free_mem(priv, payload); |
| 1131 | |
| 1132 | isp1760_writel(skip_map, usb_hcd->regs + |
| 1133 | HC_ATL_PTD_SKIPMAP_REG); |
| 1134 | |
| 1135 | if (urb->status == -EPIPE) { |
| 1136 | /* HALT was received */ |
| 1137 | |
| 1138 | qtd = clean_up_qtdlist(qtd); |
| 1139 | isp1760_urb_done(priv, urb, urb->status); |
| 1140 | |
| 1141 | } else if (usb_pipebulk(urb->pipe) && (length < qtd->length)) { |
| 1142 | /* short BULK received */ |
| 1143 | |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 1144 | if (urb->transfer_flags & URB_SHORT_NOT_OK) { |
| 1145 | urb->status = -EREMOTEIO; |
Sebastian Siewior | 7839b51 | 2008-07-17 20:09:29 +0200 | [diff] [blame] | 1146 | isp1760_dbg(priv, "short bulk, %d instead %zu " |
| 1147 | "with URB_SHORT_NOT_OK flag.\n", |
| 1148 | length, qtd->length); |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 1149 | } |
| 1150 | |
| 1151 | if (urb->status == -EINPROGRESS) |
| 1152 | urb->status = 0; |
| 1153 | |
| 1154 | qtd = clean_up_qtdlist(qtd); |
| 1155 | |
| 1156 | isp1760_urb_done(priv, urb, urb->status); |
| 1157 | |
| 1158 | } else if (qtd->status & URB_COMPLETE_NOTIFY) { |
| 1159 | /* that was the last qtd of that URB */ |
| 1160 | |
| 1161 | if (urb->status == -EINPROGRESS) |
| 1162 | urb->status = 0; |
| 1163 | |
| 1164 | qtd = clean_this_qtd(qtd); |
| 1165 | isp1760_urb_done(priv, urb, urb->status); |
| 1166 | |
| 1167 | } else { |
| 1168 | /* next QTD of this URB */ |
| 1169 | |
| 1170 | qtd = clean_this_qtd(qtd); |
| 1171 | BUG_ON(!qtd); |
| 1172 | } |
| 1173 | |
| 1174 | if (qtd) |
| 1175 | enqueue_an_ATL_packet(usb_hcd, qh, qtd); |
| 1176 | |
| 1177 | skip_map = isp1760_readl(usb_hcd->regs + |
| 1178 | HC_ATL_PTD_SKIPMAP_REG); |
| 1179 | } |
| 1180 | } |
| 1181 | |
| 1182 | static void do_intl_int(struct usb_hcd *usb_hcd) |
| 1183 | { |
| 1184 | struct isp1760_hcd *priv = hcd_to_priv(usb_hcd); |
| 1185 | u32 done_map, skip_map; |
| 1186 | struct ptd ptd; |
| 1187 | struct urb *urb = NULL; |
| 1188 | u32 int_regs; |
| 1189 | u32 int_regs_base; |
| 1190 | u32 payload; |
| 1191 | u32 length; |
| 1192 | u32 or_map; |
| 1193 | int error; |
| 1194 | u32 queue_entry; |
| 1195 | struct isp1760_qtd *qtd; |
| 1196 | struct isp1760_qh *qh; |
| 1197 | |
| 1198 | done_map = isp1760_readl(usb_hcd->regs + |
| 1199 | HC_INT_PTD_DONEMAP_REG); |
| 1200 | skip_map = isp1760_readl(usb_hcd->regs + |
| 1201 | HC_INT_PTD_SKIPMAP_REG); |
| 1202 | |
| 1203 | or_map = isp1760_readl(usb_hcd->regs + HC_INT_IRQ_MASK_OR_REG); |
| 1204 | or_map &= ~done_map; |
| 1205 | isp1760_writel(or_map, usb_hcd->regs + HC_INT_IRQ_MASK_OR_REG); |
| 1206 | |
| 1207 | int_regs_base = INT_REGS_OFFSET; |
| 1208 | |
| 1209 | while (done_map) { |
| 1210 | u32 dw1; |
| 1211 | u32 dw3; |
| 1212 | |
| 1213 | queue_entry = __ffs(done_map); |
| 1214 | done_map &= ~(1 << queue_entry); |
| 1215 | skip_map |= 1 << queue_entry; |
| 1216 | |
| 1217 | int_regs = int_regs_base + queue_entry * sizeof(struct ptd); |
| 1218 | urb = priv->int_ints[queue_entry].urb; |
| 1219 | qtd = priv->int_ints[queue_entry].qtd; |
| 1220 | qh = priv->int_ints[queue_entry].qh; |
| 1221 | payload = priv->int_ints[queue_entry].payload; |
| 1222 | |
| 1223 | if (!qh) { |
| 1224 | printk(KERN_ERR "(INT) qh is 0\n"); |
| 1225 | continue; |
| 1226 | } |
| 1227 | |
Enrico Scholz | 3f02a95 | 2008-07-17 20:09:30 +0200 | [diff] [blame] | 1228 | isp1760_writel(int_regs + ISP_BANK(0), usb_hcd->regs + |
| 1229 | HC_MEMORY_REG); |
| 1230 | isp1760_writel(payload + ISP_BANK(1), usb_hcd->regs + |
| 1231 | HC_MEMORY_REG); |
| 1232 | /* |
| 1233 | * write bank1 address twice to ensure the 90ns delay (time |
| 1234 | * between BANK0 write and the priv_read_copy() call is at |
| 1235 | * least 3*t_WHWL + 2*t_w11 = 3*25ns + 2*17ns = 92ns) |
| 1236 | */ |
| 1237 | isp1760_writel(payload + ISP_BANK(1), usb_hcd->regs + |
| 1238 | HC_MEMORY_REG); |
| 1239 | |
| 1240 | priv_read_copy(priv, (u32 *)&ptd, usb_hcd->regs + int_regs + |
| 1241 | ISP_BANK(0), sizeof(ptd)); |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 1242 | dw1 = le32_to_cpu(ptd.dw1); |
| 1243 | dw3 = le32_to_cpu(ptd.dw3); |
| 1244 | check_int_err_status(le32_to_cpu(ptd.dw4)); |
| 1245 | |
| 1246 | error = check_error(&ptd); |
| 1247 | if (error) { |
| 1248 | #if 0 |
| 1249 | printk(KERN_ERR "Error in %s().\n", __func__); |
| 1250 | printk(KERN_ERR "IN dw0: %08x dw1: %08x dw2: %08x " |
| 1251 | "dw3: %08x dw4: %08x dw5: %08x dw6: " |
| 1252 | "%08x dw7: %08x\n", |
| 1253 | ptd.dw0, ptd.dw1, ptd.dw2, ptd.dw3, |
| 1254 | ptd.dw4, ptd.dw5, ptd.dw6, ptd.dw7); |
| 1255 | #endif |
| 1256 | urb->status = -EPIPE; |
| 1257 | priv->int_ints[queue_entry].qh->toggle = 0; |
| 1258 | priv->int_ints[queue_entry].qh->ping = 0; |
| 1259 | |
| 1260 | } else { |
| 1261 | priv->int_ints[queue_entry].qh->toggle = |
| 1262 | dw3 & (1 << 25); |
| 1263 | priv->int_ints[queue_entry].qh->ping = dw3 & (1 << 26); |
| 1264 | } |
| 1265 | |
| 1266 | if (urb->dev->speed != USB_SPEED_HIGH) |
| 1267 | length = PTD_XFERRED_LENGTH_LO(dw3); |
| 1268 | else |
| 1269 | length = PTD_XFERRED_LENGTH(dw3); |
| 1270 | |
| 1271 | if (length) { |
| 1272 | switch (DW1_GET_PID(dw1)) { |
| 1273 | case IN_PID: |
| 1274 | priv_read_copy(priv, |
| 1275 | priv->int_ints[queue_entry].data_buffer, |
Enrico Scholz | 3f02a95 | 2008-07-17 20:09:30 +0200 | [diff] [blame] | 1276 | usb_hcd->regs + payload + ISP_BANK(1), |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 1277 | length); |
| 1278 | case OUT_PID: |
| 1279 | |
| 1280 | urb->actual_length += length; |
| 1281 | |
| 1282 | case SETUP_PID: |
| 1283 | break; |
| 1284 | } |
| 1285 | } |
| 1286 | |
| 1287 | priv->int_ints[queue_entry].data_buffer = NULL; |
| 1288 | priv->int_ints[queue_entry].urb = NULL; |
| 1289 | priv->int_ints[queue_entry].qtd = NULL; |
| 1290 | priv->int_ints[queue_entry].qh = NULL; |
| 1291 | |
| 1292 | isp1760_writel(skip_map, usb_hcd->regs + |
| 1293 | HC_INT_PTD_SKIPMAP_REG); |
| 1294 | free_mem(priv, payload); |
| 1295 | |
| 1296 | if (urb->status == -EPIPE) { |
| 1297 | /* HALT received */ |
| 1298 | |
| 1299 | qtd = clean_up_qtdlist(qtd); |
| 1300 | isp1760_urb_done(priv, urb, urb->status); |
| 1301 | |
| 1302 | } else if (qtd->status & URB_COMPLETE_NOTIFY) { |
| 1303 | |
| 1304 | if (urb->status == -EINPROGRESS) |
| 1305 | urb->status = 0; |
| 1306 | |
| 1307 | qtd = clean_this_qtd(qtd); |
| 1308 | isp1760_urb_done(priv, urb, urb->status); |
| 1309 | |
| 1310 | } else { |
| 1311 | /* next QTD of this URB */ |
| 1312 | |
| 1313 | qtd = clean_this_qtd(qtd); |
| 1314 | BUG_ON(!qtd); |
| 1315 | } |
| 1316 | |
| 1317 | if (qtd) |
| 1318 | enqueue_an_INT_packet(usb_hcd, qh, qtd); |
| 1319 | |
| 1320 | skip_map = isp1760_readl(usb_hcd->regs + |
| 1321 | HC_INT_PTD_SKIPMAP_REG); |
| 1322 | } |
| 1323 | } |
| 1324 | |
| 1325 | #define max_packet(wMaxPacketSize) ((wMaxPacketSize) & 0x07ff) |
| 1326 | static struct isp1760_qh *qh_make(struct isp1760_hcd *priv, struct urb *urb, |
| 1327 | gfp_t flags) |
| 1328 | { |
| 1329 | struct isp1760_qh *qh; |
| 1330 | int is_input, type; |
| 1331 | |
| 1332 | qh = isp1760_qh_alloc(priv, flags); |
| 1333 | if (!qh) |
| 1334 | return qh; |
| 1335 | |
| 1336 | /* |
| 1337 | * init endpoint/device data for this QH |
| 1338 | */ |
| 1339 | is_input = usb_pipein(urb->pipe); |
| 1340 | type = usb_pipetype(urb->pipe); |
| 1341 | |
| 1342 | if (type == PIPE_INTERRUPT) { |
| 1343 | |
| 1344 | if (urb->dev->speed == USB_SPEED_HIGH) { |
| 1345 | |
| 1346 | qh->period = urb->interval >> 3; |
| 1347 | if (qh->period == 0 && urb->interval != 1) { |
| 1348 | /* NOTE interval 2 or 4 uframes could work. |
| 1349 | * But interval 1 scheduling is simpler, and |
| 1350 | * includes high bandwidth. |
| 1351 | */ |
| 1352 | printk(KERN_ERR "intr period %d uframes, NYET!", |
| 1353 | urb->interval); |
| 1354 | qh_destroy(qh); |
| 1355 | return NULL; |
| 1356 | } |
| 1357 | } else { |
| 1358 | qh->period = urb->interval; |
| 1359 | } |
| 1360 | } |
| 1361 | |
| 1362 | /* support for tt scheduling, and access to toggles */ |
| 1363 | qh->dev = urb->dev; |
| 1364 | |
| 1365 | if (!usb_pipecontrol(urb->pipe)) |
| 1366 | usb_settoggle(urb->dev, usb_pipeendpoint(urb->pipe), !is_input, |
| 1367 | 1); |
| 1368 | return qh; |
| 1369 | } |
| 1370 | |
| 1371 | /* |
| 1372 | * For control/bulk/interrupt, return QH with these TDs appended. |
| 1373 | * Allocates and initializes the QH if necessary. |
| 1374 | * Returns null if it can't allocate a QH it needs to. |
| 1375 | * If the QH has TDs (urbs) already, that's great. |
| 1376 | */ |
| 1377 | static struct isp1760_qh *qh_append_tds(struct isp1760_hcd *priv, |
| 1378 | struct urb *urb, struct list_head *qtd_list, int epnum, |
| 1379 | void **ptr) |
| 1380 | { |
| 1381 | struct isp1760_qh *qh; |
| 1382 | struct isp1760_qtd *qtd; |
| 1383 | struct isp1760_qtd *prev_qtd; |
| 1384 | |
| 1385 | qh = (struct isp1760_qh *)*ptr; |
| 1386 | if (!qh) { |
| 1387 | /* can't sleep here, we have priv->lock... */ |
| 1388 | qh = qh_make(priv, urb, GFP_ATOMIC); |
| 1389 | if (!qh) |
| 1390 | return qh; |
| 1391 | *ptr = qh; |
| 1392 | } |
| 1393 | |
| 1394 | qtd = list_entry(qtd_list->next, struct isp1760_qtd, |
| 1395 | qtd_list); |
| 1396 | if (!list_empty(&qh->qtd_list)) |
| 1397 | prev_qtd = list_entry(qh->qtd_list.prev, |
| 1398 | struct isp1760_qtd, qtd_list); |
| 1399 | else |
| 1400 | prev_qtd = NULL; |
| 1401 | |
| 1402 | list_splice(qtd_list, qh->qtd_list.prev); |
| 1403 | if (prev_qtd) { |
| 1404 | BUG_ON(prev_qtd->hw_next); |
| 1405 | prev_qtd->hw_next = qtd; |
| 1406 | } |
| 1407 | |
| 1408 | urb->hcpriv = qh; |
| 1409 | return qh; |
| 1410 | } |
| 1411 | |
| 1412 | static void qtd_list_free(struct isp1760_hcd *priv, struct urb *urb, |
| 1413 | struct list_head *qtd_list) |
| 1414 | { |
| 1415 | struct list_head *entry, *temp; |
| 1416 | |
| 1417 | list_for_each_safe(entry, temp, qtd_list) { |
| 1418 | struct isp1760_qtd *qtd; |
| 1419 | |
| 1420 | qtd = list_entry(entry, struct isp1760_qtd, qtd_list); |
| 1421 | list_del(&qtd->qtd_list); |
| 1422 | isp1760_qtd_free(qtd); |
| 1423 | } |
| 1424 | } |
| 1425 | |
| 1426 | static int isp1760_prepare_enqueue(struct isp1760_hcd *priv, struct urb *urb, |
| 1427 | struct list_head *qtd_list, gfp_t mem_flags, packet_enqueue *p) |
| 1428 | { |
| 1429 | struct isp1760_qtd *qtd; |
| 1430 | int epnum; |
| 1431 | unsigned long flags; |
| 1432 | struct isp1760_qh *qh = NULL; |
| 1433 | int rc; |
| 1434 | int qh_busy; |
| 1435 | |
| 1436 | qtd = list_entry(qtd_list->next, struct isp1760_qtd, qtd_list); |
| 1437 | epnum = urb->ep->desc.bEndpointAddress; |
| 1438 | |
| 1439 | spin_lock_irqsave(&priv->lock, flags); |
| 1440 | if (!test_bit(HCD_FLAG_HW_ACCESSIBLE, &priv_to_hcd(priv)->flags)) { |
| 1441 | rc = -ESHUTDOWN; |
| 1442 | goto done; |
| 1443 | } |
| 1444 | rc = usb_hcd_link_urb_to_ep(priv_to_hcd(priv), urb); |
| 1445 | if (rc) |
| 1446 | goto done; |
| 1447 | |
| 1448 | qh = urb->ep->hcpriv; |
| 1449 | if (qh) |
| 1450 | qh_busy = !list_empty(&qh->qtd_list); |
| 1451 | else |
| 1452 | qh_busy = 0; |
| 1453 | |
| 1454 | qh = qh_append_tds(priv, urb, qtd_list, epnum, &urb->ep->hcpriv); |
| 1455 | if (!qh) { |
| 1456 | usb_hcd_unlink_urb_from_ep(priv_to_hcd(priv), urb); |
| 1457 | rc = -ENOMEM; |
| 1458 | goto done; |
| 1459 | } |
| 1460 | |
| 1461 | if (!qh_busy) |
| 1462 | p(priv_to_hcd(priv), qh, qtd); |
| 1463 | |
| 1464 | done: |
| 1465 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1466 | if (!qh) |
| 1467 | qtd_list_free(priv, urb, qtd_list); |
| 1468 | return rc; |
| 1469 | } |
| 1470 | |
| 1471 | static struct isp1760_qtd *isp1760_qtd_alloc(struct isp1760_hcd *priv, |
| 1472 | gfp_t flags) |
| 1473 | { |
| 1474 | struct isp1760_qtd *qtd; |
| 1475 | |
| 1476 | qtd = kmem_cache_zalloc(qtd_cachep, flags); |
| 1477 | if (qtd) |
| 1478 | INIT_LIST_HEAD(&qtd->qtd_list); |
| 1479 | |
| 1480 | return qtd; |
| 1481 | } |
| 1482 | |
| 1483 | /* |
| 1484 | * create a list of filled qtds for this URB; won't link into qh. |
| 1485 | */ |
| 1486 | static struct list_head *qh_urb_transaction(struct isp1760_hcd *priv, |
| 1487 | struct urb *urb, struct list_head *head, gfp_t flags) |
| 1488 | { |
| 1489 | struct isp1760_qtd *qtd, *qtd_prev; |
| 1490 | void *buf; |
| 1491 | int len, maxpacket; |
| 1492 | int is_input; |
| 1493 | u32 token; |
| 1494 | |
| 1495 | /* |
| 1496 | * URBs map to sequences of QTDs: one logical transaction |
| 1497 | */ |
| 1498 | qtd = isp1760_qtd_alloc(priv, flags); |
| 1499 | if (!qtd) |
| 1500 | return NULL; |
| 1501 | |
| 1502 | list_add_tail(&qtd->qtd_list, head); |
| 1503 | qtd->urb = urb; |
| 1504 | urb->status = -EINPROGRESS; |
| 1505 | |
| 1506 | token = 0; |
| 1507 | /* for split transactions, SplitXState initialized to zero */ |
| 1508 | |
| 1509 | len = urb->transfer_buffer_length; |
| 1510 | is_input = usb_pipein(urb->pipe); |
| 1511 | if (usb_pipecontrol(urb->pipe)) { |
| 1512 | /* SETUP pid */ |
| 1513 | qtd_fill(qtd, urb->setup_packet, |
| 1514 | sizeof(struct usb_ctrlrequest), |
| 1515 | token | SETUP_PID); |
| 1516 | |
| 1517 | /* ... and always at least one more pid */ |
| 1518 | token ^= DATA_TOGGLE; |
| 1519 | qtd_prev = qtd; |
| 1520 | qtd = isp1760_qtd_alloc(priv, flags); |
| 1521 | if (!qtd) |
| 1522 | goto cleanup; |
| 1523 | qtd->urb = urb; |
| 1524 | qtd_prev->hw_next = qtd; |
| 1525 | list_add_tail(&qtd->qtd_list, head); |
| 1526 | |
| 1527 | /* for zero length DATA stages, STATUS is always IN */ |
| 1528 | if (len == 0) |
| 1529 | token |= IN_PID; |
| 1530 | } |
| 1531 | |
| 1532 | /* |
| 1533 | * data transfer stage: buffer setup |
| 1534 | */ |
| 1535 | buf = urb->transfer_buffer; |
| 1536 | |
| 1537 | if (is_input) |
| 1538 | token |= IN_PID; |
| 1539 | else |
| 1540 | token |= OUT_PID; |
| 1541 | |
| 1542 | maxpacket = max_packet(usb_maxpacket(urb->dev, urb->pipe, !is_input)); |
| 1543 | |
| 1544 | /* |
| 1545 | * buffer gets wrapped in one or more qtds; |
| 1546 | * last one may be "short" (including zero len) |
| 1547 | * and may serve as a control status ack |
| 1548 | */ |
| 1549 | for (;;) { |
| 1550 | int this_qtd_len; |
| 1551 | |
| 1552 | if (!buf && len) { |
| 1553 | /* XXX This looks like usb storage / SCSI bug */ |
| 1554 | printk(KERN_ERR "buf is null, dma is %08lx len is %d\n", |
| 1555 | (long unsigned)urb->transfer_dma, len); |
| 1556 | WARN_ON(1); |
| 1557 | } |
| 1558 | |
| 1559 | this_qtd_len = qtd_fill(qtd, buf, len, token); |
| 1560 | len -= this_qtd_len; |
| 1561 | buf += this_qtd_len; |
| 1562 | |
| 1563 | /* qh makes control packets use qtd toggle; maybe switch it */ |
| 1564 | if ((maxpacket & (this_qtd_len + (maxpacket - 1))) == 0) |
| 1565 | token ^= DATA_TOGGLE; |
| 1566 | |
| 1567 | if (len <= 0) |
| 1568 | break; |
| 1569 | |
| 1570 | qtd_prev = qtd; |
| 1571 | qtd = isp1760_qtd_alloc(priv, flags); |
| 1572 | if (!qtd) |
| 1573 | goto cleanup; |
| 1574 | qtd->urb = urb; |
| 1575 | qtd_prev->hw_next = qtd; |
| 1576 | list_add_tail(&qtd->qtd_list, head); |
| 1577 | } |
| 1578 | |
| 1579 | /* |
| 1580 | * control requests may need a terminating data "status" ack; |
| 1581 | * bulk ones may need a terminating short packet (zero length). |
| 1582 | */ |
| 1583 | if (urb->transfer_buffer_length != 0) { |
| 1584 | int one_more = 0; |
| 1585 | |
| 1586 | if (usb_pipecontrol(urb->pipe)) { |
| 1587 | one_more = 1; |
| 1588 | /* "in" <--> "out" */ |
| 1589 | token ^= IN_PID; |
| 1590 | /* force DATA1 */ |
| 1591 | token |= DATA_TOGGLE; |
| 1592 | } else if (usb_pipebulk(urb->pipe) |
| 1593 | && (urb->transfer_flags & URB_ZERO_PACKET) |
| 1594 | && !(urb->transfer_buffer_length % maxpacket)) { |
| 1595 | one_more = 1; |
| 1596 | } |
| 1597 | if (one_more) { |
| 1598 | qtd_prev = qtd; |
| 1599 | qtd = isp1760_qtd_alloc(priv, flags); |
| 1600 | if (!qtd) |
| 1601 | goto cleanup; |
| 1602 | qtd->urb = urb; |
| 1603 | qtd_prev->hw_next = qtd; |
| 1604 | list_add_tail(&qtd->qtd_list, head); |
| 1605 | |
| 1606 | /* never any data in such packets */ |
| 1607 | qtd_fill(qtd, NULL, 0, token); |
| 1608 | } |
| 1609 | } |
| 1610 | |
| 1611 | qtd->status = URB_COMPLETE_NOTIFY; |
| 1612 | return head; |
| 1613 | |
| 1614 | cleanup: |
| 1615 | qtd_list_free(priv, urb, head); |
| 1616 | return NULL; |
| 1617 | } |
| 1618 | |
| 1619 | static int isp1760_urb_enqueue(struct usb_hcd *hcd, struct urb *urb, |
| 1620 | gfp_t mem_flags) |
| 1621 | { |
| 1622 | struct isp1760_hcd *priv = hcd_to_priv(hcd); |
| 1623 | struct list_head qtd_list; |
| 1624 | packet_enqueue *pe; |
| 1625 | |
| 1626 | INIT_LIST_HEAD(&qtd_list); |
| 1627 | |
| 1628 | switch (usb_pipetype(urb->pipe)) { |
| 1629 | case PIPE_CONTROL: |
| 1630 | case PIPE_BULK: |
| 1631 | |
| 1632 | if (!qh_urb_transaction(priv, urb, &qtd_list, mem_flags)) |
| 1633 | return -ENOMEM; |
| 1634 | pe = enqueue_an_ATL_packet; |
| 1635 | break; |
| 1636 | |
| 1637 | case PIPE_INTERRUPT: |
| 1638 | if (!qh_urb_transaction(priv, urb, &qtd_list, mem_flags)) |
| 1639 | return -ENOMEM; |
| 1640 | pe = enqueue_an_INT_packet; |
| 1641 | break; |
| 1642 | |
| 1643 | case PIPE_ISOCHRONOUS: |
| 1644 | printk(KERN_ERR "PIPE_ISOCHRONOUS ain't supported\n"); |
| 1645 | default: |
| 1646 | return -EPIPE; |
| 1647 | } |
| 1648 | |
Sebastian Siewior | a36c27d | 2008-07-17 20:09:28 +0200 | [diff] [blame] | 1649 | return isp1760_prepare_enqueue(priv, urb, &qtd_list, mem_flags, pe); |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 1650 | } |
| 1651 | |
| 1652 | static int isp1760_urb_dequeue(struct usb_hcd *hcd, struct urb *urb, |
| 1653 | int status) |
| 1654 | { |
| 1655 | struct isp1760_hcd *priv = hcd_to_priv(hcd); |
| 1656 | struct inter_packet_info *ints; |
| 1657 | u32 i; |
| 1658 | u32 reg_base, or_reg, skip_reg; |
Andrew Morton | d249afd | 2008-06-09 16:39:52 -0700 | [diff] [blame] | 1659 | unsigned long flags; |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 1660 | struct ptd ptd; |
| 1661 | |
| 1662 | switch (usb_pipetype(urb->pipe)) { |
| 1663 | case PIPE_ISOCHRONOUS: |
| 1664 | return -EPIPE; |
| 1665 | break; |
| 1666 | |
| 1667 | case PIPE_INTERRUPT: |
| 1668 | ints = priv->int_ints; |
| 1669 | reg_base = INT_REGS_OFFSET; |
| 1670 | or_reg = HC_INT_IRQ_MASK_OR_REG; |
| 1671 | skip_reg = HC_INT_PTD_SKIPMAP_REG; |
| 1672 | break; |
| 1673 | |
| 1674 | default: |
| 1675 | ints = priv->atl_ints; |
| 1676 | reg_base = ATL_REGS_OFFSET; |
| 1677 | or_reg = HC_ATL_IRQ_MASK_OR_REG; |
| 1678 | skip_reg = HC_ATL_PTD_SKIPMAP_REG; |
| 1679 | break; |
| 1680 | } |
| 1681 | |
| 1682 | memset(&ptd, 0, sizeof(ptd)); |
| 1683 | spin_lock_irqsave(&priv->lock, flags); |
| 1684 | |
| 1685 | for (i = 0; i < 32; i++) { |
| 1686 | if (ints->urb == urb) { |
| 1687 | u32 skip_map; |
| 1688 | u32 or_map; |
| 1689 | struct isp1760_qtd *qtd; |
| 1690 | |
| 1691 | skip_map = isp1760_readl(hcd->regs + skip_reg); |
| 1692 | skip_map |= 1 << i; |
| 1693 | isp1760_writel(skip_map, hcd->regs + skip_reg); |
| 1694 | |
| 1695 | or_map = isp1760_readl(hcd->regs + or_reg); |
| 1696 | or_map &= ~(1 << i); |
| 1697 | isp1760_writel(or_map, hcd->regs + or_reg); |
| 1698 | |
| 1699 | priv_write_copy(priv, (u32 *)&ptd, hcd->regs + reg_base |
| 1700 | + i * sizeof(ptd), sizeof(ptd)); |
| 1701 | qtd = ints->qtd; |
| 1702 | |
| 1703 | clean_up_qtdlist(qtd); |
| 1704 | |
| 1705 | free_mem(priv, ints->payload); |
| 1706 | |
| 1707 | ints->urb = NULL; |
| 1708 | ints->qh = NULL; |
| 1709 | ints->qtd = NULL; |
| 1710 | ints->data_buffer = NULL; |
| 1711 | ints->payload = 0; |
| 1712 | |
| 1713 | isp1760_urb_done(priv, urb, status); |
| 1714 | break; |
| 1715 | } |
| 1716 | ints++; |
| 1717 | } |
| 1718 | |
| 1719 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1720 | return 0; |
| 1721 | } |
| 1722 | |
| 1723 | static irqreturn_t isp1760_irq(struct usb_hcd *usb_hcd) |
| 1724 | { |
| 1725 | struct isp1760_hcd *priv = hcd_to_priv(usb_hcd); |
| 1726 | u32 imask; |
| 1727 | irqreturn_t irqret = IRQ_NONE; |
| 1728 | |
| 1729 | spin_lock(&priv->lock); |
| 1730 | |
| 1731 | if (!(usb_hcd->state & HC_STATE_RUNNING)) |
| 1732 | goto leave; |
| 1733 | |
| 1734 | imask = isp1760_readl(usb_hcd->regs + HC_INTERRUPT_REG); |
| 1735 | if (unlikely(!imask)) |
| 1736 | goto leave; |
| 1737 | |
| 1738 | isp1760_writel(imask, usb_hcd->regs + HC_INTERRUPT_REG); |
| 1739 | if (imask & HC_ATL_INT) |
| 1740 | do_atl_int(usb_hcd); |
| 1741 | |
| 1742 | if (imask & HC_INTL_INT) |
| 1743 | do_intl_int(usb_hcd); |
| 1744 | |
| 1745 | irqret = IRQ_HANDLED; |
| 1746 | leave: |
| 1747 | spin_unlock(&priv->lock); |
| 1748 | return irqret; |
| 1749 | } |
| 1750 | |
| 1751 | static int isp1760_hub_status_data(struct usb_hcd *hcd, char *buf) |
| 1752 | { |
| 1753 | struct isp1760_hcd *priv = hcd_to_priv(hcd); |
| 1754 | u32 temp, status = 0; |
| 1755 | u32 mask; |
| 1756 | int retval = 1; |
| 1757 | unsigned long flags; |
| 1758 | |
| 1759 | /* if !USB_SUSPEND, root hub timers won't get shut down ... */ |
| 1760 | if (!HC_IS_RUNNING(hcd->state)) |
| 1761 | return 0; |
| 1762 | |
| 1763 | /* init status to no-changes */ |
| 1764 | buf[0] = 0; |
| 1765 | mask = PORT_CSC; |
| 1766 | |
| 1767 | spin_lock_irqsave(&priv->lock, flags); |
| 1768 | temp = isp1760_readl(hcd->regs + HC_PORTSC1); |
| 1769 | |
| 1770 | if (temp & PORT_OWNER) { |
| 1771 | if (temp & PORT_CSC) { |
| 1772 | temp &= ~PORT_CSC; |
| 1773 | isp1760_writel(temp, hcd->regs + HC_PORTSC1); |
| 1774 | goto done; |
| 1775 | } |
| 1776 | } |
| 1777 | |
| 1778 | /* |
| 1779 | * Return status information even for ports with OWNER set. |
| 1780 | * Otherwise khubd wouldn't see the disconnect event when a |
| 1781 | * high-speed device is switched over to the companion |
| 1782 | * controller by the user. |
| 1783 | */ |
| 1784 | |
| 1785 | if ((temp & mask) != 0 |
| 1786 | || ((temp & PORT_RESUME) != 0 |
| 1787 | && time_after_eq(jiffies, |
| 1788 | priv->reset_done))) { |
| 1789 | buf [0] |= 1 << (0 + 1); |
| 1790 | status = STS_PCD; |
| 1791 | } |
| 1792 | /* FIXME autosuspend idle root hubs */ |
| 1793 | done: |
| 1794 | spin_unlock_irqrestore(&priv->lock, flags); |
| 1795 | return status ? retval : 0; |
| 1796 | } |
| 1797 | |
| 1798 | static void isp1760_hub_descriptor(struct isp1760_hcd *priv, |
| 1799 | struct usb_hub_descriptor *desc) |
| 1800 | { |
| 1801 | int ports = HCS_N_PORTS(priv->hcs_params); |
| 1802 | u16 temp; |
| 1803 | |
| 1804 | desc->bDescriptorType = 0x29; |
| 1805 | /* priv 1.0, 2.3.9 says 20ms max */ |
| 1806 | desc->bPwrOn2PwrGood = 10; |
| 1807 | desc->bHubContrCurrent = 0; |
| 1808 | |
| 1809 | desc->bNbrPorts = ports; |
| 1810 | temp = 1 + (ports / 8); |
| 1811 | desc->bDescLength = 7 + 2 * temp; |
| 1812 | |
| 1813 | /* two bitmaps: ports removable, and usb 1.0 legacy PortPwrCtrlMask */ |
| 1814 | memset(&desc->bitmap[0], 0, temp); |
| 1815 | memset(&desc->bitmap[temp], 0xff, temp); |
| 1816 | |
| 1817 | /* per-port overcurrent reporting */ |
| 1818 | temp = 0x0008; |
| 1819 | if (HCS_PPC(priv->hcs_params)) |
| 1820 | /* per-port power control */ |
| 1821 | temp |= 0x0001; |
| 1822 | else |
| 1823 | /* no power switching */ |
| 1824 | temp |= 0x0002; |
| 1825 | desc->wHubCharacteristics = cpu_to_le16(temp); |
| 1826 | } |
| 1827 | |
| 1828 | #define PORT_WAKE_BITS (PORT_WKOC_E|PORT_WKDISC_E|PORT_WKCONN_E) |
| 1829 | |
| 1830 | static int check_reset_complete(struct isp1760_hcd *priv, int index, |
| 1831 | u32 __iomem *status_reg, int port_status) |
| 1832 | { |
| 1833 | if (!(port_status & PORT_CONNECT)) |
| 1834 | return port_status; |
| 1835 | |
| 1836 | /* if reset finished and it's still not enabled -- handoff */ |
| 1837 | if (!(port_status & PORT_PE)) { |
| 1838 | |
| 1839 | printk(KERN_ERR "port %d full speed --> companion\n", |
| 1840 | index + 1); |
| 1841 | |
| 1842 | port_status |= PORT_OWNER; |
| 1843 | port_status &= ~PORT_RWC_BITS; |
| 1844 | isp1760_writel(port_status, status_reg); |
| 1845 | |
| 1846 | } else |
| 1847 | printk(KERN_ERR "port %d high speed\n", index + 1); |
| 1848 | |
| 1849 | return port_status; |
| 1850 | } |
| 1851 | |
| 1852 | static int isp1760_hub_control(struct usb_hcd *hcd, u16 typeReq, |
| 1853 | u16 wValue, u16 wIndex, char *buf, u16 wLength) |
| 1854 | { |
| 1855 | struct isp1760_hcd *priv = hcd_to_priv(hcd); |
| 1856 | int ports = HCS_N_PORTS(priv->hcs_params); |
| 1857 | u32 __iomem *status_reg = hcd->regs + HC_PORTSC1; |
| 1858 | u32 temp, status; |
| 1859 | unsigned long flags; |
| 1860 | int retval = 0; |
| 1861 | unsigned selector; |
| 1862 | |
| 1863 | /* |
| 1864 | * FIXME: support SetPortFeatures USB_PORT_FEAT_INDICATOR. |
| 1865 | * HCS_INDICATOR may say we can change LEDs to off/amber/green. |
| 1866 | * (track current state ourselves) ... blink for diagnostics, |
| 1867 | * power, "this is the one", etc. EHCI spec supports this. |
| 1868 | */ |
| 1869 | |
| 1870 | spin_lock_irqsave(&priv->lock, flags); |
| 1871 | switch (typeReq) { |
| 1872 | case ClearHubFeature: |
| 1873 | switch (wValue) { |
| 1874 | case C_HUB_LOCAL_POWER: |
| 1875 | case C_HUB_OVER_CURRENT: |
| 1876 | /* no hub-wide feature/status flags */ |
| 1877 | break; |
| 1878 | default: |
| 1879 | goto error; |
| 1880 | } |
| 1881 | break; |
| 1882 | case ClearPortFeature: |
| 1883 | if (!wIndex || wIndex > ports) |
| 1884 | goto error; |
| 1885 | wIndex--; |
| 1886 | temp = isp1760_readl(status_reg); |
| 1887 | |
| 1888 | /* |
| 1889 | * Even if OWNER is set, so the port is owned by the |
| 1890 | * companion controller, khubd needs to be able to clear |
| 1891 | * the port-change status bits (especially |
| 1892 | * USB_PORT_FEAT_C_CONNECTION). |
| 1893 | */ |
| 1894 | |
| 1895 | switch (wValue) { |
| 1896 | case USB_PORT_FEAT_ENABLE: |
| 1897 | isp1760_writel(temp & ~PORT_PE, status_reg); |
| 1898 | break; |
| 1899 | case USB_PORT_FEAT_C_ENABLE: |
| 1900 | /* XXX error? */ |
| 1901 | break; |
| 1902 | case USB_PORT_FEAT_SUSPEND: |
| 1903 | if (temp & PORT_RESET) |
| 1904 | goto error; |
| 1905 | |
| 1906 | if (temp & PORT_SUSPEND) { |
| 1907 | if ((temp & PORT_PE) == 0) |
| 1908 | goto error; |
| 1909 | /* resume signaling for 20 msec */ |
| 1910 | temp &= ~(PORT_RWC_BITS); |
| 1911 | isp1760_writel(temp | PORT_RESUME, |
| 1912 | status_reg); |
| 1913 | priv->reset_done = jiffies + |
| 1914 | msecs_to_jiffies(20); |
| 1915 | } |
| 1916 | break; |
| 1917 | case USB_PORT_FEAT_C_SUSPEND: |
| 1918 | /* we auto-clear this feature */ |
| 1919 | break; |
| 1920 | case USB_PORT_FEAT_POWER: |
| 1921 | if (HCS_PPC(priv->hcs_params)) |
| 1922 | isp1760_writel(temp & ~PORT_POWER, status_reg); |
| 1923 | break; |
| 1924 | case USB_PORT_FEAT_C_CONNECTION: |
| 1925 | isp1760_writel(temp | PORT_CSC, |
| 1926 | status_reg); |
| 1927 | break; |
| 1928 | case USB_PORT_FEAT_C_OVER_CURRENT: |
| 1929 | /* XXX error ?*/ |
| 1930 | break; |
| 1931 | case USB_PORT_FEAT_C_RESET: |
| 1932 | /* GetPortStatus clears reset */ |
| 1933 | break; |
| 1934 | default: |
| 1935 | goto error; |
| 1936 | } |
| 1937 | isp1760_readl(hcd->regs + HC_USBCMD); |
| 1938 | break; |
| 1939 | case GetHubDescriptor: |
| 1940 | isp1760_hub_descriptor(priv, (struct usb_hub_descriptor *) |
| 1941 | buf); |
| 1942 | break; |
| 1943 | case GetHubStatus: |
| 1944 | /* no hub-wide feature/status flags */ |
| 1945 | memset(buf, 0, 4); |
| 1946 | break; |
| 1947 | case GetPortStatus: |
| 1948 | if (!wIndex || wIndex > ports) |
| 1949 | goto error; |
| 1950 | wIndex--; |
| 1951 | status = 0; |
| 1952 | temp = isp1760_readl(status_reg); |
| 1953 | |
| 1954 | /* wPortChange bits */ |
| 1955 | if (temp & PORT_CSC) |
| 1956 | status |= 1 << USB_PORT_FEAT_C_CONNECTION; |
| 1957 | |
| 1958 | |
| 1959 | /* whoever resumes must GetPortStatus to complete it!! */ |
| 1960 | if (temp & PORT_RESUME) { |
| 1961 | printk(KERN_ERR "Port resume should be skipped.\n"); |
| 1962 | |
| 1963 | /* Remote Wakeup received? */ |
| 1964 | if (!priv->reset_done) { |
| 1965 | /* resume signaling for 20 msec */ |
| 1966 | priv->reset_done = jiffies |
| 1967 | + msecs_to_jiffies(20); |
| 1968 | /* check the port again */ |
| 1969 | mod_timer(&priv_to_hcd(priv)->rh_timer, |
| 1970 | priv->reset_done); |
| 1971 | } |
| 1972 | |
| 1973 | /* resume completed? */ |
| 1974 | else if (time_after_eq(jiffies, |
| 1975 | priv->reset_done)) { |
| 1976 | status |= 1 << USB_PORT_FEAT_C_SUSPEND; |
| 1977 | priv->reset_done = 0; |
| 1978 | |
| 1979 | /* stop resume signaling */ |
| 1980 | temp = isp1760_readl(status_reg); |
| 1981 | isp1760_writel( |
| 1982 | temp & ~(PORT_RWC_BITS | PORT_RESUME), |
| 1983 | status_reg); |
| 1984 | retval = handshake(priv, status_reg, |
| 1985 | PORT_RESUME, 0, 2000 /* 2msec */); |
| 1986 | if (retval != 0) { |
| 1987 | isp1760_err(priv, |
| 1988 | "port %d resume error %d\n", |
| 1989 | wIndex + 1, retval); |
| 1990 | goto error; |
| 1991 | } |
| 1992 | temp &= ~(PORT_SUSPEND|PORT_RESUME|(3<<10)); |
| 1993 | } |
| 1994 | } |
| 1995 | |
| 1996 | /* whoever resets must GetPortStatus to complete it!! */ |
| 1997 | if ((temp & PORT_RESET) |
| 1998 | && time_after_eq(jiffies, |
| 1999 | priv->reset_done)) { |
| 2000 | status |= 1 << USB_PORT_FEAT_C_RESET; |
| 2001 | priv->reset_done = 0; |
| 2002 | |
| 2003 | /* force reset to complete */ |
| 2004 | isp1760_writel(temp & ~PORT_RESET, |
| 2005 | status_reg); |
| 2006 | /* REVISIT: some hardware needs 550+ usec to clear |
| 2007 | * this bit; seems too long to spin routinely... |
| 2008 | */ |
| 2009 | retval = handshake(priv, status_reg, |
| 2010 | PORT_RESET, 0, 750); |
| 2011 | if (retval != 0) { |
| 2012 | isp1760_err(priv, "port %d reset error %d\n", |
| 2013 | wIndex + 1, retval); |
| 2014 | goto error; |
| 2015 | } |
| 2016 | |
| 2017 | /* see what we found out */ |
| 2018 | temp = check_reset_complete(priv, wIndex, status_reg, |
| 2019 | isp1760_readl(status_reg)); |
| 2020 | } |
| 2021 | /* |
| 2022 | * Even if OWNER is set, there's no harm letting khubd |
| 2023 | * see the wPortStatus values (they should all be 0 except |
| 2024 | * for PORT_POWER anyway). |
| 2025 | */ |
| 2026 | |
| 2027 | if (temp & PORT_OWNER) |
| 2028 | printk(KERN_ERR "Warning: PORT_OWNER is set\n"); |
| 2029 | |
| 2030 | if (temp & PORT_CONNECT) { |
| 2031 | status |= 1 << USB_PORT_FEAT_CONNECTION; |
| 2032 | /* status may be from integrated TT */ |
| 2033 | status |= ehci_port_speed(priv, temp); |
| 2034 | } |
| 2035 | if (temp & PORT_PE) |
| 2036 | status |= 1 << USB_PORT_FEAT_ENABLE; |
| 2037 | if (temp & (PORT_SUSPEND|PORT_RESUME)) |
| 2038 | status |= 1 << USB_PORT_FEAT_SUSPEND; |
| 2039 | if (temp & PORT_RESET) |
| 2040 | status |= 1 << USB_PORT_FEAT_RESET; |
| 2041 | if (temp & PORT_POWER) |
| 2042 | status |= 1 << USB_PORT_FEAT_POWER; |
| 2043 | |
| 2044 | put_unaligned(cpu_to_le32(status), (__le32 *) buf); |
| 2045 | break; |
| 2046 | case SetHubFeature: |
| 2047 | switch (wValue) { |
| 2048 | case C_HUB_LOCAL_POWER: |
| 2049 | case C_HUB_OVER_CURRENT: |
| 2050 | /* no hub-wide feature/status flags */ |
| 2051 | break; |
| 2052 | default: |
| 2053 | goto error; |
| 2054 | } |
| 2055 | break; |
| 2056 | case SetPortFeature: |
| 2057 | selector = wIndex >> 8; |
| 2058 | wIndex &= 0xff; |
| 2059 | if (!wIndex || wIndex > ports) |
| 2060 | goto error; |
| 2061 | wIndex--; |
| 2062 | temp = isp1760_readl(status_reg); |
| 2063 | if (temp & PORT_OWNER) |
| 2064 | break; |
| 2065 | |
| 2066 | /* temp &= ~PORT_RWC_BITS; */ |
| 2067 | switch (wValue) { |
| 2068 | case USB_PORT_FEAT_ENABLE: |
| 2069 | isp1760_writel(temp | PORT_PE, status_reg); |
| 2070 | break; |
| 2071 | |
| 2072 | case USB_PORT_FEAT_SUSPEND: |
| 2073 | if ((temp & PORT_PE) == 0 |
| 2074 | || (temp & PORT_RESET) != 0) |
| 2075 | goto error; |
| 2076 | |
| 2077 | isp1760_writel(temp | PORT_SUSPEND, status_reg); |
| 2078 | break; |
| 2079 | case USB_PORT_FEAT_POWER: |
| 2080 | if (HCS_PPC(priv->hcs_params)) |
| 2081 | isp1760_writel(temp | PORT_POWER, |
| 2082 | status_reg); |
| 2083 | break; |
| 2084 | case USB_PORT_FEAT_RESET: |
| 2085 | if (temp & PORT_RESUME) |
| 2086 | goto error; |
| 2087 | /* line status bits may report this as low speed, |
| 2088 | * which can be fine if this root hub has a |
| 2089 | * transaction translator built in. |
| 2090 | */ |
| 2091 | if ((temp & (PORT_PE|PORT_CONNECT)) == PORT_CONNECT |
| 2092 | && PORT_USB11(temp)) { |
| 2093 | temp |= PORT_OWNER; |
| 2094 | } else { |
| 2095 | temp |= PORT_RESET; |
| 2096 | temp &= ~PORT_PE; |
| 2097 | |
| 2098 | /* |
| 2099 | * caller must wait, then call GetPortStatus |
| 2100 | * usb 2.0 spec says 50 ms resets on root |
| 2101 | */ |
| 2102 | priv->reset_done = jiffies + |
| 2103 | msecs_to_jiffies(50); |
| 2104 | } |
| 2105 | isp1760_writel(temp, status_reg); |
| 2106 | break; |
| 2107 | default: |
| 2108 | goto error; |
| 2109 | } |
| 2110 | isp1760_readl(hcd->regs + HC_USBCMD); |
| 2111 | break; |
| 2112 | |
| 2113 | default: |
| 2114 | error: |
| 2115 | /* "stall" on error */ |
| 2116 | retval = -EPIPE; |
| 2117 | } |
| 2118 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2119 | return retval; |
| 2120 | } |
| 2121 | |
| 2122 | static void isp1760_endpoint_disable(struct usb_hcd *usb_hcd, |
| 2123 | struct usb_host_endpoint *ep) |
| 2124 | { |
| 2125 | struct isp1760_hcd *priv = hcd_to_priv(usb_hcd); |
| 2126 | struct isp1760_qh *qh; |
| 2127 | struct isp1760_qtd *qtd; |
Andrew Morton | d249afd | 2008-06-09 16:39:52 -0700 | [diff] [blame] | 2128 | unsigned long flags; |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 2129 | |
| 2130 | spin_lock_irqsave(&priv->lock, flags); |
| 2131 | qh = ep->hcpriv; |
| 2132 | if (!qh) |
| 2133 | goto out; |
| 2134 | |
| 2135 | ep->hcpriv = NULL; |
| 2136 | do { |
| 2137 | /* more than entry might get removed */ |
| 2138 | if (list_empty(&qh->qtd_list)) |
| 2139 | break; |
| 2140 | |
| 2141 | qtd = list_first_entry(&qh->qtd_list, struct isp1760_qtd, |
| 2142 | qtd_list); |
| 2143 | |
| 2144 | if (qtd->status & URB_ENQUEUED) { |
| 2145 | |
| 2146 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2147 | isp1760_urb_dequeue(usb_hcd, qtd->urb, -ECONNRESET); |
| 2148 | spin_lock_irqsave(&priv->lock, flags); |
| 2149 | } else { |
| 2150 | struct urb *urb; |
| 2151 | |
| 2152 | urb = qtd->urb; |
| 2153 | clean_up_qtdlist(qtd); |
| 2154 | isp1760_urb_done(priv, urb, -ECONNRESET); |
| 2155 | } |
| 2156 | } while (1); |
| 2157 | |
| 2158 | qh_destroy(qh); |
| 2159 | /* remove requests and leak them. |
| 2160 | * ATL are pretty fast done, INT could take a while... |
| 2161 | * The latter shoule be removed |
| 2162 | */ |
| 2163 | out: |
| 2164 | spin_unlock_irqrestore(&priv->lock, flags); |
| 2165 | } |
| 2166 | |
| 2167 | static int isp1760_get_frame(struct usb_hcd *hcd) |
| 2168 | { |
| 2169 | struct isp1760_hcd *priv = hcd_to_priv(hcd); |
| 2170 | u32 fr; |
| 2171 | |
| 2172 | fr = isp1760_readl(hcd->regs + HC_FRINDEX); |
| 2173 | return (fr >> 3) % priv->periodic_size; |
| 2174 | } |
| 2175 | |
| 2176 | static void isp1760_stop(struct usb_hcd *hcd) |
| 2177 | { |
| 2178 | struct isp1760_hcd *priv = hcd_to_priv(hcd); |
Nate Case | 3faefc8 | 2008-06-17 11:11:38 -0500 | [diff] [blame] | 2179 | u32 temp; |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 2180 | |
| 2181 | isp1760_hub_control(hcd, ClearPortFeature, USB_PORT_FEAT_POWER, 1, |
| 2182 | NULL, 0); |
| 2183 | mdelay(20); |
| 2184 | |
| 2185 | spin_lock_irq(&priv->lock); |
| 2186 | ehci_reset(priv); |
| 2187 | /* Disable IRQ */ |
Nate Case | 3faefc8 | 2008-06-17 11:11:38 -0500 | [diff] [blame] | 2188 | temp = isp1760_readl(hcd->regs + HC_HW_MODE_CTRL); |
| 2189 | isp1760_writel(temp &= ~HW_GLOBAL_INTR_EN, hcd->regs + HC_HW_MODE_CTRL); |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 2190 | spin_unlock_irq(&priv->lock); |
| 2191 | |
| 2192 | isp1760_writel(0, hcd->regs + HC_CONFIGFLAG); |
| 2193 | } |
| 2194 | |
| 2195 | static void isp1760_shutdown(struct usb_hcd *hcd) |
| 2196 | { |
Nate Case | 3faefc8 | 2008-06-17 11:11:38 -0500 | [diff] [blame] | 2197 | u32 command, temp; |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 2198 | |
| 2199 | isp1760_stop(hcd); |
Nate Case | 3faefc8 | 2008-06-17 11:11:38 -0500 | [diff] [blame] | 2200 | temp = isp1760_readl(hcd->regs + HC_HW_MODE_CTRL); |
| 2201 | isp1760_writel(temp &= ~HW_GLOBAL_INTR_EN, hcd->regs + HC_HW_MODE_CTRL); |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 2202 | |
| 2203 | command = isp1760_readl(hcd->regs + HC_USBCMD); |
| 2204 | command &= ~CMD_RUN; |
| 2205 | isp1760_writel(command, hcd->regs + HC_USBCMD); |
| 2206 | } |
| 2207 | |
| 2208 | static const struct hc_driver isp1760_hc_driver = { |
| 2209 | .description = "isp1760-hcd", |
| 2210 | .product_desc = "NXP ISP1760 USB Host Controller", |
| 2211 | .hcd_priv_size = sizeof(struct isp1760_hcd), |
| 2212 | .irq = isp1760_irq, |
| 2213 | .flags = HCD_MEMORY | HCD_USB2, |
| 2214 | .reset = isp1760_hc_setup, |
| 2215 | .start = isp1760_run, |
| 2216 | .stop = isp1760_stop, |
| 2217 | .shutdown = isp1760_shutdown, |
| 2218 | .urb_enqueue = isp1760_urb_enqueue, |
| 2219 | .urb_dequeue = isp1760_urb_dequeue, |
| 2220 | .endpoint_disable = isp1760_endpoint_disable, |
| 2221 | .get_frame_number = isp1760_get_frame, |
| 2222 | .hub_status_data = isp1760_hub_status_data, |
| 2223 | .hub_control = isp1760_hub_control, |
| 2224 | }; |
| 2225 | |
| 2226 | int __init init_kmem_once(void) |
| 2227 | { |
| 2228 | qtd_cachep = kmem_cache_create("isp1760_qtd", |
| 2229 | sizeof(struct isp1760_qtd), 0, SLAB_TEMPORARY | |
| 2230 | SLAB_MEM_SPREAD, NULL); |
| 2231 | |
| 2232 | if (!qtd_cachep) |
| 2233 | return -ENOMEM; |
| 2234 | |
| 2235 | qh_cachep = kmem_cache_create("isp1760_qh", sizeof(struct isp1760_qh), |
| 2236 | 0, SLAB_TEMPORARY | SLAB_MEM_SPREAD, NULL); |
| 2237 | |
| 2238 | if (!qh_cachep) { |
| 2239 | kmem_cache_destroy(qtd_cachep); |
| 2240 | return -ENOMEM; |
| 2241 | } |
| 2242 | |
| 2243 | return 0; |
| 2244 | } |
| 2245 | |
| 2246 | void deinit_kmem_cache(void) |
| 2247 | { |
| 2248 | kmem_cache_destroy(qtd_cachep); |
| 2249 | kmem_cache_destroy(qh_cachep); |
| 2250 | } |
| 2251 | |
Catalin Marinas | f9031f2 | 2009-02-10 16:55:45 +0000 | [diff] [blame] | 2252 | struct usb_hcd *isp1760_register(phys_addr_t res_start, resource_size_t res_len, |
| 2253 | int irq, unsigned long irqflags, |
| 2254 | struct device *dev, const char *busname, |
| 2255 | unsigned int devflags) |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 2256 | { |
| 2257 | struct usb_hcd *hcd; |
| 2258 | struct isp1760_hcd *priv; |
| 2259 | int ret; |
| 2260 | |
| 2261 | if (usb_disabled()) |
| 2262 | return ERR_PTR(-ENODEV); |
| 2263 | |
| 2264 | /* prevent usb-core allocating DMA pages */ |
| 2265 | dev->dma_mask = NULL; |
| 2266 | |
Kay Sievers | 0031a06 | 2008-05-02 06:02:41 +0200 | [diff] [blame] | 2267 | hcd = usb_create_hcd(&isp1760_hc_driver, dev, dev_name(dev)); |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 2268 | if (!hcd) |
| 2269 | return ERR_PTR(-ENOMEM); |
| 2270 | |
| 2271 | priv = hcd_to_priv(hcd); |
Nate Case | 3faefc8 | 2008-06-17 11:11:38 -0500 | [diff] [blame] | 2272 | priv->devflags = devflags; |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 2273 | init_memory(priv); |
| 2274 | hcd->regs = ioremap(res_start, res_len); |
| 2275 | if (!hcd->regs) { |
| 2276 | ret = -EIO; |
| 2277 | goto err_put; |
| 2278 | } |
| 2279 | |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 2280 | hcd->irq = irq; |
| 2281 | hcd->rsrc_start = res_start; |
| 2282 | hcd->rsrc_len = res_len; |
| 2283 | |
Nate Case | e6942d6 | 2008-05-21 16:28:20 -0500 | [diff] [blame] | 2284 | ret = usb_add_hcd(hcd, irq, irqflags); |
| 2285 | if (ret) |
| 2286 | goto err_unmap; |
| 2287 | |
Sebastian Siewior | db11e47 | 2008-04-24 00:37:04 +0200 | [diff] [blame] | 2288 | return hcd; |
| 2289 | |
| 2290 | err_unmap: |
| 2291 | iounmap(hcd->regs); |
| 2292 | |
| 2293 | err_put: |
| 2294 | usb_put_hcd(hcd); |
| 2295 | |
| 2296 | return ERR_PTR(ret); |
| 2297 | } |
| 2298 | |
| 2299 | MODULE_DESCRIPTION("Driver for the ISP1760 USB-controller from NXP"); |
| 2300 | MODULE_AUTHOR("Sebastian Siewior <bigeasy@linuxtronix.de>"); |
| 2301 | MODULE_LICENSE("GPL v2"); |