aboutsummaryrefslogtreecommitdiff
path: root/include/linux/musb/musb_io.h
blob: 38da79b4371ab5945c41c0dc57cb0d4d405eedf6 (plain) (blame)
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
/*
 * 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 __MUSB_LINUX_PLATFORM_ARCH_H__
#define __MUSB_LINUX_PLATFORM_ARCH_H__

#include <linux/io.h>
#include <linux/spinlock.h>

extern bool mtk_usb_power;
extern bool usb_enable_clock(bool enable);
extern spinlock_t usb_io_lock;

static inline u16 musb_readw(const void __iomem *addr, unsigned offset)
{
	u16 rc = 0;

	if (mtk_usb_power) {
		rc = readw(addr + offset);
	} else {
		unsigned long flags = 0;
		spin_lock_irqsave(&usb_io_lock, flags);
		usb_enable_clock(true);
		DBG(0, "[MUSB]:access %s function when usb clock is off 0x%X\n", __func__, offset);
		rc = readw(addr + offset);
		usb_enable_clock(false);
		spin_unlock_irqrestore(&usb_io_lock, flags);
	}
	return rc;
}

static inline u32 musb_readl(const void __iomem *addr, unsigned offset)
{
	u32 rc = 0;

	if (mtk_usb_power) {
		rc = readl(addr + offset);
	} else {
		unsigned long flags = 0;
		spin_lock_irqsave(&usb_io_lock, flags);
		usb_enable_clock(true);
		DBG(0, "[MUSB]:access %s function when usb clock is off 0x%X\n", __func__, offset);
		rc = readl(addr + offset);
		usb_enable_clock(false);
		spin_unlock_irqrestore(&usb_io_lock, flags);
	}
	return rc;
}


static inline void musb_writew(void __iomem *addr, unsigned offset, u16 data)
{
	if (mtk_usb_power) {
		writew(data, addr + offset);
	} else {
		unsigned long flags = 0;
		spin_lock_irqsave(&usb_io_lock, flags);
		usb_enable_clock(true);
		DBG(0, "[MUSB]:access %s function when usb clock is off 0x%X\n", __func__, offset);
		writew(data, addr + offset);
		usb_enable_clock(false);
		spin_unlock_irqrestore(&usb_io_lock, flags);
	}
}

static inline void musb_writel(void __iomem *addr, unsigned offset, u32 data)
{
	if (mtk_usb_power) {
		writel(data, addr + offset);
	} else {
		unsigned long flags = 0;
		spin_lock_irqsave(&usb_io_lock, flags);
		usb_enable_clock(true);
		DBG(0, "[MUSB]:access %s function when usb clock is off 0x%X\n", __func__, offset);
		writel(data, addr + offset);
		usb_enable_clock(false);
		spin_unlock_irqrestore(&usb_io_lock, flags);
	}
}

static inline u8 musb_readb(const void __iomem *addr, unsigned offset)
{
	u8 rc = 0;

	if (mtk_usb_power) {
		rc = readb(addr + offset);
	} else {
		unsigned long flags = 0;
		spin_lock_irqsave(&usb_io_lock, flags);
		usb_enable_clock(true);
		DBG(0, "[MUSB]:access %s function when usb clock is off 0x%X\n", __func__, offset);
		rc = readb(addr + offset);
		usb_enable_clock(false);
		spin_unlock_irqrestore(&usb_io_lock, flags);
	}
	return rc;
}

static inline void musb_writeb(void __iomem *addr, unsigned offset, u8 data)
{
	if (mtk_usb_power) {
		writeb(data, addr + offset);
	} else {
		unsigned long flags = 0;
		spin_lock_irqsave(&usb_io_lock, flags);
		usb_enable_clock(true);
		DBG(0, "[MUSB]:access %s function when usb clock is off 0x%X\n", __func__, offset);
		writeb(data, addr + offset);
		usb_enable_clock(false);
		spin_unlock_irqrestore(&usb_io_lock, flags);
	}
}

#if 0
struct musb_reg {
	u8(*_readb) (u32 addr, u32 offset);
	u16(*_readw) (u32 addr, u32 offset);
	u32(*_readl) (u32 addr, u32 offset);
	void (*_writeb) (u32 addr, u32 offset, u8 data);
	void (*_writew) (u32 addr, u32 offset, u16 data);
	void (*_writel) (u32 addr, u32 offset, u32 data);
};
/* NOTE:  these offsets are all in bytes */

static inline u16 power_on_readw(const void __iomem *addr, unsigned offset)
{
	return __raw_readw(addr + offset);
}

static inline u32 power_on_readl(const void __iomem *addr, unsigned offset)
{
	return __raw_readl(addr + offset);
}


static inline void power_on_writew(void __iomem *addr, unsigned offset, u16 data)
{
	__raw_writew(data, addr + offset);
}

static inline void power_on_writel(void __iomem *addr, unsigned offset, u32 data)
{
	__raw_writel(data, addr + offset);
}

static inline u8 power_on_readb(const void __iomem *addr, unsigned offset)
{
	return __raw_readb(addr + offset);
}

static inline void power_on_writeb(void __iomem *addr, unsigned offset, u8 data)
{
	__raw_writeb(data, addr + offset);
}


static inline u16 power_off_readw(const void __iomem *addr, unsigned offset)
{
	printk("MUSB:access %s function when usb clock is off\n", __func__);
	return 0;
}

static inline u32 power_off_readl(const void __iomem *addr, unsigned offset)
{
	printk("MUSB:access %s function when usb clock is off\n", __func__);
	return 0;
}


static inline void power_off_writew(void __iomem *addr, unsigned offset, u16 data)
{
	printk("MUSB:access %s function when usb clock is off\n", __func__);
}

static inline void power_off_writel(void __iomem *addr, unsigned offset, u32 data)
{
	printk("MUSB:access %s function when usb clock is off\n", __func__);
}

static inline u8 power_off_readb(const void __iomem *addr, unsigned offset)
{
	printk("MUSB:access %s function when usb clock is off\n", __func__);
	return 0;
}

static inline void power_off_writeb(void __iomem *addr, unsigned offset, u8 data)
{
	printk("MUSB:access %s function when usb clock is off\n", __func__);
}

extern struct musb_reg musb_reg;
#define musb_readb  musb_reg._readb
#define musb_readw  musb_reg._readl
#define musb_readl  musb_reg._readw
#define musb_writeb musb_reg._writeb
#define musb_writew musb_reg._writew
#define musb_writel musb_reg._writel
#endif

#endif