]> git.saurik.com Git - apple/xnu.git/blob - iokit/Drivers/platform/drvAppleNMI/AppleNMI.cpp
c3e51b3198b2d49272323a2b922dca9773f6546a
[apple/xnu.git] / iokit / Drivers / platform / drvAppleNMI / AppleNMI.cpp
1 /*
2 * Copyright (c) 1998-2000 Apple Computer, Inc. All rights reserved.
3 *
4 * @APPLE_LICENSE_HEADER_START@
5 *
6 * The contents of this file constitute Original Code as defined in and
7 * are subject to the Apple Public Source License Version 1.1 (the
8 * "License"). You may not use this file except in compliance with the
9 * License. Please obtain a copy of the License at
10 * http://www.apple.com/publicsource and read it before using this file.
11 *
12 * This Original Code and all software distributed under the License are
13 * distributed on an "AS IS" basis, WITHOUT WARRANTY OF ANY KIND, EITHER
14 * EXPRESS OR IMPLIED, AND APPLE HEREBY DISCLAIMS ALL SUCH WARRANTIES,
15 * INCLUDING WITHOUT LIMITATION, ANY WARRANTIES OF MERCHANTABILITY,
16 * FITNESS FOR A PARTICULAR PURPOSE OR NON-INFRINGEMENT. Please see the
17 * License for the specific language governing rights and limitations
18 * under the License.
19 *
20 * @APPLE_LICENSE_HEADER_END@
21 */
22 /*
23 * Copyright (c) 1998-2003 Apple Computer, Inc. All rights reserved.
24 *
25 * DRI: Josh de Cesare
26 *
27 */
28
29 #include <IOKit/IOTypes.h>
30 #include <IOKit/IOLib.h>
31 #include <IOKit/pwr_mgt/RootDomain.h>
32
33 #include <IOKit/platform/AppleNMI.h>
34
35 extern "C" {
36 #include <pexpert/pexpert.h>
37 }
38
39 bool RootRegistered( OSObject * us, void *, IOService * yourDevice );
40
41 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
42
43 #define super IOService
44
45 OSDefineMetaClassAndStructors(AppleNMI, IOService);
46 OSMetaClassDefineReservedUnused(AppleNMI, 0);
47 OSMetaClassDefineReservedUnused(AppleNMI, 1);
48 OSMetaClassDefineReservedUnused(AppleNMI, 2);
49 OSMetaClassDefineReservedUnused(AppleNMI, 3);
50
51 /* * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * */
52
53 bool AppleNMI::start(IOService *provider)
54 {
55 if (!super::start(provider)) return false;
56
57 enable_debugger = FALSE;
58 mask_NMI = FALSE;
59
60 if (provider->getProperty("enable_debugger"))
61 enable_debugger = TRUE; // Flag to automatically jump to debugger at NMI press
62
63 if (provider->getProperty("mask_NMI"))
64 mask_NMI = TRUE; // Flag to mask/unmask NMI @ sleep/wake
65
66 // Get notified when Root Domain registers
67 addNotification( gIOPublishNotification, serviceMatching("IOPMrootDomain"), (IOServiceNotificationHandler)RootRegistered, this, 0 );
68
69 // Register the interrupt.
70 IOInterruptAction handler = OSMemberFunctionCast(IOInterruptAction,
71 this, &AppleNMI::handleInterrupt);
72 provider->registerInterrupt(0, this, handler, 0);
73 provider->enableInterrupt(0);
74
75 return true;
76 }
77
78 // **********************************************************************************
79 // The Root Power Domain has registered, so now we register as an interested driver
80 // so we know when the system is going to sleep or wake
81 // **********************************************************************************
82 bool RootRegistered( OSObject * us, void *, IOService * yourDevice )
83 {
84 if ( yourDevice != NULL ) {
85 ((AppleNMI *)us)->rootDomain = yourDevice;
86 ((IOPMrootDomain *)yourDevice)->registerInterestedDriver((IOService *) us);
87 }
88
89 return true;
90 }
91
92 IOReturn AppleNMI::initNMI(IOInterruptController *parentController, OSData *parentSource)
93 {
94 return kIOReturnSuccess;
95 }
96
97 IOReturn AppleNMI::handleInterrupt(void * /*refCon*/, IOService * /*nub*/, int /*source*/)
98 {
99 if(enable_debugger == TRUE)
100 Debugger("NMI"); // This is a direct call to the Debugger
101 else
102 PE_enter_debugger("NMI"); // This is a indirect call the Debugger that is dependent on the debug flag
103
104 return kIOReturnSuccess;
105 }
106
107 //*********************************************************************************
108 // powerStateWillChangeTo
109 //
110 // We are notified here of power changes in the root domain. The root domain
111 // cannot actually turn itself on and off, but it notifies us anyway.
112 //*********************************************************************************
113 IOReturn AppleNMI::powerStateWillChangeTo ( IOPMPowerFlags theFlags, unsigned long, IOService*)
114 {
115 volatile unsigned long *nmiIntSourceAddr;
116 unsigned long nmiIntSource;
117
118 if (mask_NMI == TRUE)
119 {
120 if ( ! (theFlags & IOPMPowerOn) )
121 {
122 // Mask NMI and change from edge to level whilst sleeping (copied directly from OS9 code)
123 nmiIntSourceAddr = (volatile unsigned long *)kExtInt9_NMIIntSource;
124 nmiIntSource = ml_phys_read((vm_address_t)nmiIntSourceAddr);
125 nmiIntSource |= kNMIIntLevelMask;
126 ml_phys_write((vm_address_t)nmiIntSourceAddr, nmiIntSource);
127 eieio();
128 nmiIntSource |= kNMIIntMask;
129 ml_phys_write((vm_address_t)nmiIntSourceAddr, nmiIntSource);
130 eieio();
131 }
132 else
133 {
134 // Unmask NMI and change back to edge (copied directly from OS9 code)
135 nmiIntSourceAddr = (volatile unsigned long *)kExtInt9_NMIIntSource;
136 nmiIntSource = ml_phys_read((vm_address_t)nmiIntSourceAddr);
137 nmiIntSource &= ~kNMIIntLevelMask;
138 ml_phys_write((vm_address_t)nmiIntSourceAddr, nmiIntSource);
139 eieio();
140 nmiIntSource &= ~kNMIIntMask;
141 ml_phys_write((vm_address_t)nmiIntSourceAddr, nmiIntSource);
142 eieio();
143 }
144 }
145
146 return IOPMAckImplied;
147 }