blob: 54b5924baae7f67719f44523c4cb20f884609df1 [file] [log] [blame]
Kuninori Morimotof1407d52011-04-04 13:44:59 +09001/*
2 * Renesas USB driver
3 *
4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
6 *
7 * This program is distributed in the hope that it will be useful,
8 * but WITHOUT ANY WARRANTY; without even the implied warranty of
9 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
10 * GNU General Public License for more details.
11 *
12 * You should have received a copy of the GNU General Public License
13 * along with this program; if not, write to the Free Software
14 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA
15 *
16 */
17#ifndef RENESAS_USB_DRIVER_H
18#define RENESAS_USB_DRIVER_H
19
20#include <linux/platform_device.h>
21#include <linux/usb/renesas_usbhs.h>
22
23struct usbhs_priv;
24
25#include "./mod.h"
26#include "./pipe.h"
27
28/*
29 *
30 * register define
31 *
32 */
33#define SYSCFG 0x0000
34#define BUSWAIT 0x0002
35#define DVSTCTR 0x0008
36#define CFIFO 0x0014
37#define CFIFOSEL 0x0020
38#define CFIFOCTR 0x0022
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090039#define D0FIFO 0x0100
40#define D0FIFOSEL 0x0028
41#define D0FIFOCTR 0x002A
42#define D1FIFO 0x0120
43#define D1FIFOSEL 0x002C
44#define D1FIFOCTR 0x002E
Kuninori Morimotof1407d52011-04-04 13:44:59 +090045#define INTENB0 0x0030
46#define INTENB1 0x0032
47#define BRDYENB 0x0036
48#define NRDYENB 0x0038
49#define BEMPENB 0x003A
50#define INTSTS0 0x0040
51#define INTSTS1 0x0042
52#define BRDYSTS 0x0046
53#define NRDYSTS 0x0048
54#define BEMPSTS 0x004A
55#define FRMNUM 0x004C
56#define USBREQ 0x0054 /* USB request type register */
57#define USBVAL 0x0056 /* USB request value register */
58#define USBINDX 0x0058 /* USB request index register */
59#define USBLENG 0x005A /* USB request length register */
60#define DCPCFG 0x005C
61#define DCPMAXP 0x005E
62#define DCPCTR 0x0060
63#define PIPESEL 0x0064
64#define PIPECFG 0x0068
65#define PIPEBUF 0x006A
66#define PIPEMAXP 0x006C
67#define PIPEPERI 0x006E
68#define PIPEnCTR 0x0070
Kuninori Morimotoe73a9892011-06-06 14:19:03 +090069#define PIPE1TRE 0x0090
70#define PIPE1TRN 0x0092
71#define PIPE2TRE 0x0094
72#define PIPE2TRN 0x0096
73#define PIPE3TRE 0x0098
74#define PIPE3TRN 0x009A
75#define PIPE4TRE 0x009C
76#define PIPE4TRN 0x009E
77#define PIPE5TRE 0x00A0
78#define PIPE5TRN 0x00A2
79#define PIPEBTRE 0x00A4
80#define PIPEBTRN 0x00A6
81#define PIPECTRE 0x00A8
82#define PIPECTRN 0x00AA
83#define PIPEDTRE 0x00AC
84#define PIPEDTRN 0x00AE
85#define PIPEETRE 0x00B0
86#define PIPEETRN 0x00B2
87#define PIPEFTRE 0x00B4
88#define PIPEFTRN 0x00B6
89#define PIPE9TRE 0x00B8
90#define PIPE9TRN 0x00BA
91#define PIPEATRE 0x00BC
92#define PIPEATRN 0x00BE
Kuninori Morimotof1407d52011-04-04 13:44:59 +090093
94/* SYSCFG */
95#define SCKE (1 << 10) /* USB Module Clock Enable */
96#define HSE (1 << 7) /* High-Speed Operation Enable */
97#define DCFM (1 << 6) /* Controller Function Select */
98#define DRPD (1 << 5) /* D+ Line/D- Line Resistance Control */
99#define DPRPU (1 << 4) /* D+ Line Resistance Control */
100#define USBE (1 << 0) /* USB Module Operation Enable */
101
102/* DVSTCTR */
103#define EXTLP (1 << 10) /* Controls the EXTLP pin output state */
104#define PWEN (1 << 9) /* Controls the PWEN pin output state */
Kuninori Morimoto258485d2011-10-10 22:01:40 -0700105#define USBRST (1 << 6) /* Bus Reset Output */
106#define UACT (1 << 4) /* USB Bus Enable */
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900107#define RHST (0x7) /* Reset Handshake */
108#define RHST_LOW_SPEED 1 /* Low-speed connection */
109#define RHST_FULL_SPEED 2 /* Full-speed connection */
110#define RHST_HIGH_SPEED 3 /* High-speed connection */
111
112/* CFIFOSEL */
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900113#define DREQE (1 << 12) /* DMA Transfer Request Enable */
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900114#define MBW_32 (0x2 << 10) /* CFIFO Port Access Bit Width */
115
116/* CFIFOCTR */
117#define BVAL (1 << 15) /* Buffer Memory Enable Flag */
118#define BCLR (1 << 14) /* CPU buffer clear */
119#define FRDY (1 << 13) /* FIFO Port Ready */
120#define DTLN_MASK (0x0FFF) /* Receive Data Length */
121
122/* INTENB0 */
123#define VBSE (1 << 15) /* Enable IRQ VBUS_0 and VBUSIN_0 */
124#define RSME (1 << 14) /* Enable IRQ Resume */
125#define SOFE (1 << 13) /* Enable IRQ Frame Number Update */
126#define DVSE (1 << 12) /* Enable IRQ Device State Transition */
127#define CTRE (1 << 11) /* Enable IRQ Control Stage Transition */
128#define BEMPE (1 << 10) /* Enable IRQ Buffer Empty */
129#define NRDYE (1 << 9) /* Enable IRQ Buffer Not Ready Response */
130#define BRDYE (1 << 8) /* Enable IRQ Buffer Ready */
131
132/* INTENB1 */
133#define BCHGE (1 << 14) /* USB Bus Change Interrupt Enable */
134#define DTCHE (1 << 12) /* Disconnection Detect Interrupt Enable */
135#define ATTCHE (1 << 11) /* Connection Detect Interrupt Enable */
136#define EOFERRE (1 << 6) /* EOF Error Detect Interrupt Enable */
137#define SIGNE (1 << 5) /* Setup Transaction Error Interrupt Enable */
138#define SACKE (1 << 4) /* Setup Transaction ACK Interrupt Enable */
139
140/* INTSTS0 */
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900141#define VBINT (1 << 15) /* VBUS0_0 and VBUS1_0 Interrupt Status */
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900142#define DVST (1 << 12) /* Device State Transition Interrupt Status */
143#define CTRT (1 << 11) /* Control Stage Interrupt Status */
144#define BEMP (1 << 10) /* Buffer Empty Interrupt Status */
145#define BRDY (1 << 8) /* Buffer Ready Interrupt Status */
146#define VBSTS (1 << 7) /* VBUS_0 and VBUSIN_0 Input Status */
147#define VALID (1 << 3) /* USB Request Receive */
148
149#define DVSQ_MASK (0x3 << 4) /* Device State */
150#define POWER_STATE (0 << 4)
151#define DEFAULT_STATE (1 << 4)
152#define ADDRESS_STATE (2 << 4)
153#define CONFIGURATION_STATE (3 << 4)
154
155#define CTSQ_MASK (0x7) /* Control Transfer Stage */
156#define IDLE_SETUP_STAGE 0 /* Idle stage or setup stage */
157#define READ_DATA_STAGE 1 /* Control read data stage */
158#define READ_STATUS_STAGE 2 /* Control read status stage */
159#define WRITE_DATA_STAGE 3 /* Control write data stage */
160#define WRITE_STATUS_STAGE 4 /* Control write status stage */
161#define NODATA_STATUS_STAGE 5 /* Control write NoData status stage */
162#define SEQUENCE_ERROR 6 /* Control transfer sequence error */
163
164/* PIPECFG */
165/* DCPCFG */
166#define TYPE_NONE (0 << 14) /* Transfer Type */
167#define TYPE_BULK (1 << 14)
168#define TYPE_INT (2 << 14)
169#define TYPE_ISO (3 << 14)
170#define DBLB (1 << 9) /* Double Buffer Mode */
171#define SHTNAK (1 << 7) /* Pipe Disable in Transfer End */
172#define DIR_OUT (1 << 4) /* Transfer Direction */
173
174/* PIPEMAXP */
175/* DCPMAXP */
176#define DEVSEL_MASK (0xF << 12) /* Device Select */
177#define DCP_MAXP_MASK (0x7F)
178#define PIPE_MAXP_MASK (0x7FF)
179
180/* PIPEBUF */
181#define BUFSIZE_SHIFT 10
182#define BUFSIZE_MASK (0x1F << BUFSIZE_SHIFT)
183#define BUFNMB_MASK (0xFF)
184
185/* PIPEnCTR */
186/* DCPCTR */
187#define BSTS (1 << 15) /* Buffer Status */
188#define CSSTS (1 << 12) /* CSSTS Status */
189#define SQCLR (1 << 8) /* Toggle Bit Clear */
190#define ACLRM (1 << 9) /* Buffer Auto-Clear Mode */
191#define PBUSY (1 << 5) /* Pipe Busy */
192#define PID_MASK (0x3) /* Response PID */
193#define PID_NAK 0
194#define PID_BUF 1
195#define PID_STALL10 2
196#define PID_STALL11 3
197
198#define CCPL (1 << 2) /* Control Transfer End Enable */
199
Kuninori Morimotoe73a9892011-06-06 14:19:03 +0900200/* PIPEnTRE */
201#define TRENB (1 << 9) /* Transaction Counter Enable */
202#define TRCLR (1 << 8) /* Transaction Counter Clear */
203
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900204/* FRMNUM */
205#define FRNM_MASK (0x7FF)
206
207/*
208 * struct
209 */
210struct usbhs_priv {
211
212 void __iomem *base;
213 unsigned int irq;
214
215 struct renesas_usbhs_platform_callback *pfunc;
216 struct renesas_usbhs_driver_param *dparam;
217
Kuninori Morimotobc573812011-04-28 16:41:14 +0900218 struct delayed_work notify_hotplug_work;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900219 struct platform_device *pdev;
220
221 spinlock_t lock;
222
Kuninori Morimotob002ff62011-04-28 16:41:20 +0900223 u32 flags;
224
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900225 /*
226 * module control
227 */
228 struct usbhs_mod_info mod_info;
229
230 /*
231 * pipe control
232 */
233 struct usbhs_pipe_info pipe_info;
Kuninori Morimotod3af90a2011-06-06 14:18:44 +0900234
235 /*
236 * fifo control
237 */
238 struct usbhs_fifo_info fifo_info;
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900239};
240
241/*
242 * common
243 */
244u16 usbhs_read(struct usbhs_priv *priv, u32 reg);
245void usbhs_write(struct usbhs_priv *priv, u32 reg, u16 data);
246void usbhs_bset(struct usbhs_priv *priv, u32 reg, u16 mask, u16 data);
247
Kuninori Morimotobc573812011-04-28 16:41:14 +0900248int usbhsc_drvcllbck_notify_hotplug(struct platform_device *pdev);
Kuninori Morimoto97664a22011-06-06 14:18:38 +0900249
250#define usbhs_lock(p, f) spin_lock_irqsave(usbhs_priv_to_lock(p), f)
251#define usbhs_unlock(p, f) spin_unlock_irqrestore(usbhs_priv_to_lock(p), f)
252
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900253/*
254 * sysconfig
255 */
256void usbhs_sys_clock_ctrl(struct usbhs_priv *priv, int enable);
257void usbhs_sys_hispeed_ctrl(struct usbhs_priv *priv, int enable);
258void usbhs_sys_usb_ctrl(struct usbhs_priv *priv, int enable);
259void usbhs_sys_host_ctrl(struct usbhs_priv *priv, int enable);
260void usbhs_sys_function_ctrl(struct usbhs_priv *priv, int enable);
261
262/*
Kuninori Morimoto258485d2011-10-10 22:01:40 -0700263 * bus
264 */
265void usbhs_bus_send_sof_enable(struct usbhs_priv *priv);
266void usbhs_bus_send_reset(struct usbhs_priv *priv);
267int usbhs_vbus_ctrl(struct usbhs_priv *priv, int enable);
268
269/*
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900270 * frame
271 */
272int usbhs_frame_get_num(struct usbhs_priv *priv);
273
274/*
275 * data
276 */
Kuninori Morimoto206dcc22011-04-28 16:40:54 +0900277struct usbhs_priv *usbhs_pdev_to_priv(struct platform_device *pdev);
Kuninori Morimotof1407d52011-04-04 13:44:59 +0900278#define usbhs_get_dparam(priv, param) (priv->dparam->param)
279#define usbhs_priv_to_pdev(priv) (priv->pdev)
280#define usbhs_priv_to_dev(priv) (&priv->pdev->dev)
281#define usbhs_priv_to_lock(priv) (&priv->lock)
282
283#endif /* RENESAS_USB_DRIVER_H */