usb: gadget: ci13xxx: rename register layouts
[deliverable/linux.git] / drivers / usb / gadget / ci13xxx_udc.h
1 /*
2 * ci13xxx_udc.h - structures, registers, and macros MIPS USB IP core
3 *
4 * Copyright (C) 2008 Chipidea - MIPS Technologies, Inc. All rights reserved.
5 *
6 * Author: David Lopo
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 version 2 as
10 * published by the Free Software Foundation.
11 *
12 * Description: MIPS USB IP core family device controller
13 * Structures, registers and logging macros
14 */
15
16 #ifndef _CI13XXX_h_
17 #define _CI13XXX_h_
18
19 /******************************************************************************
20 * DEFINE
21 *****************************************************************************/
22 #define CI13XXX_PAGE_SIZE 4096ul /* page size for TD's */
23 #define ENDPT_MAX (32)
24 #define CTRL_PAYLOAD_MAX (64)
25 #define RX (0) /* similar to USB_DIR_OUT but can be used as an index */
26 #define TX (1) /* similar to USB_DIR_IN but can be used as an index */
27
28 /******************************************************************************
29 * STRUCTURES
30 *****************************************************************************/
31 /* DMA layout of transfer descriptors */
32 struct ci13xxx_td {
33 /* 0 */
34 u32 next;
35 #define TD_TERMINATE BIT(0)
36 #define TD_ADDR_MASK (0xFFFFFFEUL << 5)
37 /* 1 */
38 u32 token;
39 #define TD_STATUS (0x00FFUL << 0)
40 #define TD_STATUS_TR_ERR BIT(3)
41 #define TD_STATUS_DT_ERR BIT(5)
42 #define TD_STATUS_HALTED BIT(6)
43 #define TD_STATUS_ACTIVE BIT(7)
44 #define TD_MULTO (0x0003UL << 10)
45 #define TD_IOC BIT(15)
46 #define TD_TOTAL_BYTES (0x7FFFUL << 16)
47 /* 2 */
48 u32 page[5];
49 #define TD_CURR_OFFSET (0x0FFFUL << 0)
50 #define TD_FRAME_NUM (0x07FFUL << 0)
51 #define TD_RESERVED_MASK (0x0FFFUL << 0)
52 } __attribute__ ((packed));
53
54 /* DMA layout of queue heads */
55 struct ci13xxx_qh {
56 /* 0 */
57 u32 cap;
58 #define QH_IOS BIT(15)
59 #define QH_MAX_PKT (0x07FFUL << 16)
60 #define QH_ZLT BIT(29)
61 #define QH_MULT (0x0003UL << 30)
62 /* 1 */
63 u32 curr;
64 /* 2 - 8 */
65 struct ci13xxx_td td;
66 /* 9 */
67 u32 RESERVED;
68 struct usb_ctrlrequest setup;
69 } __attribute__ ((packed));
70
71 /* Extension of usb_request */
72 struct ci13xxx_req {
73 struct usb_request req;
74 unsigned map;
75 struct list_head queue;
76 struct ci13xxx_td *ptr;
77 dma_addr_t dma;
78 struct ci13xxx_td *zptr;
79 dma_addr_t zdma;
80 };
81
82 /* Extension of usb_ep */
83 struct ci13xxx_ep {
84 struct usb_ep ep;
85 u8 dir;
86 u8 num;
87 u8 type;
88 char name[16];
89 struct {
90 struct list_head queue;
91 struct ci13xxx_qh *ptr;
92 dma_addr_t dma;
93 } qh;
94 int wedge;
95
96 /* global resources */
97 spinlock_t *lock;
98 struct device *device;
99 struct dma_pool *td_pool;
100 };
101
102 struct ci13xxx;
103 struct ci13xxx_udc_driver {
104 const char *name;
105 unsigned long flags;
106 #define CI13XXX_REGS_SHARED BIT(0)
107 #define CI13XXX_REQUIRE_TRANSCEIVER BIT(1)
108 #define CI13XXX_PULLUP_ON_VBUS BIT(2)
109 #define CI13XXX_DISABLE_STREAMING BIT(3)
110
111 #define CI13XXX_CONTROLLER_RESET_EVENT 0
112 #define CI13XXX_CONTROLLER_STOPPED_EVENT 1
113 void (*notify_event) (struct ci13xxx *udc, unsigned event);
114 };
115
116 /* CI13XXX UDC descriptor & global resources */
117 struct ci13xxx {
118 spinlock_t *lock; /* ctrl register bank access */
119 void __iomem *regs; /* registers address space */
120
121 struct dma_pool *qh_pool; /* DMA pool for queue heads */
122 struct dma_pool *td_pool; /* DMA pool for transfer descs */
123 struct usb_request *status; /* ep0 status request */
124
125 struct usb_gadget gadget; /* USB slave device */
126 struct ci13xxx_ep ci13xxx_ep[ENDPT_MAX]; /* extended endpts */
127 u32 ep0_dir; /* ep0 direction */
128 struct ci13xxx_ep *ep0out, *ep0in;
129 u8 remote_wakeup; /* Is remote wakeup feature
130 enabled by the host? */
131 u8 suspended; /* suspended by the host */
132 u8 test_mode; /* the selected test mode */
133
134 struct usb_gadget_driver *driver; /* 3rd party gadget driver */
135 struct ci13xxx_udc_driver *udc_driver; /* device controller driver */
136 int vbus_active; /* is VBUS active */
137 struct usb_phy *transceiver; /* Transceiver struct */
138 };
139
140 /******************************************************************************
141 * REGISTERS
142 *****************************************************************************/
143 /* Default offset of capability registers */
144 #define DEF_CAPOFFSET 0x100
145
146 /* register size */
147 #define REG_BITS (32)
148
149 /* HCCPARAMS */
150 #define HCCPARAMS_LEN BIT(17)
151
152 /* DCCPARAMS */
153 #define DCCPARAMS_DEN (0x1F << 0)
154 #define DCCPARAMS_DC BIT(7)
155
156 /* TESTMODE */
157 #define TESTMODE_FORCE BIT(0)
158
159 /* USBCMD */
160 #define USBCMD_RS BIT(0)
161 #define USBCMD_RST BIT(1)
162 #define USBCMD_SUTW BIT(13)
163 #define USBCMD_ATDTW BIT(14)
164
165 /* USBSTS & USBINTR */
166 #define USBi_UI BIT(0)
167 #define USBi_UEI BIT(1)
168 #define USBi_PCI BIT(2)
169 #define USBi_URI BIT(6)
170 #define USBi_SLI BIT(8)
171
172 /* DEVICEADDR */
173 #define DEVICEADDR_USBADRA BIT(24)
174 #define DEVICEADDR_USBADR (0x7FUL << 25)
175
176 /* PORTSC */
177 #define PORTSC_FPR BIT(6)
178 #define PORTSC_SUSP BIT(7)
179 #define PORTSC_HSP BIT(9)
180 #define PORTSC_PTC (0x0FUL << 16)
181
182 /* DEVLC */
183 #define DEVLC_PSPD (0x03UL << 25)
184 #define DEVLC_PSPD_HS (0x02UL << 25)
185
186 /* USBMODE */
187 #define USBMODE_CM (0x03UL << 0)
188 #define USBMODE_CM_IDLE (0x00UL << 0)
189 #define USBMODE_CM_DEVICE (0x02UL << 0)
190 #define USBMODE_CM_HOST (0x03UL << 0)
191 #define USBMODE_SLOM BIT(3)
192 #define USBMODE_SDIS BIT(4)
193
194 /* ENDPTCTRL */
195 #define ENDPTCTRL_RXS BIT(0)
196 #define ENDPTCTRL_RXT (0x03UL << 2)
197 #define ENDPTCTRL_RXR BIT(6) /* reserved for port 0 */
198 #define ENDPTCTRL_RXE BIT(7)
199 #define ENDPTCTRL_TXS BIT(16)
200 #define ENDPTCTRL_TXT (0x03UL << 18)
201 #define ENDPTCTRL_TXR BIT(22) /* reserved for port 0 */
202 #define ENDPTCTRL_TXE BIT(23)
203
204 /******************************************************************************
205 * LOGGING
206 *****************************************************************************/
207 #define ci13xxx_printk(level, format, args...) \
208 do { \
209 if (_udc == NULL) \
210 printk(level "[%s] " format "\n", __func__, ## args); \
211 else \
212 dev_printk(level, _udc->gadget.dev.parent, \
213 "[%s] " format "\n", __func__, ## args); \
214 } while (0)
215
216 #define warn(format, args...) ci13xxx_printk(KERN_WARNING, format, ## args)
217 #define info(format, args...) ci13xxx_printk(KERN_INFO, format, ## args)
218
219 #ifdef TRACE
220 #define trace(format, args...) ci13xxx_printk(KERN_DEBUG, format, ## args)
221 #define dbg_trace(format, args...) dev_dbg(dev, format, ##args)
222 #else
223 #define trace(format, args...) do {} while (0)
224 #define dbg_trace(format, args...) do {} while (0)
225 #endif
226
227 #endif /* _CI13XXX_h_ */
This page took 0.047583 seconds and 5 git commands to generate.