diff options
author | Akira Takeuchi <takeuchi.akr@jp.panasonic.com> | 2010-10-27 12:28:37 -0400 |
---|---|---|
committer | David Howells <dhowells@redhat.com> | 2010-10-27 12:28:37 -0400 |
commit | 9f59f7d23c912f10ff8767b354a4c5f672a99d76 (patch) | |
tree | 0e32dcacb9d7ef8aad97f69a8e9b740a74b6fbcf /arch/mn10300 | |
parent | 3195d0b564c4aa3f8ff13b536e3c09a9ffed8f12 (diff) |
MN10300: Add reads[bwl]() and writes[bwl]()
Add reads[bwl]() and writes[bwl]() for MN10300.
Signed-off-by: Akira Takeuchi <takeuchi.akr@jp.panasonic.com>
Signed-off-by: Kiyoshi Owada <owada.kiyoshi@jp.panasonic.com>
Signed-off-by: David Howells <dhowells@redhat.com>
Diffstat (limited to 'arch/mn10300')
-rw-r--r-- | arch/mn10300/include/asm/io.h | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/arch/mn10300/include/asm/io.h b/arch/mn10300/include/asm/io.h index c1a4119e6497..787255da744e 100644 --- a/arch/mn10300/include/asm/io.h +++ b/arch/mn10300/include/asm/io.h | |||
@@ -206,6 +206,19 @@ static inline void outsl(unsigned long addr, const void *buffer, int count) | |||
206 | #define iowrite32_rep(p, src, count) \ | 206 | #define iowrite32_rep(p, src, count) \ |
207 | outsl((unsigned long) (p), (src), (count)) | 207 | outsl((unsigned long) (p), (src), (count)) |
208 | 208 | ||
209 | #define readsb(p, dst, count) \ | ||
210 | insb((unsigned long) (p), (dst), (count)) | ||
211 | #define readsw(p, dst, count) \ | ||
212 | insw((unsigned long) (p), (dst), (count)) | ||
213 | #define readsl(p, dst, count) \ | ||
214 | insl((unsigned long) (p), (dst), (count)) | ||
215 | |||
216 | #define writesb(p, src, count) \ | ||
217 | outsb((unsigned long) (p), (src), (count)) | ||
218 | #define writesw(p, src, count) \ | ||
219 | outsw((unsigned long) (p), (src), (count)) | ||
220 | #define writesl(p, src, count) \ | ||
221 | outsl((unsigned long) (p), (src), (count)) | ||
209 | 222 | ||
210 | #define IO_SPACE_LIMIT 0xffffffff | 223 | #define IO_SPACE_LIMIT 0xffffffff |
211 | 224 | ||