blob: 6473dd86993cb8d19b288dbdcae926e723c5f9c9 [file] [log] [blame]
Sebastian Siewiordb11e472008-04-24 00:37:04 +02001#ifndef _ISP1760_HCD_H_
2#define _ISP1760_HCD_H_
3
4/* exports for if */
5struct usb_hcd *isp1760_register(u64 res_start, u64 res_len, int irq,
Nate Case3faefc82008-06-17 11:11:38 -05006 u64 irqflags, struct device *dev, const char *busname,
7 unsigned int devflags);
Sebastian Siewiordb11e472008-04-24 00:37:04 +02008int init_kmem_once(void);
9void deinit_kmem_cache(void);
10
11/* EHCI capability registers */
12#define HC_CAPLENGTH 0x00
13#define HC_HCSPARAMS 0x04
14#define HC_HCCPARAMS 0x08
15
16/* EHCI operational registers */
17#define HC_USBCMD 0x20
18#define HC_USBSTS 0x24
19#define HC_FRINDEX 0x2c
20#define HC_CONFIGFLAG 0x60
21#define HC_PORTSC1 0x64
22#define HC_ISO_PTD_DONEMAP_REG 0x130
23#define HC_ISO_PTD_SKIPMAP_REG 0x134
24#define HC_ISO_PTD_LASTPTD_REG 0x138
25#define HC_INT_PTD_DONEMAP_REG 0x140
26#define HC_INT_PTD_SKIPMAP_REG 0x144
27#define HC_INT_PTD_LASTPTD_REG 0x148
28#define HC_ATL_PTD_DONEMAP_REG 0x150
29#define HC_ATL_PTD_SKIPMAP_REG 0x154
30#define HC_ATL_PTD_LASTPTD_REG 0x158
31
32/* Configuration Register */
33#define HC_HW_MODE_CTRL 0x300
34#define ALL_ATX_RESET (1 << 31)
Nate Case3faefc82008-06-17 11:11:38 -050035#define HW_ANA_DIGI_OC (1 << 15)
Sebastian Siewiordb11e472008-04-24 00:37:04 +020036#define HW_DATA_BUS_32BIT (1 << 8)
37#define HW_DACK_POL_HIGH (1 << 6)
38#define HW_DREQ_POL_HIGH (1 << 5)
39#define HW_INTR_HIGH_ACT (1 << 2)
40#define HW_INTR_EDGE_TRIG (1 << 1)
41#define HW_GLOBAL_INTR_EN (1 << 0)
42
43#define HC_CHIP_ID_REG 0x304
44#define HC_SCRATCH_REG 0x308
45
46#define HC_RESET_REG 0x30c
47#define SW_RESET_RESET_HC (1 << 1)
48#define SW_RESET_RESET_ALL (1 << 0)
49
50#define HC_BUFFER_STATUS_REG 0x334
51#define ATL_BUFFER 0x1
52#define INT_BUFFER 0x2
53#define ISO_BUFFER 0x4
54#define BUFFER_MAP 0x7
55
56#define HC_MEMORY_REG 0x33c
57#define HC_PORT1_CTRL 0x374
58#define PORT1_POWER (3 << 3)
59#define PORT1_INIT1 (1 << 7)
60#define PORT1_INIT2 (1 << 23)
Nate Case3faefc82008-06-17 11:11:38 -050061#define HW_OTG_CTRL_SET 0x374
62#define HW_OTG_CTRL_CLR 0x376
Sebastian Siewiordb11e472008-04-24 00:37:04 +020063
64/* Interrupt Register */
65#define HC_INTERRUPT_REG 0x310
66
67#define HC_INTERRUPT_ENABLE 0x314
68#define INTERRUPT_ENABLE_MASK (HC_INTL_INT | HC_ATL_INT | HC_EOT_INT)
Sebastian Siewiordb11e472008-04-24 00:37:04 +020069
70#define HC_ISO_INT (1 << 9)
71#define HC_ATL_INT (1 << 8)
72#define HC_INTL_INT (1 << 7)
73#define HC_EOT_INT (1 << 3)
74#define HC_SOT_INT (1 << 1)
75
76#define HC_ISO_IRQ_MASK_OR_REG 0x318
77#define HC_INT_IRQ_MASK_OR_REG 0x31C
78#define HC_ATL_IRQ_MASK_OR_REG 0x320
79#define HC_ISO_IRQ_MASK_AND_REG 0x324
80#define HC_INT_IRQ_MASK_AND_REG 0x328
81#define HC_ATL_IRQ_MASK_AND_REG 0x32C
82
83/* Register sets */
84#define HC_BEGIN_OF_ATL 0x0c00
85#define HC_BEGIN_OF_INT 0x0800
86#define HC_BEGIN_OF_ISO 0x0400
87#define HC_BEGIN_OF_PAYLOAD 0x1000
88
89/* urb state*/
90#define DELETE_URB (0x0008)
91#define NO_TRANSFER_ACTIVE (0xffffffff)
92
93#define ATL_REGS_OFFSET (0xc00)
94#define INT_REGS_OFFSET (0x800)
95
96/* Philips Transfer Descriptor (PTD) */
97struct ptd {
98 __le32 dw0;
99 __le32 dw1;
100 __le32 dw2;
101 __le32 dw3;
102 __le32 dw4;
103 __le32 dw5;
104 __le32 dw6;
105 __le32 dw7;
106};
107
108struct inter_packet_info {
109 void *data_buffer;
110 u32 payload;
111#define PTD_FIRE_NEXT (1 << 0)
112#define PTD_URB_FINISHED (1 << 1)
113 struct urb *urb;
114 struct isp1760_qh *qh;
115 struct isp1760_qtd *qtd;
116};
117
118
119typedef void (packet_enqueue)(struct usb_hcd *hcd, struct isp1760_qh *qh,
120 struct isp1760_qtd *qtd);
121
122#define isp1760_info(priv, fmt, args...) \
123 dev_info(priv_to_hcd(priv)->self.controller, fmt, ##args)
124
125#define isp1760_err(priv, fmt, args...) \
126 dev_err(priv_to_hcd(priv)->self.controller, fmt, ##args)
127
Nate Case3faefc82008-06-17 11:11:38 -0500128/*
129 * Device flags that can vary from board to board. All of these
130 * indicate the most "atypical" case, so that a devflags of 0 is
131 * a sane default configuration.
132 */
133#define ISP1760_FLAG_PORT1_DIS 0x00000001 /* Port 1 disabled */
134#define ISP1760_FLAG_BUS_WIDTH_16 0x00000002 /* 16-bit data bus width */
135#define ISP1760_FLAG_OTG_EN 0x00000004 /* Port 1 supports OTG */
136#define ISP1760_FLAG_ANALOG_OC 0x00000008 /* Analog overcurrent */
137#define ISP1760_FLAG_DACK_POL_HIGH 0x00000010 /* DACK active high */
138#define ISP1760_FLAG_DREQ_POL_HIGH 0x00000020 /* DREQ active high */
139#define ISP1760_FLAG_ISP1761 0x00000040 /* Chip is ISP1761 */
140
Sebastian Siewiordb11e472008-04-24 00:37:04 +0200141/* chip memory management */
142struct memory_chunk {
143 unsigned int start;
144 unsigned int size;
145 unsigned int free;
146};
147
148/*
149 * 60kb divided in:
150 * - 32 blocks @ 256 bytes
151 * - 20 blocks @ 1024 bytes
152 * - 4 blocks @ 8192 bytes
153 */
154
155#define BLOCK_1_NUM 32
156#define BLOCK_2_NUM 20
157#define BLOCK_3_NUM 4
158
159#define BLOCK_1_SIZE 256
160#define BLOCK_2_SIZE 1024
161#define BLOCK_3_SIZE 8192
162#define BLOCKS (BLOCK_1_NUM + BLOCK_2_NUM + BLOCK_3_NUM)
163#define PAYLOAD_SIZE 0xf000
164
165/* I saw if some reloads if the pointer was negative */
166#define ISP1760_NULL_POINTER (0x400)
167
168/* ATL */
169/* DW0 */
170#define PTD_VALID 1
171#define PTD_LENGTH(x) (((u32) x) << 3)
172#define PTD_MAXPACKET(x) (((u32) x) << 18)
173#define PTD_MULTI(x) (((u32) x) << 29)
174#define PTD_ENDPOINT(x) (((u32) x) << 31)
175/* DW1 */
176#define PTD_DEVICE_ADDR(x) (((u32) x) << 3)
177#define PTD_PID_TOKEN(x) (((u32) x) << 10)
178#define PTD_TRANS_BULK ((u32) 2 << 12)
179#define PTD_TRANS_INT ((u32) 3 << 12)
180#define PTD_TRANS_SPLIT ((u32) 1 << 14)
181#define PTD_SE_USB_LOSPEED ((u32) 2 << 16)
182#define PTD_PORT_NUM(x) (((u32) x) << 18)
183#define PTD_HUB_NUM(x) (((u32) x) << 25)
184#define PTD_PING(x) (((u32) x) << 26)
185/* DW2 */
186#define PTD_RL_CNT(x) (((u32) x) << 25)
187#define PTD_DATA_START_ADDR(x) (((u32) x) << 8)
188#define BASE_ADDR 0x1000
189/* DW3 */
190#define PTD_CERR(x) (((u32) x) << 23)
191#define PTD_NAC_CNT(x) (((u32) x) << 19)
192#define PTD_ACTIVE ((u32) 1 << 31)
193#define PTD_DATA_TOGGLE(x) (((u32) x) << 25)
194
195#define DW3_HALT_BIT (1 << 30)
196#define DW3_ERROR_BIT (1 << 28)
197#define DW3_QTD_ACTIVE (1 << 31)
198
199#define INT_UNDERRUN (1 << 2)
200#define INT_BABBLE (1 << 1)
201#define INT_EXACT (1 << 0)
202
203#define DW1_GET_PID(x) (((x) >> 10) & 0x3)
204#define PTD_XFERRED_LENGTH(x) ((x) & 0x7fff)
205#define PTD_XFERRED_LENGTH_LO(x) ((x) & 0x7ff)
206
207#define SETUP_PID (2)
208#define IN_PID (1)
209#define OUT_PID (0)
210#define GET_QTD_TOKEN_TYPE(x) ((x) & 0x3)
211
212#define DATA_TOGGLE (1 << 31)
213#define GET_DATA_TOGGLE(x) ((x) >> 31)
214
215/* Errata 1 */
216#define RL_COUNTER (0)
217#define NAK_COUNTER (0)
218#define ERR_COUNTER (2)
219
220#define HC_ATL_PL_SIZE (8192)
221
222#endif