]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - share/man/man4/tpm.4
OpenSSL: update to 3.0.11
[FreeBSD/FreeBSD.git] / share / man / man4 / tpm.4
1 .\"
2 .\" Copyright (c) 2010 Hans-Joerg Hoexer
3 .\"
4 .\" Permission to use, copy, modify, and distribute this software for any
5 .\" purpose with or without fee is hereby granted, provided that the above
6 .\" copyright notice and this permission notice appear in all copies.
7 .\"
8 .\" THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
9 .\" WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10 .\" MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11 .\" ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12 .\" WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13 .\" ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14 .\" OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
15 .\"
16 .Dd October 31, 2018
17 .Dt TPM 4
18 .Os
19 .Sh NAME
20 .Nm tpm
21 .Nd Trusted Platform Module
22 .Sh SYNOPSIS
23 To compile this driver into the kernel,
24 place the following lines in your
25 kernel configuration file:
26 .Bd -ragged -offset indent
27 .Cd "device tpm"
28 .Ed
29 .Pp
30 Alternatively, to load the driver as a
31 module at boot time, place the following line in
32 .Xr loader.conf 5 :
33 .Bd -literal -offset indent
34 tpm_load="YES"
35 .Ed
36 .Pp
37 In
38 .Pa /boot/device.hints :
39 .Cd hint.tpm.0.at="isa"
40 .Cd hint.tpm.0.maddr="0xfed40000"
41 .Cd hint.tpm.0.msize="0x5000"
42 .Cd hint.tpm.1.at="isa"
43 .Cd hint.tpm.1.maddr="0xfed40000"
44 .Cd hint.tpm.1.msize="0x1000"
45 .Sh DESCRIPTION
46 The
47 .Nm
48 driver provides support for various trusted platform modules (TPM) that can
49 store cryptographic keys.
50 .Pp
51 Supported modules:
52 .Pp
53 .Bl -bullet -compact -offset indent
54 .It
55 Atmel 97SC3203
56 .It
57 Broadcom BCM0102
58 .It
59 Infineon IFX SLD 9630 TT 1.1 and IFX SLB 9635 TT 1.2
60 .It
61 Intel INTC0102
62 .It
63 Sinosun SNS SSX35
64 .It
65 STM ST19WP18
66 .It
67 Winbond WEC WPCT200
68 .El
69 .Pp
70 The driver can be configured to use an IRQ by providing a free ISA
71 interrupt vector in
72 .Pa /boot/device.hints .
73 .Sh SEE ALSO
74 .Xr intro 4 ,
75 .Xr device.hints 5 ,
76 .Xr config 8
77 .Pp
78 The homepage of the BSSSD project, which developed the original
79 .Nm
80 driver:
81 .Lk "http://bsssd.sourceforge.net/" .
82 .Pp
83 TPM main specification can be found at:
84 .Lk "https://trustedcomputinggroup.org/resource/tpm-main-specification/" .
85 .Sh STANDARDS
86 TPM Main Specification Level 2 Version 1.2:
87 .Bl -dash
88 .It
89 .Rs
90 .%A ISO/IEC
91 .%T 11889-1:2009, Information technology -- Trusted Platform Module -- Part 1: Overview
92 .%U "https://www.iso.org/standard/50970.html"
93 .Re
94 .It
95 .Rs
96 .%A ISO/IEC
97 .%T 11889-2:2009, Information technology -- Trusted Platform Module -- Part 2: Design principles
98 .%U "https://www.iso.org/standard/50971.html"
99 .Re
100 .It
101 .Rs
102 .%A ISO/IEC
103 .%T 11889-3:2009, Information technology -- Trusted Platform Module -- Part 3: Structures
104 .%U "https://www.iso.org/standard/50972.html"
105 .Re
106 .El
107 .Sh HISTORY
108 The
109 .Nm
110 driver
111 first appeared in
112 .Fx 8.2
113 and was later added to
114 .Ox 6.1 .
115 .Sh AUTHORS
116 .An -nosplit
117 The
118 .Nm
119 driver was written by
120 .An Michael Shalayeff
121 and
122 .An Hans-Joerg Hoexer .