tpm_acpi.c revision 1.13 1 1.13 thorpej /* $NetBSD: tpm_acpi.c,v 1.13 2021/01/29 15:24:00 thorpej 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.13 thorpej __KERNEL_RCSID(0, "$NetBSD: tpm_acpi.c,v 1.13 2021/01/29 15:24:00 thorpej 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.13 thorpej static const struct device_compatible_entry compat_data[] = {
59 1.13 thorpej { .compat = "PNP0C31", .value = TPM_1_2 },
60 1.13 thorpej { .compat = "MSFT0101", .value = TPM_2_0 },
61 1.13 thorpej DEVICE_COMPAT_EOL
62 1.1 christos };
63 1.1 christos
64 1.1 christos static int
65 1.1 christos tpm_acpi_match(device_t parent, cfdata_t match, void *aux)
66 1.1 christos {
67 1.1 christos struct acpi_attach_args *aa = aux;
68 1.13 thorpej const struct device_compatible_entry *dce;
69 1.8 maxv ACPI_TABLE_TPM2 *tpm2;
70 1.8 maxv ACPI_STATUS rv;
71 1.13 thorpej int ret;
72 1.1 christos
73 1.13 thorpej /* We support only one TPM. */
74 1.13 thorpej if (tpm_cd.cd_devs && tpm_cd.cd_devs[0])
75 1.1 christos return 0;
76 1.1 christos
77 1.13 thorpej ret = acpi_compatible_match(aa, compat_data);
78 1.13 thorpej if (ret == 0)
79 1.1 christos return 0;
80 1.8 maxv
81 1.13 thorpej dce = acpi_compatible_lookup(aa, compat_data);
82 1.13 thorpej KASSERT(dce != NULL);
83 1.13 thorpej
84 1.13 thorpej if (dce->value == TPM_1_2) {
85 1.12 thorpej /* XXX assume TPM 1.2 devices are memory-mapped. */
86 1.13 thorpej return ret;
87 1.12 thorpej }
88 1.12 thorpej
89 1.8 maxv /* Make sure it uses TIS, and not CRB. */
90 1.8 maxv rv = AcpiGetTable(ACPI_SIG_TPM2, 1, (ACPI_TABLE_HEADER **)&tpm2);
91 1.8 maxv if (ACPI_FAILURE(rv))
92 1.8 maxv return 0;
93 1.8 maxv if (tpm2->StartMethod != ACPI_TPM2_MEMORY_MAPPED)
94 1.8 maxv return 0;
95 1.8 maxv
96 1.13 thorpej return ret;
97 1.1 christos }
98 1.1 christos
99 1.1 christos static void
100 1.1 christos tpm_acpi_attach(device_t parent, device_t self, void *aux)
101 1.1 christos {
102 1.1 christos struct tpm_softc *sc = device_private(self);
103 1.1 christos struct acpi_attach_args *aa = aux;
104 1.13 thorpej const struct device_compatible_entry *dce;
105 1.1 christos struct acpi_resources res;
106 1.1 christos struct acpi_mem *mem;
107 1.2 christos bus_addr_t base;
108 1.2 christos bus_addr_t size;
109 1.9 maxv int rv;
110 1.1 christos
111 1.8 maxv rv = acpi_resource_parse(self, aa->aa_node->ad_handle, "_CRS", &res,
112 1.8 maxv &acpi_resource_parse_ops_default);
113 1.8 maxv if (ACPI_FAILURE(rv)) {
114 1.9 maxv aprint_error_dev(self, "cannot parse resources %d\n", rv);
115 1.8 maxv return;
116 1.1 christos }
117 1.1 christos
118 1.8 maxv mem = acpi_res_mem(&res, 0);
119 1.8 maxv if (mem == NULL) {
120 1.9 maxv aprint_error_dev(self, "cannot find mem\n");
121 1.8 maxv goto out;
122 1.8 maxv }
123 1.8 maxv if (mem->ar_length != TPM_SPACE_SIZE) {
124 1.9 maxv aprint_error_dev(self, "wrong size mem %"PRIu64" != %u\n",
125 1.8 maxv (uint64_t)mem->ar_length, TPM_SPACE_SIZE);
126 1.8 maxv goto out;
127 1.1 christos }
128 1.11 maxv base = mem->ar_base;
129 1.11 maxv size = mem->ar_length;
130 1.1 christos
131 1.13 thorpej dce = acpi_compatible_lookup(aa, compat_data);
132 1.13 thorpej KASSERT(dce != NULL);
133 1.13 thorpej
134 1.9 maxv sc->sc_dev = self;
135 1.13 thorpej sc->sc_ver = dce->value;
136 1.9 maxv mutex_init(&sc->sc_lock, MUTEX_DEFAULT, IPL_NONE);
137 1.9 maxv sc->sc_busy = false;
138 1.11 maxv sc->sc_intf = &tpm_intf_tis12;
139 1.9 maxv sc->sc_bt = aa->aa_memt;
140 1.2 christos if (bus_space_map(sc->sc_bt, base, size, 0, &sc->sc_bh)) {
141 1.2 christos aprint_error_dev(sc->sc_dev, "cannot map registers\n");
142 1.1 christos goto out;
143 1.1 christos }
144 1.1 christos
145 1.11 maxv if ((rv = (*sc->sc_intf->probe)(sc->sc_bt, sc->sc_bh)) != 0) {
146 1.11 maxv aprint_error_dev(sc->sc_dev, "probe failed, rv=%d\n", rv);
147 1.2 christos goto out1;
148 1.1 christos }
149 1.11 maxv if ((rv = (*sc->sc_intf->init)(sc)) != 0) {
150 1.11 maxv aprint_error_dev(sc->sc_dev, "cannot init device, rv=%d\n", rv);
151 1.1 christos goto out1;
152 1.4 maxv }
153 1.1 christos
154 1.10 maxv if (!pmf_device_register(self, tpm_suspend, tpm_resume))
155 1.10 maxv aprint_error_dev(self, "couldn't establish power handler\n");
156 1.8 maxv acpi_resource_cleanup(&res);
157 1.1 christos return;
158 1.8 maxv
159 1.1 christos out1:
160 1.2 christos bus_space_unmap(sc->sc_bt, sc->sc_bh, size);
161 1.1 christos out:
162 1.1 christos acpi_resource_cleanup(&res);
163 1.1 christos }
164