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 | /* * linux/arch/sh/kernel/io_adx.c * * Copyright (C) 2001 A&D Co., Ltd. * * I/O routine and setup routines for A&D ADX Board * * This file is subject to the terms and conditions of the GNU General Public * License. See the file "COPYING" in the main directory of this archive * for more details. * */ #include <asm/io.h> #include <asm/machvec.h> #include <linux/module.h> #define PORT2ADDR(x) (adx_isa_port2addr(x)) static inline void delay(void) { ctrl_inw(0xa0000000); } unsigned char adx_inb(unsigned long port) { return *(volatile unsigned char*)PORT2ADDR(port); } unsigned short adx_inw(unsigned long port) { return *(volatile unsigned short*)PORT2ADDR(port); } unsigned int adx_inl(unsigned long port) { return *(volatile unsigned long*)PORT2ADDR(port); } unsigned char adx_inb_p(unsigned long port) { unsigned long v = *(volatile unsigned char*)PORT2ADDR(port); delay(); return v; } unsigned short adx_inw_p(unsigned long port) { unsigned long v = *(volatile unsigned short*)PORT2ADDR(port); delay(); return v; } unsigned int adx_inl_p(unsigned long port) { unsigned long v = *(volatile unsigned long*)PORT2ADDR(port); delay(); return v; } void adx_insb(unsigned long port, void *buffer, unsigned long count) { unsigned char *buf = buffer; while(count--) *buf++ = inb(port); } void adx_insw(unsigned long port, void *buffer, unsigned long count) { unsigned short *buf = buffer; while(count--) *buf++ = inw(port); } void adx_insl(unsigned long port, void *buffer, unsigned long count) { unsigned long *buf = buffer; while(count--) *buf++ = inl(port); } void adx_outb(unsigned char b, unsigned long port) { *(volatile unsigned char*)PORT2ADDR(port) = b; } void adx_outw(unsigned short b, unsigned long port) { *(volatile unsigned short*)PORT2ADDR(port) = b; } void adx_outl(unsigned int b, unsigned long port) { *(volatile unsigned long*)PORT2ADDR(port) = b; } void adx_outb_p(unsigned char b, unsigned long port) { *(volatile unsigned char*)PORT2ADDR(port) = b; delay(); } void adx_outw_p(unsigned short b, unsigned long port) { *(volatile unsigned short*)PORT2ADDR(port) = b; delay(); } void adx_outl_p(unsigned int b, unsigned long port) { *(volatile unsigned long*)PORT2ADDR(port) = b; delay(); } void adx_outsb(unsigned long port, const void *buffer, unsigned long count) { const unsigned char *buf = buffer; while(count--) outb(*buf++, port); } void adx_outsw(unsigned long port, const void *buffer, unsigned long count) { const unsigned short *buf = buffer; while(count--) outw(*buf++, port); } void adx_outsl(unsigned long port, const void *buffer, unsigned long count) { const unsigned long *buf = buffer; while(count--) outl(*buf++, port); } unsigned char adx_readb(unsigned long addr) { return *(volatile unsigned char*)addr; } unsigned short adx_readw(unsigned long addr) { return *(volatile unsigned short*)addr; } unsigned int adx_readl(unsigned long addr) { return *(volatile unsigned long*)addr; } void adx_writeb(unsigned char b, unsigned long addr) { *(volatile unsigned char*)addr = b; } void adx_writew(unsigned short b, unsigned long addr) { *(volatile unsigned short*)addr = b; } void adx_writel(unsigned int b, unsigned long addr) { *(volatile unsigned long*)addr = b; } void *adx_ioremap(unsigned long offset, unsigned long size) { return (void *)P2SEGADDR(offset); } EXPORT_SYMBOL (adx_ioremap); void adx_iounmap(void *addr) { } EXPORT_SYMBOL(adx_iounmap); #include <linux/vmalloc.h> extern void *cf_io_base; unsigned long adx_isa_port2addr(unsigned long offset) { /* CompactFlash (IDE) */ if (((offset >= 0x1f0) && (offset <= 0x1f7)) || (offset == 0x3f6)) { return (unsigned long)cf_io_base + offset; } /* eth0 */ if ((offset >= 0x300) && (offset <= 0x30f)) { return 0xa5000000 + offset; /* COMM BOARD (AREA1) */ } return offset + 0xb0000000; /* IOBUS (AREA 4)*/ } |