Home | History | Annotate | Line # | Download | only in acpi
tpm_acpi.c revision 1.1
      1  1.1  christos /* $NetBSD: tpm_acpi.c,v 1.1 2012/01/22 06:44:28 christos Exp $ */
      2  1.1  christos 
      3  1.1  christos /*-
      4  1.1  christos  * Copyright (c) 2012 The NetBSD Foundation, Inc.
      5  1.1  christos  * All rights reserved.
      6  1.1  christos  *
      7  1.1  christos  * This code is derived from software contributed to The NetBSD Foundation
      8  1.1  christos  * by Christos Zoulas.
      9  1.1  christos  *
     10  1.1  christos  * Redistribution and use in source and binary forms, with or without
     11  1.1  christos  * modification, are permitted provided that the following conditions
     12  1.1  christos  * are met:
     13  1.1  christos  * 1. Redistributions of source code must retain the above copyright
     14  1.1  christos  *    notice, this list of conditions and the following disclaimer.
     15  1.1  christos  * 2. Redistributions in binary form must reproduce the above copyright
     16  1.1  christos  *    notice, this list of conditions and the following disclaimer in the
     17  1.1  christos  *    documentation and/or other materials provided with the distribution.
     18  1.1  christos  *
     19  1.1  christos  * THIS SOFTWARE IS PROVIDED BY THE NETBSD FOUNDATION, INC. AND CONTRIBUTORS
     20  1.1  christos  * ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED
     21  1.1  christos  * TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR
     22  1.1  christos  * PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR CONTRIBUTORS
     23  1.1  christos  * BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR
     24  1.1  christos  * CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF
     25  1.1  christos  * SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS
     26  1.1  christos  * INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN
     27  1.1  christos  * CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
     28  1.1  christos  * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
     29  1.1  christos  * POSSIBILITY OF SUCH DAMAGE.
     30  1.1  christos  */
     31  1.1  christos /*
     32  1.1  christos  * Copyright (c) 2008, 2009 Michael Shalayeff
     33  1.1  christos  * Copyright (c) 2009, 2010 Hans-Jrg Hxer
     34  1.1  christos  * All rights reserved.
     35  1.1  christos  *
     36  1.1  christos  * Permission to use, copy, modify, and distribute this software for any
     37  1.1  christos  * purpose with or without fee is hereby granted, provided that the above
     38  1.1  christos  * copyright notice and this permission notice appear in all copies.
     39  1.1  christos  *
     40  1.1  christos  * THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
     41  1.1  christos  * WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
     42  1.1  christos  * MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
     43  1.1  christos  * ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
     44  1.1  christos  * WHATSOEVER RESULTING FROM LOSS OF MIND, USE, DATA OR PROFITS, WHETHER IN
     45  1.1  christos  * AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT
     46  1.1  christos  * OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
     47  1.1  christos  */
     48  1.1  christos 
     49  1.1  christos /*
     50  1.1  christos  * ACPI attachment for the Infineon SLD 9630 TT 1.1 and SLB 9635 TT 1.2
     51  1.1  christos  * trusted platform module. See www.trustedcomputinggroup.org
     52  1.1  christos  */
     53  1.1  christos 
     54  1.1  christos #include <sys/cdefs.h>
     55  1.1  christos __KERNEL_RCSID(0, "$NetBSD: tpm_acpi.c,v 1.1 2012/01/22 06:44:28 christos Exp $");
     56  1.1  christos 
     57  1.1  christos #include <sys/param.h>
     58  1.1  christos #include <sys/device.h>
     59  1.1  christos #include <sys/systm.h>
     60  1.1  christos #include <sys/device.h>
     61  1.1  christos #include <sys/bus.h>
     62  1.1  christos #include <sys/pmf.h>
     63  1.1  christos 
     64  1.1  christos #include <dev/ic/tpmreg.h>
     65  1.1  christos #include <dev/ic/tpmvar.h>
     66  1.1  christos 
     67  1.1  christos #include <dev/acpi/acpireg.h>
     68  1.1  christos #include <dev/acpi/acpivar.h>
     69  1.1  christos 
     70  1.1  christos #include <dev/isa/isavar.h>
     71  1.1  christos 
     72  1.1  christos #define _COMPONENT          ACPI_RESOURCE_COMPONENT
     73  1.1  christos ACPI_MODULE_NAME            ("tpm_acpi")
     74  1.1  christos 
     75  1.1  christos static int	tpm_acpi_match(device_t, cfdata_t, void *);
     76  1.1  christos static void	tpm_acpi_attach(device_t, device_t, void *);
     77  1.1  christos 
     78  1.1  christos 
     79  1.1  christos CFATTACH_DECL_NEW(tpm_acpi, sizeof(struct tpm_softc), tpm_acpi_match,
     80  1.1  christos     tpm_acpi_attach, NULL, NULL);
     81  1.1  christos 
     82  1.1  christos /*
     83  1.1  christos  * Supported device IDs
     84  1.1  christos  */
     85  1.1  christos 
     86  1.1  christos static const char * const tpm_acpi_ids[] = {
     87  1.1  christos 	"IFX0101",
     88  1.1  christos 	"IFX0102",
     89  1.1  christos 	NULL
     90  1.1  christos };
     91  1.1  christos 
     92  1.1  christos extern struct cfdriver tpm_cd;
     93  1.1  christos 
     94  1.1  christos static int
     95  1.1  christos tpm_acpi_match(device_t parent, cfdata_t match, void *aux)
     96  1.1  christos {
     97  1.1  christos 	struct acpi_attach_args *aa = aux;
     98  1.1  christos 
     99  1.1  christos 	if (aa->aa_node->ad_type != ACPI_TYPE_DEVICE)
    100  1.1  christos 		return 0;
    101  1.1  christos 
    102  1.1  christos 	/* There can be only one. */
    103  1.1  christos 	if (tpm_cd.cd_devs && tpm_cd.cd_devs[0])
    104  1.1  christos 		return 0;
    105  1.1  christos 
    106  1.1  christos #ifdef notyet
    107  1.1  christos 	// XXX: My sony can't find the IRQ
    108  1.1  christos 	return acpi_match_hid(aa->aa_node->ad_devinfo, tpm_acpi_ids);
    109  1.1  christos #else
    110  1.1  christos 	return 0;
    111  1.1  christos #endif
    112  1.1  christos }
    113  1.1  christos 
    114  1.1  christos static void
    115  1.1  christos tpm_acpi_attach(device_t parent, device_t self, void *aux)
    116  1.1  christos {
    117  1.1  christos 	struct tpm_softc *sc = device_private(self);
    118  1.1  christos 	struct acpi_attach_args *aa = aux;
    119  1.1  christos 	struct acpi_resources res;
    120  1.1  christos 	struct acpi_mem *mem;
    121  1.1  christos 	struct acpi_irq *irq;
    122  1.1  christos 	int rv;
    123  1.1  christos 
    124  1.1  christos 	sc->sc_dev = self;
    125  1.1  christos 
    126  1.1  christos         /* Parse our resources */
    127  1.1  christos         rv = acpi_resource_parse(self, aa->aa_node->ad_handle, "_CRS", &res,
    128  1.1  christos             &acpi_resource_parse_ops_default);
    129  1.1  christos 
    130  1.1  christos         if (ACPI_FAILURE(rv)) {
    131  1.1  christos 		aprint_error_dev(sc->sc_dev, "cannot parse resources %d\n", rv);
    132  1.1  christos                 return;
    133  1.1  christos 	}
    134  1.1  christos 
    135  1.1  christos 	mem = acpi_res_mem(&res, 0);
    136  1.1  christos 	if (mem == NULL) {
    137  1.1  christos 		aprint_error_dev(sc->sc_dev, "cannot find mem\n");
    138  1.1  christos 		goto out;
    139  1.1  christos 	}
    140  1.1  christos 
    141  1.1  christos 	if (mem->ar_length != TPM_SIZE) {
    142  1.1  christos 		aprint_error_dev(sc->sc_dev, "wrong size mem %u != %u\n",
    143  1.1  christos 		    mem->ar_length, TPM_SIZE);
    144  1.1  christos 		goto out;
    145  1.1  christos 	}
    146  1.1  christos 
    147  1.1  christos 	sc->sc_bt = aa->aa_memt;
    148  1.1  christos 	sc->sc_init = tpm_tis12_init;
    149  1.1  christos 	sc->sc_start = tpm_tis12_start;
    150  1.1  christos 	sc->sc_read = tpm_tis12_read;
    151  1.1  christos 	sc->sc_write = tpm_tis12_write;
    152  1.1  christos 	sc->sc_end = tpm_tis12_end;
    153  1.1  christos 
    154  1.1  christos 	if (bus_space_map(sc->sc_bt, mem->ar_base, mem->ar_length, 0,
    155  1.1  christos 	    &sc->sc_bh)) {
    156  1.1  christos 		aprint_error_dev(sc->sc_dev, "cannot map registers\n");
    157  1.1  christos 		goto out;
    158  1.1  christos 	}
    159  1.1  christos 
    160  1.1  christos 	irq = acpi_res_irq(&res, 0);
    161  1.1  christos 	if (irq == NULL) {
    162  1.1  christos 		aprint_error_dev(sc->sc_dev, "cannot find irq\n");
    163  1.1  christos 		goto out1;
    164  1.1  christos 	}
    165  1.1  christos 
    166  1.1  christos 	if ((rv = (*sc->sc_init)(sc, irq->ar_irq,
    167  1.1  christos 	    device_xname(sc->sc_dev))) != 0)
    168  1.1  christos 		aprint_error_dev(sc->sc_dev, "cannot init device %d\n", rv);
    169  1.1  christos 		goto out1;
    170  1.1  christos 
    171  1.1  christos 	if ((sc->sc_ih = isa_intr_establish(aa->aa_ic, irq->ar_irq,
    172  1.1  christos 	    IST_EDGE, IPL_TTY, tpm_intr, sc)) == NULL) {
    173  1.1  christos 		aprint_error_dev(sc->sc_dev, "cannot establish interrupt\n");
    174  1.1  christos 		goto out1;
    175  1.1  christos 	}
    176  1.1  christos 
    177  1.1  christos 	if (!pmf_device_register(sc->sc_dev, tpm_suspend, tpm_resume))
    178  1.1  christos 		aprint_error_dev(sc->sc_dev, "Cannot set power mgmt handler\n");
    179  1.1  christos 	return;
    180  1.1  christos out1:
    181  1.1  christos 	bus_space_unmap(sc->sc_bt, sc->sc_bh, TPM_SIZE);
    182  1.1  christos out:
    183  1.1  christos 	acpi_resource_cleanup(&res);
    184  1.1  christos }
    185