summaryrefslogtreecommitdiffstats
path: root/doc/driver-model/UDM-tpm.txt
blob: 91a953a72e14443212831171a7912658acc566f8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
The U-Boot Driver Model Project
===============================
TPM system analysis
===================
Marek Vasut <marek.vasut@gmail.com>
2012-02-23

I) Overview
-----------

There is currently only one TPM chip driver available and therefore the API
controlling it is very much based on this. The API is very simple:

  int tis_open(void);
  int tis_close(void);
  int tis_sendrecv(const u8 *sendbuf, size_t send_size,
                         u8 *recvbuf, size_t *recv_len);

The command operating the TPM chip only provides operations to send and receive
bytes from the chip.

II) Approach
------------

The API can't be generalised too much considering there's only one TPM chip
supported. But it's a good idea to split the tis_sendrecv() function in two
functions. Therefore the new API will use register the TPM chip by calling:

  tpm_device_register(struct instance *i, const struct tpm_ops *ops);

And the struct tpm_ops will contain the following members:

  struct tpm_ops {
    int (*tpm_open)(struct instance *i);
    int (*tpm_close)(struct instance *i);
    int (*tpm_send)(const uint8_t *buf, const size_t size);
    int (*tpm_recv)(uint8_t *buf, size_t *size);
  };

The behaviour of "tpm_open()" and "tpm_close()" will basically copy the
behaviour of "tis_open()" and "tis_close()". The "tpm_send()" will be based on
the "tis_senddata()" and "tis_recv()" will be based on "tis_readresponse()".

III) Analysis of in-tree drivers
--------------------------------

There is only one in-tree driver present, the "drivers/tpm/generic_lpc_tpm.c",
which will be simply converted as outlined in previous chapter.
OpenPOWER on IntegriCloud