|
|
87820a |
static __inline void outb(unsigned char __val, unsigned short __port)
|
|
|
87820a |
{
|
|
|
87820a |
__asm__ volatile ("outb %0,%1" : : "a" (__val), "dN" (__port));
|
|
|
87820a |
}
|
|
|
87820a |
|
|
|
87820a |
static __inline void outw(unsigned short __val, unsigned short __port)
|
|
|
87820a |
{
|
|
|
87820a |
__asm__ volatile ("outw %0,%1" : : "a" (__val), "dN" (__port));
|
|
|
87820a |
}
|
|
|
87820a |
|
|
|
87820a |
static __inline void outl(unsigned int __val, unsigned short __port)
|
|
|
87820a |
{
|
|
|
87820a |
__asm__ volatile ("outl %0,%1" : : "a" (__val), "dN" (__port));
|
|
|
87820a |
}
|
|
|
87820a |
|
|
|
87820a |
static __inline unsigned char inb(unsigned short __port)
|
|
|
87820a |
{
|
|
|
87820a |
unsigned char __val;
|
|
|
87820a |
__asm__ volatile ("inb %1,%0" : "=a" (__val) : "dN" (__port));
|
|
|
87820a |
return __val;
|
|
|
87820a |
}
|
|
|
87820a |
|
|
|
87820a |
static __inline unsigned short inw(unsigned short __port)
|
|
|
87820a |
{
|
|
|
87820a |
unsigned short __val;
|
|
|
87820a |
__asm__ volatile ("inw %1,%0" : "=a" (__val) : "dN" (__port));
|
|
|
87820a |
return __val;
|
|
|
87820a |
}
|
|
|
87820a |
|
|
|
87820a |
static __inline unsigned int inl(unsigned short __port)
|
|
|
87820a |
{
|
|
|
87820a |
unsigned int __val;
|
|
|
87820a |
__asm__ volatile ("inl %1,%0" : "=a" (__val) : "dN" (__port));
|
|
|
87820a |
return __val;
|
|
|
87820a |
}
|
|
|
87820a |
|
|
|
87820a |
static __inline void outsb(unsigned short __port, const void *__buf, unsigned long __n)
|
|
|
87820a |
{
|
|
|
87820a |
__asm__ volatile ("cld; rep; outsb"
|
|
|
87820a |
: "+S" (__buf), "+c" (__n)
|
|
|
87820a |
: "d" (__port));
|
|
|
87820a |
}
|
|
|
87820a |
|
|
|
87820a |
static __inline void outsw(unsigned short __port, const void *__buf, unsigned long __n)
|
|
|
87820a |
{
|
|
|
87820a |
__asm__ volatile ("cld; rep; outsw"
|
|
|
87820a |
: "+S" (__buf), "+c" (__n)
|
|
|
87820a |
: "d" (__port));
|
|
|
87820a |
}
|
|
|
87820a |
|
|
|
87820a |
static __inline void outsl(unsigned short __port, const void *__buf, unsigned long __n)
|
|
|
87820a |
{
|
|
|
87820a |
__asm__ volatile ("cld; rep; outsl"
|
|
|
87820a |
: "+S" (__buf), "+c"(__n)
|
|
|
87820a |
: "d" (__port));
|
|
|
87820a |
}
|
|
|
87820a |
|
|
|
87820a |
static __inline void insb(unsigned short __port, void *__buf, unsigned long __n)
|
|
|
87820a |
{
|
|
|
87820a |
__asm__ volatile ("cld; rep; insb"
|
|
|
87820a |
: "+D" (__buf), "+c" (__n)
|
|
|
87820a |
: "d" (__port));
|
|
|
87820a |
}
|
|
|
87820a |
|
|
|
87820a |
static __inline void insw(unsigned short __port, void *__buf, unsigned long __n)
|
|
|
87820a |
{
|
|
|
87820a |
__asm__ volatile ("cld; rep; insw"
|
|
|
87820a |
: "+D" (__buf), "+c" (__n)
|
|
|
87820a |
: "d" (__port));
|
|
|
87820a |
}
|
|
|
87820a |
|
|
|
87820a |
static __inline void insl(unsigned short __port, void *__buf, unsigned long __n)
|
|
|
87820a |
{
|
|
|
87820a |
__asm__ volatile ("cld; rep; insl"
|
|
|
87820a |
: "+D" (__buf), "+c" (__n)
|
|
|
87820a |
: "d" (__port));
|
|
|
87820a |
}
|