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
|
/*
This file is based on:
$XFree86: xc/programs/Xserver/hw/xfree86/drivers/chips/util/AsmMacros.h,v 1.1 2001/11/16 21:13:34 tsi Exp $
Modified for readability by Nick Kurshev
*/
#ifndef __ASM_MACROS_X86_H
#define __ASM_MACROS_X86_H
#if defined (WINNT)
#include "sysdep/AsmMacros_generic.h"
#else
#include "config.h"
static __inline__ void outb(short port,char val)
{
__asm__ __volatile__("outb %0,%1" : :"a" (val), "d" (port));
return;
}
static __inline__ void outw(short port,short val)
{
__asm__ __volatile__("outw %0,%1" : :"a" (val), "d" (port));
return;
}
static __inline__ void outl(short port,unsigned int val)
{
__asm__ __volatile__("outl %0,%1" : :"a" (val), "d" (port));
return;
}
static __inline__ unsigned int inb(short port)
{
unsigned char ret;
__asm__ __volatile__("inb %1,%0" :
"=a" (ret) :
"d" (port));
return ret;
}
static __inline__ unsigned int inw(short port)
{
unsigned short ret;
__asm__ __volatile__("inw %1,%0" :
"=a" (ret) :
"d" (port));
return ret;
}
static __inline__ unsigned int inl(short port)
{
unsigned int ret;
__asm__ __volatile__("inl %1,%0" :
"=a" (ret) :
"d" (port));
return ret;
}
static __inline__ void intr_disable()
{
__asm__ __volatile__("cli");
}
static __inline__ void intr_enable()
{
__asm__ __volatile__("sti");
}
#endif
#endif
|