usb: renesas_usbhs: move pdev_to_priv to global
[linux-2.6/linux-acpi-2.6/ibm-acpi-2.6.git] / drivers / usb / renesas_usbhs / common.h
blobf3b907d2608251ea106a4b56e8d4fa82a63edeae
1 /*
2 * Renesas USB driver
4 * Copyright (C) 2011 Renesas Solutions Corp.
5 * Kuninori Morimoto <kuninori.morimoto.gx@renesas.com>
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.
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
17 #ifndef RENESAS_USB_DRIVER_H
18 #define RENESAS_USB_DRIVER_H
20 #include <linux/platform_device.h>
21 #include <linux/usb/renesas_usbhs.h>
23 struct usbhs_priv;
25 #include "./mod.h"
26 #include "./pipe.h"
30 * register define
33 #define SYSCFG 0x0000
34 #define BUSWAIT 0x0002
35 #define DVSTCTR 0x0008
36 #define CFIFO 0x0014
37 #define CFIFOSEL 0x0020
38 #define CFIFOCTR 0x0022
39 #define INTENB0 0x0030
40 #define INTENB1 0x0032
41 #define BRDYENB 0x0036
42 #define NRDYENB 0x0038
43 #define BEMPENB 0x003A
44 #define INTSTS0 0x0040
45 #define INTSTS1 0x0042
46 #define BRDYSTS 0x0046
47 #define NRDYSTS 0x0048
48 #define BEMPSTS 0x004A
49 #define FRMNUM 0x004C
50 #define USBREQ 0x0054 /* USB request type register */
51 #define USBVAL 0x0056 /* USB request value register */
52 #define USBINDX 0x0058 /* USB request index register */
53 #define USBLENG 0x005A /* USB request length register */
54 #define DCPCFG 0x005C
55 #define DCPMAXP 0x005E
56 #define DCPCTR 0x0060
57 #define PIPESEL 0x0064
58 #define PIPECFG 0x0068
59 #define PIPEBUF 0x006A
60 #define PIPEMAXP 0x006C
61 #define PIPEPERI 0x006E
62 #define PIPEnCTR 0x0070
64 /* SYSCFG */
65 #define SCKE (1 << 10) /* USB Module Clock Enable */
66 #define HSE (1 << 7) /* High-Speed Operation Enable */
67 #define DCFM (1 << 6) /* Controller Function Select */
68 #define DRPD (1 << 5) /* D+ Line/D- Line Resistance Control */
69 #define DPRPU (1 << 4) /* D+ Line Resistance Control */
70 #define USBE (1 << 0) /* USB Module Operation Enable */
72 /* DVSTCTR */
73 #define EXTLP (1 << 10) /* Controls the EXTLP pin output state */
74 #define PWEN (1 << 9) /* Controls the PWEN pin output state */
75 #define RHST (0x7) /* Reset Handshake */
76 #define RHST_LOW_SPEED 1 /* Low-speed connection */
77 #define RHST_FULL_SPEED 2 /* Full-speed connection */
78 #define RHST_HIGH_SPEED 3 /* High-speed connection */
80 /* CFIFOSEL */
81 #define MBW_32 (0x2 << 10) /* CFIFO Port Access Bit Width */
83 /* CFIFOCTR */
84 #define BVAL (1 << 15) /* Buffer Memory Enable Flag */
85 #define BCLR (1 << 14) /* CPU buffer clear */
86 #define FRDY (1 << 13) /* FIFO Port Ready */
87 #define DTLN_MASK (0x0FFF) /* Receive Data Length */
89 /* INTENB0 */
90 #define VBSE (1 << 15) /* Enable IRQ VBUS_0 and VBUSIN_0 */
91 #define RSME (1 << 14) /* Enable IRQ Resume */
92 #define SOFE (1 << 13) /* Enable IRQ Frame Number Update */
93 #define DVSE (1 << 12) /* Enable IRQ Device State Transition */
94 #define CTRE (1 << 11) /* Enable IRQ Control Stage Transition */
95 #define BEMPE (1 << 10) /* Enable IRQ Buffer Empty */
96 #define NRDYE (1 << 9) /* Enable IRQ Buffer Not Ready Response */
97 #define BRDYE (1 << 8) /* Enable IRQ Buffer Ready */
99 /* INTENB1 */
100 #define BCHGE (1 << 14) /* USB Bus Change Interrupt Enable */
101 #define DTCHE (1 << 12) /* Disconnection Detect Interrupt Enable */
102 #define ATTCHE (1 << 11) /* Connection Detect Interrupt Enable */
103 #define EOFERRE (1 << 6) /* EOF Error Detect Interrupt Enable */
104 #define SIGNE (1 << 5) /* Setup Transaction Error Interrupt Enable */
105 #define SACKE (1 << 4) /* Setup Transaction ACK Interrupt Enable */
107 /* INTSTS0 */
108 #define DVST (1 << 12) /* Device State Transition Interrupt Status */
109 #define CTRT (1 << 11) /* Control Stage Interrupt Status */
110 #define BEMP (1 << 10) /* Buffer Empty Interrupt Status */
111 #define BRDY (1 << 8) /* Buffer Ready Interrupt Status */
112 #define VBSTS (1 << 7) /* VBUS_0 and VBUSIN_0 Input Status */
113 #define VALID (1 << 3) /* USB Request Receive */
115 #define DVSQ_MASK (0x3 << 4) /* Device State */
116 #define POWER_STATE (0 << 4)
117 #define DEFAULT_STATE (1 << 4)
118 #define ADDRESS_STATE (2 << 4)
119 #define CONFIGURATION_STATE (3 << 4)
121 #define CTSQ_MASK (0x7) /* Control Transfer Stage */
122 #define IDLE_SETUP_STAGE 0 /* Idle stage or setup stage */
123 #define READ_DATA_STAGE 1 /* Control read data stage */
124 #define READ_STATUS_STAGE 2 /* Control read status stage */
125 #define WRITE_DATA_STAGE 3 /* Control write data stage */
126 #define WRITE_STATUS_STAGE 4 /* Control write status stage */
127 #define NODATA_STATUS_STAGE 5 /* Control write NoData status stage */
128 #define SEQUENCE_ERROR 6 /* Control transfer sequence error */
130 /* PIPECFG */
131 /* DCPCFG */
132 #define TYPE_NONE (0 << 14) /* Transfer Type */
133 #define TYPE_BULK (1 << 14)
134 #define TYPE_INT (2 << 14)
135 #define TYPE_ISO (3 << 14)
136 #define DBLB (1 << 9) /* Double Buffer Mode */
137 #define SHTNAK (1 << 7) /* Pipe Disable in Transfer End */
138 #define DIR_OUT (1 << 4) /* Transfer Direction */
140 /* PIPEMAXP */
141 /* DCPMAXP */
142 #define DEVSEL_MASK (0xF << 12) /* Device Select */
143 #define DCP_MAXP_MASK (0x7F)
144 #define PIPE_MAXP_MASK (0x7FF)
146 /* PIPEBUF */
147 #define BUFSIZE_SHIFT 10
148 #define BUFSIZE_MASK (0x1F << BUFSIZE_SHIFT)
149 #define BUFNMB_MASK (0xFF)
151 /* PIPEnCTR */
152 /* DCPCTR */
153 #define BSTS (1 << 15) /* Buffer Status */
154 #define CSSTS (1 << 12) /* CSSTS Status */
155 #define SQCLR (1 << 8) /* Toggle Bit Clear */
156 #define ACLRM (1 << 9) /* Buffer Auto-Clear Mode */
157 #define PBUSY (1 << 5) /* Pipe Busy */
158 #define PID_MASK (0x3) /* Response PID */
159 #define PID_NAK 0
160 #define PID_BUF 1
161 #define PID_STALL10 2
162 #define PID_STALL11 3
164 #define CCPL (1 << 2) /* Control Transfer End Enable */
166 /* FRMNUM */
167 #define FRNM_MASK (0x7FF)
170 * struct
172 struct usbhs_priv {
174 void __iomem *base;
175 unsigned int irq;
177 struct renesas_usbhs_platform_callback *pfunc;
178 struct renesas_usbhs_driver_param *dparam;
180 struct work_struct notify_hotplug_work;
181 struct platform_device *pdev;
183 spinlock_t lock;
186 * module control
188 struct usbhs_mod_info mod_info;
191 * pipe control
193 struct usbhs_pipe_info pipe_info;
197 * common
199 u16 usbhs_read(struct usbhs_priv *priv, u32 reg);
200 void usbhs_write(struct usbhs_priv *priv, u32 reg, u16 data);
201 void usbhs_bset(struct usbhs_priv *priv, u32 reg, u16 mask, u16 data);
204 * sysconfig
206 void usbhs_sys_clock_ctrl(struct usbhs_priv *priv, int enable);
207 void usbhs_sys_hispeed_ctrl(struct usbhs_priv *priv, int enable);
208 void usbhs_sys_usb_ctrl(struct usbhs_priv *priv, int enable);
209 void usbhs_sys_host_ctrl(struct usbhs_priv *priv, int enable);
210 void usbhs_sys_function_ctrl(struct usbhs_priv *priv, int enable);
213 * frame
215 int usbhs_frame_get_num(struct usbhs_priv *priv);
218 * data
220 struct usbhs_priv *usbhs_pdev_to_priv(struct platform_device *pdev);
221 #define usbhs_get_dparam(priv, param) (priv->dparam->param)
222 #define usbhs_priv_to_pdev(priv) (priv->pdev)
223 #define usbhs_priv_to_dev(priv) (&priv->pdev->dev)
224 #define usbhs_priv_to_lock(priv) (&priv->lock)
226 #endif /* RENESAS_USB_DRIVER_H */