1 | /******************************************************************************
|
---|
2 | * apm.c - Functions to interface with the legacy APM driver, and suspend / resume functions.
|
---|
3 | *
|
---|
4 | * Copyright (c) 2011 thi.guten Software Development
|
---|
5 | * Copyright (c) 2011 Mensys B.V.
|
---|
6 | * Portions copyright (c) 2013 David Azarewicz
|
---|
7 | *
|
---|
8 | * Authors: Christian Mueller, Markus Thielen
|
---|
9 | *
|
---|
10 | * Parts copied from/inspired by the Linux AHCI driver;
|
---|
11 | * those parts are (c) Linux AHCI/ATA maintainers
|
---|
12 | *
|
---|
13 | * This program is free software; you can redistribute it and/or modify
|
---|
14 | * it under the terms of the GNU General Public License as published by
|
---|
15 | * the Free Software Foundation; either version 2 of the License, or
|
---|
16 | * (at your option) any later version.
|
---|
17 | *
|
---|
18 | * This program is distributed in the hope that it will be useful,
|
---|
19 | * but WITHOUT ANY WARRANTY; without even the implied warranty of
|
---|
20 | * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
---|
21 | * GNU General Public License for more details.
|
---|
22 | *
|
---|
23 | * You should have received a copy of the GNU General Public License
|
---|
24 | * along with this program; if not, write to the Free Software
|
---|
25 | * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
|
---|
26 | */
|
---|
27 |
|
---|
28 | #include "os2ahci.h"
|
---|
29 |
|
---|
30 | /* Legacy APM support is not needed on eCS systems with ACPI and is more
|
---|
31 | * reliable without it enabled.
|
---|
32 | */
|
---|
33 | #ifdef LEGACY_APM
|
---|
34 |
|
---|
35 | #include <apmcalls.h>
|
---|
36 | USHORT _far _cdecl apm_event (APMEVENT _far *evt);
|
---|
37 |
|
---|
38 | /******************************************************************************
|
---|
39 | * Connect to APM driver and register for power state change events.
|
---|
40 | */
|
---|
41 | void apm_init(void)
|
---|
42 | {
|
---|
43 | USHORT rc;
|
---|
44 |
|
---|
45 | /* connect to APM driver */
|
---|
46 | if ((rc = APMAttach()) != 0) {
|
---|
47 | dprintf("couldn't connect to APM driver (rc = %d)\n", rc);
|
---|
48 | return;
|
---|
49 | }
|
---|
50 |
|
---|
51 | /* register for suspend/resume events */
|
---|
52 | if ((rc = APMRegister(apm_event, APM_NOTIFYSETPWR |
|
---|
53 | APM_NOTIFYNORMRESUME |
|
---|
54 | APM_NOTIFYCRITRESUME, 0)) != 0) {
|
---|
55 | dprintf("couldn't register for power event notificatins (rc = %d)\n", rc);
|
---|
56 | return;
|
---|
57 | }
|
---|
58 | }
|
---|
59 |
|
---|
60 | /******************************************************************************
|
---|
61 | * APM event handler
|
---|
62 | */
|
---|
63 | USHORT _far _cdecl apm_event(APMEVENT _far *evt)
|
---|
64 | {
|
---|
65 | USHORT msg = (USHORT) evt->ulParm1;
|
---|
66 |
|
---|
67 | dprintf("received APM event: 0x%lx/0x%lx\n");
|
---|
68 |
|
---|
69 | switch (msg) {
|
---|
70 |
|
---|
71 | case APM_SETPWRSTATE:
|
---|
72 | if (evt->ulParm2 >> 16 != APM_PWRSTATEREADY) {
|
---|
73 | /* we're suspending */
|
---|
74 | suspend();
|
---|
75 | }
|
---|
76 | break;
|
---|
77 |
|
---|
78 | case APM_NORMRESUMEEVENT:
|
---|
79 | case APM_CRITRESUMEEVENT:
|
---|
80 | /* we're resuming */
|
---|
81 | resume();
|
---|
82 | break;
|
---|
83 |
|
---|
84 | default:
|
---|
85 | dprintf("unknown APM event; ignoring...\n");
|
---|
86 | break;
|
---|
87 | }
|
---|
88 |
|
---|
89 | return(0);
|
---|
90 | }
|
---|
91 | #endif /* LEGACY_APM */
|
---|
92 |
|
---|
93 | /******************************************************************************
|
---|
94 | * Suspend handler. In a nutshell, it'll turn off interrupts and flush all
|
---|
95 | * write caches.
|
---|
96 | */
|
---|
97 | void suspend(void)
|
---|
98 | {
|
---|
99 | int a;
|
---|
100 | int p;
|
---|
101 | int d;
|
---|
102 | TIMER Timer;
|
---|
103 |
|
---|
104 | if (suspended) return;
|
---|
105 | dprintf("suspend()\n");
|
---|
106 |
|
---|
107 | /* restart all ports with interrupts disabled */
|
---|
108 | for (a = 0; a < ad_info_cnt; a++) {
|
---|
109 | AD_INFO *ai = ad_infos + a;
|
---|
110 |
|
---|
111 | lock_adapter(ai);
|
---|
112 | for (p = 0; p <= ai->port_max; p++) {
|
---|
113 | /* wait until all active commands have completed on this port */
|
---|
114 | timer_init(&Timer, 250);
|
---|
115 | while (ahci_port_busy(ai, p)) {
|
---|
116 | if (timer_check_and_block(&Timer)) break;
|
---|
117 | }
|
---|
118 |
|
---|
119 | /* restart port with interrupts disabled */
|
---|
120 | ahci_stop_port(ai, p);
|
---|
121 | ahci_start_port(ai, p, 0);
|
---|
122 |
|
---|
123 | /* flush cache on all attached devices */
|
---|
124 | for (d = 0; d <= ai->ports[p].dev_max; d++) {
|
---|
125 | if (ai->ports[p].devs[d].present) {
|
---|
126 | ahci_flush_cache(ai, p, d);
|
---|
127 | }
|
---|
128 | }
|
---|
129 | }
|
---|
130 |
|
---|
131 | /* AHCI spec rev1.1 section 8.3.3:
|
---|
132 | * Software must disable interrupts prior to requesting a transition of the HBA to D3 state.
|
---|
133 | */
|
---|
134 | writel(ai->mmio + HOST_CTL, readl(ai->mmio + HOST_CTL) & ~HOST_IRQ_EN);
|
---|
135 | readl(ai->mmio + HOST_CTL); /* flush */
|
---|
136 |
|
---|
137 | /* TODO: put the device into the D3 state */
|
---|
138 | }
|
---|
139 |
|
---|
140 | /* reset init_complete so that we can process IORBs without interrupts */
|
---|
141 | init_complete = 0;
|
---|
142 |
|
---|
143 | suspended = 1;
|
---|
144 | dprintf("suspend() finished\n");
|
---|
145 | }
|
---|
146 |
|
---|
147 | /******************************************************************************
|
---|
148 | * Resume handler. All ports are restarted with interrupts enabled using
|
---|
149 | * the same function as the IOCM_COMPLETE_INIT handler does.
|
---|
150 | */
|
---|
151 | void resume(void)
|
---|
152 | {
|
---|
153 | int a;
|
---|
154 |
|
---|
155 | if (!suspended) return;
|
---|
156 | dprintf("resume()\n");
|
---|
157 |
|
---|
158 | for (a = 0; a < ad_info_cnt; a++) {
|
---|
159 | AD_INFO *ai = ad_infos + a;
|
---|
160 |
|
---|
161 | /* TODO: put the device into the D0 state */
|
---|
162 |
|
---|
163 | //ahci_reset_controller(ai);
|
---|
164 |
|
---|
165 | /* Complete initialization of this adapter; this will restart the ports
|
---|
166 | * with interrupts enabled and take care of whatever else needs to be
|
---|
167 | * done to get the adapter and its ports up and running.
|
---|
168 | */
|
---|
169 | ahci_complete_init(ai);
|
---|
170 | }
|
---|
171 |
|
---|
172 | /* tell the driver we're again fully operational */
|
---|
173 | init_complete = 1;
|
---|
174 |
|
---|
175 | /* unlock all adapters now that we have set the init_complete flag */
|
---|
176 | for (a = 0; a < ad_info_cnt; a++) {
|
---|
177 | AD_INFO *ai = ad_infos + a;
|
---|
178 | unlock_adapter(ai);
|
---|
179 | }
|
---|
180 |
|
---|
181 | suspended = 0;
|
---|
182 |
|
---|
183 | /* restart engine to resume IORB processing */
|
---|
184 | /* The resume_sleep_flag and probably rearming the ctx hook is a temporary hack
|
---|
185 | * to make resume kind of work when I/O operations are outstanding or started
|
---|
186 | * during the suspend operation. This behavior may change with future versions
|
---|
187 | * of the ACPI software which will make this hack unnecessary.
|
---|
188 | */
|
---|
189 | resume_sleep_flag = 5000;
|
---|
190 | DevHelp_ArmCtxHook(0, engine_ctxhook_h);
|
---|
191 |
|
---|
192 | dprintf("resume() finished\n");
|
---|
193 | }
|
---|
194 |
|
---|
195 | /******************************************************************************
|
---|
196 | * This is the kernel exit handler for panics and traps.
|
---|
197 | * Assume the system is trashed and do the absolute minimum necessary
|
---|
198 | * to put the adapters into a state so that the BIOS can operate the
|
---|
199 | * adapters. We never need to recover from this as the system will be rebooted.
|
---|
200 | */
|
---|
201 | void shutdown_driver(void)
|
---|
202 | {
|
---|
203 | int a;
|
---|
204 | int p;
|
---|
205 | u16 i;
|
---|
206 | u32 tmp;
|
---|
207 | //int d;
|
---|
208 |
|
---|
209 | dprintf("shutdown_driver() enter\n");
|
---|
210 |
|
---|
211 | for (a = 0; a < ad_info_cnt; a++) {
|
---|
212 | AD_INFO *ai = ad_infos + a;
|
---|
213 |
|
---|
214 | /* Try to be nice. Wait 50ms for adapter to go not busy.
|
---|
215 | * If it doesn't go not busy in that time, too bad. Stop it anyway.
|
---|
216 | */
|
---|
217 | for (i=0; i<50000 && ai->busy; i++) udelay(1000);
|
---|
218 |
|
---|
219 | for (p = 0; p <= ai->port_max; p++) {
|
---|
220 | u8 _far *port_mmio = port_base(ai, p);
|
---|
221 |
|
---|
222 | /* Wait up to 50ms for port to go not busy. Again stop it
|
---|
223 | * anyway if it doesn't go not busy in that time.
|
---|
224 | */
|
---|
225 | for (i=0; i<50000 && ahci_port_busy(ai, p); i++) udelay(1000);
|
---|
226 |
|
---|
227 | /* stop port */
|
---|
228 | writel(port_mmio + PORT_IRQ_MASK, 0); /* disable port interrupts */
|
---|
229 | writel(port_mmio + PORT_CMD, readl(port_mmio + PORT_CMD) & ~PORT_CMD_FIS_RX); /* disable FIS reception */
|
---|
230 | while (readl(port_mmio + PORT_CMD) & PORT_CMD_FIS_ON); /* wait for it to stop */
|
---|
231 | writel(port_mmio + PORT_CMD, readl(port_mmio + PORT_CMD) & ~PORT_CMD_START); /* set port to idle */
|
---|
232 | while (readl(port_mmio + PORT_CMD) & PORT_CMD_LIST_ON); /* wait for it to stop */
|
---|
233 |
|
---|
234 | /* clear any pending port IRQs */
|
---|
235 | tmp = readl(port_mmio + PORT_IRQ_STAT);
|
---|
236 | if (tmp) writel(port_mmio + PORT_IRQ_STAT, tmp);
|
---|
237 | writel(ai->mmio + HOST_IRQ_STAT, 1UL << p);
|
---|
238 |
|
---|
239 | /* reset PxSACT register (tagged command queues, not reset by COMRESET) */
|
---|
240 | writel(port_mmio + PORT_SCR_ACT, 0);
|
---|
241 | readl(port_mmio + PORT_SCR_ACT); /* flush */
|
---|
242 |
|
---|
243 | #if 0
|
---|
244 | /* cannot flush caches this way */
|
---|
245 | ahci_start_port(ai, p, 0);
|
---|
246 |
|
---|
247 | /* flush cache on all attached devices */
|
---|
248 | for (d = 0; d <= ai->ports[p].dev_max; d++) {
|
---|
249 | if (ai->ports[p].devs[d].present) {
|
---|
250 | ahci_flush_cache(ai, p, d);
|
---|
251 | }
|
---|
252 | }
|
---|
253 | #endif
|
---|
254 | }
|
---|
255 | }
|
---|
256 |
|
---|
257 | init_complete = 0;
|
---|
258 |
|
---|
259 | /* restore BIOS configuration for each adapter */
|
---|
260 | for (a = 0; a < ad_info_cnt; a++) {
|
---|
261 | ahci_restore_bios_config(ad_infos + a);
|
---|
262 | }
|
---|
263 |
|
---|
264 | dprintf("shutdown_driver() finished\n");
|
---|
265 | }
|
---|
266 |
|
---|