/* $NetBSD: hpet_acpi.c,v 1.1 2007/03/08 14:26:28 njoly Exp $ */ /* * Copyright (c) 2006 Nicolas Joly * All rights reserved. * * Redistribution and use in source and binary forms, with or without * modification, are permitted provided that the following conditions * are met: * 1. Redistributions of source code must retain the above copyright * notice, this list of conditions and the following disclaimer. * 2. Redistributions in binary form must reproduce the above copyright * notice, this list of conditions and the following disclaimer in the * documentation and/or other materials provided with the distribution. * 3. The name of the author may not be used to endorse or promote products * derived from this software without specific prior written permission. * * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR * PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE * POSSIBILITY OF SUCH DAMAGE. */ #include __KERNEL_RCSID(0, "$NetBSD: hpet_acpi.c,v 1.1 2007/03/08 14:26:28 njoly Exp $"); #include #include #include #include #include #include #include #include #include #include #include static int hpet_acpi_match(struct device *, struct cfdata *, void *); static void hpet_acpi_attach(struct device *, struct device *, void *); CFATTACH_DECL(hpet_acpi, sizeof(struct hpet_softc), hpet_acpi_match, hpet_acpi_attach, NULL, NULL); /* * Supported device IDs */ static const char * const hpet_acpi_ids[] = { "PNP0103", NULL }; /* * hpet_acpi_match: autoconf(9) match routine */ static int hpet_acpi_match(struct device *parent, struct cfdata *match, void *aux) { struct acpi_attach_args *aa = aux; if (aa->aa_node->ad_type != ACPI_TYPE_DEVICE) return 0; return acpi_match_hid(aa->aa_node->ad_devinfo, hpet_acpi_ids); } static void hpet_acpi_attach(struct device *parent, struct device *self, void *aux) { struct hpet_softc *sc = (struct hpet_softc *)self; struct acpi_attach_args *aa = aux; struct acpi_resources res; struct acpi_mem *mem; ACPI_STATUS rv; aprint_naive("\n"); aprint_normal("\n"); /* parse resources */ rv = acpi_resource_parse(&sc->sc_dev, aa->aa_node->ad_handle, "_CRS", &res, &acpi_resource_parse_ops_default); if (ACPI_FAILURE(rv)) return; /* find our mem registers */ mem = acpi_res_mem(&res, 0); if (mem == NULL) { aprint_error("%s: unable to find mem register resource\n", sc->sc_dev.dv_xname); goto out; } sc->sc_memt = aa->aa_memt; if (bus_space_map(sc->sc_memt, mem->ar_base, mem->ar_length, 0, &sc->sc_memh)) { aprint_error("%s: can't map mem space\n", sc->sc_dev.dv_xname); goto out; } hpet_attach_subr(sc); out: acpi_resource_cleanup(&res); }