mirror of
git://projects.qi-hardware.com/openwrt-xburst.git
synced 2024-11-25 19:16:16 +02:00
122 lines
2.7 KiB
C
122 lines
2.7 KiB
C
|
/*
|
||
|
* linux/drivers/usb/gadget/jz4740_udc.h
|
||
|
*
|
||
|
* Ingenic JZ4740 on-chip high speed USB device controller
|
||
|
*
|
||
|
* Copyright (C) 2006 Ingenic Semiconductor Inc.
|
||
|
* Author: <jlwei@ingenic.cn>
|
||
|
*
|
||
|
* This program is free software; you can redistribute it and/or modify
|
||
|
* it under the terms of the GNU General Public License as published by
|
||
|
* the Free Software Foundation; either version 2 of the License, or
|
||
|
* (at your option) any later version.
|
||
|
*/
|
||
|
|
||
|
#ifndef __USB_GADGET_JZ4740_H__
|
||
|
#define __USB_GADGET_JZ4740_H__
|
||
|
|
||
|
/*-------------------------------------------------------------------------*/
|
||
|
|
||
|
// Max packet size
|
||
|
#define EP0_MAXPACKETSIZE 64
|
||
|
#define EPBULK_MAXPACKETSIZE 512
|
||
|
#define EPINTR_MAXPACKETSIZE 64
|
||
|
|
||
|
#define UDC_MAX_ENDPOINTS 4
|
||
|
|
||
|
/*-------------------------------------------------------------------------*/
|
||
|
|
||
|
typedef enum ep_type {
|
||
|
ep_control, ep_bulk_in, ep_bulk_out, ep_interrupt
|
||
|
} ep_type_t;
|
||
|
|
||
|
struct jz4740_ep {
|
||
|
struct usb_ep ep;
|
||
|
struct jz4740_udc *dev;
|
||
|
|
||
|
const struct usb_endpoint_descriptor *desc;
|
||
|
struct list_head queue;
|
||
|
unsigned long pio_irqs;
|
||
|
|
||
|
u8 stopped;
|
||
|
u8 bEndpointAddress;
|
||
|
u8 bmAttributes;
|
||
|
|
||
|
ep_type_t ep_type;
|
||
|
u32 fifo;
|
||
|
u32 csr;
|
||
|
|
||
|
u32 reg_addr;
|
||
|
};
|
||
|
|
||
|
struct jz4740_request {
|
||
|
struct usb_request req;
|
||
|
struct list_head queue;
|
||
|
};
|
||
|
|
||
|
enum ep0state {
|
||
|
WAIT_FOR_SETUP, /* between STATUS ack and SETUP report */
|
||
|
DATA_STATE_XMIT, /* data tx stage */
|
||
|
DATA_STATE_NEED_ZLP, /* data tx zlp stage */
|
||
|
WAIT_FOR_OUT_STATUS, /* status stages */
|
||
|
DATA_STATE_RECV, /* data rx stage */
|
||
|
};
|
||
|
|
||
|
/* For function binding with UDC Disable - Added by River */
|
||
|
typedef enum {
|
||
|
UDC_STATE_ENABLE = 0,
|
||
|
UDC_STATE_DISABLE,
|
||
|
}udc_state_t;
|
||
|
|
||
|
struct jz4740_udc {
|
||
|
struct usb_gadget gadget;
|
||
|
struct usb_gadget_driver *driver;
|
||
|
struct device *dev;
|
||
|
spinlock_t lock;
|
||
|
|
||
|
enum ep0state ep0state;
|
||
|
struct jz4740_ep ep[UDC_MAX_ENDPOINTS];
|
||
|
|
||
|
unsigned char usb_address;
|
||
|
|
||
|
/* UDC state - Added by River */
|
||
|
udc_state_t state;
|
||
|
};
|
||
|
|
||
|
extern struct jz4740_udc *the_controller;
|
||
|
|
||
|
#define ep_is_in(EP) (((EP)->bEndpointAddress&USB_DIR_IN)==USB_DIR_IN)
|
||
|
#define ep_maxpacket(EP) ((EP)->ep.maxpacket)
|
||
|
#define ep_index(EP) ((EP)->bEndpointAddress&0xF)
|
||
|
#define usb_set_index(i) (REG8(USB_REG_INDEX) = (i))
|
||
|
|
||
|
/*-------------------------------------------------------------------------*/
|
||
|
|
||
|
/* 2.5 stuff that's sometimes missing in 2.4 */
|
||
|
|
||
|
#ifndef container_of
|
||
|
#define container_of list_entry
|
||
|
#endif
|
||
|
|
||
|
#ifndef likely
|
||
|
#define likely(x) (x)
|
||
|
#define unlikely(x) (x)
|
||
|
#endif
|
||
|
|
||
|
#ifndef BUG_ON
|
||
|
#define BUG_ON(condition) do { if (unlikely((condition)!=0)) BUG(); } while(0)
|
||
|
#endif
|
||
|
|
||
|
#ifndef WARN_ON
|
||
|
#define WARN_ON(x) do { } while (0)
|
||
|
#endif
|
||
|
|
||
|
#ifndef IRQ_NONE
|
||
|
typedef void irqreturn_t;
|
||
|
#define IRQ_NONE
|
||
|
#define IRQ_HANDLED
|
||
|
#define IRQ_RETVAL(x)
|
||
|
#endif
|
||
|
|
||
|
#endif /* __USB_GADGET_JZ4740_H__ */
|