1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
|
/*
* Copyright (C) 2005-2010 Freescale Semiconductor, Inc. All Rights Reserved.
*/
/*
* The code contained herein is licensed under the GNU General Public
* License. You may obtain a copy of the GNU General Public License
* Version 2 or later at the following locations:
*
* http://www.opensource.org/licenses/gpl-license.html
* http://www.gnu.org/copyleft/gpl.html
*/
#include <linux/module.h>
#include <linux/kernel.h>
#include <linux/types.h>
#include <linux/init.h>
#include <linux/io.h>
#include <linux/platform_device.h>
#include <linux/fsl_devices.h>
#include <linux/delay.h>
#include <linux/usb/fsl_xcvr.h>
#include <mach/hardware.h>
#include <mach/arc_otg.h>
#include <asm/mach-types.h>
/* ISP 1504 register addresses */
#define ISP1504_VID_LOW 0x00 /* Vendor ID low */
#define ISP1504_VID_HIGH 0x01 /* Vendor ID high */
#define ISP1504_PID_LOW 0x02 /* Product ID low */
#define ISP1504_PID_HIGH 0x03 /* Product ID high */
#define ISP1504_FUNC 0x04 /* Function Control */
#define ISP1504_ITFCTL 0x07 /* Interface Control */
#define ISP1504_OTGCTL 0x0A /* OTG Control */
/* add to above register address to access Set/Clear functions */
#define ISP1504_REG_SET 0x01
#define ISP1504_REG_CLEAR 0x02
/* 1504 OTG Control Register bits */
#define USE_EXT_VBUS_IND (1 << 7) /* Use ext. Vbus indicator */
#define DRV_VBUS_EXT (1 << 6) /* Drive Vbus external */
#define DRV_VBUS (1 << 5) /* Drive Vbus */
#define CHRG_VBUS (1 << 4) /* Charge Vbus */
#define DISCHRG_VBUS (1 << 3) /* Discharge Vbus */
#define DM_PULL_DOWN (1 << 2) /* enable DM Pull Down */
#define DP_PULL_DOWN (1 << 1) /* enable DP Pull Down */
#define ID_PULL_UP (1 << 0) /* enable ID Pull Up */
/* 1504 OTG Function Control Register bits */
#define SUSPENDM (1 << 6) /* places the PHY into
low-power mode */
#define DRV_RESET (1 << 5) /* Active HIGH transceiver
reset */
/*!
* read ULPI register 'reg' thru VIEWPORT register 'view'
*
* @param reg register to read
* @param view the ULPI VIEWPORT register address
* @return return isp1504 register value
*/
static u8 isp1504_read(int reg, volatile u32 *view)
{
u32 data;
/* make sure interface is running */
if (!(__raw_readl(view) && ULPIVW_SS)) {
__raw_writel(ULPIVW_WU, view);
do { /* wait for wakeup */
data = __raw_readl(view);
} while (data & ULPIVW_WU);
}
/* read the register */
__raw_writel((ULPIVW_RUN | (reg << ULPIVW_ADDR_SHIFT)), view);
do { /* wait for completion */
data = __raw_readl(view);
} while (data & ULPIVW_RUN);
return (u8) (data >> ULPIVW_RDATA_SHIFT) & ULPIVW_RDATA_MASK;
}
/*!
* set bits into OTG ISP1504 register 'reg' thru VIEWPORT register 'view'
*
* @param bits set value
* @param reg which register
* @param view the ULPI VIEWPORT register address
*/
static void isp1504_set(u8 bits, int reg, volatile u32 *view)
{
u32 data;
/* make sure interface is running */
if (!(__raw_readl(view) && ULPIVW_SS)) {
__raw_writel(ULPIVW_WU, view);
do { /* wait for wakeup */
data = __raw_readl(view);
} while (data & ULPIVW_WU);
}
__raw_writel((ULPIVW_RUN | ULPIVW_WRITE |
((reg + ISP1504_REG_SET) << ULPIVW_ADDR_SHIFT) |
((bits & ULPIVW_WDATA_MASK) << ULPIVW_WDATA_SHIFT)),
view);
while (__raw_readl(view) & ULPIVW_RUN) /* wait for completion */
continue;
}
/*!
* clear bits in OTG ISP1504 register 'reg' thru VIEWPORT register 'view'
*
* @param bits bits to clear
* @param reg in this register
* @param view the ULPI VIEWPORT register address
*/
static void isp1504_clear(u8 bits, int reg, volatile u32 *view)
{
__raw_writel((ULPIVW_RUN | ULPIVW_WRITE |
((reg + ISP1504_REG_CLEAR) << ULPIVW_ADDR_SHIFT) |
((bits & ULPIVW_WDATA_MASK) << ULPIVW_WDATA_SHIFT)),
view);
while (__raw_readl(view) & ULPIVW_RUN) /* wait for completion */
continue;
}
extern __weak int gpio_usbotg_hs_active(void);
static void isp1508_fix(u32 *view)
{
if (!machine_is_mx31_3ds())
gpio_usbotg_hs_active();
/* Set bits IND_PASS_THRU and IND_COMPL */
isp1504_set(0x60, ISP1504_ITFCTL, view);
/* Set bit USE_EXT_VBUS_IND */
isp1504_set(USE_EXT_VBUS_IND, ISP1504_OTGCTL, view);
}
/*!
* set vbus power
*
* @param view viewport register
* @param on power on or off
*/
static void isp1504_set_vbus_power(struct fsl_xcvr_ops *this,
struct fsl_usb2_platform_data *pdata, int on)
{
u32 *view = pdata->regs + ULPIVW_OFF;
pr_debug("real %s(on=%d) view=0x%p\n", __FUNCTION__, on, view);
pr_debug("ULPI Vendor ID 0x%x Product ID 0x%x\n",
(isp1504_read(ISP1504_VID_HIGH, view) << 8) |
isp1504_read(ISP1504_VID_LOW, view),
(isp1504_read(ISP1504_PID_HIGH, view) << 8) |
isp1504_read(ISP1504_PID_LOW, view));
pr_debug("OTG Control before=0x%x\n",
isp1504_read(ISP1504_OTGCTL, view));
if (on) {
isp1504_set(DRV_VBUS_EXT | /* enable external Vbus */
DRV_VBUS | /* enable internal Vbus */
USE_EXT_VBUS_IND | /* use external indicator */
CHRG_VBUS, /* charge Vbus */
ISP1504_OTGCTL, view);
} else {
isp1508_fix(view);
isp1504_clear(DRV_VBUS_EXT | /* disable external Vbus */
DRV_VBUS, /* disable internal Vbus */
ISP1504_OTGCTL, view);
isp1504_set(USE_EXT_VBUS_IND | /* use external indicator */
DISCHRG_VBUS, /* discharge Vbus */
ISP1504_OTGCTL, view);
}
pr_debug("OTG Control after = 0x%x\n",
isp1504_read(ISP1504_OTGCTL, view));
}
/*!
* set remote wakeup
*
* @param view viewport register
*/
static void isp1504_set_remote_wakeup(u32 * view)
{
__raw_writel(~ULPIVW_WRITE & __raw_readl(view), view);
__raw_writel((1 << ULPIVW_PORT_SHIFT) | __raw_readl(view), view);
__raw_writel(ULPIVW_RUN | __raw_readl(view), view);
while (__raw_readl(view) & ULPIVW_RUN) /* wait for completion */
continue;
}
static void isp1504_init(struct fsl_xcvr_ops *this)
{
pr_debug("%s:\n", __FUNCTION__);
}
static void isp1504_uninit(struct fsl_xcvr_ops *this)
{
pr_debug("%s:\n", __FUNCTION__);
}
static void isp1504_suspend(struct fsl_xcvr_ops *this)
{
pr_debug("%s\n", __func__);
/* send suspend command */
isp1504_clear(SUSPENDM, ISP1504_FUNC, &UOG_ULPIVIEW);
pr_debug("%s.\n", __func__);
}
/*!
* Set the 1504 transceiver to the proper mode for testing purposes.
*
* @param view the ULPI VIEWPORT register address
* @param test_mode Set the 1504 transceiver to disable bit stuffing and NRZI
*/
static void isp1504_set_test_mode(u32 *view, enum usb_test_mode test_mode)
{
if (test_mode == USB_TEST_J || test_mode == USB_TEST_K) {
printk(KERN_INFO "udc: disable bit stuffing and NRZI\n");
/* Disable bit-stuffing and NRZI encoding. */
isp1504_set(0x10, 0x04, view);
}
}
static struct fsl_xcvr_ops isp1504_ops = {
.name = "isp1504",
.xcvr_type = PORTSC_PTS_ULPI,
.init = isp1504_init,
.uninit = isp1504_uninit,
.suspend = isp1504_suspend,
.set_vbus_power = isp1504_set_vbus_power,
.set_remote_wakeup = isp1504_set_remote_wakeup,
.set_test_mode = isp1504_set_test_mode,
};
extern void fsl_usb_xcvr_register(struct fsl_xcvr_ops *xcvr_ops);
extern int fsl_usb_xcvr_suspend(struct fsl_xcvr_ops *xcvr_ops);
static int __init isp1504xc_init(void)
{
pr_debug("%s\n", __FUNCTION__);
fsl_usb_xcvr_register(&isp1504_ops);
/* suspend isp1504 */
if (fsl_usb_xcvr_suspend(&isp1504_ops))
pr_debug("%s: failed to suspend isp1504\n", __func__);
return 0;
}
extern void fsl_usb_xcvr_unregister(struct fsl_xcvr_ops *xcvr_ops);
static void __exit isp1504xc_exit(void)
{
fsl_usb_xcvr_unregister(&isp1504_ops);
}
subsys_initcall(isp1504xc_init);
module_exit(isp1504xc_exit);
MODULE_AUTHOR("Freescale Semiconductor, Inc.");
MODULE_DESCRIPTION("isp1504 xcvr driver");
MODULE_LICENSE("GPL");
|