apple_smcvar.h revision 1.2 1 1.1 riastrad /* $NetBSD: apple_smcvar.h,v 1.2 2014/04/01 17:48:39 riastradh Exp $ */
2 1.1 riastrad
3 1.1 riastrad /*
4 1.1 riastrad * Apple System Management Controller State
5 1.1 riastrad */
6 1.1 riastrad
7 1.1 riastrad /*-
8 1.1 riastrad * Copyright (c) 2013 The NetBSD Foundation, Inc.
9 1.1 riastrad * All rights reserved.
10 1.1 riastrad *
11 1.1 riastrad * This code is derived from software contributed to The NetBSD Foundation
12 1.1 riastrad * by Taylor R. Campbell.
13 1.1 riastrad *
14 1.1 riastrad * Redistribution and use in source and binary forms, with or without
15 1.1 riastrad * modification, are permitted provided that the following conditions
16 1.1 riastrad * are met:
17 1.1 riastrad * 1. Redistributions of source code must retain the above copyright
18 1.1 riastrad * notice, this list of conditions and the following disclaimer.
19 1.1 riastrad * 2. Redistributions in binary form must reproduce the above copyright
20 1.1 riastrad * notice, this list of conditions and the following disclaimer in the
21 1.1 riastrad * documentation and/or other materials provided with the distribution.
22 1.1 riastrad *
23 1.1 riastrad * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
24 1.1 riastrad * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
25 1.1 riastrad * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
26 1.1 riastrad * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
27 1.1 riastrad * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
28 1.1 riastrad * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
29 1.1 riastrad * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
30 1.1 riastrad * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
31 1.1 riastrad * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
32 1.1 riastrad * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33 1.1 riastrad * POSSIBILITY OF SUCH DAMAGE.
34 1.1 riastrad */
35 1.1 riastrad
36 1.1 riastrad #ifndef _DEV_IC_APPLE_SMCVAR_H_
37 1.1 riastrad #define _DEV_IC_APPLE_SMCVAR_H_
38 1.1 riastrad
39 1.1 riastrad #include <sys/param.h>
40 1.1 riastrad #include <sys/types.h>
41 1.1 riastrad #include <sys/bus.h>
42 1.2 riastrad #include <sys/device_if.h>
43 1.1 riastrad #include <sys/mutex.h>
44 1.2 riastrad #include <sys/rbtree.h>
45 1.1 riastrad
46 1.1 riastrad struct apple_smc_tag {
47 1.1 riastrad device_t smc_dev;
48 1.1 riastrad bus_space_tag_t smc_bst;
49 1.1 riastrad bus_space_handle_t smc_bsh;
50 1.1 riastrad bus_size_t smc_size;
51 1.1 riastrad uint32_t smc_nkeys;
52 1.1 riastrad kmutex_t smc_lock;
53 1.1 riastrad
54 1.1 riastrad #if 0 /* XXX sysctl */
55 1.1 riastrad struct sysctllog *smc_sysctllog;
56 1.1 riastrad const struct sysctlnode *smc_sysctlnode;
57 1.1 riastrad #endif
58 1.1 riastrad
59 1.2 riastrad rb_tree_t smc_devices;
60 1.1 riastrad };
61 1.1 riastrad
62 1.2 riastrad void apple_smc_attach(struct apple_smc_tag *);
63 1.2 riastrad int apple_smc_detach(struct apple_smc_tag *, int);
64 1.2 riastrad int apple_smc_rescan(struct apple_smc_tag *, const char *, const int *);
65 1.2 riastrad void apple_smc_child_detached(struct apple_smc_tag *, device_t);
66 1.1 riastrad
67 1.1 riastrad #endif /* _DEV_IC_APPLE_SMCVAR_H_ */
68