Loading...
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 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 | /* * Alpha IO and memory functions.. Just expand the inlines in the header * files.. */ #include <linux/kernel.h> #include <asm/io.h> /* * Jensen has a separate "local" and "bus" IO space for * byte-wide IO. */ #ifdef __is_local #undef __bus_inb unsigned int __bus_inb(unsigned long addr) { return ___bus_inb(addr); } #undef __bus_outb void __bus_outb(unsigned char b, unsigned long addr) { ___bus_outb(b, addr); } #endif #undef inb unsigned int inb(unsigned long addr) { return __inb(addr); } #undef inw unsigned int inw(unsigned long addr) { return __inw(addr); } #undef inl unsigned int inl(unsigned long addr) { return __inl(addr); } #undef outb void outb(unsigned char b, unsigned long addr) { __outb(b, addr); } #undef outw void outw(unsigned short b, unsigned long addr) { __outw(b, addr); } #undef outl void outl(unsigned int b, unsigned long addr) { __outl(b, addr); } #undef readb unsigned long readb(unsigned long addr) { return __readb(addr); } #undef readw unsigned long readw(unsigned long addr) { return __readw(addr); } #undef readl unsigned long readl(unsigned long addr) { return __readl(addr); } #undef writeb void writeb(unsigned char b, unsigned long addr) { __writeb(b, addr); } #undef writew void writew(unsigned short b, unsigned long addr) { __writew(b, addr); } #undef writel void writel(unsigned int b, unsigned long addr) { __writel(b, addr); } /* * Read COUNT 8-bit bytes from port PORT into memory starting at * SRC. */ #undef insb void insb (unsigned long port, void *dst, unsigned long count) { while (((unsigned long)dst) & 0x3) { if (!count) return; count--; *(unsigned char *) dst = inb(port); ((unsigned char *) dst)++; } while (count >= 4) { unsigned int w; count -= 4; w = inb(port); w |= inb(port) << 8; w |= inb(port) << 16; w |= inb(port) << 24; *(unsigned int *) dst = w; ((unsigned int *) dst)++; } while (count) { --count; *(unsigned char *) dst = inb(port); ((unsigned char *) dst)++; } } /* * Read COUNT 16-bit words from port PORT into memory starting at * SRC. SRC must be at least short aligned. This is used by the * IDE driver to read disk sectors. Performance is important, but * the interfaces seems to be slow: just using the inlined version * of the inw() breaks things. */ #undef insw void insw (unsigned long port, void *dst, unsigned long count) { if (((unsigned long)dst) & 0x3) { if (((unsigned long)dst) & 0x1) { panic("insw: memory not short aligned"); } if (!count) return; count--; *(unsigned short* ) dst = inw(port); ((unsigned short *) dst)++; } while (count >= 2) { unsigned int w; count -= 2; w = inw(port); w |= inw(port) << 16; *(unsigned int *) dst = w; ((unsigned int *) dst)++; } if (count) { *(unsigned short*) dst = inw(port); } } /* * Read COUNT 32-bit words from port PORT into memory starting at * SRC. SRC must be at least word aligned. This is used by the * IDE driver to read disk sectors. Performance is important, but * the interfaces seems to be slow: just using the inlined version * of the inw() breaks things. */ #undef insl void insl (unsigned long port, void *dst, unsigned long count) { if (((unsigned long)dst) & 0x3) { panic("insl: memory not aligned"); } while (count) { --count; *(unsigned int *) dst = inl(port); ((unsigned int *) dst)++; } } /* * Like insb but in the opposite direction. * Don't worry as much about doing aligned memory transfers: * doing byte reads the "slow" way isn't nearly as slow as * doing byte writes the slow way (no r-m-w cycle). */ #undef outsb void outsb(unsigned long port, void * src, unsigned long count) { while (count) { count--; outb(*(char *)src, port); ((char *) src)++; } } /* * Like insw but in the opposite direction. This is used by the IDE * driver to write disk sectors. Performance is important, but the * interfaces seems to be slow: just using the inlined version of the * outw() breaks things. */ #undef outsw void outsw (unsigned long port, void *src, unsigned long count) { if (((unsigned long)src) & 0x3) { if (((unsigned long)src) & 0x1) { panic("outsw: memory not short aligned"); } outw(*(unsigned short*)src, port); ((unsigned short *) src)++; --count; } while (count >= 2) { unsigned int w; count -= 2; w = *(unsigned int *) src; ((unsigned int *) src)++; outw(w >> 0, port); outw(w >> 16, port); } if (count) { outw(*(unsigned short *) src, port); } } /* * Like insl but in the opposite direction. This is used by the IDE * driver to write disk sectors. Performance is important, but the * interfaces seems to be slow: just using the inlined version of the * outw() breaks things. */ #undef outsw void outsl (unsigned long port, void *src, unsigned long count) { if (((unsigned long)src) & 0x3) { panic("outsw: memory not aligned"); } while (count) { --count; outl(*(unsigned int *) src, port); ((unsigned int *) src)++; } } /* * Copy data from IO memory space to "real" memory space. * This needs to be optimized. */ #undef memcpy_fromio void memcpy_fromio(void * to, unsigned long from, unsigned long count) { while (count) { count--; *(char *) to = readb(from); ((char *) to)++; from++; } } /* * Copy data from "real" memory space to IO memory space. * This needs to be optimized. */ #undef memcpy_toio void memcpy_toio(unsigned long to, void * from, unsigned long count) { while (count) { count--; writeb(*(char *) from, to); ((char *) from)++; to++; } } /* * "memset" on IO memory space. * This needs to be optimized. */ #undef memset_io void memset_io(unsigned long dst, int c, unsigned long count) { while (count) { count--; writeb(c, dst); dst++; } } |