Chameleon

Chameleon Svn Source Tree

Root/branches/ErmaC/Trunk/i386/libsaio/bios.h

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 int rx;
37unsigned short rr;
38
39struct
40{
41unsigned char l;
42unsigned char h;
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 int intno;
69machineRegister_t eax;
70machineRegister_t ebx;
71machineRegister_t ecx;
72machineRegister_t edx;
73machineRegister_t edi;
74machineRegister_t esi;
75machineRegister_t ebp;
76unsigned short cs;
77unsigned short ds;
78unsigned short es;
79machineFlags_t flags;
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 long base; // 64-bit base address
109unsigned long long length; // 64-bit length in bytes
110unsigned long type; // type of memory range
111unsigned long reserved;
112} MemoryRange;
113
114#endif /* !__LIBSAIO_BIOS_H */
115

Archive Download this file

Revision: 2042