4 * Copyright (c) 2009 Valeriy E. Ushakov
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions
10 * 1. Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * 2. The name of the author may not be used to endorse or promote products
13 * derived from this software without specific prior written permission
15 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
16 * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
17 * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
18 * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
19 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
20 * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
21 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
22 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
23 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
24 * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27 #include <sys/cdefs.h>
28 __KERNEL_RCSID(0, "$NetBSD$");
30 #include <sys/param.h>
31 #include <sys/systm.h>
32 #include <sys/device.h>
33 #include <sys/selinfo.h> /* XXX: for apm_softc that is exposed here */
35 #include <dev/hpc/apm/apmvar.h>
37 static void apm_apmdevif_attach(device_t
, device_t
, void *);
38 static int apm_apmdevif_match(device_t
, cfdata_t
, void *);
40 CFATTACH_DECL_NEW(apm_apmdevif
, sizeof(struct apm_softc
),
41 apm_apmdevif_match
, apm_apmdevif_attach
, NULL
, NULL
);
45 apm_apmdevif_match(device_t parent
, cfdata_t match
, void *aux
)
52 apm_apmdevif_attach(device_t parent
, device_t self
, void *aux
)
55 struct apmdev_attach_args
*aaa
= aux
;
57 sc
= device_private(self
);
60 sc
->sc_detail
= aaa
->apm_detail
;
61 sc
->sc_vers
= aaa
->apm_detail
& 0xffff; /* XXX: magic */
63 sc
->sc_ops
= aaa
->accessops
;
64 sc
->sc_cookie
= aaa
->accesscookie
;
70 apmprint(void *aux
, const char *pnp
)
73 aprint_normal("apm at %s", pnp
);