]>
git.saurik.com Git - apple/xnu.git/blob - osfmk/i386/pio.h
2 * Copyright (c) 2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_HEADER_START@
6 * Copyright (c) 1999-2003 Apple Computer, Inc. All Rights Reserved.
8 * This file contains Original Code and/or Modifications of Original Code
9 * as defined in and that are subject to the Apple Public Source License
10 * Version 2.0 (the 'License'). You may not use this file except in
11 * compliance with the License. Please obtain a copy of the License at
12 * http://www.opensource.apple.com/apsl/ and read it before using this
15 * The Original Code and all software distributed under the License are
16 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
17 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
18 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
19 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
20 * Please see the License for the specific language governing rights and
21 * limitations under the License.
23 * @APPLE_LICENSE_HEADER_END@
29 * Mach Operating System
30 * Copyright (c) 1991,1990 Carnegie Mellon University
31 * All Rights Reserved.
33 * Permission to use, copy, modify and distribute this software and its
34 * documentation is hereby granted, provided that both the copyright
35 * notice and this permission notice appear in all copies of the
36 * software, derivative works or modified versions, and any portions
37 * thereof, and that both notices appear in supporting documentation.
39 * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS"
40 * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR
41 * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE.
43 * Carnegie Mellon requests users of this software to return to
45 * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU
46 * School of Computer Science
47 * Carnegie Mellon University
48 * Pittsburgh PA 15213-3890
50 * any improvements or extensions that they make and grant Carnegie Mellon
51 * the rights to redistribute these changes.
58 #include <mach_assert.h>
60 typedef unsigned short i386_ioport_t
;
63 extern unsigned long inl(
65 /* read a shortword */
66 extern unsigned short inw(
69 extern unsigned char inb(
71 /* write a longword */
78 unsigned short datum
);
79 /* write a longword */
84 /* input an array of longwords */
89 /* output an array of longwords */
95 /* input an array of words */
100 /* output an array of words */
106 /* input an array of bytes */
111 /* output an array of bytes */
117 #if defined(__GNUC__) && (!MACH_ASSERT)
118 extern __inline__
unsigned long inl(
122 __asm__
volatile("inl %1, %0" : "=a" (datum
) : "d" (port
));
126 extern __inline__
unsigned short inw(
129 unsigned short datum
;
130 __asm__
volatile(".byte 0x66; inl %1, %0" : "=a" (datum
) : "d" (port
));
134 extern __inline__
unsigned char inb(
138 __asm__
volatile("inb %1, %0" : "=a" (datum
) : "d" (port
));
142 extern __inline__
void outl(
146 __asm__
volatile("outl %0, %1" : : "a" (datum
), "d" (port
));
149 extern __inline__
void outw(
151 unsigned short datum
)
153 __asm__
volatile(".byte 0x66; outl %0, %1" : : "a" (datum
), "d" (port
));
156 extern __inline__
void outb(
160 __asm__
volatile("outb %0, %1" : : "a" (datum
), "d" (port
));
162 #endif /* defined(__GNUC__) && (!MACH_ASSERT) */
163 #endif /* I386_PIO_H */