2 * Copyright (c) 1998-2000 Apple Computer, Inc. All rights reserved.
4 * @APPLE_LICENSE_OSREFERENCE_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
10 * License may not be used to create, or enable the creation or
11 * redistribution of, unlawful or unlicensed copies of an Apple operating
12 * system, or to circumvent, violate, or enable the circumvention or
13 * violation of, any terms of an Apple operating system software license
16 * Please obtain a copy of the License at
17 * http://www.opensource.apple.com/apsl/ and read it before using this
20 * The Original Code and all software distributed under the License are
21 * distributed on an 'AS IS' basis, WITHOUT WARRANTY OF ANY KIND, EITHER
22 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
23 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
24 * FITNESS FOR A PARTICULAR PURPOSE, QUIET ENJOYMENT OR NON-INFRINGEMENT.
25 * Please see the License for the specific language governing rights and
26 * limitations under the License.
28 * @APPLE_LICENSE_OSREFERENCE_HEADER_END@
31 * Copyright (c) 1998 Apple Computer, Inc. All rights reserved.
34 * 23 Nov 98 sdouglas created.
37 #include <IOKit/system.h>
39 #include <pexpert/pexpert.h>
42 #include <libkern/c++/OSContainers.h>
43 #include <IOKit/IOLib.h>
44 #include <IOKit/IODeviceTreeSupport.h>
45 #include <IOKit/IODeviceMemory.h>
46 #include <IOKit/IOPlatformExpert.h>
48 #include <IOKit/pci/IOPCIDevice.h>
50 #include <IOKit/platform/AppleMacIO.h>
52 #include <IOKit/ppc/IODBDMA.h>
54 #include <IOKit/assert.h>
56 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
58 #define super IOService
60 OSDefineMetaClassAndAbstractStructors(AppleMacIO
, IOService
);
61 OSMetaClassDefineReservedUnused(AppleMacIO
, 0);
62 OSMetaClassDefineReservedUnused(AppleMacIO
, 1);
63 OSMetaClassDefineReservedUnused(AppleMacIO
, 2);
64 OSMetaClassDefineReservedUnused(AppleMacIO
, 3);
66 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
68 bool AppleMacIO::start( IOService
* provider
)
70 IOPCIDevice
*pciNub
= (IOPCIDevice
*)provider
;
72 if( !super::start( provider
))
75 // Make sure memory space is on.
76 pciNub
->setMemoryEnable(true);
79 fMemory
= provider
->mapDeviceMemoryWithIndex( 0 );
81 IOLog("%s: unexpected ranges\n", getName());
83 IOLog("Warning: AppleMacIO self test fails\n");
84 PMinit(); // initialize for power management
85 temporaryPowerClampOn(); // hold power on till we get children
90 IOService
* AppleMacIO::createNub( IORegistryEntry
* from
)
94 nub
= new AppleMacIODevice
;
96 if( nub
&& !nub
->init( from
, gIODTPlane
)) {
104 void AppleMacIO::processNub(IOService
* /*nub*/)
108 const char * AppleMacIO::deleteList ( void )
110 return( "('sd', 'st', 'disk', 'tape', 'pram', 'rtc', 'mouse')" );
113 const char * AppleMacIO::excludeList( void )
118 void AppleMacIO::publishBelow( IORegistryEntry
* root
)
120 OSCollectionIterator
* kids
;
121 IORegistryEntry
* next
;
125 kids
= IODTFindMatchingEntries( root
, kIODTRecursive
, deleteList() );
127 while( (next
= (IORegistryEntry
*)kids
->getNextObject())) {
128 next
->detachAll( gIODTPlane
);
133 // publish everything below, minus excludeList
134 kids
= IODTFindMatchingEntries( root
, kIODTRecursive
| kIODTExclusive
,
137 while( (next
= (IORegistryEntry
*)kids
->getNextObject())) {
139 if( 0 == (nub
= createNub( next
)))
146 nub
->registerService();
152 bool AppleMacIO::compareNubName( const IOService
* nub
,
153 OSString
* name
, OSString
** matched
) const
155 return( IODTCompareNubName( nub
, name
, matched
)
156 || nub
->IORegistryEntry::compareName( name
, matched
) );
159 IOReturn
AppleMacIO::getNubResources( IOService
* nub
)
161 if( nub
->getDeviceMemory())
162 return( kIOReturnSuccess
);
164 IODTResolveAddressing( nub
, "reg", fNub
->getDeviceMemoryWithIndex(0) );
166 return( kIOReturnSuccess
);
169 bool AppleMacIO::selfTest( void )
171 IODBDMADescriptor
*dmaDescriptors
;
172 UInt32 dmaDescriptorsPhys
;
175 IODBDMADescriptor
*dmaDesc
;
176 volatile IODBDMAChannelRegisters
*ioBaseDMA
;
178 enum { kTestChannel
= 0x8000 };
180 ioBaseDMA
= (volatile IODBDMAChannelRegisters
*)
181 (((UInt32
)fMemory
->getVirtualAddress())
185 dmaDescriptors
= (IODBDMADescriptor
*)IOMallocContiguous(page_size
, 1, & dmaDescriptorsPhys
);
189 if ( (UInt32
)dmaDescriptors
& (page_size
- 1) ) {
190 IOLog("AppleMacIO::%s() - DMA Descriptor memory not page aligned!!", __FUNCTION__
);
194 bzero( dmaDescriptors
, page_size
);
196 IODBDMAReset( ioBaseDMA
);
198 dmaDesc
= dmaDescriptors
;
200 IOMakeDBDMADescriptor( dmaDesc
,
211 IOMakeDBDMADescriptorDep( dmaDesc
,
218 dmaDescriptorsPhys
+16*sizeof(IODBDMADescriptor
),
223 IOMakeDBDMADescriptor( dmaDesc
,
233 for ( i
= 0; (!ok
) && (i
< 3); i
++ )
235 dmaDescriptors
[16].operation
= 0;
237 IOSetDBDMACommandPtr( ioBaseDMA
, dmaDescriptorsPhys
);
238 IODBDMAContinue( ioBaseDMA
);
242 status
= IOGetDBDMAChannelStatus( ioBaseDMA
);
244 if ( ((status
& kdbdmaActive
) == 0)
245 && ((status
& kdbdmaDead
) == 0)
246 && (OSReadSwapInt32( &dmaDescriptors
[16].operation
, 0 ) == 0x12345678 ))
250 IODBDMAReset( ioBaseDMA
);
255 IOFreeContiguous(dmaDescriptors
, page_size
);
261 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
264 #define super IOService
266 OSDefineMetaClassAndStructors(AppleMacIODevice
, IOService
);
267 OSMetaClassDefineReservedUnused(AppleMacIODevice
, 0);
268 OSMetaClassDefineReservedUnused(AppleMacIODevice
, 1);
269 OSMetaClassDefineReservedUnused(AppleMacIODevice
, 2);
270 OSMetaClassDefineReservedUnused(AppleMacIODevice
, 3);
272 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
274 bool AppleMacIODevice::compareName( OSString
* name
,
275 OSString
** matched
) const
277 return (IODTCompareNubName(this, name
, matched
) ||
278 IORegistryEntry::compareName(name
, matched
));
281 IOService
* AppleMacIODevice::matchLocation( IOService
* /* client */ )
286 IOReturn
AppleMacIODevice::getResources( void )
288 IOService
*macIO
= this;
290 if (getDeviceMemory() != 0) return kIOReturnSuccess
;
292 while (macIO
&& ((macIO
= macIO
->getProvider()) != 0))
293 if (strcmp("mac-io", macIO
->getName()) == 0) break;
295 if (macIO
== 0) return kIOReturnError
;
297 IODTResolveAddressing(this, "reg", macIO
->getDeviceMemoryWithIndex(0));
299 return kIOReturnSuccess
;