Chameleon

Chameleon Svn Source Tree

Root/trunk/i386/boot2/boot.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 __BOOT2_BOOT_H
30#define __BOOT2_BOOT_H
31
32#include "libsaio.h"
33
34/*
35 * Keys used in system Boot.plist
36 */
37#define kGraphicsModeKey"Graphics Mode"
38#define kTextModeKey"Text Mode"
39#define kQuietBootKey"Quiet Boot"
40#define kKernelFlagsKey"Kernel Flags"
41#define kMKextCacheKey"MKext Cache"
42#define kKernelNameKey"Kernel"
43#define kKernelCacheKey"Kernel Cache"
44#define kBootDeviceKey"Boot Device"
45#define kTimeoutKey"Timeout"
46#define kRootDeviceKey"rd"
47#define kBootUUIDKey"boot-uuid"
48#define kHelperRootUUIDKey"Root UUID"
49#define kPlatformKey"platform"
50#define kACPIKey"acpi"
51#define kCDROMPromptKey"CD-ROM Prompt"
52#define kCDROMOptionKey"CD-ROM Option Key"
53#define kRescanPromptKey"Rescan Prompt"
54#define kRescanKey"Rescan"
55#define kScanSingleDriveKey"Scan Single Drive"
56#define kInsantMenuKey"Instant Menu"
57#define kDefaultKernel"mach_kernel"
58#define kGUIKey"GUI"
59#define kBootBannerKey"Boot Banner"
60#define kWaitForKeypressKey"Wait"
61/* AsereBLN: added the other keys */
62#define kUseAtiROM"UseAtiROM"/* ati.c */
63#define kWake"Wake"/* boot.c */
64#define kForceWake"ForceWake"/* boot.c */
65#define kWakeImage"WakeImage"/* boot.c */
66#define kProductVersion"ProductVersion"/* boot.c */
67#define karch"arch"/* boot.c */
68#define kDSDT"DSDT"/* dsdt_patcher.c */
69#define kDropSSDT"DropSSDT"/* dsdt_patcher.c */
70#define kRestartFix"RestartFix"/* dsdt_patcher.c */
71#define kSMBIOS"SMBIOS"/* fake_efi.c */
72#define kSystemID"SystemId"/* fake_efi.c */
73#define kSystemType"SystemType"/* fake_efi.c */
74#define kUseNvidiaROM"UseNvidiaROM"/* nvidia.c */
75#define kVBIOS"VBIOS"/* nvidia.c */
76#define kPCIRootUID"PCIRootUID"/* pci_root.c */
77#define kEthernetBuiltIn"EthernetBuiltIn"/* pci_setup.c */
78#define kGraphicsEnabler"GraphicsEnabler"/* pci_setup.c */
79#define kUSBBusFix"USBBusFix"/* pci_setup.c */
80#define kEHCIacquire"EHCIacquire"/* pci_setup.c */
81#define kUHCIreset"UHCIreset"/* pci_setup.c */
82#define kForceHPET"ForceHPET"/* pci_setup.c */
83#define kSMBIOSdefaults"SMBIOSdefaults"/* smbios_patcher.c */
84#define kEHCIhard"EHCIhard"/* usb.c */
85#define kDefaultPartition"Default Partition"/* sys.c */
86#define kDeviceProperties"device-properties"/* device_inject.c */
87#define kHidePartition"Hide Partition"/* disk.c */
88#define kRenamePartition"Rename Partition"/* disk.c */
89#define kUseMemDetect "UseMemDetect" /* platform.c */
90#define kRestartFix "RestartFix" /* dsdt_patcher.c */
91
92/*
93 * Flags to the booter or kernel
94 */
95#define kVerboseModeFlag"-v"
96#define kSafeModeFlag"-x"
97#define kOldSafeModeFlag"-f"
98#define kIgnoreBootFileFlag"-F"
99#define kSingleUserModeFlag"-s"
100#define k32BitModeFlag"-x32"
101
102/*
103 * Booter behavior control
104 */
105#define kBootTimeout -1
106#define kCDBootTimeout 8
107
108/*
109 * A global set by boot() to record the device that the booter
110 * was loaded from.
111 */
112extern int gBIOSDev;
113extern long gBootMode;
114extern bool sysConfigValid;
115extern char bootBanner[];
116extern char bootPrompt[];
117extern bool gOverrideKernel;
118extern char *gPlatformName;
119extern char gMKextName[];
120extern char gRootDevice[];
121extern bool gEnableCDROMRescan;
122extern bool gScanSingleDrive;
123extern bool useGUI;
124
125/*
126 * Boot Modes
127 */
128enum {
129 kBootModeNormal = 0,
130 kBootModeSafe = 1,
131 kBootModeSecure = 2,
132 kBootModeQuiet = 4
133};
134
135extern void initialize_runtime();
136extern void common_boot(int biosdev);
137
138/*
139 * graphics.c
140 */
141extern void printVBEModeInfo();
142extern void setVideoMode(int mode, int drawgraphics);
143extern int getVideoMode();
144extern void spinActivityIndicator();
145extern void clearActivityIndicator();
146extern void drawColorRectangle( unsigned short x,
147 unsigned short y,
148 unsigned short width,
149 unsigned short height,
150 unsigned char colorIndex );
151extern void drawDataRectangle( unsigned short x,
152 unsigned short y,
153 unsigned short width,
154 unsigned short height,
155 unsigned char * data );
156extern int
157convertImage( unsigned short width,
158 unsigned short height,
159 const unsigned char *imageData,
160 unsigned char **newImageData );
161extern char * decodeRLE( const void * rleData, int rleBlocks, int outBytes );
162extern void drawBootGraphics(void);
163extern void drawPreview(void *src, uint8_t * saveunder);
164extern int getVideoMode(void);
165extern void loadImageScale (void *input, int iw, int ih, int ip, void *output, int ow, int oh, int op, int or);
166/*
167 * drivers.c
168 */
169extern long LoadDrivers(char * dirSpec);
170extern long DecodeKernel(void *binary, entry_t *rentry, char **raddr, int *rsize);
171
172typedef long (*FileLoadDrivers_t)(char *dirSpec, long plugin);
173/*!
174 Hookable function pointer called during the driver loading phase that
175 allows other code to cause additional drivers to be loaded.
176 */
177extern long (*LoadExtraDrivers_p)(FileLoadDrivers_t FileLoadDrivers_p);
178
179/*
180 * options.c
181 */
182extern int getBootOptions(bool firstRun);
183extern int processBootOptions();
184extern int selectAlternateBootDevice(int bootdevice);
185extern bool promptForRescanOption(void);
186
187void showHelp();
188void showTextFile();
189char *getMemoryInfoString();
190
191typedef struct {
192 char name[80];
193 void * param;
194} MenuItem;
195
196/*
197 * lzss.c
198 */
199extern int decompress_lzss(u_int8_t *dst, u_int8_t *src, u_int32_t srclen);
200
201struct compressed_kernel_header {
202 u_int32_t signature;
203 u_int32_t compress_type;
204 u_int32_t adler32;
205 u_int32_t uncompressed_size;
206 u_int32_t compressed_size;
207 u_int32_t reserved[11];
208 char platform_name[64];
209 char root_path[256];
210 u_int8_t data[0];
211};
212typedef struct compressed_kernel_header compressed_kernel_header;
213
214/* resume.c */
215void HibernateBoot(char *boot_device);
216
217/* bmdecompress.c */
218void * DecompressData(void *srcbase, int *dw, int *dh, int *bytesPerPixel);
219
220#endif /* !__BOOT2_BOOT_H */
221

Archive Download this file

Revision: 107