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
|
/*
* MUSB OTG driver register I/O
*
* Copyright 2005 Mentor Graphics Corporation
* Copyright (C) 2005-2006 by Texas Instruments
* Copyright (C) 2006-2007 Nokia Corporation
*
* This program is free software; you can redistribute it and/or
* modify it under the terms of the GNU General Public License
* version 2 as published by the Free Software Foundation.
*
* This program is distributed in the hope that it will be useful, but
* WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
* General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program; if not, write to the Free Software
* Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
* 02110-1301 USA
*
* THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED
* WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF
* MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
* NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT,
* INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
* NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF
* USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON
* ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
* (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
* THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
*
*/
#ifndef __MUSBFSH_LINUX_PLATFORM_ARCH_H__
#define __MUSBFSH_LINUX_PLATFORM_ARCH_H__
#include <linux/io.h>
#include <linux/spinlock.h>
extern spinlock_t musbfs_io_lock;
extern void mt65xx_usb11_clock_enable(bool enable);
extern bool musbfsh_power;
/* NOTE: these offsets are all in bytes */
static inline u16 musbfsh_readw(const void __iomem *addr, unsigned offset)
{
u16 rc = 0;
if(musbfsh_power)
rc = readw(addr + offset);
else
{
unsigned long flags = 0;
spin_lock_irqsave(&musbfs_io_lock, flags);
mt65xx_usb11_clock_enable(true);
//DBG(0,"[MUSB]:access %s function when usb clock is off 0x%X\n",__func__, offset);
rc = readw(addr + offset);
mt65xx_usb11_clock_enable(false);
spin_unlock_irqrestore(&musbfs_io_lock, flags);
}
return rc;
}
static inline u32 musbfsh_readl(const void __iomem *addr, unsigned offset)
{
u32 rc = 0;
if(musbfsh_power)
rc = readl(addr + offset);
else
{
unsigned long flags = 0;
spin_lock_irqsave(&musbfs_io_lock, flags);
mt65xx_usb11_clock_enable(true);
//DBG(0,"[MUSB]:access %s function when usb clock is off 0x%X\n",__func__, offset);
rc = readl(addr + offset);
mt65xx_usb11_clock_enable(false);
spin_unlock_irqrestore(&musbfs_io_lock, flags);
}
return rc;
}
static inline void musbfsh_writew(void __iomem *addr, unsigned offset, u16 data)
{
if(musbfsh_power)
writew(data, addr + offset);
else
{
unsigned long flags = 0;
spin_lock_irqsave(&musbfs_io_lock, flags);
mt65xx_usb11_clock_enable(true);
//DBG(0,"[MUSB]:access %s function when usb clock is off 0x%X\n",__func__, offset);
writew(data, addr + offset);
mt65xx_usb11_clock_enable(false);
spin_unlock_irqrestore(&musbfs_io_lock, flags);
}
}
static inline void musbfsh_writel(void __iomem *addr, unsigned offset, u32 data)
{
if(musbfsh_power)
writel(data, addr + offset);
else
{
unsigned long flags = 0;
spin_lock_irqsave(&musbfs_io_lock, flags);
mt65xx_usb11_clock_enable(true);
//DBG(0,"[MUSBfsh]:access %s function when usb clock is off 0x%X\n",__func__, offset);
writel(data, addr + offset);
mt65xx_usb11_clock_enable(false);
spin_unlock_irqrestore(&musbfs_io_lock, flags);
}
}
static inline u8 musbfsh_readb(const void __iomem *addr, unsigned offset)
{
u8 rc = 0;
if(musbfsh_power)
rc = readb(addr + offset);
else
{
unsigned long flags = 0;
spin_lock_irqsave(&musbfs_io_lock, flags);
mt65xx_usb11_clock_enable(true);
//DBG(0,"[MUSBfsh]:access %s function when usb clock is off 0x%X\n",__func__, offset);
rc = readb(addr + offset);
mt65xx_usb11_clock_enable(false);
spin_unlock_irqrestore(&musbfs_io_lock, flags);
}
return rc;
}
static inline void musbfsh_writeb(void __iomem *addr, unsigned offset, u8 data)
{
if(musbfsh_power)
writeb(data, addr + offset);
else
{
unsigned long flags = 0;
spin_lock_irqsave(&musbfs_io_lock, flags);
mt65xx_usb11_clock_enable(true);
//DBG(0,"[MUSBfsh]:access %s function when usb clock is off 0x%X\n",__func__, offset);
writeb(data, addr + offset);
mt65xx_usb11_clock_enable(false);
spin_unlock_irqrestore(&musbfs_io_lock, flags);
}
}
/* NOTE: these offsets are all in bytes */
#if 0
static inline u16 musbfsh_readw(const void __iomem *addr, unsigned offset)
{ return readw(addr + offset); }
static inline u32 musbfsh_readl(const void __iomem *addr, unsigned offset)
{ return readl(addr + offset); }
static inline void musbfsh_writew(void __iomem *addr, unsigned offset, u16 data)
{ writew(data, addr + offset); }
static inline void musbfsh_writel(void __iomem *addr, unsigned offset, u32 data)
{ writel(data, addr + offset); }
static inline u8 musbfsh_readb(const void __iomem *addr, unsigned offset)
{ return readb(addr + offset); }
static inline void musbfsh_writeb(void __iomem *addr, unsigned offset, u8 data)
{ writeb(data, addr + offset); }
#endif
#endif
|