Home | History | Annotate | Line # | Download | only in kern
kern_pmf.c revision 1.3
      1  1.3   xtraeme /* $NetBSD: kern_pmf.c,v 1.3 2007/12/10 23:50:25 xtraeme Exp $ */
      2  1.2  jmcneill 
      3  1.2  jmcneill /*-
      4  1.2  jmcneill  * Copyright (c) 2007 Jared D. McNeill <jmcneill (at) invisible.ca>
      5  1.2  jmcneill  * All rights reserved.
      6  1.2  jmcneill  *
      7  1.2  jmcneill  * Redistribution and use in source and binary forms, with or without
      8  1.2  jmcneill  * modification, are permitted provided that the following conditions
      9  1.2  jmcneill  * are met:
     10  1.2  jmcneill  * 1. Redistributions of source code must retain the above copyright
     11  1.2  jmcneill  *    notice, this list of conditions and the following disclaimer.
     12  1.2  jmcneill  * 2. Redistributions in binary form must reproduce the above copyright
     13  1.2  jmcneill  *    notice, this list of conditions and the following disclaimer in the
     14  1.2  jmcneill  *    documentation and/or other materials provided with the distribution.
     15  1.2  jmcneill  * 3. All advertising materials mentioning features or use of this software
     16  1.2  jmcneill  *    must display the following acknowledgement:
     17  1.2  jmcneill  *        This product includes software developed by Jared D. McNeill.
     18  1.2  jmcneill  * 4. Neither the name of The NetBSD Foundation nor the names of its
     19  1.2  jmcneill  *    contributors may be used to endorse or promote products derived
     20  1.2  jmcneill  *    from this software without specific prior written permission.
     21  1.2  jmcneill  *
     22  1.2  jmcneill  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     23  1.2  jmcneill  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     24  1.2  jmcneill  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     25  1.2  jmcneill  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     26  1.2  jmcneill  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     27  1.2  jmcneill  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     28  1.2  jmcneill  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     29  1.2  jmcneill  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     30  1.2  jmcneill  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     31  1.2  jmcneill  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     32  1.2  jmcneill  * POSSIBILITY OF SUCH DAMAGE.
     33  1.2  jmcneill  */
     34  1.2  jmcneill 
     35  1.2  jmcneill #include <sys/cdefs.h>
     36  1.3   xtraeme __KERNEL_RCSID(0, "$NetBSD: kern_pmf.c,v 1.3 2007/12/10 23:50:25 xtraeme Exp $");
     37  1.2  jmcneill 
     38  1.2  jmcneill #include <sys/types.h>
     39  1.2  jmcneill #include <sys/param.h>
     40  1.2  jmcneill #include <sys/malloc.h>
     41  1.2  jmcneill #include <sys/buf.h>
     42  1.2  jmcneill #include <sys/callout.h>
     43  1.2  jmcneill #include <sys/kernel.h>
     44  1.2  jmcneill #include <sys/device.h>
     45  1.2  jmcneill #include <sys/pmf.h>
     46  1.2  jmcneill #include <sys/queue.h>
     47  1.2  jmcneill #include <sys/kmem.h>
     48  1.2  jmcneill #include <sys/syscallargs.h> /* for sys_sync */
     49  1.2  jmcneill #include <sys/workqueue.h>
     50  1.2  jmcneill #include <prop/proplib.h>
     51  1.2  jmcneill 
     52  1.2  jmcneill #ifdef PMF_DEBUG
     53  1.2  jmcneill int pmf_debug_event;
     54  1.2  jmcneill int pmf_debug_idle;
     55  1.2  jmcneill int pmf_debug_transition;
     56  1.2  jmcneill 
     57  1.2  jmcneill #define	PMF_EVENT_PRINTF(x)		if (pmf_debug_event) printf x
     58  1.2  jmcneill #define	PMF_IDLE_PRINTF(x)		if (pmf_debug_idle) printf x
     59  1.2  jmcneill #define	PMF_TRANSITION_PRINTF(x)	if (pmf_debug_transition) printf x
     60  1.2  jmcneill #define	PMF_TRANSITION_PRINTF2(y,x)	if (pmf_debug_transition>y) printf x
     61  1.2  jmcneill #else
     62  1.2  jmcneill #define	PMF_EVENT_PRINTF(x)		do { } while (0)
     63  1.2  jmcneill #define	PMF_IDLE_PRINTF(x)		do { } while (0)
     64  1.2  jmcneill #define	PMF_TRANSITION_PRINTF(x)	do { } while (0)
     65  1.2  jmcneill #define	PMF_TRANSITION_PRINTF2(y,x)	do { } while (0)
     66  1.2  jmcneill #endif
     67  1.2  jmcneill 
     68  1.2  jmcneill /* #define PMF_DEBUG */
     69  1.2  jmcneill 
     70  1.2  jmcneill MALLOC_DEFINE(M_PMF, "pmf", "device pmf messaging memory");
     71  1.2  jmcneill 
     72  1.2  jmcneill static prop_dictionary_t pmf_platform = NULL;
     73  1.2  jmcneill static struct workqueue *pmf_event_workqueue;
     74  1.2  jmcneill 
     75  1.2  jmcneill typedef struct pmf_event_handler {
     76  1.2  jmcneill 	TAILQ_ENTRY(pmf_event_handler) pmf_link;
     77  1.2  jmcneill 	pmf_generic_event_t pmf_event;
     78  1.2  jmcneill 	void (*pmf_handler)(device_t);
     79  1.2  jmcneill 	device_t pmf_device;
     80  1.2  jmcneill 	bool pmf_global;
     81  1.2  jmcneill } pmf_event_handler_t;
     82  1.2  jmcneill 
     83  1.2  jmcneill static TAILQ_HEAD(, pmf_event_handler) pmf_all_events =
     84  1.2  jmcneill     TAILQ_HEAD_INITIALIZER(pmf_all_events);
     85  1.2  jmcneill 
     86  1.2  jmcneill typedef struct pmf_event_workitem {
     87  1.2  jmcneill 	struct work		pew_work;
     88  1.2  jmcneill 	pmf_generic_event_t	pew_event;
     89  1.2  jmcneill 	device_t		pew_device;
     90  1.2  jmcneill } pmf_event_workitem_t;
     91  1.2  jmcneill 
     92  1.2  jmcneill static void
     93  1.2  jmcneill pmf_event_worker(struct work *wk, void *dummy)
     94  1.2  jmcneill {
     95  1.2  jmcneill 	pmf_event_workitem_t *pew;
     96  1.2  jmcneill 	pmf_event_handler_t *event;
     97  1.2  jmcneill 
     98  1.2  jmcneill 	pew = (void *)wk;
     99  1.2  jmcneill 	KASSERT(wk == &pew->pew_work);
    100  1.2  jmcneill 	KASSERT(pew != NULL);
    101  1.2  jmcneill 
    102  1.2  jmcneill 	TAILQ_FOREACH(event, &pmf_all_events, pmf_link) {
    103  1.2  jmcneill 		if (event->pmf_event != pew->pew_event)
    104  1.2  jmcneill 			continue;
    105  1.2  jmcneill 		if (event->pmf_device != pew->pew_device || event->pmf_global)
    106  1.2  jmcneill 			(*event->pmf_handler)(event->pmf_device);
    107  1.2  jmcneill 	}
    108  1.2  jmcneill 
    109  1.2  jmcneill 	kmem_free(pew, sizeof(pmf_event_workitem_t));
    110  1.2  jmcneill }
    111  1.2  jmcneill 
    112  1.2  jmcneill static bool
    113  1.2  jmcneill pmf_check_system_drivers(void)
    114  1.2  jmcneill {
    115  1.2  jmcneill 	device_t curdev;
    116  1.2  jmcneill 	bool unsupported_devs;
    117  1.2  jmcneill 
    118  1.2  jmcneill 	unsupported_devs = false;
    119  1.2  jmcneill 	TAILQ_FOREACH(curdev, &alldevs, dv_list) {
    120  1.2  jmcneill 		if (device_pmf_is_registered(curdev))
    121  1.2  jmcneill 			continue;
    122  1.2  jmcneill 		if (!unsupported_devs)
    123  1.2  jmcneill 			printf("Devices without power management support:");
    124  1.2  jmcneill 		printf(" %s", device_xname(curdev));
    125  1.2  jmcneill 		unsupported_devs = true;
    126  1.2  jmcneill 	}
    127  1.2  jmcneill 	if (unsupported_devs) {
    128  1.2  jmcneill 		printf("\n");
    129  1.2  jmcneill 		return false;
    130  1.2  jmcneill 	}
    131  1.2  jmcneill 	return true;
    132  1.2  jmcneill }
    133  1.2  jmcneill 
    134  1.2  jmcneill bool
    135  1.2  jmcneill pmf_system_resume(void)
    136  1.2  jmcneill {
    137  1.2  jmcneill 	int depth, maxdepth;
    138  1.2  jmcneill 	bool rv;
    139  1.2  jmcneill 	device_t curdev, parent;
    140  1.2  jmcneill 
    141  1.2  jmcneill 	if (!pmf_check_system_drivers())
    142  1.2  jmcneill 		return false;
    143  1.2  jmcneill 
    144  1.2  jmcneill 	maxdepth = 0;
    145  1.2  jmcneill 	TAILQ_FOREACH(curdev, &alldevs, dv_list) {
    146  1.2  jmcneill 		if (curdev->dv_depth > maxdepth)
    147  1.2  jmcneill 			maxdepth = curdev->dv_depth;
    148  1.2  jmcneill 	}
    149  1.2  jmcneill 	++maxdepth;
    150  1.2  jmcneill 
    151  1.2  jmcneill 	aprint_debug("Resuming devices:");
    152  1.2  jmcneill 	/* D0 handlers are run in order */
    153  1.2  jmcneill 	depth = 0;
    154  1.2  jmcneill 	rv = true;
    155  1.2  jmcneill 	for (depth = 0; depth < maxdepth; ++depth) {
    156  1.2  jmcneill 		TAILQ_FOREACH(curdev, &alldevs, dv_list) {
    157  1.2  jmcneill 			if (device_is_active(curdev) ||
    158  1.2  jmcneill 			    !device_is_enabled(curdev))
    159  1.2  jmcneill 				continue;
    160  1.2  jmcneill 			if (curdev->dv_depth != depth)
    161  1.2  jmcneill 				continue;
    162  1.2  jmcneill 			parent = device_parent(curdev);
    163  1.2  jmcneill 			if (parent != NULL &&
    164  1.2  jmcneill 			    !device_is_active(parent))
    165  1.2  jmcneill 				continue;
    166  1.2  jmcneill 
    167  1.2  jmcneill 			aprint_debug(" %s", device_xname(curdev));
    168  1.2  jmcneill 
    169  1.2  jmcneill 			if (!pmf_device_resume(curdev)) {
    170  1.2  jmcneill 				rv = false;
    171  1.2  jmcneill 				aprint_debug("(failed)");
    172  1.2  jmcneill 			}
    173  1.2  jmcneill 		}
    174  1.2  jmcneill 	}
    175  1.2  jmcneill 	aprint_debug(".\n");
    176  1.2  jmcneill 
    177  1.2  jmcneill 	return rv;
    178  1.2  jmcneill }
    179  1.2  jmcneill 
    180  1.2  jmcneill bool
    181  1.2  jmcneill pmf_system_suspend(void)
    182  1.2  jmcneill {
    183  1.2  jmcneill 	int depth, maxdepth;
    184  1.2  jmcneill 	device_t curdev;
    185  1.2  jmcneill 
    186  1.2  jmcneill 	if (!pmf_check_system_drivers())
    187  1.2  jmcneill 		return false;
    188  1.2  jmcneill 
    189  1.2  jmcneill 	/*
    190  1.2  jmcneill 	 * Flush buffers only if the shutdown didn't do so
    191  1.2  jmcneill 	 * already and if there was no panic.
    192  1.2  jmcneill 	 */
    193  1.2  jmcneill 	if (doing_shutdown == 0 && panicstr == NULL) {
    194  1.2  jmcneill 		printf("Flushing disk caches: ");
    195  1.2  jmcneill 		sys_sync(NULL, NULL, NULL);
    196  1.2  jmcneill 		if (buf_syncwait() != 0)
    197  1.2  jmcneill 			printf("giving up\n");
    198  1.2  jmcneill 		else
    199  1.2  jmcneill 			printf("done\n");
    200  1.2  jmcneill 	}
    201  1.2  jmcneill 
    202  1.2  jmcneill 	aprint_debug("Suspending devices:");
    203  1.2  jmcneill 
    204  1.2  jmcneill 	maxdepth = 0;
    205  1.2  jmcneill 	TAILQ_FOREACH(curdev, &alldevs, dv_list) {
    206  1.2  jmcneill 		if (curdev->dv_depth > maxdepth)
    207  1.2  jmcneill 			maxdepth = curdev->dv_depth;
    208  1.2  jmcneill 	}
    209  1.2  jmcneill 
    210  1.2  jmcneill 	for (depth = maxdepth; depth >= 0; --depth) {
    211  1.2  jmcneill 		TAILQ_FOREACH_REVERSE(curdev, &alldevs, devicelist, dv_list) {
    212  1.2  jmcneill 			if (curdev->dv_depth != depth)
    213  1.2  jmcneill 				continue;
    214  1.2  jmcneill 			if (!device_is_active(curdev))
    215  1.2  jmcneill 				continue;
    216  1.2  jmcneill 
    217  1.2  jmcneill 			aprint_debug(" %s", device_xname(curdev));
    218  1.2  jmcneill 
    219  1.2  jmcneill 			/* XXX joerg check return value and abort suspend */
    220  1.2  jmcneill 			if (!pmf_device_suspend(curdev))
    221  1.2  jmcneill 				aprint_debug("(failed)");
    222  1.2  jmcneill 		}
    223  1.2  jmcneill 	}
    224  1.2  jmcneill 
    225  1.2  jmcneill 	aprint_debug(".\n");
    226  1.2  jmcneill 
    227  1.2  jmcneill 	return true;
    228  1.2  jmcneill }
    229  1.2  jmcneill 
    230  1.2  jmcneill void
    231  1.2  jmcneill pmf_system_shutdown(void)
    232  1.2  jmcneill {
    233  1.2  jmcneill 	int depth, maxdepth;
    234  1.2  jmcneill 	device_t curdev;
    235  1.2  jmcneill 
    236  1.2  jmcneill 	if (!pmf_check_system_drivers())
    237  1.2  jmcneill 		delay(2000000);
    238  1.2  jmcneill 
    239  1.2  jmcneill 	aprint_debug("Shutting down devices:");
    240  1.2  jmcneill 
    241  1.2  jmcneill 	maxdepth = 0;
    242  1.2  jmcneill 	TAILQ_FOREACH(curdev, &alldevs, dv_list) {
    243  1.2  jmcneill 		if (curdev->dv_depth > maxdepth)
    244  1.2  jmcneill 			maxdepth = curdev->dv_depth;
    245  1.2  jmcneill 	}
    246  1.2  jmcneill 
    247  1.2  jmcneill 	for (depth = maxdepth; depth >= 0; --depth) {
    248  1.2  jmcneill 		TAILQ_FOREACH_REVERSE(curdev, &alldevs, devicelist, dv_list) {
    249  1.2  jmcneill 			if (curdev->dv_depth != depth)
    250  1.2  jmcneill 				continue;
    251  1.2  jmcneill 			if (!device_is_active(curdev))
    252  1.2  jmcneill 				continue;
    253  1.2  jmcneill 
    254  1.2  jmcneill 			aprint_debug(" %s", device_xname(curdev));
    255  1.2  jmcneill 
    256  1.2  jmcneill 			if (!device_pmf_is_registered(curdev))
    257  1.2  jmcneill 				continue;
    258  1.2  jmcneill 			if (!device_pmf_class_suspend(curdev)) {
    259  1.2  jmcneill 				aprint_debug("(failed)");
    260  1.2  jmcneill 				continue;
    261  1.2  jmcneill 			}
    262  1.2  jmcneill 			if (!device_pmf_driver_suspend(curdev)) {
    263  1.2  jmcneill 				aprint_debug("(failed)");
    264  1.2  jmcneill 				continue;
    265  1.2  jmcneill 			}
    266  1.2  jmcneill 		}
    267  1.2  jmcneill 	}
    268  1.2  jmcneill 
    269  1.2  jmcneill 	aprint_debug(".\n");
    270  1.2  jmcneill }
    271  1.2  jmcneill 
    272  1.2  jmcneill bool
    273  1.2  jmcneill pmf_set_platform(const char *key, const char *value)
    274  1.2  jmcneill {
    275  1.2  jmcneill 	if (pmf_platform == NULL)
    276  1.2  jmcneill 		pmf_platform = prop_dictionary_create();
    277  1.2  jmcneill 	if (pmf_platform == NULL)
    278  1.2  jmcneill 		return false;
    279  1.2  jmcneill 
    280  1.2  jmcneill 	return prop_dictionary_set_cstring(pmf_platform, key, value);
    281  1.2  jmcneill }
    282  1.2  jmcneill 
    283  1.2  jmcneill const char *
    284  1.2  jmcneill pmf_get_platform(const char *key)
    285  1.2  jmcneill {
    286  1.2  jmcneill 	const char *value;
    287  1.2  jmcneill 
    288  1.2  jmcneill 	if (pmf_platform == NULL)
    289  1.2  jmcneill 		return NULL;
    290  1.2  jmcneill 
    291  1.2  jmcneill 	if (!prop_dictionary_get_cstring_nocopy(pmf_platform, key, &value))
    292  1.2  jmcneill 		return NULL;
    293  1.2  jmcneill 
    294  1.2  jmcneill 	return value;
    295  1.2  jmcneill }
    296  1.2  jmcneill 
    297  1.2  jmcneill bool
    298  1.2  jmcneill pmf_device_register(device_t dev,
    299  1.2  jmcneill     bool (*suspend)(device_t), bool (*resume)(device_t))
    300  1.2  jmcneill {
    301  1.2  jmcneill 	device_pmf_driver_register(dev, suspend, resume);
    302  1.2  jmcneill 
    303  1.2  jmcneill 	if (!device_pmf_driver_child_register(dev)) {
    304  1.2  jmcneill 		device_pmf_driver_deregister(dev);
    305  1.2  jmcneill 		return false;
    306  1.2  jmcneill 	}
    307  1.2  jmcneill 
    308  1.2  jmcneill 	return true;
    309  1.2  jmcneill }
    310  1.2  jmcneill 
    311  1.2  jmcneill void
    312  1.2  jmcneill pmf_device_deregister(device_t dev)
    313  1.2  jmcneill {
    314  1.2  jmcneill 	device_pmf_class_deregister(dev);
    315  1.2  jmcneill 	device_pmf_bus_deregister(dev);
    316  1.2  jmcneill 	device_pmf_driver_deregister(dev);
    317  1.2  jmcneill }
    318  1.2  jmcneill 
    319  1.2  jmcneill bool
    320  1.2  jmcneill pmf_device_suspend(device_t dev)
    321  1.2  jmcneill {
    322  1.2  jmcneill 	PMF_TRANSITION_PRINTF(("%s: suspend enter\n", device_xname(dev)));
    323  1.2  jmcneill 	if (!device_pmf_is_registered(dev))
    324  1.2  jmcneill 		return false;
    325  1.2  jmcneill 	PMF_TRANSITION_PRINTF2(1, ("%s: class suspend\n", device_xname(dev)));
    326  1.2  jmcneill 	if (!device_pmf_class_suspend(dev))
    327  1.2  jmcneill 		return false;
    328  1.2  jmcneill 	PMF_TRANSITION_PRINTF2(1, ("%s: driver suspend\n", device_xname(dev)));
    329  1.2  jmcneill 	if (!device_pmf_driver_suspend(dev))
    330  1.2  jmcneill 		return false;
    331  1.2  jmcneill 	PMF_TRANSITION_PRINTF2(1, ("%s: bus suspend\n", device_xname(dev)));
    332  1.2  jmcneill 	if (!device_pmf_bus_suspend(dev))
    333  1.2  jmcneill 		return false;
    334  1.2  jmcneill 	PMF_TRANSITION_PRINTF(("%s: suspend exit\n", device_xname(dev)));
    335  1.2  jmcneill 	return true;
    336  1.2  jmcneill }
    337  1.2  jmcneill 
    338  1.2  jmcneill bool
    339  1.2  jmcneill pmf_device_resume(device_t dev)
    340  1.2  jmcneill {
    341  1.2  jmcneill 	PMF_TRANSITION_PRINTF(("%s: resume enter\n", device_xname(dev)));
    342  1.2  jmcneill 	if (!device_pmf_is_registered(dev))
    343  1.2  jmcneill 		return false;
    344  1.2  jmcneill 	PMF_TRANSITION_PRINTF2(1, ("%s: bus resume\n", device_xname(dev)));
    345  1.2  jmcneill 	if (!device_pmf_bus_resume(dev))
    346  1.2  jmcneill 		return false;
    347  1.2  jmcneill 	PMF_TRANSITION_PRINTF2(1, ("%s: driver resume\n", device_xname(dev)));
    348  1.2  jmcneill 	if (!device_pmf_driver_resume(dev))
    349  1.2  jmcneill 		return false;
    350  1.2  jmcneill 	PMF_TRANSITION_PRINTF2(1, ("%s: class resume\n", device_xname(dev)));
    351  1.2  jmcneill 	if (!device_pmf_class_resume(dev))
    352  1.2  jmcneill 		return false;
    353  1.2  jmcneill 	PMF_TRANSITION_PRINTF(("%s: resume exit\n", device_xname(dev)));
    354  1.2  jmcneill 	return true;
    355  1.2  jmcneill }
    356  1.2  jmcneill 
    357  1.2  jmcneill bool
    358  1.2  jmcneill pmf_device_recursive_suspend(device_t dv)
    359  1.2  jmcneill {
    360  1.2  jmcneill 	device_t curdev;
    361  1.2  jmcneill 
    362  1.2  jmcneill 	if (!device_is_active(dv))
    363  1.2  jmcneill 		return true;
    364  1.2  jmcneill 
    365  1.2  jmcneill 	TAILQ_FOREACH(curdev, &alldevs, dv_list) {
    366  1.2  jmcneill 		if (device_parent(curdev) != dv)
    367  1.2  jmcneill 			continue;
    368  1.2  jmcneill 		if (!pmf_device_recursive_suspend(curdev))
    369  1.2  jmcneill 			return false;
    370  1.2  jmcneill 	}
    371  1.2  jmcneill 
    372  1.2  jmcneill 	return pmf_device_suspend(dv);
    373  1.2  jmcneill }
    374  1.2  jmcneill 
    375  1.2  jmcneill bool
    376  1.2  jmcneill pmf_device_recursive_resume(device_t dv)
    377  1.2  jmcneill {
    378  1.2  jmcneill 	device_t parent;
    379  1.2  jmcneill 
    380  1.2  jmcneill 	if (device_is_active(dv))
    381  1.2  jmcneill 		return true;
    382  1.2  jmcneill 
    383  1.2  jmcneill 	parent = device_parent(dv);
    384  1.2  jmcneill 	if (parent != NULL) {
    385  1.2  jmcneill 		if (!pmf_device_recursive_resume(parent))
    386  1.2  jmcneill 			return false;
    387  1.2  jmcneill 	}
    388  1.2  jmcneill 
    389  1.2  jmcneill 	return pmf_device_resume(dv);
    390  1.2  jmcneill }
    391  1.2  jmcneill 
    392  1.2  jmcneill bool
    393  1.2  jmcneill pmf_device_resume_subtree(device_t dv)
    394  1.2  jmcneill {
    395  1.2  jmcneill 	device_t curdev;
    396  1.2  jmcneill 
    397  1.2  jmcneill 	if (!pmf_device_recursive_resume(dv))
    398  1.2  jmcneill 		return false;
    399  1.2  jmcneill 
    400  1.2  jmcneill 	TAILQ_FOREACH(curdev, &alldevs, dv_list) {
    401  1.2  jmcneill 		if (device_parent(curdev) != dv)
    402  1.2  jmcneill 			continue;
    403  1.2  jmcneill 		if (!pmf_device_resume_subtree(curdev))
    404  1.2  jmcneill 			return false;
    405  1.2  jmcneill 	}
    406  1.2  jmcneill 	return true;
    407  1.2  jmcneill }
    408  1.2  jmcneill 
    409  1.2  jmcneill #include <net/if.h>
    410  1.2  jmcneill 
    411  1.2  jmcneill static bool
    412  1.2  jmcneill pmf_class_network_suspend(device_t dev)
    413  1.2  jmcneill {
    414  1.2  jmcneill 	struct ifnet *ifp = device_pmf_class_private(dev);
    415  1.2  jmcneill 	int s;
    416  1.2  jmcneill 
    417  1.2  jmcneill 	s = splnet();
    418  1.2  jmcneill 	(*ifp->if_stop)(ifp, 1);
    419  1.2  jmcneill 	splx(s);
    420  1.2  jmcneill 
    421  1.2  jmcneill 	return true;
    422  1.2  jmcneill }
    423  1.2  jmcneill 
    424  1.2  jmcneill static bool
    425  1.2  jmcneill pmf_class_network_resume(device_t dev)
    426  1.2  jmcneill {
    427  1.2  jmcneill 	struct ifnet *ifp = device_pmf_class_private(dev);
    428  1.2  jmcneill 	int s;
    429  1.2  jmcneill 
    430  1.2  jmcneill 	s = splnet();
    431  1.2  jmcneill 	if (ifp->if_flags & IFF_UP) {
    432  1.2  jmcneill 		ifp->if_flags &= ~IFF_RUNNING;
    433  1.2  jmcneill 		(*ifp->if_init)(ifp);
    434  1.2  jmcneill 		(*ifp->if_start)(ifp);
    435  1.2  jmcneill 	}
    436  1.2  jmcneill 	splx(s);
    437  1.2  jmcneill 
    438  1.2  jmcneill 	return true;
    439  1.2  jmcneill }
    440  1.2  jmcneill 
    441  1.2  jmcneill void
    442  1.2  jmcneill pmf_class_network_register(device_t dev, struct ifnet *ifp)
    443  1.2  jmcneill {
    444  1.2  jmcneill 	device_pmf_class_register(dev, ifp, pmf_class_network_suspend,
    445  1.2  jmcneill 	    pmf_class_network_resume, NULL);
    446  1.2  jmcneill }
    447  1.2  jmcneill 
    448  1.2  jmcneill bool
    449  1.2  jmcneill pmf_event_inject(device_t dv, pmf_generic_event_t ev)
    450  1.2  jmcneill {
    451  1.2  jmcneill 	pmf_event_workitem_t *pew;
    452  1.2  jmcneill 
    453  1.2  jmcneill 	pew = kmem_alloc(sizeof(pmf_event_workitem_t), KM_NOSLEEP);
    454  1.2  jmcneill 	if (pew == NULL) {
    455  1.2  jmcneill 		PMF_EVENT_PRINTF(("%s: PMF event %d dropped (no memory)\n",
    456  1.2  jmcneill 		    dv ? device_xname(dv) : "<anonymous>", ev));
    457  1.2  jmcneill 		return false;
    458  1.2  jmcneill 	}
    459  1.2  jmcneill 
    460  1.2  jmcneill 	pew->pew_event = ev;
    461  1.2  jmcneill 	pew->pew_device = dv;
    462  1.2  jmcneill 
    463  1.2  jmcneill 	workqueue_enqueue(pmf_event_workqueue, (void *)pew, NULL);
    464  1.2  jmcneill 	PMF_EVENT_PRINTF(("%s: PMF event %d injected\n",
    465  1.2  jmcneill 	    dv ? device_xname(dv) : "<anonymous>", ev));
    466  1.2  jmcneill 
    467  1.2  jmcneill 	return true;
    468  1.2  jmcneill }
    469  1.2  jmcneill 
    470  1.2  jmcneill bool
    471  1.2  jmcneill pmf_event_register(device_t dv, pmf_generic_event_t ev,
    472  1.2  jmcneill     void (*handler)(device_t), bool global)
    473  1.2  jmcneill {
    474  1.2  jmcneill 	pmf_event_handler_t *event;
    475  1.2  jmcneill 
    476  1.2  jmcneill 	event = malloc(sizeof(*event), M_DEVBUF, M_WAITOK);
    477  1.2  jmcneill 	event->pmf_event = ev;
    478  1.2  jmcneill 	event->pmf_handler = handler;
    479  1.2  jmcneill 	event->pmf_device = dv;
    480  1.2  jmcneill 	event->pmf_global = global;
    481  1.2  jmcneill 	TAILQ_INSERT_TAIL(&pmf_all_events, event, pmf_link);
    482  1.2  jmcneill 
    483  1.2  jmcneill 	return true;
    484  1.2  jmcneill }
    485  1.2  jmcneill 
    486  1.2  jmcneill void
    487  1.2  jmcneill pmf_event_deregister(device_t dv, pmf_generic_event_t ev,
    488  1.2  jmcneill     void (*handler)(device_t), bool global)
    489  1.2  jmcneill {
    490  1.2  jmcneill 	pmf_event_handler_t *event;
    491  1.2  jmcneill 
    492  1.2  jmcneill 	TAILQ_FOREACH(event, &pmf_all_events, pmf_link) {
    493  1.2  jmcneill 		if (event->pmf_event != ev)
    494  1.2  jmcneill 			continue;
    495  1.2  jmcneill 		if (event->pmf_device != dv)
    496  1.2  jmcneill 			continue;
    497  1.2  jmcneill 		if (event->pmf_global != global)
    498  1.2  jmcneill 			continue;
    499  1.2  jmcneill 		if (event->pmf_handler != handler)
    500  1.2  jmcneill 			continue;
    501  1.2  jmcneill 		TAILQ_REMOVE(&pmf_all_events, event, pmf_link);
    502  1.2  jmcneill 		free(event, M_WAITOK);
    503  1.2  jmcneill 	}
    504  1.2  jmcneill }
    505  1.2  jmcneill 
    506  1.2  jmcneill struct display_class_softc {
    507  1.2  jmcneill 	TAILQ_ENTRY(display_class_softc) dc_link;
    508  1.2  jmcneill 	device_t dc_dev;
    509  1.2  jmcneill };
    510  1.2  jmcneill 
    511  1.2  jmcneill static TAILQ_HEAD(, display_class_softc) all_displays;
    512  1.2  jmcneill static callout_t global_idle_counter;
    513  1.2  jmcneill static int idle_timeout = 30;
    514  1.2  jmcneill 
    515  1.2  jmcneill static void
    516  1.2  jmcneill input_idle(void *dummy)
    517  1.2  jmcneill {
    518  1.2  jmcneill 	PMF_IDLE_PRINTF(("Input idle handler called\n"));
    519  1.2  jmcneill 	pmf_event_inject(NULL, PMFE_DISPLAY_OFF);
    520  1.2  jmcneill }
    521  1.2  jmcneill 
    522  1.2  jmcneill static void
    523  1.2  jmcneill input_activity_handler(device_t dv, devactive_t type)
    524  1.2  jmcneill {
    525  1.2  jmcneill 	if (!TAILQ_EMPTY(&all_displays))
    526  1.2  jmcneill 		callout_schedule(&global_idle_counter, idle_timeout * hz);
    527  1.2  jmcneill }
    528  1.2  jmcneill 
    529  1.2  jmcneill static void
    530  1.2  jmcneill pmf_class_input_deregister(device_t dv)
    531  1.2  jmcneill {
    532  1.2  jmcneill 	device_active_deregister(dv, input_activity_handler);
    533  1.2  jmcneill }
    534  1.2  jmcneill 
    535  1.2  jmcneill bool
    536  1.2  jmcneill pmf_class_input_register(device_t dv)
    537  1.2  jmcneill {
    538  1.2  jmcneill 	if (!device_active_register(dv, input_activity_handler))
    539  1.2  jmcneill 		return false;
    540  1.2  jmcneill 
    541  1.2  jmcneill 	device_pmf_class_register(dv, NULL, NULL, NULL,
    542  1.2  jmcneill 	    pmf_class_input_deregister);
    543  1.2  jmcneill 
    544  1.2  jmcneill 	return true;
    545  1.2  jmcneill }
    546  1.2  jmcneill 
    547  1.2  jmcneill static void
    548  1.2  jmcneill pmf_class_display_deregister(device_t dv)
    549  1.2  jmcneill {
    550  1.2  jmcneill 	struct display_class_softc *sc = device_pmf_class_private(dv);
    551  1.2  jmcneill 	int s;
    552  1.2  jmcneill 
    553  1.2  jmcneill 	s = splsoftclock();
    554  1.2  jmcneill 	TAILQ_REMOVE(&all_displays, sc, dc_link);
    555  1.2  jmcneill 	if (TAILQ_EMPTY(&all_displays))
    556  1.2  jmcneill 		callout_stop(&global_idle_counter);
    557  1.2  jmcneill 	splx(s);
    558  1.2  jmcneill 
    559  1.2  jmcneill 	free(sc, M_DEVBUF);
    560  1.2  jmcneill }
    561  1.2  jmcneill 
    562  1.2  jmcneill bool
    563  1.2  jmcneill pmf_class_display_register(device_t dv)
    564  1.2  jmcneill {
    565  1.2  jmcneill 	struct display_class_softc *sc;
    566  1.2  jmcneill 	int s;
    567  1.2  jmcneill 
    568  1.2  jmcneill 	sc = malloc(sizeof(*sc), M_DEVBUF, M_WAITOK);
    569  1.2  jmcneill 
    570  1.2  jmcneill 	s = splsoftclock();
    571  1.2  jmcneill 	if (TAILQ_EMPTY(&all_displays))
    572  1.2  jmcneill 		callout_schedule(&global_idle_counter, idle_timeout * hz);
    573  1.2  jmcneill 
    574  1.2  jmcneill 	TAILQ_INSERT_HEAD(&all_displays, sc, dc_link);
    575  1.2  jmcneill 	splx(s);
    576  1.2  jmcneill 
    577  1.2  jmcneill 	device_pmf_class_register(dv, sc, NULL, NULL,
    578  1.2  jmcneill 	    pmf_class_display_deregister);
    579  1.2  jmcneill 
    580  1.2  jmcneill 	return true;
    581  1.2  jmcneill }
    582  1.2  jmcneill 
    583  1.2  jmcneill void
    584  1.2  jmcneill pmf_init(void)
    585  1.2  jmcneill {
    586  1.2  jmcneill 	int err;
    587  1.2  jmcneill 
    588  1.2  jmcneill 	KASSERT(pmf_event_workqueue == NULL);
    589  1.2  jmcneill 	err = workqueue_create(&pmf_event_workqueue, "pmfevent",
    590  1.2  jmcneill 	    pmf_event_worker, NULL, PRI_IDLE, IPL_VM, 0);
    591  1.2  jmcneill 	if (err)
    592  1.2  jmcneill 		panic("couldn't create pmfevent workqueue");
    593  1.2  jmcneill 
    594  1.2  jmcneill 	callout_init(&global_idle_counter, 0);
    595  1.2  jmcneill 	callout_setfunc(&global_idle_counter, input_idle, NULL);
    596  1.2  jmcneill }
    597