Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 1 | /* |
| 2 | * MUSB OTG driver register I/O |
| 3 | * |
| 4 | * Copyright 2005 Mentor Graphics Corporation |
| 5 | * Copyright (C) 2005-2006 by Texas Instruments |
| 6 | * Copyright (C) 2006-2007 Nokia Corporation |
| 7 | * |
| 8 | * This program is free software; you can redistribute it and/or |
| 9 | * modify it under the terms of the GNU General Public License |
| 10 | * version 2 as published by the Free Software Foundation. |
| 11 | * |
| 12 | * This program is distributed in the hope that it will be useful, but |
| 13 | * WITHOUT ANY WARRANTY; without even the implied warranty of |
| 14 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU |
| 15 | * General Public License for more details. |
| 16 | * |
| 17 | * You should have received a copy of the GNU General Public License |
| 18 | * along with this program; if not, write to the Free Software |
| 19 | * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA |
| 20 | * 02110-1301 USA |
| 21 | * |
| 22 | * THIS SOFTWARE IS PROVIDED "AS IS" AND ANY EXPRESS OR IMPLIED |
| 23 | * WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF |
| 24 | * MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN |
| 25 | * NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY DIRECT, INDIRECT, |
| 26 | * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT |
| 27 | * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF |
| 28 | * USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON |
| 29 | * ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT |
| 30 | * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF |
| 31 | * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. |
| 32 | * |
| 33 | */ |
| 34 | |
| 35 | #ifndef __MUSB_LINUX_PLATFORM_ARCH_H__ |
| 36 | #define __MUSB_LINUX_PLATFORM_ARCH_H__ |
| 37 | |
| 38 | #include <linux/io.h> |
| 39 | |
Tony Lindgren | 5450ac8 | 2014-11-24 11:04:59 -0800 | [diff] [blame^] | 40 | /** |
| 41 | * struct musb_io - IO functions for MUSB |
| 42 | * @quirks: platform specific flags |
| 43 | * @ep_offset: platform specific function to get end point offset |
| 44 | * @ep_select: platform specific function to select end point |
| 45 | * @fifo_offset: platform specific function to get fifo offset |
| 46 | * @read_fifo: platform specific function to read fifo |
| 47 | * @write_fifo: platform specific function to write fifo |
| 48 | */ |
| 49 | struct musb_io { |
| 50 | u32 quirks; |
| 51 | u32 (*ep_offset)(u8 epnum, u16 offset); |
| 52 | void (*ep_select)(void __iomem *mbase, u8 epnum); |
| 53 | u32 (*fifo_offset)(u8 epnum); |
| 54 | void (*read_fifo)(struct musb_hw_ep *hw_ep, u16 len, u8 *buf); |
| 55 | void (*write_fifo)(struct musb_hw_ep *hw_ep, u16 len, const u8 *buf); |
| 56 | }; |
| 57 | |
Bryan Wu | 2c557a4 | 2008-12-02 21:33:46 +0200 | [diff] [blame] | 58 | #ifndef CONFIG_BLACKFIN |
| 59 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 60 | /* NOTE: these offsets are all in bytes */ |
| 61 | |
| 62 | static inline u16 musb_readw(const void __iomem *addr, unsigned offset) |
| 63 | { return __raw_readw(addr + offset); } |
| 64 | |
| 65 | static inline u32 musb_readl(const void __iomem *addr, unsigned offset) |
| 66 | { return __raw_readl(addr + offset); } |
| 67 | |
| 68 | |
| 69 | static inline void musb_writew(void __iomem *addr, unsigned offset, u16 data) |
| 70 | { __raw_writew(data, addr + offset); } |
| 71 | |
| 72 | static inline void musb_writel(void __iomem *addr, unsigned offset, u32 data) |
| 73 | { __raw_writel(data, addr + offset); } |
| 74 | |
| 75 | |
Arnd Bergmann | 9a35f876 | 2011-10-02 16:45:47 +0200 | [diff] [blame] | 76 | #if defined(CONFIG_USB_MUSB_TUSB6010) || defined (CONFIG_USB_MUSB_TUSB6010_MODULE) |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 77 | |
| 78 | /* |
| 79 | * TUSB6010 doesn't allow 8-bit access; 16-bit access is the minimum. |
| 80 | */ |
| 81 | static inline u8 musb_readb(const void __iomem *addr, unsigned offset) |
| 82 | { |
| 83 | u16 tmp; |
| 84 | u8 val; |
| 85 | |
| 86 | tmp = __raw_readw(addr + (offset & ~1)); |
| 87 | if (offset & 1) |
| 88 | val = (tmp >> 8); |
| 89 | else |
| 90 | val = tmp & 0xff; |
| 91 | |
| 92 | return val; |
| 93 | } |
| 94 | |
| 95 | static inline void musb_writeb(void __iomem *addr, unsigned offset, u8 data) |
| 96 | { |
| 97 | u16 tmp; |
| 98 | |
| 99 | tmp = __raw_readw(addr + (offset & ~1)); |
| 100 | if (offset & 1) |
| 101 | tmp = (data << 8) | (tmp & 0xff); |
| 102 | else |
| 103 | tmp = (tmp & 0xff00) | data; |
| 104 | |
| 105 | __raw_writew(tmp, addr + (offset & ~1)); |
| 106 | } |
| 107 | |
| 108 | #else |
| 109 | |
| 110 | static inline u8 musb_readb(const void __iomem *addr, unsigned offset) |
| 111 | { return __raw_readb(addr + offset); } |
| 112 | |
| 113 | static inline void musb_writeb(void __iomem *addr, unsigned offset, u8 data) |
| 114 | { __raw_writeb(data, addr + offset); } |
| 115 | |
Felipe Balbi | 7c92554 | 2010-12-01 14:23:48 +0200 | [diff] [blame] | 116 | #endif /* CONFIG_USB_MUSB_TUSB6010 */ |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 117 | |
Bryan Wu | 2c557a4 | 2008-12-02 21:33:46 +0200 | [diff] [blame] | 118 | #else |
| 119 | |
| 120 | static inline u8 musb_readb(const void __iomem *addr, unsigned offset) |
| 121 | { return (u8) (bfin_read16(addr + offset)); } |
| 122 | |
| 123 | static inline u16 musb_readw(const void __iomem *addr, unsigned offset) |
| 124 | { return bfin_read16(addr + offset); } |
| 125 | |
| 126 | static inline u32 musb_readl(const void __iomem *addr, unsigned offset) |
| 127 | { return (u32) (bfin_read16(addr + offset)); } |
| 128 | |
| 129 | static inline void musb_writeb(void __iomem *addr, unsigned offset, u8 data) |
| 130 | { bfin_write16(addr + offset, (u16) data); } |
| 131 | |
| 132 | static inline void musb_writew(void __iomem *addr, unsigned offset, u16 data) |
| 133 | { bfin_write16(addr + offset, data); } |
| 134 | |
| 135 | static inline void musb_writel(void __iomem *addr, unsigned offset, u32 data) |
| 136 | { bfin_write16(addr + offset, (u16) data); } |
| 137 | |
| 138 | #endif /* CONFIG_BLACKFIN */ |
| 139 | |
Felipe Balbi | 550a737 | 2008-07-24 12:27:36 +0300 | [diff] [blame] | 140 | #endif |