altos: Add power management APIs
[fw/altos] / src / kernel / ao_power.c
1 /*
2  * Copyright © 2016 Keith Packard <keithp@keithp.com>
3  *
4  * This program is free software; you can redistribute it and/or modify
5  * it under the terms of the GNU General Public License as published by
6  * the Free Software Foundation; version 2 of the License.
7  *
8  * This program is distributed in the hope that it will be useful, but
9  * WITHOUT ANY WARRANTY; without even the implied warranty of
10  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
11  * General Public License for more details.
12  *
13  * You should have received a copy of the GNU General Public License along
14  * with this program; if not, write to the Free Software Foundation, Inc.,
15  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
16  */
17
18 #include <ao.h>
19 #include <ao_power.h>
20
21 static struct ao_power  *head, *tail;
22
23 void
24 ao_power_register(struct ao_power *power)
25 {
26         if (power->registered)
27                 return;
28         power->registered = TRUE;
29         if (tail) {
30                 tail->next = power;
31                 power->prev = tail;
32                 tail = power;
33         } else {
34                 head = tail = power;
35         }
36 #ifdef AO_LED_POWER
37         ao_led_on(AO_LED_POWER);
38 #endif
39 }
40
41 void
42 ao_power_unregister(struct ao_power *power)
43 {
44         if (!power->registered)
45                 return;
46         power->registered = FALSE;
47         if (power->prev)
48                 power->prev->next = power->next;
49         else
50                 head = power->next;
51         if (power->next)
52                 power->next->prev = power->prev;
53         else
54                 tail = power->prev;
55 }
56
57 void
58 ao_power_suspend(void)
59 {
60         struct ao_power *p;
61
62 #ifdef AO_LED_POWER
63         ao_led_off(AO_LED_POWER);
64 #endif
65         for (p = tail; p; p = p->prev)
66                 p->suspend(p->arg);
67 }
68
69 void
70 ao_power_resume(void)
71 {
72         struct ao_power *p;
73
74         for (p = head; p; p = p->next)
75                 p->resume(p->arg);
76 #ifdef AO_LED_POWER
77         ao_led_on(AO_LED_POWER);
78 #endif
79 }
80