]>
git.saurik.com Git - apple/xnu.git/blob - iokit/Kernel/IOStartIOKit.cpp
1245c46ce1ee8d442e7967b400e7f7ffd555c2df
2 * Copyright (c) 1998-2005 Apple Computer, Inc. All rights reserved.
4 * @APPLE_OSREFERENCE_LICENSE_HEADER_START@
6 * This file contains Original Code and/or Modifications of Original Code
7 * as defined in and that are subject to the Apple Public Source License
8 * Version 2.0 (the 'License'). You may not use this file except in
9 * compliance with the License. The rights granted to you under the License
10 * may not be used to create, or enable the creation or redistribution of,
11 * unlawful or unlicensed copies of an Apple operating system, or to
12 * circumvent, violate, or enable the circumvention or violation of, any
13 * terms of an Apple operating system software license agreement.
15 * Please obtain a copy of the License at
16 * http://www.opensource.apple.com/apsl/ and read it before using this file.
18 * The Original Code and all software distributed under the License are
19 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
20 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
21 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
22 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
23 * Please see the License for the specific language governing rights and
24 * limitations under the License.
26 * @APPLE_OSREFERENCE_LICENSE_HEADER_END@
29 * Copyright (c) 1998,1999 Apple Computer, Inc. All rights reserved.
35 #include <libkern/c++/OSUnserialize.h>
36 #include <libkern/version.h>
37 #include <IOKit/IORegistryEntry.h>
38 #include <IOKit/IODeviceTreeSupport.h>
39 #include <IOKit/IOCatalogue.h>
40 #include <IOKit/IOUserClient.h>
41 #include <IOKit/IOMemoryDescriptor.h>
42 #include <IOKit/IOPlatformExpert.h>
43 #include <IOKit/IOLib.h>
44 #include <IOKit/IOKitKeys.h>
45 #include <IOKit/IOKitDebug.h>
46 #include <IOKit/pwr_mgt/IOPMinformeeList.h>
48 #include <IOKit/assert.h>
50 #include "IOKitKernelInternal.h"
54 extern void OSlibkernInit (void);
55 extern void ml_hpet_cfg(uint32_t, uint32_t);
57 #include <kern/clock.h>
59 void IOKitResetTime( void )
65 IOService::waitForService(
66 IOService::resourceMatching("IORTC"), &t
);
68 IOService::waitForService(
69 IOService::resourceMatching("IONVRAM"), &t
);
73 clock_initialize_calendar();
76 // From <osfmk/kern/debug.c>
77 extern int debug_mode
;
79 void StartIOKit( void * p1
, void * p2
, void * p3
, void * p4
)
81 IOPlatformExpertDevice
* rootNub
;
83 IORegistryEntry
* root
;
85 extern const char * gIOKernelKmods
;
86 OSString
* errorString
= NULL
; // must release
87 OSDictionary
* fakeKmods
; // must release
88 OSCollectionIterator
* kmodIter
; // must release
89 OSString
* kmodName
; // don't release
91 if( PE_parse_boot_arg( "io", &debugFlags
))
92 gIOKitDebug
= debugFlags
;
94 // Check for the log synchronous bit set in io
95 if (gIOKitDebug
& kIOLogSynchronous
)
99 // Have to start IOKit environment before we attempt to start
100 // the C++ runtime environment. At some stage we have to clean up
101 // the initialisation path so that OS C++ can initialise independantly
102 // of iokit basic service initialisation, or better we have IOLib stuff
103 // initialise as basic OS services.
109 * Declare the fake kmod_info structs for built-in components
110 * that must be tracked as independent units for dependencies.
112 fakeKmods
= OSDynamicCast(OSDictionary
,
113 OSUnserialize(gIOKernelKmods
, &errorString
));
117 panic("Kernel kmod list syntax error: %s\n",
118 errorString
->getCStringNoCopy());
119 errorString
->release();
121 panic("Error loading kernel kmod list.\n");
125 kmodIter
= OSCollectionIterator::withCollection(fakeKmods
);
127 panic("Can't declare in-kernel kmods.\n");
129 while ((kmodName
= OSDynamicCast(OSString
, kmodIter
->getNextObject()))) {
131 OSString
* kmodVersion
= OSDynamicCast(OSString
,
132 fakeKmods
->getObject(kmodName
));
134 panic("Can't declare in-kernel kmod; \"%s\" has "
135 "an invalid version.\n",
136 kmodName
->getCStringNoCopy());
139 // empty version strings get replaced with current kernel version
140 const char *vers
= (strlen(kmodVersion
->getCStringNoCopy())
141 ? kmodVersion
->getCStringNoCopy()
144 if (KERN_SUCCESS
!= kmod_create_fake(kmodName
->getCStringNoCopy(), vers
)) {
145 panic("Failure declaring in-kernel kmod \"%s\".\n",
146 kmodName
->getCStringNoCopy());
151 fakeKmods
->release();
155 root
= IORegistryEntry::initialize();
157 IOService::initialize();
158 IOCatalogue::initialize();
159 IOUserClient::initialize();
160 IOMemoryDescriptor::initialize();
162 // Initializes IOPMinformeeList class-wide shared lock
163 IOPMinformeeList::getSharedRecursiveLock();
165 obj
= OSString::withCString( version
);
168 root
->setProperty( kIOKitBuildVersionKey
, obj
);
171 obj
= IOKitDiagnostics::diagnostics();
173 root
->setProperty( kIOKitDiagnosticsKey
, obj
);
177 rootNub
= new IOPlatformExpertDevice
;
179 if( rootNub
&& rootNub
->initWithArgs( p1
, p2
, p3
, p4
)) {
180 rootNub
->attach( 0 );
182 /* Enter into the catalogue the drivers
185 gIOCatalogue
->recordStartupExtensions();
187 rootNub
->registerService();