Chameleon

Chameleon Svn Source Tree

Root/tags/2.3/i386/libsaio/bios.h

Source at commit 2862 created 7 years 25 days ago.
By ifabio, Tag 2.3 release, bump svn to 2.4
1/*
2 * Copyright (c) 1999-2003 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * Portions Copyright (c) 1999-2003 Apple Computer, Inc. All Rights
7 * Reserved. This file contains Original Code and/or Modifications of
8 * Original Code as defined in and that are subject to the Apple Public
9 * Source License Version 2.0 (the "License"). You may not use this file
10 * except in compliance with the License. Please obtain a copy of the
11 * License at http://www.apple.com/publicsource and read it before using
12 * this file.
13 *
14 * The Original Code and all software distributed under the License are
15 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
16 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
17 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
18 * FITNESS FOR A PARTICULAR PURPOSE OR NON- INFRINGEMENT. Please see the
19 * License for the specific language governing rights and limitations
20 * under the License.
21 *
22 * @APPLE_LICENSE_HEADER_END@
23 */
24/*
25 * Copyright 1994 NeXT Computer, Inc.
26 * All rights reserved.
27 */
28
29#ifndef __LIBSAIO_BIOS_H
30#define __LIBSAIO_BIOS_H
31
32#include "bootargs.h"
33
34typedef union
35{
36unsigned intrx;
37unsigned shortrr;
38
39struct
40{
41unsigned charl;
42unsigned charh;
43} r;
44} machineRegister_t;
45
46
47typedef struct
48{
49unsigned short cf: 1;
50unsigned short: 1;
51unsigned short pf: 1;
52unsigned short: 1;
53unsigned short af: 1;
54unsigned short: 1;
55unsigned short zf: 1;
56unsigned short sf: 1;
57unsigned short tf: 1;
58unsigned short _if: 1;
59unsigned short df: 1;
60unsigned short of: 1;
61unsigned short iopl: 2;
62unsigned short nt: 1;
63} machineFlags_t;
64
65
66typedef struct
67{
68unsigned intintno;
69machineRegister_teax;
70machineRegister_tebx;
71machineRegister_tecx;
72machineRegister_tedx;
73machineRegister_tedi;
74machineRegister_tesi;
75machineRegister_tebp;
76unsigned shortcs;
77unsigned shortds;
78unsigned shortes;
79machineFlags_tflags;
80} biosBuf_t;
81
82#define EBIOS_FIXED_DISK_ACCESS0x01
83#define EBIOS_LOCKING_ACCESS0x02
84#define EBIOS_ENHANCED_DRIVE_INFO0x04
85
86#define BASE_HD_DRIVE0x80
87
88#if 0
89/*
90 * ACPI defined memory range types.
91 */
92enum
93{
94kMemoryRangeUsable = 1, // RAM usable by the OS.
95kMemoryRangeReserved = 2, // Reserved. (Do not use)
96kMemoryRangeACPI = 3, // ACPI tables. Can be reclaimed.
97kMemoryRangeNVS = 4, // ACPI NVS memory. (Do not use)
98
99/* Undefined types should be treated as kMemoryRangeReserved */
100};
101#endif
102
103/*
104 * Memory range descriptor.
105 */
106typedef struct MemoryRange
107{
108unsigned long longbase;// 64-bit base address
109unsigned long longlength;// 64-bit length in bytes
110unsigned longtype;// type of memory range
111unsigned longreserved;
112} MemoryRange;
113
114#endif /* !__LIBSAIO_BIOS_H */
115

Archive Download this file

Revision: 2862