Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (C) 2000 David J. Mckay (david.mckay@st.com) |
| 3 | * |
| 4 | * May be copied or modified under the terms of the GNU General Public |
| 5 | * License. See linux/COPYING for more information. |
| 6 | * |
| 7 | * This file contains the I/O routines for use on the overdrive board |
| 8 | * |
| 9 | */ |
| 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/kernel.h> |
| 12 | #include <linux/types.h> |
| 13 | #include <linux/delay.h> |
Paul Mundt | 1ef7cbb | 2007-10-01 16:13:28 +0900 | [diff] [blame] | 14 | #include <linux/module.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | #include <asm/system.h> |
| 16 | #include <asm/processor.h> |
| 17 | #include <asm/io.h> |
| 18 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 19 | /* Now for the string version of these functions */ |
| 20 | void outsb(unsigned long port, const void *addr, unsigned long count) |
| 21 | { |
| 22 | int i; |
| 23 | unsigned char *p = (unsigned char *) addr; |
| 24 | |
| 25 | for (i = 0; i < count; i++, p++) { |
| 26 | outb(*p, port); |
| 27 | } |
| 28 | } |
Paul Mundt | 1ef7cbb | 2007-10-01 16:13:28 +0900 | [diff] [blame] | 29 | EXPORT_SYMBOL(outsb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 30 | |
| 31 | void insb(unsigned long port, void *addr, unsigned long count) |
| 32 | { |
| 33 | int i; |
| 34 | unsigned char *p = (unsigned char *) addr; |
| 35 | |
| 36 | for (i = 0; i < count; i++, p++) { |
| 37 | *p = inb(port); |
| 38 | } |
| 39 | } |
Paul Mundt | 1ef7cbb | 2007-10-01 16:13:28 +0900 | [diff] [blame] | 40 | EXPORT_SYMBOL(insb); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 41 | |
| 42 | /* For the 16 and 32 bit string functions, we have to worry about alignment. |
| 43 | * The SH does not do unaligned accesses, so we have to read as bytes and |
| 44 | * then write as a word or dword. |
| 45 | * This can be optimised a lot more, especially in the case where the data |
| 46 | * is aligned |
| 47 | */ |
| 48 | |
| 49 | void outsw(unsigned long port, const void *addr, unsigned long count) |
| 50 | { |
| 51 | int i; |
| 52 | unsigned short tmp; |
| 53 | unsigned char *p = (unsigned char *) addr; |
| 54 | |
| 55 | for (i = 0; i < count; i++, p += 2) { |
| 56 | tmp = (*p) | ((*(p + 1)) << 8); |
| 57 | outw(tmp, port); |
| 58 | } |
| 59 | } |
Paul Mundt | 1ef7cbb | 2007-10-01 16:13:28 +0900 | [diff] [blame] | 60 | EXPORT_SYMBOL(outsw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 61 | |
| 62 | void insw(unsigned long port, void *addr, unsigned long count) |
| 63 | { |
| 64 | int i; |
| 65 | unsigned short tmp; |
| 66 | unsigned char *p = (unsigned char *) addr; |
| 67 | |
| 68 | for (i = 0; i < count; i++, p += 2) { |
| 69 | tmp = inw(port); |
| 70 | p[0] = tmp & 0xff; |
| 71 | p[1] = (tmp >> 8) & 0xff; |
| 72 | } |
| 73 | } |
Paul Mundt | 1ef7cbb | 2007-10-01 16:13:28 +0900 | [diff] [blame] | 74 | EXPORT_SYMBOL(insw); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 75 | |
| 76 | void outsl(unsigned long port, const void *addr, unsigned long count) |
| 77 | { |
| 78 | int i; |
| 79 | unsigned tmp; |
| 80 | unsigned char *p = (unsigned char *) addr; |
| 81 | |
| 82 | for (i = 0; i < count; i++, p += 4) { |
| 83 | tmp = (*p) | ((*(p + 1)) << 8) | ((*(p + 2)) << 16) | |
| 84 | ((*(p + 3)) << 24); |
| 85 | outl(tmp, port); |
| 86 | } |
| 87 | } |
Paul Mundt | 1ef7cbb | 2007-10-01 16:13:28 +0900 | [diff] [blame] | 88 | EXPORT_SYMBOL(outsl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 89 | |
| 90 | void insl(unsigned long port, void *addr, unsigned long count) |
| 91 | { |
| 92 | int i; |
| 93 | unsigned tmp; |
| 94 | unsigned char *p = (unsigned char *) addr; |
| 95 | |
| 96 | for (i = 0; i < count; i++, p += 4) { |
| 97 | tmp = inl(port); |
| 98 | p[0] = tmp & 0xff; |
| 99 | p[1] = (tmp >> 8) & 0xff; |
| 100 | p[2] = (tmp >> 16) & 0xff; |
| 101 | p[3] = (tmp >> 24) & 0xff; |
| 102 | |
| 103 | } |
| 104 | } |
Paul Mundt | 1ef7cbb | 2007-10-01 16:13:28 +0900 | [diff] [blame] | 105 | EXPORT_SYMBOL(insl); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | |
| 107 | void memcpy_toio(void __iomem *to, const void *from, long count) |
| 108 | { |
| 109 | unsigned char *p = (unsigned char *) from; |
| 110 | |
| 111 | while (count) { |
| 112 | count--; |
| 113 | writeb(*p++, to++); |
| 114 | } |
| 115 | } |
Paul Mundt | 1ef7cbb | 2007-10-01 16:13:28 +0900 | [diff] [blame] | 116 | EXPORT_SYMBOL(memcpy_toio); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
| 118 | void memcpy_fromio(void *to, void __iomem *from, long count) |
| 119 | { |
| 120 | int i; |
| 121 | unsigned char *p = (unsigned char *) to; |
| 122 | |
| 123 | for (i = 0; i < count; i++) { |
| 124 | p[i] = readb(from); |
| 125 | from++; |
| 126 | } |
| 127 | } |
Paul Mundt | 1ef7cbb | 2007-10-01 16:13:28 +0900 | [diff] [blame] | 128 | EXPORT_SYMBOL(memcpy_fromio); |