Home | History | Annotate | Line # | Download | only in acpi
tpm_acpi.c revision 1.8.2.2
      1  1.8.2.2    martin /* $NetBSD: tpm_acpi.c,v 1.8.2.2 2022/08/03 16:00:47 martin Exp $ */
      2      1.1  christos 
      3      1.8      maxv /*
      4      1.8      maxv  * Copyright (c) 2012, 2019 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.8      maxv  * by Christos Zoulas and Maxime Villard.
      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 #include <sys/cdefs.h>
     33  1.8.2.2    martin __KERNEL_RCSID(0, "$NetBSD: tpm_acpi.c,v 1.8.2.2 2022/08/03 16:00:47 martin Exp $");
     34      1.1  christos 
     35      1.1  christos #include <sys/param.h>
     36      1.1  christos #include <sys/systm.h>
     37      1.1  christos #include <sys/device.h>
     38      1.1  christos #include <sys/bus.h>
     39      1.1  christos #include <sys/pmf.h>
     40      1.1  christos 
     41      1.1  christos #include <dev/ic/tpmreg.h>
     42      1.1  christos #include <dev/ic/tpmvar.h>
     43      1.1  christos 
     44      1.1  christos #include <dev/acpi/acpireg.h>
     45      1.1  christos #include <dev/acpi/acpivar.h>
     46      1.1  christos 
     47      1.5  riastrad #include "ioconf.h"
     48      1.5  riastrad 
     49      1.8      maxv #define _COMPONENT	ACPI_RESOURCE_COMPONENT
     50      1.8      maxv ACPI_MODULE_NAME	("tpm_acpi")
     51      1.1  christos 
     52      1.1  christos static int	tpm_acpi_match(device_t, cfdata_t, void *);
     53      1.1  christos static void	tpm_acpi_attach(device_t, device_t, void *);
     54      1.1  christos 
     55      1.1  christos CFATTACH_DECL_NEW(tpm_acpi, sizeof(struct tpm_softc), tpm_acpi_match,
     56      1.1  christos     tpm_acpi_attach, NULL, NULL);
     57      1.1  christos 
     58      1.1  christos /*
     59      1.8      maxv  * Supported TPM 2.0 devices.
     60      1.1  christos  */
     61      1.8      maxv static const char * const tpm2_acpi_ids[] = {
     62      1.8      maxv 	"MSFT0101",
     63      1.1  christos 	NULL
     64      1.1  christos };
     65      1.1  christos 
     66      1.1  christos static int
     67      1.1  christos tpm_acpi_match(device_t parent, cfdata_t match, void *aux)
     68      1.1  christos {
     69      1.1  christos 	struct acpi_attach_args *aa = aux;
     70      1.8      maxv 	ACPI_TABLE_TPM2 *tpm2;
     71      1.8      maxv 	ACPI_STATUS rv;
     72      1.1  christos 
     73      1.1  christos 	if (aa->aa_node->ad_type != ACPI_TYPE_DEVICE)
     74      1.1  christos 		return 0;
     75      1.1  christos 
     76      1.8      maxv 	/* We support only one TPM. */
     77      1.1  christos 	if (tpm_cd.cd_devs && tpm_cd.cd_devs[0])
     78      1.1  christos 		return 0;
     79      1.8      maxv 
     80      1.8      maxv 	if (!acpi_match_hid(aa->aa_node->ad_devinfo, tpm2_acpi_ids))
     81      1.8      maxv 		return 0;
     82      1.8      maxv 
     83      1.8      maxv 	/* Make sure it uses TIS, and not CRB. */
     84      1.8      maxv 	rv = AcpiGetTable(ACPI_SIG_TPM2, 1, (ACPI_TABLE_HEADER **)&tpm2);
     85      1.8      maxv 	if (ACPI_FAILURE(rv))
     86      1.8      maxv 		return 0;
     87      1.8      maxv 	if (tpm2->StartMethod != ACPI_TPM2_MEMORY_MAPPED)
     88      1.8      maxv 		return 0;
     89      1.8      maxv 
     90      1.8      maxv 	return 1;
     91      1.1  christos }
     92      1.1  christos 
     93      1.1  christos static void
     94      1.1  christos tpm_acpi_attach(device_t parent, device_t self, void *aux)
     95      1.1  christos {
     96      1.1  christos 	struct tpm_softc *sc = device_private(self);
     97      1.1  christos 	struct acpi_attach_args *aa = aux;
     98      1.1  christos 	struct acpi_resources res;
     99      1.1  christos 	struct acpi_mem *mem;
    100      1.2  christos 	bus_addr_t base;
    101      1.2  christos 	bus_addr_t size;
    102  1.8.2.1    martin 	int rv;
    103      1.1  christos 
    104      1.8      maxv 	rv = acpi_resource_parse(self, aa->aa_node->ad_handle, "_CRS", &res,
    105      1.8      maxv 	    &acpi_resource_parse_ops_default);
    106      1.8      maxv 	if (ACPI_FAILURE(rv)) {
    107  1.8.2.1    martin 		aprint_error_dev(self, "cannot parse resources %d\n", rv);
    108      1.8      maxv 		return;
    109      1.1  christos 	}
    110      1.1  christos 
    111      1.8      maxv 	mem = acpi_res_mem(&res, 0);
    112      1.8      maxv 	if (mem == NULL) {
    113  1.8.2.1    martin 		aprint_error_dev(self, "cannot find mem\n");
    114      1.8      maxv 		goto out;
    115      1.8      maxv 	}
    116  1.8.2.2    martin 	if (mem->ar_length < TPM_SPACE_SIZE) {
    117  1.8.2.2    martin 		aprint_error_dev(self, "wrong size mem %"PRIu64" < %u\n",
    118      1.8      maxv 		    (uint64_t)mem->ar_length, TPM_SPACE_SIZE);
    119      1.8      maxv 		goto out;
    120      1.1  christos 	}
    121      1.8      maxv 	base = mem->ar_base;
    122      1.8      maxv 	size = mem->ar_length;
    123      1.8      maxv 
    124  1.8.2.1    martin 	sc->sc_dev = self;
    125  1.8.2.1    martin 	sc->sc_ver = TPM_2_0;
    126  1.8.2.1    martin 	mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_NONE);
    127  1.8.2.1    martin 	sc->sc_busy = false;
    128  1.8.2.1    martin 	sc->sc_intf = &tpm_intf_tis12;
    129  1.8.2.1    martin 	sc->sc_bt = aa->aa_memt;
    130      1.2  christos 	if (bus_space_map(sc->sc_bt, base, size, 0, &sc->sc_bh)) {
    131      1.2  christos 		aprint_error_dev(sc->sc_dev, "cannot map registers\n");
    132      1.1  christos 		goto out;
    133      1.1  christos 	}
    134      1.1  christos 
    135  1.8.2.1    martin 	if ((rv = (*sc->sc_intf->probe)(sc->sc_bt, sc->sc_bh)) != 0) {
    136  1.8.2.1    martin 		aprint_error_dev(sc->sc_dev, "probe failed, rv=%d\n", rv);
    137      1.2  christos 		goto out1;
    138      1.1  christos 	}
    139  1.8.2.1    martin 	if ((rv = (*sc->sc_intf->init)(sc)) != 0) {
    140  1.8.2.1    martin 		aprint_error_dev(sc->sc_dev, "cannot init device, rv=%d\n", rv);
    141      1.1  christos 		goto out1;
    142      1.1  christos 	}
    143      1.1  christos 
    144  1.8.2.1    martin 	if (!pmf_device_register(self, tpm_suspend, tpm_resume))
    145  1.8.2.1    martin 		aprint_error_dev(self, "couldn't establish power handler\n");
    146      1.8      maxv 	acpi_resource_cleanup(&res);
    147      1.1  christos 	return;
    148      1.8      maxv 
    149      1.1  christos out1:
    150      1.2  christos 	bus_space_unmap(sc->sc_bt, sc->sc_bh, size);
    151      1.1  christos out:
    152      1.1  christos 	acpi_resource_cleanup(&res);
    153      1.1  christos }
    154