patch-2.3.26 linux/include/asm-sh/io.h
Next file: linux/include/asm-sh/ioctls.h
Previous file: linux/include/asm-sh/bitops.h
Back to the patch index
Back to the overall index
- Lines: 50
- Date:
Sat Nov 6 10:40:31 1999
- Orig file:
v2.3.25/linux/include/asm-sh/io.h
- Orig date:
Fri Oct 22 13:21:54 1999
diff -u --recursive --new-file v2.3.25/linux/include/asm-sh/io.h linux/include/asm-sh/io.h
@@ -72,6 +72,24 @@
return readl(addr);
}
+extern __inline__ void insb(unsigned long addr, void *buffer, int count)
+{
+ unsigned char *buf=buffer;
+ while(count--) *buf++=inb(addr);
+}
+
+extern __inline__ void insw(unsigned long addr, void *buffer, int count)
+{
+ unsigned short *buf=buffer;
+ while(count--) *buf++=inw(addr);
+}
+
+extern __inline__ void insl(unsigned long addr, void *buffer, int count)
+{
+ unsigned long *buf=buffer;
+ while(count--) *buf++=inl(addr);
+}
+
extern __inline__ void outb(unsigned char b, unsigned long addr)
{
return writeb(b,addr);
@@ -85,6 +103,24 @@
extern __inline__ void outl(unsigned int b, unsigned long addr)
{
return writel(b,addr);
+}
+
+extern __inline__ void outsb(unsigned long addr, const void *buffer, int count)
+{
+ const unsigned char *buf=buffer;
+ while(count--) outb(*buf++, addr);
+}
+
+extern __inline__ void outsw(unsigned long addr, const void *buffer, int count)
+{
+ const unsigned short *buf=buffer;
+ while(count--) outw(*buf++, addr);
+}
+
+extern __inline__ void outsl(unsigned long addr, const void *buffer, int count)
+{
+ const unsigned long *buf=buffer;
+ while(count--) outl(*buf++, addr);
}
extern __inline__ unsigned long ctrl_inb(unsigned long addr)
FUNET's LINUX-ADM group, linux-adm@nic.funet.fi
TCL-scripts by Sam Shen (who was at: slshen@lbl.gov)