Chameleon

Chameleon Svn Source Tree

Root/branches/Kabyl/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 kAtiConfig"AtiConfig"/* ati.c */
64#define kWake"Wake"/* boot.c */
65#define kForceWake"ForceWake"/* boot.c */
66#define kWakeImage"WakeImage"/* boot.c */
67#define kProductVersion"ProductVersion"/* boot.c */
68#define karch"arch"/* boot.c */
69#define kDSDT"DSDT"/* acpi_patcher.c */
70#define kDropSSDT"DropSSDT"/* acpi_patcher.c */
71#define kRestartFix"RestartFix"/* acpi_patcher.c */
72#define kGeneratePStates"GeneratePStates"/* acpi_patcher.c */
73#define kGenerateCStates"GenerateCStates"/* acpi_patcher.c */
74#define kEnableC2States"EnableC2State"/* acpi_patcher.c */
75#define kEnableC3States"EnableC3State"/* acpi_patcher.c */
76#define kEnableC4States"EnableC4State"/* acpi_patcher.c */
77#define kDeviceProperties"device-properties"/* device_inject.c */
78#define kHidePartition"Hide Partition"/* disk.c */
79#define kRenamePartition"Rename Partition"/* disk.c */
80#define kSMBIOSKey"SMBIOS"/* fake_efi.c */
81#define kSystemID"SystemId"/* fake_efi.c */
82#define kSystemType"SystemType"/* fake_efi.c */
83#define kUseNvidiaROM"UseNvidiaROM"/* nvidia.c */
84#define kVBIOS"VBIOS"/* nvidia.c */
85#define kPCIRootUID"PCIRootUID"/* pci_root.c */
86#define kEthernetBuiltIn"EthernetBuiltIn"/* pci_setup.c */
87#define kGraphicsEnabler"GraphicsEnabler"/* pci_setup.c */
88#define kForceHPET"ForceHPET"/* pci_setup.c */
89#define kUseMemDetect"UseMemDetect" /* platform.c */
90#define kSMBIOSdefaults"SMBIOSdefaults"/* smbios_patcher.c */
91#define kUSBBusFix"USBBusFix"/* usb.c */
92#define kEHCIacquire"EHCIacquire"/* usb.c */
93#define kUHCIreset"UHCIreset"/* usb.c */
94#define kLegacyOff"USBLegacyOff"/* usb.c */
95#define kEHCIhard"EHCIhard"/* usb.c */
96#define kDefaultPartition"Default Partition"/* sys.c */
97#define kMD0Image"md0"/* ramdisk.h */
98
99/*
100 * Flags to the booter or kernel
101 */
102#define kVerboseModeFlag"-v"
103#define kSafeModeFlag"-x"
104#define kIgnoreCachesFlag"-f"
105#define kIgnoreBootFileFlag"-F"
106#define kSingleUserModeFlag"-s"
107
108/*
109 * Booter behavior control
110 */
111#define kBootTimeout -1
112#define kCDBootTimeout 8
113
114/*
115 * A global set by boot() to record the device that the booter
116 * was loaded from.
117 */
118extern int gBIOSDev;
119extern long gBootMode;
120extern bool sysConfigValid;
121extern char bootBanner[];
122extern char bootPrompt[];
123extern bool gOverrideKernel;
124extern char *gPlatformName;
125extern char gMKextName[];
126extern char gRootDevice[];
127extern bool gEnableCDROMRescan;
128extern bool gScanSingleDrive;
129extern bool useGUI;
130
131/*
132 * Boot Modes
133 */
134enum {
135 kBootModeNormal = 0,
136 kBootModeSafe = 1,
137 kBootModeSecure = 2,
138 kBootModeQuiet = 4
139};
140
141extern void initialize_runtime();
142extern void common_boot(int biosdev);
143
144/*
145 * usb.c
146 */
147extern int usb_loop();
148
149/*
150 * graphics.c
151 */
152extern void printVBEModeInfo();
153extern void setVideoMode(int mode, int drawgraphics);
154extern int getVideoMode();
155extern void spinActivityIndicator();
156extern void clearActivityIndicator();
157extern void drawColorRectangle( unsigned short x,
158 unsigned short y,
159 unsigned short width,
160 unsigned short height,
161 unsigned char colorIndex );
162extern void drawDataRectangle( unsigned short x,
163 unsigned short y,
164 unsigned short width,
165 unsigned short height,
166 unsigned char * data );
167extern int
168convertImage( unsigned short width,
169 unsigned short height,
170 const unsigned char *imageData,
171 unsigned char **newImageData );
172extern char * decodeRLE( const void * rleData, int rleBlocks, int outBytes );
173extern void drawBootGraphics(void);
174extern void drawPreview(void *src, uint8_t * saveunder);
175extern int getVideoMode(void);
176extern void loadImageScale (void *input, int iw, int ih, int ip, void *output, int ow, int oh, int op, int or);
177
178/*
179 * drivers.c
180 */
181extern long LoadDrivers(char * dirSpec);
182extern long DecodeKernel(void *binary, entry_t *rentry, char **raddr, int *rsize);
183
184typedef long (*FileLoadDrivers_t)(char *dirSpec, long plugin);
185/*!
186 Hookable function pointer called during the driver loading phase that
187 allows other code to cause additional drivers to be loaded.
188 */
189extern long (*LoadExtraDrivers_p)(FileLoadDrivers_t FileLoadDrivers_p);
190
191/*
192 * options.c
193 */
194extern int getBootOptions(bool firstRun);
195extern int processBootOptions();
196extern int selectAlternateBootDevice(int bootdevice);
197extern bool promptForRescanOption(void);
198
199void showHelp();
200void showTextFile();
201char *getMemoryInfoString();
202
203typedef struct {
204 char name[80];
205 void * param;
206} MenuItem;
207
208/*
209 * lzss.c
210 */
211extern int decompress_lzss(u_int8_t *dst, u_int8_t *src, u_int32_t srclen);
212
213struct compressed_kernel_header {
214 u_int32_t signature;
215 u_int32_t compress_type;
216 u_int32_t adler32;
217 u_int32_t uncompressed_size;
218 u_int32_t compressed_size;
219 u_int32_t reserved[11];
220 char platform_name[64];
221 char root_path[256];
222 u_int8_t data[0];
223};
224typedef struct compressed_kernel_header compressed_kernel_header;
225
226/* resume.c */
227void HibernateBoot(char *boot_device);
228
229/* bmdecompress.c */
230void * DecompressData(void *srcbase, int *dw, int *dh, int *bytesPerPixel);
231
232#endif /* !__BOOT2_BOOT_H */
233

Archive Download this file

Revision: 674