blob: 4f390a2cb305d51ef4b8458b5bddb2d8ae09888c (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
|
/* $NetBSD: spicvar.h,v 1.7 2010/02/24 22:37:58 dyoung Exp $ */
#include <dev/sysmon/sysmonvar.h>
struct spic_softc {
device_t sc_dev;
bus_space_tag_t sc_iot;
bus_space_handle_t sc_ioh;
struct callout sc_poll;
int sc_buttons;
char sc_enabled;
device_t sc_wsmousedev;
#define SPIC_PSWITCH_LID 0
#define SPIC_PSWITCH_SUSPEND 1
#define SPIC_PSWITCH_HIBERNATE 2
#define SPIC_NPSWITCH 3
struct sysmon_pswitch sc_smpsw[SPIC_NPSWITCH];
};
void spic_attach(struct spic_softc *);
bool spic_suspend(device_t, const pmf_qual_t *);
bool spic_resume(device_t, const pmf_qual_t *);
int spic_intr(void *);
|