diff options
Diffstat (limited to 'drivers/usb/c67x00')
-rw-r--r-- | drivers/usb/c67x00/c67x00-ll-hpi.c | 405 | ||||
-rw-r--r-- | drivers/usb/c67x00/c67x00.h | 285 |
2 files changed, 690 insertions, 0 deletions
diff --git a/drivers/usb/c67x00/c67x00-ll-hpi.c b/drivers/usb/c67x00/c67x00-ll-hpi.c new file mode 100644 index 000000000000..e921991bc36a --- /dev/null +++ b/drivers/usb/c67x00/c67x00-ll-hpi.c | |||
@@ -0,0 +1,405 @@ | |||
1 | /* | ||
2 | * c67x00-ll-hpi.c: Cypress C67X00 USB Low level interface using HPI | ||
3 | * | ||
4 | * Copyright (C) 2006-2008 Barco N.V. | ||
5 | * Derived from the Cypress cy7c67200/300 ezusb linux driver and | ||
6 | * based on multiple host controller drivers inside the linux kernel. | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, | ||
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
16 | * GNU General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU General Public License | ||
19 | * along with this program; if not, write to the Free Software | ||
20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
21 | * MA 02110-1301 USA. | ||
22 | */ | ||
23 | |||
24 | #include <asm/byteorder.h> | ||
25 | #include <linux/io.h> | ||
26 | #include <linux/usb/c67x00.h> | ||
27 | #include "c67x00.h" | ||
28 | |||
29 | #define COMM_REGS 14 | ||
30 | |||
31 | struct c67x00_lcp_int_data { | ||
32 | u16 regs[COMM_REGS]; | ||
33 | }; | ||
34 | |||
35 | /* -------------------------------------------------------------------------- */ | ||
36 | /* Interface definitions */ | ||
37 | |||
38 | #define COMM_ACK 0x0FED | ||
39 | #define COMM_NAK 0xDEAD | ||
40 | |||
41 | #define COMM_RESET 0xFA50 | ||
42 | #define COMM_EXEC_INT 0xCE01 | ||
43 | #define COMM_INT_NUM 0x01C2 | ||
44 | |||
45 | /* Registers 0 to COMM_REGS-1 */ | ||
46 | #define COMM_R(x) (0x01C4 + 2 * (x)) | ||
47 | |||
48 | #define HUSB_SIE_pCurrentTDPtr(x) ((x) ? 0x01B2 : 0x01B0) | ||
49 | #define HUSB_SIE_pTDListDone_Sem(x) ((x) ? 0x01B8 : 0x01B6) | ||
50 | #define HUSB_pEOT 0x01B4 | ||
51 | |||
52 | /* Software interrupts */ | ||
53 | /* 114, 115: */ | ||
54 | #define HUSB_SIE_INIT_INT(x) ((x) ? 0x0073 : 0x0072) | ||
55 | #define HUSB_RESET_INT 0x0074 | ||
56 | |||
57 | #define SUSB_INIT_INT 0x0071 | ||
58 | #define SUSB_INIT_INT_LOC (SUSB_INIT_INT * 2) | ||
59 | |||
60 | /* ----------------------------------------------------------------------- | ||
61 | * HPI implementation | ||
62 | * | ||
63 | * The c67x00 chip also support control via SPI or HSS serial | ||
64 | * interfaces. However, this driver assumes that register access can | ||
65 | * be performed from IRQ context. While this is a safe assuption with | ||
66 | * the HPI interface, it is not true for the serial interfaces. | ||
67 | */ | ||
68 | |||
69 | /* HPI registers */ | ||
70 | #define HPI_DATA 0 | ||
71 | #define HPI_MAILBOX 1 | ||
72 | #define HPI_ADDR 2 | ||
73 | #define HPI_STATUS 3 | ||
74 | |||
75 | static inline u16 hpi_read_reg(struct c67x00_device *dev, int reg) | ||
76 | { | ||
77 | return __raw_readw(dev->hpi.base + reg * dev->hpi.regstep); | ||
78 | } | ||
79 | |||
80 | static inline void hpi_write_reg(struct c67x00_device *dev, int reg, u16 value) | ||
81 | { | ||
82 | __raw_writew(value, dev->hpi.base + reg * dev->hpi.regstep); | ||
83 | } | ||
84 | |||
85 | static inline u16 hpi_read_word_nolock(struct c67x00_device *dev, u16 reg) | ||
86 | { | ||
87 | hpi_write_reg(dev, HPI_ADDR, reg); | ||
88 | return hpi_read_reg(dev, HPI_DATA); | ||
89 | } | ||
90 | |||
91 | static u16 hpi_read_word(struct c67x00_device *dev, u16 reg) | ||
92 | { | ||
93 | u16 value; | ||
94 | unsigned long flags; | ||
95 | |||
96 | spin_lock_irqsave(&dev->hpi.lock, flags); | ||
97 | value = hpi_read_word_nolock(dev, reg); | ||
98 | spin_unlock_irqrestore(&dev->hpi.lock, flags); | ||
99 | |||
100 | return value; | ||
101 | } | ||
102 | |||
103 | static void hpi_write_word_nolock(struct c67x00_device *dev, u16 reg, u16 value) | ||
104 | { | ||
105 | hpi_write_reg(dev, HPI_ADDR, reg); | ||
106 | hpi_write_reg(dev, HPI_DATA, value); | ||
107 | } | ||
108 | |||
109 | static void hpi_write_word(struct c67x00_device *dev, u16 reg, u16 value) | ||
110 | { | ||
111 | unsigned long flags; | ||
112 | |||
113 | spin_lock_irqsave(&dev->hpi.lock, flags); | ||
114 | hpi_write_word_nolock(dev, reg, value); | ||
115 | spin_unlock_irqrestore(&dev->hpi.lock, flags); | ||
116 | } | ||
117 | |||
118 | /* | ||
119 | * Only data is little endian, addr has cpu endianess | ||
120 | */ | ||
121 | static void hpi_write_words_le16(struct c67x00_device *dev, u16 addr, | ||
122 | u16 *data, u16 count) | ||
123 | { | ||
124 | unsigned long flags; | ||
125 | int i; | ||
126 | |||
127 | spin_lock_irqsave(&dev->hpi.lock, flags); | ||
128 | |||
129 | hpi_write_reg(dev, HPI_ADDR, addr); | ||
130 | for (i = 0; i < count; i++) | ||
131 | hpi_write_reg(dev, HPI_DATA, cpu_to_le16(*data++)); | ||
132 | |||
133 | spin_unlock_irqrestore(&dev->hpi.lock, flags); | ||
134 | } | ||
135 | |||
136 | /* | ||
137 | * Only data is little endian, addr has cpu endianess | ||
138 | */ | ||
139 | static void hpi_read_words_le16(struct c67x00_device *dev, u16 addr, | ||
140 | u16 *data, u16 count) | ||
141 | { | ||
142 | unsigned long flags; | ||
143 | int i; | ||
144 | |||
145 | spin_lock_irqsave(&dev->hpi.lock, flags); | ||
146 | hpi_write_reg(dev, HPI_ADDR, addr); | ||
147 | for (i = 0; i < count; i++) | ||
148 | *data++ = le16_to_cpu(hpi_read_reg(dev, HPI_DATA)); | ||
149 | |||
150 | spin_unlock_irqrestore(&dev->hpi.lock, flags); | ||
151 | } | ||
152 | |||
153 | static void hpi_set_bits(struct c67x00_device *dev, u16 reg, u16 mask) | ||
154 | { | ||
155 | u16 value; | ||
156 | unsigned long flags; | ||
157 | |||
158 | spin_lock_irqsave(&dev->hpi.lock, flags); | ||
159 | value = hpi_read_word_nolock(dev, reg); | ||
160 | hpi_write_word_nolock(dev, reg, value | mask); | ||
161 | spin_unlock_irqrestore(&dev->hpi.lock, flags); | ||
162 | } | ||
163 | |||
164 | static void hpi_clear_bits(struct c67x00_device *dev, u16 reg, u16 mask) | ||
165 | { | ||
166 | u16 value; | ||
167 | unsigned long flags; | ||
168 | |||
169 | spin_lock_irqsave(&dev->hpi.lock, flags); | ||
170 | value = hpi_read_word_nolock(dev, reg); | ||
171 | hpi_write_word_nolock(dev, reg, value & ~mask); | ||
172 | spin_unlock_irqrestore(&dev->hpi.lock, flags); | ||
173 | } | ||
174 | |||
175 | static u16 hpi_recv_mbox(struct c67x00_device *dev) | ||
176 | { | ||
177 | u16 value; | ||
178 | unsigned long flags; | ||
179 | |||
180 | spin_lock_irqsave(&dev->hpi.lock, flags); | ||
181 | value = hpi_read_reg(dev, HPI_MAILBOX); | ||
182 | spin_unlock_irqrestore(&dev->hpi.lock, flags); | ||
183 | |||
184 | return value; | ||
185 | } | ||
186 | |||
187 | static u16 hpi_send_mbox(struct c67x00_device *dev, u16 value) | ||
188 | { | ||
189 | unsigned long flags; | ||
190 | |||
191 | spin_lock_irqsave(&dev->hpi.lock, flags); | ||
192 | hpi_write_reg(dev, HPI_MAILBOX, value); | ||
193 | spin_unlock_irqrestore(&dev->hpi.lock, flags); | ||
194 | |||
195 | return value; | ||
196 | } | ||
197 | |||
198 | u16 c67x00_ll_hpi_status(struct c67x00_device *dev) | ||
199 | { | ||
200 | u16 value; | ||
201 | unsigned long flags; | ||
202 | |||
203 | spin_lock_irqsave(&dev->hpi.lock, flags); | ||
204 | value = hpi_read_reg(dev, HPI_STATUS); | ||
205 | spin_unlock_irqrestore(&dev->hpi.lock, flags); | ||
206 | |||
207 | return value; | ||
208 | } | ||
209 | |||
210 | void c67x00_ll_hpi_reg_init(struct c67x00_device *dev) | ||
211 | { | ||
212 | int i; | ||
213 | |||
214 | hpi_recv_mbox(dev); | ||
215 | c67x00_ll_hpi_status(dev); | ||
216 | hpi_write_word(dev, HPI_IRQ_ROUTING_REG, 0); | ||
217 | |||
218 | for (i = 0; i < C67X00_SIES; i++) { | ||
219 | hpi_write_word(dev, SIEMSG_REG(i), 0); | ||
220 | hpi_read_word(dev, SIEMSG_REG(i)); | ||
221 | } | ||
222 | } | ||
223 | |||
224 | void c67x00_ll_hpi_enable_sofeop(struct c67x00_sie *sie) | ||
225 | { | ||
226 | hpi_set_bits(sie->dev, HPI_IRQ_ROUTING_REG, | ||
227 | SOFEOP_TO_HPI_EN(sie->sie_num)); | ||
228 | } | ||
229 | |||
230 | void c67x00_ll_hpi_disable_sofeop(struct c67x00_sie *sie) | ||
231 | { | ||
232 | hpi_clear_bits(sie->dev, HPI_IRQ_ROUTING_REG, | ||
233 | SOFEOP_TO_HPI_EN(sie->sie_num)); | ||
234 | } | ||
235 | |||
236 | /* -------------------------------------------------------------------------- */ | ||
237 | /* Transactions */ | ||
238 | |||
239 | static inline u16 ll_recv_msg(struct c67x00_device *dev) | ||
240 | { | ||
241 | u16 res; | ||
242 | |||
243 | res = wait_for_completion_timeout(&dev->hpi.lcp.msg_received, 5 * HZ); | ||
244 | WARN_ON(!res); | ||
245 | |||
246 | return (res == 0) ? -EIO : 0; | ||
247 | } | ||
248 | |||
249 | /* -------------------------------------------------------------------------- */ | ||
250 | /* General functions */ | ||
251 | |||
252 | u16 c67x00_ll_fetch_siemsg(struct c67x00_device *dev, int sie_num) | ||
253 | { | ||
254 | u16 val; | ||
255 | |||
256 | val = hpi_read_word(dev, SIEMSG_REG(sie_num)); | ||
257 | /* clear register to allow next message */ | ||
258 | hpi_write_word(dev, SIEMSG_REG(sie_num), 0); | ||
259 | |||
260 | return val; | ||
261 | } | ||
262 | |||
263 | u16 c67x00_ll_get_usb_ctl(struct c67x00_sie *sie) | ||
264 | { | ||
265 | return hpi_read_word(sie->dev, USB_CTL_REG(sie->sie_num)); | ||
266 | } | ||
267 | |||
268 | /** | ||
269 | * c67x00_ll_usb_clear_status - clear the USB status bits | ||
270 | */ | ||
271 | void c67x00_ll_usb_clear_status(struct c67x00_sie *sie, u16 bits) | ||
272 | { | ||
273 | hpi_write_word(sie->dev, USB_STAT_REG(sie->sie_num), bits); | ||
274 | } | ||
275 | |||
276 | u16 c67x00_ll_usb_get_status(struct c67x00_sie *sie) | ||
277 | { | ||
278 | return hpi_read_word(sie->dev, USB_STAT_REG(sie->sie_num)); | ||
279 | } | ||
280 | |||
281 | /* -------------------------------------------------------------------------- */ | ||
282 | |||
283 | static int c67x00_comm_exec_int(struct c67x00_device *dev, u16 nr, | ||
284 | struct c67x00_lcp_int_data *data) | ||
285 | { | ||
286 | int i, rc; | ||
287 | |||
288 | mutex_lock(&dev->hpi.lcp.mutex); | ||
289 | hpi_write_word(dev, COMM_INT_NUM, nr); | ||
290 | for (i = 0; i < COMM_REGS; i++) | ||
291 | hpi_write_word(dev, COMM_R(i), data->regs[i]); | ||
292 | hpi_send_mbox(dev, COMM_EXEC_INT); | ||
293 | rc = ll_recv_msg(dev); | ||
294 | mutex_unlock(&dev->hpi.lcp.mutex); | ||
295 | |||
296 | return rc; | ||
297 | } | ||
298 | |||
299 | /* -------------------------------------------------------------------------- */ | ||
300 | |||
301 | void c67x00_ll_irq(struct c67x00_device *dev, u16 int_status) | ||
302 | { | ||
303 | if ((int_status & MBX_OUT_FLG) == 0) | ||
304 | return; | ||
305 | |||
306 | dev->hpi.lcp.last_msg = hpi_recv_mbox(dev); | ||
307 | complete(&dev->hpi.lcp.msg_received); | ||
308 | } | ||
309 | |||
310 | /* -------------------------------------------------------------------------- */ | ||
311 | |||
312 | int c67x00_ll_reset(struct c67x00_device *dev) | ||
313 | { | ||
314 | int rc; | ||
315 | |||
316 | mutex_lock(&dev->hpi.lcp.mutex); | ||
317 | hpi_send_mbox(dev, COMM_RESET); | ||
318 | rc = ll_recv_msg(dev); | ||
319 | mutex_unlock(&dev->hpi.lcp.mutex); | ||
320 | |||
321 | return rc; | ||
322 | } | ||
323 | |||
324 | /* -------------------------------------------------------------------------- */ | ||
325 | |||
326 | /** | ||
327 | * c67x00_ll_write_mem_le16 - write into c67x00 memory | ||
328 | * Only data is little endian, addr has cpu endianess. | ||
329 | */ | ||
330 | void c67x00_ll_write_mem_le16(struct c67x00_device *dev, u16 addr, | ||
331 | void *data, int len) | ||
332 | { | ||
333 | u8 *buf = data; | ||
334 | |||
335 | /* Sanity check */ | ||
336 | if (addr + len > 0xffff) { | ||
337 | dev_err(&dev->pdev->dev, | ||
338 | "Trying to write beyond writable region!\n"); | ||
339 | return; | ||
340 | } | ||
341 | |||
342 | if (addr & 0x01) { | ||
343 | /* unaligned access */ | ||
344 | u16 tmp; | ||
345 | tmp = hpi_read_word(dev, addr - 1); | ||
346 | tmp = (tmp & 0x00ff) | (*buf++ << 8); | ||
347 | hpi_write_word(dev, addr - 1, tmp); | ||
348 | addr++; | ||
349 | len--; | ||
350 | } | ||
351 | |||
352 | hpi_write_words_le16(dev, addr, (u16 *)buf, len / 2); | ||
353 | buf += len & ~0x01; | ||
354 | addr += len & ~0x01; | ||
355 | len &= 0x01; | ||
356 | |||
357 | if (len) { | ||
358 | u16 tmp; | ||
359 | tmp = hpi_read_word(dev, addr); | ||
360 | tmp = (tmp & 0xff00) | *buf; | ||
361 | hpi_write_word(dev, addr, tmp); | ||
362 | } | ||
363 | } | ||
364 | |||
365 | /** | ||
366 | * c67x00_ll_read_mem_le16 - read from c67x00 memory | ||
367 | * Only data is little endian, addr has cpu endianess. | ||
368 | */ | ||
369 | void c67x00_ll_read_mem_le16(struct c67x00_device *dev, u16 addr, | ||
370 | void *data, int len) | ||
371 | { | ||
372 | u8 *buf = data; | ||
373 | |||
374 | if (addr & 0x01) { | ||
375 | /* unaligned access */ | ||
376 | u16 tmp; | ||
377 | tmp = hpi_read_word(dev, addr - 1); | ||
378 | *buf++ = (tmp >> 8) & 0x00ff; | ||
379 | addr++; | ||
380 | len--; | ||
381 | } | ||
382 | |||
383 | hpi_read_words_le16(dev, addr, (u16 *)buf, len / 2); | ||
384 | buf += len & ~0x01; | ||
385 | addr += len & ~0x01; | ||
386 | len &= 0x01; | ||
387 | |||
388 | if (len) { | ||
389 | u16 tmp; | ||
390 | tmp = hpi_read_word(dev, addr); | ||
391 | *buf = tmp & 0x00ff; | ||
392 | } | ||
393 | } | ||
394 | |||
395 | /* -------------------------------------------------------------------------- */ | ||
396 | |||
397 | void c67x00_ll_init(struct c67x00_device *dev) | ||
398 | { | ||
399 | mutex_init(&dev->hpi.lcp.mutex); | ||
400 | init_completion(&dev->hpi.lcp.msg_received); | ||
401 | } | ||
402 | |||
403 | void c67x00_ll_release(struct c67x00_device *dev) | ||
404 | { | ||
405 | } | ||
diff --git a/drivers/usb/c67x00/c67x00.h b/drivers/usb/c67x00/c67x00.h new file mode 100644 index 000000000000..1f1a2eef9a22 --- /dev/null +++ b/drivers/usb/c67x00/c67x00.h | |||
@@ -0,0 +1,285 @@ | |||
1 | /* | ||
2 | * c67x00.h: Cypress C67X00 USB register and field definitions | ||
3 | * | ||
4 | * Copyright (C) 2006-2008 Barco N.V. | ||
5 | * Derived from the Cypress cy7c67200/300 ezusb linux driver and | ||
6 | * based on multiple host controller drivers inside the linux kernel. | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify | ||
9 | * it under the terms of the GNU General Public License as published by | ||
10 | * the Free Software Foundation; either version 2 of the License, or | ||
11 | * (at your option) any later version. | ||
12 | * | ||
13 | * This program is distributed in the hope that it will be useful, | ||
14 | * but WITHOUT ANY WARRANTY; without even the implied warranty of | ||
15 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | ||
16 | * GNU General Public License for more details. | ||
17 | * | ||
18 | * You should have received a copy of the GNU General Public License | ||
19 | * along with this program; if not, write to the Free Software | ||
20 | * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, | ||
21 | * MA 02110-1301 USA. | ||
22 | */ | ||
23 | |||
24 | #ifndef _USB_C67X00_H | ||
25 | #define _USB_C67X00_H | ||
26 | |||
27 | #include <linux/spinlock.h> | ||
28 | #include <linux/platform_device.h> | ||
29 | #include <linux/completion.h> | ||
30 | #include <linux/mutex.h> | ||
31 | |||
32 | /* --------------------------------------------------------------------- | ||
33 | * Cypress C67x00 register definitions | ||
34 | */ | ||
35 | |||
36 | /* Hardware Revision Register */ | ||
37 | #define HW_REV_REG 0xC004 | ||
38 | |||
39 | /* General USB registers */ | ||
40 | /* ===================== */ | ||
41 | |||
42 | /* USB Control Register */ | ||
43 | #define USB_CTL_REG(x) ((x) ? 0xC0AA : 0xC08A) | ||
44 | |||
45 | #define LOW_SPEED_PORT(x) ((x) ? 0x0800 : 0x0400) | ||
46 | #define HOST_MODE 0x0200 | ||
47 | #define PORT_RES_EN(x) ((x) ? 0x0100 : 0x0080) | ||
48 | #define SOF_EOP_EN(x) ((x) ? 0x0002 : 0x0001) | ||
49 | |||
50 | /* USB status register - Notice it has different content in hcd/udc mode */ | ||
51 | #define USB_STAT_REG(x) ((x) ? 0xC0B0 : 0xC090) | ||
52 | |||
53 | #define EP0_IRQ_FLG 0x0001 | ||
54 | #define EP1_IRQ_FLG 0x0002 | ||
55 | #define EP2_IRQ_FLG 0x0004 | ||
56 | #define EP3_IRQ_FLG 0x0008 | ||
57 | #define EP4_IRQ_FLG 0x0010 | ||
58 | #define EP5_IRQ_FLG 0x0020 | ||
59 | #define EP6_IRQ_FLG 0x0040 | ||
60 | #define EP7_IRQ_FLG 0x0080 | ||
61 | #define RESET_IRQ_FLG 0x0100 | ||
62 | #define SOF_EOP_IRQ_FLG 0x0200 | ||
63 | #define ID_IRQ_FLG 0x4000 | ||
64 | #define VBUS_IRQ_FLG 0x8000 | ||
65 | |||
66 | /* USB Host only registers */ | ||
67 | /* ======================= */ | ||
68 | |||
69 | /* Host n Control Register */ | ||
70 | #define HOST_CTL_REG(x) ((x) ? 0xC0A0 : 0xC080) | ||
71 | |||
72 | #define PREAMBLE_EN 0x0080 /* Preamble enable */ | ||
73 | #define SEQ_SEL 0x0040 /* Data Toggle Sequence Bit Select */ | ||
74 | #define ISO_EN 0x0010 /* Isochronous enable */ | ||
75 | #define ARM_EN 0x0001 /* Arm operation */ | ||
76 | |||
77 | /* Host n Interrupt Enable Register */ | ||
78 | #define HOST_IRQ_EN_REG(x) ((x) ? 0xC0AC : 0xC08C) | ||
79 | |||
80 | #define SOF_EOP_IRQ_EN 0x0200 /* SOF/EOP Interrupt Enable */ | ||
81 | #define SOF_EOP_TMOUT_IRQ_EN 0x0800 /* SOF/EOP Timeout Interrupt Enable */ | ||
82 | #define ID_IRQ_EN 0x4000 /* ID interrupt enable */ | ||
83 | #define VBUS_IRQ_EN 0x8000 /* VBUS interrupt enable */ | ||
84 | #define DONE_IRQ_EN 0x0001 /* Done Interrupt Enable */ | ||
85 | |||
86 | /* USB status register */ | ||
87 | #define HOST_STAT_MASK 0x02FD | ||
88 | #define PORT_CONNECT_CHANGE(x) ((x) ? 0x0020 : 0x0010) | ||
89 | #define PORT_SE0_STATUS(x) ((x) ? 0x0008 : 0x0004) | ||
90 | |||
91 | /* Host Frame Register */ | ||
92 | #define HOST_FRAME_REG(x) ((x) ? 0xC0B6 : 0xC096) | ||
93 | |||
94 | #define HOST_FRAME_MASK 0x07FF | ||
95 | |||
96 | /* USB Peripheral only registers */ | ||
97 | /* ============================= */ | ||
98 | |||
99 | /* Device n Port Sel reg */ | ||
100 | #define DEVICE_N_PORT_SEL(x) ((x) ? 0xC0A4 : 0xC084) | ||
101 | |||
102 | /* Device n Interrupt Enable Register */ | ||
103 | #define DEVICE_N_IRQ_EN_REG(x) ((x) ? 0xC0AC : 0xC08C) | ||
104 | |||
105 | #define DEVICE_N_ENDPOINT_N_CTL_REG(dev, ep) ((dev) \ | ||
106 | ? (0x0280 + (ep << 4)) \ | ||
107 | : (0x0200 + (ep << 4))) | ||
108 | #define DEVICE_N_ENDPOINT_N_STAT_REG(dev, ep) ((dev) \ | ||
109 | ? (0x0286 + (ep << 4)) \ | ||
110 | : (0x0206 + (ep << 4))) | ||
111 | |||
112 | #define DEVICE_N_ADDRESS(dev) ((dev) ? (0xC0AE) : (0xC08E)) | ||
113 | |||
114 | /* HPI registers */ | ||
115 | /* ============= */ | ||
116 | |||
117 | /* HPI Status register */ | ||
118 | #define SOFEOP_FLG(x) (1 << ((x) ? 12 : 10)) | ||
119 | #define SIEMSG_FLG(x) (1 << (4 + (x))) | ||
120 | #define RESET_FLG(x) ((x) ? 0x0200 : 0x0002) | ||
121 | #define DONE_FLG(x) (1 << (2 + (x))) | ||
122 | #define RESUME_FLG(x) (1 << (6 + (x))) | ||
123 | #define MBX_OUT_FLG 0x0001 /* Message out available */ | ||
124 | #define MBX_IN_FLG 0x0100 | ||
125 | #define ID_FLG 0x4000 | ||
126 | #define VBUS_FLG 0x8000 | ||
127 | |||
128 | /* Interrupt routing register */ | ||
129 | #define HPI_IRQ_ROUTING_REG 0x0142 | ||
130 | |||
131 | #define HPI_SWAP_ENABLE(x) ((x) ? 0x0100 : 0x0001) | ||
132 | #define RESET_TO_HPI_ENABLE(x) ((x) ? 0x0200 : 0x0002) | ||
133 | #define DONE_TO_HPI_ENABLE(x) ((x) ? 0x0008 : 0x0004) | ||
134 | #define RESUME_TO_HPI_ENABLE(x) ((x) ? 0x0080 : 0x0040) | ||
135 | #define SOFEOP_TO_HPI_EN(x) ((x) ? 0x2000 : 0x0800) | ||
136 | #define SOFEOP_TO_CPU_EN(x) ((x) ? 0x1000 : 0x0400) | ||
137 | #define ID_TO_HPI_ENABLE 0x4000 | ||
138 | #define VBUS_TO_HPI_ENABLE 0x8000 | ||
139 | |||
140 | /* SIE msg registers */ | ||
141 | #define SIEMSG_REG(x) ((x) ? 0x0148 : 0x0144) | ||
142 | |||
143 | #define HUSB_TDListDone 0x1000 | ||
144 | |||
145 | #define SUSB_EP0_MSG 0x0001 | ||
146 | #define SUSB_EP1_MSG 0x0002 | ||
147 | #define SUSB_EP2_MSG 0x0004 | ||
148 | #define SUSB_EP3_MSG 0x0008 | ||
149 | #define SUSB_EP4_MSG 0x0010 | ||
150 | #define SUSB_EP5_MSG 0x0020 | ||
151 | #define SUSB_EP6_MSG 0x0040 | ||
152 | #define SUSB_EP7_MSG 0x0080 | ||
153 | #define SUSB_RST_MSG 0x0100 | ||
154 | #define SUSB_SOF_MSG 0x0200 | ||
155 | #define SUSB_CFG_MSG 0x0400 | ||
156 | #define SUSB_SUS_MSG 0x0800 | ||
157 | #define SUSB_ID_MSG 0x4000 | ||
158 | #define SUSB_VBUS_MSG 0x8000 | ||
159 | |||
160 | /* BIOS interrupt routines */ | ||
161 | |||
162 | #define SUSBx_RECEIVE_INT(x) ((x) ? 97 : 81) | ||
163 | #define SUSBx_SEND_INT(x) ((x) ? 96 : 80) | ||
164 | |||
165 | #define SUSBx_DEV_DESC_VEC(x) ((x) ? 0x00D4 : 0x00B4) | ||
166 | #define SUSBx_CONF_DESC_VEC(x) ((x) ? 0x00D6 : 0x00B6) | ||
167 | #define SUSBx_STRING_DESC_VEC(x) ((x) ? 0x00D8 : 0x00B8) | ||
168 | |||
169 | #define CY_HCD_BUF_ADDR 0x500 /* Base address for host */ | ||
170 | #define SIE_TD_SIZE 0x200 /* size of the td list */ | ||
171 | #define SIE_TD_BUF_SIZE 0x400 /* size of the data buffer */ | ||
172 | |||
173 | #define SIE_TD_OFFSET(host) ((host) ? (SIE_TD_SIZE+SIE_TD_BUF_SIZE) : 0) | ||
174 | #define SIE_BUF_OFFSET(host) (SIE_TD_OFFSET(host) + SIE_TD_SIZE) | ||
175 | |||
176 | /* Base address of HCD + 2 x TD_SIZE + 2 x TD_BUF_SIZE */ | ||
177 | #define CY_UDC_REQ_HEADER_BASE 0x1100 | ||
178 | /* 8- byte request headers for IN/OUT transfers */ | ||
179 | #define CY_UDC_REQ_HEADER_SIZE 8 | ||
180 | |||
181 | #define CY_UDC_REQ_HEADER_ADDR(ep_num) (CY_UDC_REQ_HEADER_BASE + \ | ||
182 | ((ep_num) * CY_UDC_REQ_HEADER_SIZE)) | ||
183 | #define CY_UDC_DESC_BASE_ADDRESS (CY_UDC_REQ_HEADER_ADDR(8)) | ||
184 | |||
185 | #define CY_UDC_BIOS_REPLACE_BASE 0x1800 | ||
186 | #define CY_UDC_REQ_BUFFER_BASE 0x2000 | ||
187 | #define CY_UDC_REQ_BUFFER_SIZE 0x0400 | ||
188 | #define CY_UDC_REQ_BUFFER_ADDR(ep_num) (CY_UDC_REQ_BUFFER_BASE + \ | ||
189 | ((ep_num) * CY_UDC_REQ_BUFFER_SIZE)) | ||
190 | |||
191 | /* --------------------------------------------------------------------- | ||
192 | * Driver data structures | ||
193 | */ | ||
194 | |||
195 | struct c67x00_device; | ||
196 | |||
197 | /** | ||
198 | * struct c67x00_sie - Common data associated with a SIE | ||
199 | * @lock: lock to protect this struct and the associated chip registers | ||
200 | * @private_data: subdriver dependent data | ||
201 | * @irq: subdriver dependent irq handler, set NULL when not used | ||
202 | * @dev: link to common driver structure | ||
203 | * @sie_num: SIE number on chip, starting from 0 | ||
204 | * @mode: SIE mode (host/peripheral/otg/not used) | ||
205 | */ | ||
206 | struct c67x00_sie { | ||
207 | /* Entries to be used by the subdrivers */ | ||
208 | spinlock_t lock; /* protect this structure */ | ||
209 | void *private_data; | ||
210 | void (*irq) (struct c67x00_sie *sie, u16 int_status, u16 msg); | ||
211 | |||
212 | /* Read only: */ | ||
213 | struct c67x00_device *dev; | ||
214 | int sie_num; | ||
215 | int mode; | ||
216 | }; | ||
217 | |||
218 | #define sie_dev(s) (&(s)->dev->pdev->dev) | ||
219 | |||
220 | /** | ||
221 | * struct c67x00_lcp | ||
222 | */ | ||
223 | struct c67x00_lcp { | ||
224 | /* Internal use only */ | ||
225 | struct mutex mutex; | ||
226 | struct completion msg_received; | ||
227 | u16 last_msg; | ||
228 | }; | ||
229 | |||
230 | /* | ||
231 | * struct c67x00_hpi | ||
232 | */ | ||
233 | struct c67x00_hpi { | ||
234 | void __iomem *base; | ||
235 | int regstep; | ||
236 | spinlock_t lock; | ||
237 | struct c67x00_lcp lcp; | ||
238 | }; | ||
239 | |||
240 | #define C67X00_SIES 2 | ||
241 | #define C67X00_PORTS 2 | ||
242 | |||
243 | /** | ||
244 | * struct c67x00_device - Common data associated with a c67x00 instance | ||
245 | * @hpi: hpi addresses | ||
246 | * @sie: array of sie's on this chip | ||
247 | * @pdev: platform device of instance | ||
248 | * @pdata: configuration provided by the platform | ||
249 | */ | ||
250 | struct c67x00_device { | ||
251 | struct c67x00_hpi hpi; | ||
252 | struct c67x00_sie sie[C67X00_SIES]; | ||
253 | struct platform_device *pdev; | ||
254 | struct c67x00_platform_data *pdata; | ||
255 | }; | ||
256 | |||
257 | /* --------------------------------------------------------------------- | ||
258 | * Low level interface functions | ||
259 | */ | ||
260 | |||
261 | /* Host Port Interface (HPI) functions */ | ||
262 | u16 c67x00_ll_hpi_status(struct c67x00_device *dev); | ||
263 | void c67x00_ll_hpi_reg_init(struct c67x00_device *dev); | ||
264 | void c67x00_ll_hpi_enable_sofeop(struct c67x00_sie *sie); | ||
265 | void c67x00_ll_hpi_disable_sofeop(struct c67x00_sie *sie); | ||
266 | |||
267 | /* General functions */ | ||
268 | u16 c67x00_ll_fetch_siemsg(struct c67x00_device *dev, int sie_num); | ||
269 | u16 c67x00_ll_get_usb_ctl(struct c67x00_sie *sie); | ||
270 | void c67x00_ll_usb_clear_status(struct c67x00_sie *sie, u16 bits); | ||
271 | u16 c67x00_ll_usb_get_status(struct c67x00_sie *sie); | ||
272 | void c67x00_ll_write_mem_le16(struct c67x00_device *dev, u16 addr, | ||
273 | void *data, int len); | ||
274 | void c67x00_ll_read_mem_le16(struct c67x00_device *dev, u16 addr, | ||
275 | void *data, int len); | ||
276 | |||
277 | /* Called by c67x00_irq to handle lcp interrupts */ | ||
278 | void c67x00_ll_irq(struct c67x00_device *dev, u16 int_status); | ||
279 | |||
280 | /* Setup and teardown */ | ||
281 | void c67x00_ll_init(struct c67x00_device *dev); | ||
282 | void c67x00_ll_release(struct c67x00_device *dev); | ||
283 | int c67x00_ll_reset(struct c67x00_device *dev); | ||
284 | |||
285 | #endif /* _USB_C67X00_H */ | ||