xref: /linux/drivers/char/tpm/tpm_ibmvtpm.c (revision f5595f5baa30e009bf54d0d7653a9a0cc465be60)
1132f7629SAshley Lai /*
2132f7629SAshley Lai  * Copyright (C) 2012 IBM Corporation
3132f7629SAshley Lai  *
41a0f1b27SAshley Lai  * Author: Ashley Lai <ashleydlai@gmail.com>
5132f7629SAshley Lai  *
6132f7629SAshley Lai  * Maintained by: <tpmdd-devel@lists.sourceforge.net>
7132f7629SAshley Lai  *
8132f7629SAshley Lai  * Device driver for TCG/TCPA TPM (trusted platform module).
9132f7629SAshley Lai  * Specifications at www.trustedcomputinggroup.org
10132f7629SAshley Lai  *
11132f7629SAshley Lai  * This program is free software; you can redistribute it and/or
12132f7629SAshley Lai  * modify it under the terms of the GNU General Public License as
13132f7629SAshley Lai  * published by the Free Software Foundation, version 2 of the
14132f7629SAshley Lai  * License.
15132f7629SAshley Lai  *
16132f7629SAshley Lai  */
17132f7629SAshley Lai 
18132f7629SAshley Lai #include <linux/dma-mapping.h>
19132f7629SAshley Lai #include <linux/dmapool.h>
20132f7629SAshley Lai #include <linux/slab.h>
21132f7629SAshley Lai #include <asm/vio.h>
22132f7629SAshley Lai #include <asm/irq.h>
23132f7629SAshley Lai #include <linux/types.h>
24132f7629SAshley Lai #include <linux/list.h>
25132f7629SAshley Lai #include <linux/spinlock.h>
26132f7629SAshley Lai #include <linux/interrupt.h>
27132f7629SAshley Lai #include <linux/wait.h>
28132f7629SAshley Lai #include <asm/prom.h>
29132f7629SAshley Lai 
30132f7629SAshley Lai #include "tpm.h"
31132f7629SAshley Lai #include "tpm_ibmvtpm.h"
32132f7629SAshley Lai 
33132f7629SAshley Lai static const char tpm_ibmvtpm_driver_name[] = "tpm_ibmvtpm";
34132f7629SAshley Lai 
35c2a9c4bfSArvind Yadav static const struct vio_device_id tpm_ibmvtpm_device_table[] = {
36132f7629SAshley Lai 	{ "IBM,vtpm", "IBM,vtpm"},
37132f7629SAshley Lai 	{ "", "" }
38132f7629SAshley Lai };
39132f7629SAshley Lai MODULE_DEVICE_TABLE(vio, tpm_ibmvtpm_device_table);
40132f7629SAshley Lai 
41132f7629SAshley Lai /**
4209c573abSTomas Winkler  * ibmvtpm_send_crq_word() - Send a CRQ request
43fb154e0eSMichal Suchanek  * @vdev:	vio device struct
44fb154e0eSMichal Suchanek  * @w1:		pre-constructed first word of tpm crq (second word is reserved)
45fb154e0eSMichal Suchanek  *
46fb154e0eSMichal Suchanek  * Return:
47fb154e0eSMichal Suchanek  *	0 - Success
48fb154e0eSMichal Suchanek  *	Non-zero - Failure
49fb154e0eSMichal Suchanek  */
50fb154e0eSMichal Suchanek static int ibmvtpm_send_crq_word(struct vio_dev *vdev, u64 w1)
51fb154e0eSMichal Suchanek {
52fb154e0eSMichal Suchanek 	return plpar_hcall_norets(H_SEND_CRQ, vdev->unit_address, w1, 0);
53fb154e0eSMichal Suchanek }
54fb154e0eSMichal Suchanek 
55fb154e0eSMichal Suchanek /**
5609c573abSTomas Winkler  * ibmvtpm_send_crq() - Send a CRQ request
5793c12f29SWinkler, Tomas  *
58132f7629SAshley Lai  * @vdev:	vio device struct
59fb154e0eSMichal Suchanek  * @valid:	Valid field
60fb154e0eSMichal Suchanek  * @msg:	Type field
61fb154e0eSMichal Suchanek  * @len:	Length field
62fb154e0eSMichal Suchanek  * @data:	Data field
63fb154e0eSMichal Suchanek  *
64fb154e0eSMichal Suchanek  * The ibmvtpm crq is defined as follows:
65fb154e0eSMichal Suchanek  *
66fb154e0eSMichal Suchanek  * Byte  |   0   |   1   |   2   |   3   |   4   |   5   |   6   |   7
67fb154e0eSMichal Suchanek  * -----------------------------------------------------------------------
68fb154e0eSMichal Suchanek  * Word0 | Valid | Type  |     Length    |              Data
69fb154e0eSMichal Suchanek  * -----------------------------------------------------------------------
70fb154e0eSMichal Suchanek  * Word1 |                Reserved
71fb154e0eSMichal Suchanek  * -----------------------------------------------------------------------
72fb154e0eSMichal Suchanek  *
73fb154e0eSMichal Suchanek  * Which matches the following structure (on bigendian host):
74fb154e0eSMichal Suchanek  *
75fb154e0eSMichal Suchanek  * struct ibmvtpm_crq {
76fb154e0eSMichal Suchanek  *         u8 valid;
77fb154e0eSMichal Suchanek  *         u8 msg;
78fb154e0eSMichal Suchanek  *         __be16 len;
79fb154e0eSMichal Suchanek  *         __be32 data;
80fb154e0eSMichal Suchanek  *         __be64 reserved;
81fb154e0eSMichal Suchanek  * } __attribute__((packed, aligned(8)));
82fb154e0eSMichal Suchanek  *
83fb154e0eSMichal Suchanek  * However, the value is passed in a register so just compute the numeric value
84fb154e0eSMichal Suchanek  * to load into the register avoiding byteswap altogether. Endian only affects
85fb154e0eSMichal Suchanek  * memory loads and stores - registers are internally represented the same.
86132f7629SAshley Lai  *
8793c12f29SWinkler, Tomas  * Return:
88fb154e0eSMichal Suchanek  *	0 (H_SUCCESS) - Success
89132f7629SAshley Lai  *	Non-zero - Failure
90132f7629SAshley Lai  */
91fb154e0eSMichal Suchanek static int ibmvtpm_send_crq(struct vio_dev *vdev,
92fb154e0eSMichal Suchanek 		u8 valid, u8 msg, u16 len, u32 data)
93132f7629SAshley Lai {
94fb154e0eSMichal Suchanek 	u64 w1 = ((u64)valid << 56) | ((u64)msg << 48) | ((u64)len << 32) |
95fb154e0eSMichal Suchanek 		(u64)data;
96fb154e0eSMichal Suchanek 	return ibmvtpm_send_crq_word(vdev, w1);
97132f7629SAshley Lai }
98132f7629SAshley Lai 
99132f7629SAshley Lai /**
100132f7629SAshley Lai  * tpm_ibmvtpm_recv - Receive data after send
10193c12f29SWinkler, Tomas  *
102132f7629SAshley Lai  * @chip:	tpm chip struct
103132f7629SAshley Lai  * @buf:	buffer to read
10493c12f29SWinkler, Tomas  * @count:	size of buffer
105132f7629SAshley Lai  *
10693c12f29SWinkler, Tomas  * Return:
107132f7629SAshley Lai  *	Number of bytes read
108132f7629SAshley Lai  */
109132f7629SAshley Lai static int tpm_ibmvtpm_recv(struct tpm_chip *chip, u8 *buf, size_t count)
110132f7629SAshley Lai {
1119e0d39d8SChristophe Ricard 	struct ibmvtpm_dev *ibmvtpm = dev_get_drvdata(&chip->dev);
112132f7629SAshley Lai 	u16 len;
113b5666502SAshley Lai 	int sig;
114132f7629SAshley Lai 
115132f7629SAshley Lai 	if (!ibmvtpm->rtce_buf) {
116132f7629SAshley Lai 		dev_err(ibmvtpm->dev, "ibmvtpm device is not ready\n");
117132f7629SAshley Lai 		return 0;
118132f7629SAshley Lai 	}
119132f7629SAshley Lai 
1206674ff14SStefan Berger 	sig = wait_event_interruptible(ibmvtpm->wq, !ibmvtpm->tpm_processing_cmd);
121b5666502SAshley Lai 	if (sig)
122b5666502SAshley Lai 		return -EINTR;
123132f7629SAshley Lai 
124b5666502SAshley Lai 	len = ibmvtpm->res_len;
125b5666502SAshley Lai 
126b5666502SAshley Lai 	if (count < len) {
127132f7629SAshley Lai 		dev_err(ibmvtpm->dev,
12837ab0341SJason Gunthorpe 			"Invalid size in recv: count=%zd, crq_size=%d\n",
129b5666502SAshley Lai 			count, len);
130132f7629SAshley Lai 		return -EIO;
131132f7629SAshley Lai 	}
132132f7629SAshley Lai 
133132f7629SAshley Lai 	spin_lock(&ibmvtpm->rtce_lock);
134b5666502SAshley Lai 	memcpy((void *)buf, (void *)ibmvtpm->rtce_buf, len);
135b5666502SAshley Lai 	memset(ibmvtpm->rtce_buf, 0, len);
136b5666502SAshley Lai 	ibmvtpm->res_len = 0;
137132f7629SAshley Lai 	spin_unlock(&ibmvtpm->rtce_lock);
138132f7629SAshley Lai 	return len;
139132f7629SAshley Lai }
140132f7629SAshley Lai 
141132f7629SAshley Lai /**
142*f5595f5bSJarkko Sakkinen  * tpm_ibmvtpm_send() - Send a TPM command
143132f7629SAshley Lai  * @chip:	tpm chip struct
144132f7629SAshley Lai  * @buf:	buffer contains data to send
14593c12f29SWinkler, Tomas  * @count:	size of buffer
146132f7629SAshley Lai  *
14793c12f29SWinkler, Tomas  * Return:
148*f5595f5bSJarkko Sakkinen  *   0 on success,
149*f5595f5bSJarkko Sakkinen  *   -errno on error
150132f7629SAshley Lai  */
151132f7629SAshley Lai static int tpm_ibmvtpm_send(struct tpm_chip *chip, u8 *buf, size_t count)
152132f7629SAshley Lai {
1539e0d39d8SChristophe Ricard 	struct ibmvtpm_dev *ibmvtpm = dev_get_drvdata(&chip->dev);
1546674ff14SStefan Berger 	int rc, sig;
155132f7629SAshley Lai 
156132f7629SAshley Lai 	if (!ibmvtpm->rtce_buf) {
157132f7629SAshley Lai 		dev_err(ibmvtpm->dev, "ibmvtpm device is not ready\n");
158132f7629SAshley Lai 		return 0;
159132f7629SAshley Lai 	}
160132f7629SAshley Lai 
161132f7629SAshley Lai 	if (count > ibmvtpm->rtce_size) {
162132f7629SAshley Lai 		dev_err(ibmvtpm->dev,
16337ab0341SJason Gunthorpe 			"Invalid size in send: count=%zd, rtce_size=%d\n",
164132f7629SAshley Lai 			count, ibmvtpm->rtce_size);
165132f7629SAshley Lai 		return -EIO;
166132f7629SAshley Lai 	}
167132f7629SAshley Lai 
1686674ff14SStefan Berger 	if (ibmvtpm->tpm_processing_cmd) {
1696674ff14SStefan Berger 		dev_info(ibmvtpm->dev,
1706674ff14SStefan Berger 		         "Need to wait for TPM to finish\n");
1716674ff14SStefan Berger 		/* wait for previous command to finish */
1726674ff14SStefan Berger 		sig = wait_event_interruptible(ibmvtpm->wq, !ibmvtpm->tpm_processing_cmd);
1736674ff14SStefan Berger 		if (sig)
1746674ff14SStefan Berger 			return -EINTR;
1756674ff14SStefan Berger 	}
1766674ff14SStefan Berger 
177132f7629SAshley Lai 	spin_lock(&ibmvtpm->rtce_lock);
1786674ff14SStefan Berger 	ibmvtpm->res_len = 0;
179132f7629SAshley Lai 	memcpy((void *)ibmvtpm->rtce_buf, (void *)buf, count);
180132f7629SAshley Lai 
1816674ff14SStefan Berger 	/*
1826674ff14SStefan Berger 	 * set the processing flag before the Hcall, since we may get the
1836674ff14SStefan Berger 	 * result (interrupt) before even being able to check rc.
1846674ff14SStefan Berger 	 */
1856674ff14SStefan Berger 	ibmvtpm->tpm_processing_cmd = true;
1866674ff14SStefan Berger 
187fb154e0eSMichal Suchanek 	rc = ibmvtpm_send_crq(ibmvtpm->vdev,
188fb154e0eSMichal Suchanek 			IBMVTPM_VALID_CMD, VTPM_TPM_COMMAND,
189fb154e0eSMichal Suchanek 			count, ibmvtpm->rtce_dma_handle);
190132f7629SAshley Lai 	if (rc != H_SUCCESS) {
191132f7629SAshley Lai 		dev_err(ibmvtpm->dev, "tpm_ibmvtpm_send failed rc=%d\n", rc);
192132f7629SAshley Lai 		rc = 0;
1936674ff14SStefan Berger 		ibmvtpm->tpm_processing_cmd = false;
194132f7629SAshley Lai 	} else
195*f5595f5bSJarkko Sakkinen 		rc = 0;
196132f7629SAshley Lai 
197132f7629SAshley Lai 	spin_unlock(&ibmvtpm->rtce_lock);
198132f7629SAshley Lai 	return rc;
199132f7629SAshley Lai }
200132f7629SAshley Lai 
201132f7629SAshley Lai static void tpm_ibmvtpm_cancel(struct tpm_chip *chip)
202132f7629SAshley Lai {
203132f7629SAshley Lai 	return;
204132f7629SAshley Lai }
205132f7629SAshley Lai 
206132f7629SAshley Lai static u8 tpm_ibmvtpm_status(struct tpm_chip *chip)
207132f7629SAshley Lai {
208132f7629SAshley Lai 	return 0;
209132f7629SAshley Lai }
210132f7629SAshley Lai 
211132f7629SAshley Lai /**
212132f7629SAshley Lai  * ibmvtpm_crq_get_rtce_size - Send a CRQ request to get rtce size
21393c12f29SWinkler, Tomas  *
214132f7629SAshley Lai  * @ibmvtpm:	vtpm device struct
215132f7629SAshley Lai  *
21693c12f29SWinkler, Tomas  * Return:
21793c12f29SWinkler, Tomas  *	0 on success.
21893c12f29SWinkler, Tomas  *	Non-zero on failure.
219132f7629SAshley Lai  */
220132f7629SAshley Lai static int ibmvtpm_crq_get_rtce_size(struct ibmvtpm_dev *ibmvtpm)
221132f7629SAshley Lai {
222132f7629SAshley Lai 	int rc;
223132f7629SAshley Lai 
224fb154e0eSMichal Suchanek 	rc = ibmvtpm_send_crq(ibmvtpm->vdev,
225fb154e0eSMichal Suchanek 			IBMVTPM_VALID_CMD, VTPM_GET_RTCE_BUFFER_SIZE, 0, 0);
226132f7629SAshley Lai 	if (rc != H_SUCCESS)
227132f7629SAshley Lai 		dev_err(ibmvtpm->dev,
228132f7629SAshley Lai 			"ibmvtpm_crq_get_rtce_size failed rc=%d\n", rc);
229132f7629SAshley Lai 
230132f7629SAshley Lai 	return rc;
231132f7629SAshley Lai }
232132f7629SAshley Lai 
233132f7629SAshley Lai /**
234132f7629SAshley Lai  * ibmvtpm_crq_get_version - Send a CRQ request to get vtpm version
235132f7629SAshley Lai  *			   - Note that this is vtpm version and not tpm version
23693c12f29SWinkler, Tomas  *
237132f7629SAshley Lai  * @ibmvtpm:	vtpm device struct
238132f7629SAshley Lai  *
23993c12f29SWinkler, Tomas  * Return:
24093c12f29SWinkler, Tomas  *	0 on success.
24193c12f29SWinkler, Tomas  *	Non-zero on failure.
242132f7629SAshley Lai  */
243132f7629SAshley Lai static int ibmvtpm_crq_get_version(struct ibmvtpm_dev *ibmvtpm)
244132f7629SAshley Lai {
245132f7629SAshley Lai 	int rc;
246132f7629SAshley Lai 
247fb154e0eSMichal Suchanek 	rc = ibmvtpm_send_crq(ibmvtpm->vdev,
248fb154e0eSMichal Suchanek 			IBMVTPM_VALID_CMD, VTPM_GET_VERSION, 0, 0);
249132f7629SAshley Lai 	if (rc != H_SUCCESS)
250132f7629SAshley Lai 		dev_err(ibmvtpm->dev,
251132f7629SAshley Lai 			"ibmvtpm_crq_get_version failed rc=%d\n", rc);
252132f7629SAshley Lai 
253132f7629SAshley Lai 	return rc;
254132f7629SAshley Lai }
255132f7629SAshley Lai 
256132f7629SAshley Lai /**
257132f7629SAshley Lai  * ibmvtpm_crq_send_init_complete - Send a CRQ initialize complete message
258132f7629SAshley Lai  * @ibmvtpm:	vtpm device struct
259132f7629SAshley Lai  *
26093c12f29SWinkler, Tomas  * Return:
26193c12f29SWinkler, Tomas  *	0 on success.
26293c12f29SWinkler, Tomas  *	Non-zero on failure.
263132f7629SAshley Lai  */
264132f7629SAshley Lai static int ibmvtpm_crq_send_init_complete(struct ibmvtpm_dev *ibmvtpm)
265132f7629SAshley Lai {
266132f7629SAshley Lai 	int rc;
267132f7629SAshley Lai 
268fb154e0eSMichal Suchanek 	rc = ibmvtpm_send_crq_word(ibmvtpm->vdev, INIT_CRQ_COMP_CMD);
269132f7629SAshley Lai 	if (rc != H_SUCCESS)
270132f7629SAshley Lai 		dev_err(ibmvtpm->dev,
271132f7629SAshley Lai 			"ibmvtpm_crq_send_init_complete failed rc=%d\n", rc);
272132f7629SAshley Lai 
273132f7629SAshley Lai 	return rc;
274132f7629SAshley Lai }
275132f7629SAshley Lai 
276132f7629SAshley Lai /**
277132f7629SAshley Lai  * ibmvtpm_crq_send_init - Send a CRQ initialize message
278132f7629SAshley Lai  * @ibmvtpm:	vtpm device struct
279132f7629SAshley Lai  *
28093c12f29SWinkler, Tomas  * Return:
28193c12f29SWinkler, Tomas  *	0 on success.
28293c12f29SWinkler, Tomas  *	Non-zero on failure.
283132f7629SAshley Lai  */
284132f7629SAshley Lai static int ibmvtpm_crq_send_init(struct ibmvtpm_dev *ibmvtpm)
285132f7629SAshley Lai {
286132f7629SAshley Lai 	int rc;
287132f7629SAshley Lai 
288fb154e0eSMichal Suchanek 	rc = ibmvtpm_send_crq_word(ibmvtpm->vdev, INIT_CRQ_CMD);
289132f7629SAshley Lai 	if (rc != H_SUCCESS)
290132f7629SAshley Lai 		dev_err(ibmvtpm->dev,
291132f7629SAshley Lai 			"ibmvtpm_crq_send_init failed rc=%d\n", rc);
292132f7629SAshley Lai 
293132f7629SAshley Lai 	return rc;
294132f7629SAshley Lai }
295132f7629SAshley Lai 
296132f7629SAshley Lai /**
297132f7629SAshley Lai  * tpm_ibmvtpm_remove - ibm vtpm remove entry point
298132f7629SAshley Lai  * @vdev:	vio device struct
299132f7629SAshley Lai  *
30093c12f29SWinkler, Tomas  * Return: Always 0.
301132f7629SAshley Lai  */
30239af33fcSBill Pemberton static int tpm_ibmvtpm_remove(struct vio_dev *vdev)
303132f7629SAshley Lai {
3049e0d39d8SChristophe Ricard 	struct tpm_chip *chip = dev_get_drvdata(&vdev->dev);
3059e0d39d8SChristophe Ricard 	struct ibmvtpm_dev *ibmvtpm = dev_get_drvdata(&chip->dev);
306132f7629SAshley Lai 	int rc = 0;
307132f7629SAshley Lai 
308afb5abc2SJarkko Sakkinen 	tpm_chip_unregister(chip);
309afb5abc2SJarkko Sakkinen 
310132f7629SAshley Lai 	free_irq(vdev->irq, ibmvtpm);
311132f7629SAshley Lai 
312132f7629SAshley Lai 	do {
313132f7629SAshley Lai 		if (rc)
314132f7629SAshley Lai 			msleep(100);
315132f7629SAshley Lai 		rc = plpar_hcall_norets(H_FREE_CRQ, vdev->unit_address);
316132f7629SAshley Lai 	} while (rc == H_BUSY || H_IS_LONG_BUSY(rc));
317132f7629SAshley Lai 
318132f7629SAshley Lai 	dma_unmap_single(ibmvtpm->dev, ibmvtpm->crq_dma_handle,
319132f7629SAshley Lai 			 CRQ_RES_BUF_SIZE, DMA_BIDIRECTIONAL);
320132f7629SAshley Lai 	free_page((unsigned long)ibmvtpm->crq_queue.crq_addr);
321132f7629SAshley Lai 
322132f7629SAshley Lai 	if (ibmvtpm->rtce_buf) {
323132f7629SAshley Lai 		dma_unmap_single(ibmvtpm->dev, ibmvtpm->rtce_dma_handle,
324132f7629SAshley Lai 				 ibmvtpm->rtce_size, DMA_BIDIRECTIONAL);
325132f7629SAshley Lai 		kfree(ibmvtpm->rtce_buf);
326132f7629SAshley Lai 	}
327132f7629SAshley Lai 
328132f7629SAshley Lai 	kfree(ibmvtpm);
32931574d32SHon Ching \(Vicky\) Lo 	/* For tpm_ibmvtpm_get_desired_dma */
33031574d32SHon Ching \(Vicky\) Lo 	dev_set_drvdata(&vdev->dev, NULL);
331132f7629SAshley Lai 
332132f7629SAshley Lai 	return 0;
333132f7629SAshley Lai }
334132f7629SAshley Lai 
335132f7629SAshley Lai /**
336132f7629SAshley Lai  * tpm_ibmvtpm_get_desired_dma - Get DMA size needed by this driver
337132f7629SAshley Lai  * @vdev:	vio device struct
338132f7629SAshley Lai  *
33993c12f29SWinkler, Tomas  * Return:
34093c12f29SWinkler, Tomas  *	Number of bytes the driver needs to DMA map.
341132f7629SAshley Lai  */
342132f7629SAshley Lai static unsigned long tpm_ibmvtpm_get_desired_dma(struct vio_dev *vdev)
343132f7629SAshley Lai {
3449e0d39d8SChristophe Ricard 	struct tpm_chip *chip = dev_get_drvdata(&vdev->dev);
34531574d32SHon Ching \(Vicky\) Lo 	struct ibmvtpm_dev *ibmvtpm;
34684eb186bSHon Ching (Vicky) Lo 
34793c12f29SWinkler, Tomas 	/*
34893c12f29SWinkler, Tomas 	 * ibmvtpm initializes at probe time, so the data we are
34984eb186bSHon Ching (Vicky) Lo 	 * asking for may not be set yet. Estimate that 4K required
35084eb186bSHon Ching (Vicky) Lo 	 * for TCE-mapped buffer in addition to CRQ.
35184eb186bSHon Ching (Vicky) Lo 	 */
35231574d32SHon Ching \(Vicky\) Lo 	if (chip)
35331574d32SHon Ching \(Vicky\) Lo 		ibmvtpm = dev_get_drvdata(&chip->dev);
35431574d32SHon Ching \(Vicky\) Lo 	else
35584eb186bSHon Ching (Vicky) Lo 		return CRQ_RES_BUF_SIZE + PAGE_SIZE;
35684eb186bSHon Ching (Vicky) Lo 
357132f7629SAshley Lai 	return CRQ_RES_BUF_SIZE + ibmvtpm->rtce_size;
358132f7629SAshley Lai }
359132f7629SAshley Lai 
360132f7629SAshley Lai /**
361132f7629SAshley Lai  * tpm_ibmvtpm_suspend - Suspend
362132f7629SAshley Lai  * @dev:	device struct
363132f7629SAshley Lai  *
36493c12f29SWinkler, Tomas  * Return: Always 0.
365132f7629SAshley Lai  */
366132f7629SAshley Lai static int tpm_ibmvtpm_suspend(struct device *dev)
367132f7629SAshley Lai {
3689e0d39d8SChristophe Ricard 	struct tpm_chip *chip = dev_get_drvdata(dev);
3699e0d39d8SChristophe Ricard 	struct ibmvtpm_dev *ibmvtpm = dev_get_drvdata(&chip->dev);
370132f7629SAshley Lai 	int rc = 0;
371132f7629SAshley Lai 
372fb154e0eSMichal Suchanek 	rc = ibmvtpm_send_crq(ibmvtpm->vdev,
373fb154e0eSMichal Suchanek 			IBMVTPM_VALID_CMD, VTPM_PREPARE_TO_SUSPEND, 0, 0);
374132f7629SAshley Lai 	if (rc != H_SUCCESS)
375132f7629SAshley Lai 		dev_err(ibmvtpm->dev,
376132f7629SAshley Lai 			"tpm_ibmvtpm_suspend failed rc=%d\n", rc);
377132f7629SAshley Lai 
378132f7629SAshley Lai 	return rc;
379132f7629SAshley Lai }
380132f7629SAshley Lai 
381132f7629SAshley Lai /**
382132f7629SAshley Lai  * ibmvtpm_reset_crq - Reset CRQ
38393c12f29SWinkler, Tomas  *
384132f7629SAshley Lai  * @ibmvtpm:	ibm vtpm struct
385132f7629SAshley Lai  *
38693c12f29SWinkler, Tomas  * Return:
38793c12f29SWinkler, Tomas  *	0 on success.
38893c12f29SWinkler, Tomas  *	Non-zero on failure.
389132f7629SAshley Lai  */
390132f7629SAshley Lai static int ibmvtpm_reset_crq(struct ibmvtpm_dev *ibmvtpm)
391132f7629SAshley Lai {
392132f7629SAshley Lai 	int rc = 0;
393132f7629SAshley Lai 
394132f7629SAshley Lai 	do {
395132f7629SAshley Lai 		if (rc)
396132f7629SAshley Lai 			msleep(100);
397132f7629SAshley Lai 		rc = plpar_hcall_norets(H_FREE_CRQ,
398132f7629SAshley Lai 					ibmvtpm->vdev->unit_address);
399132f7629SAshley Lai 	} while (rc == H_BUSY || H_IS_LONG_BUSY(rc));
400132f7629SAshley Lai 
401132f7629SAshley Lai 	memset(ibmvtpm->crq_queue.crq_addr, 0, CRQ_RES_BUF_SIZE);
402132f7629SAshley Lai 	ibmvtpm->crq_queue.index = 0;
403132f7629SAshley Lai 
404132f7629SAshley Lai 	return plpar_hcall_norets(H_REG_CRQ, ibmvtpm->vdev->unit_address,
405132f7629SAshley Lai 				  ibmvtpm->crq_dma_handle, CRQ_RES_BUF_SIZE);
406132f7629SAshley Lai }
407132f7629SAshley Lai 
408132f7629SAshley Lai /**
409132f7629SAshley Lai  * tpm_ibmvtpm_resume - Resume from suspend
41093c12f29SWinkler, Tomas  *
411132f7629SAshley Lai  * @dev:	device struct
412132f7629SAshley Lai  *
41393c12f29SWinkler, Tomas  * Return: Always 0.
414132f7629SAshley Lai  */
415132f7629SAshley Lai static int tpm_ibmvtpm_resume(struct device *dev)
416132f7629SAshley Lai {
4179e0d39d8SChristophe Ricard 	struct tpm_chip *chip = dev_get_drvdata(dev);
4189e0d39d8SChristophe Ricard 	struct ibmvtpm_dev *ibmvtpm = dev_get_drvdata(&chip->dev);
419132f7629SAshley Lai 	int rc = 0;
420132f7629SAshley Lai 
421132f7629SAshley Lai 	do {
422132f7629SAshley Lai 		if (rc)
423132f7629SAshley Lai 			msleep(100);
424132f7629SAshley Lai 		rc = plpar_hcall_norets(H_ENABLE_CRQ,
425132f7629SAshley Lai 					ibmvtpm->vdev->unit_address);
426132f7629SAshley Lai 	} while (rc == H_IN_PROGRESS || rc == H_BUSY || H_IS_LONG_BUSY(rc));
427132f7629SAshley Lai 
428132f7629SAshley Lai 	if (rc) {
429132f7629SAshley Lai 		dev_err(dev, "Error enabling ibmvtpm rc=%d\n", rc);
430132f7629SAshley Lai 		return rc;
431132f7629SAshley Lai 	}
432132f7629SAshley Lai 
433b5666502SAshley Lai 	rc = vio_enable_interrupts(ibmvtpm->vdev);
434b5666502SAshley Lai 	if (rc) {
435b5666502SAshley Lai 		dev_err(dev, "Error vio_enable_interrupts rc=%d\n", rc);
436b5666502SAshley Lai 		return rc;
437b5666502SAshley Lai 	}
438132f7629SAshley Lai 
439132f7629SAshley Lai 	rc = ibmvtpm_crq_send_init(ibmvtpm);
440132f7629SAshley Lai 	if (rc)
441132f7629SAshley Lai 		dev_err(dev, "Error send_init rc=%d\n", rc);
442132f7629SAshley Lai 
443132f7629SAshley Lai 	return rc;
444132f7629SAshley Lai }
445132f7629SAshley Lai 
4461f866057SStefan Berger static bool tpm_ibmvtpm_req_canceled(struct tpm_chip *chip, u8 status)
4471f866057SStefan Berger {
4481f866057SStefan Berger 	return (status == 0);
4491f866057SStefan Berger }
4501f866057SStefan Berger 
45101ad1fa7SJason Gunthorpe static const struct tpm_class_ops tpm_ibmvtpm = {
452132f7629SAshley Lai 	.recv = tpm_ibmvtpm_recv,
453132f7629SAshley Lai 	.send = tpm_ibmvtpm_send,
454132f7629SAshley Lai 	.cancel = tpm_ibmvtpm_cancel,
455132f7629SAshley Lai 	.status = tpm_ibmvtpm_status,
456132f7629SAshley Lai 	.req_complete_mask = 0,
457132f7629SAshley Lai 	.req_complete_val = 0,
4581f866057SStefan Berger 	.req_canceled = tpm_ibmvtpm_req_canceled,
459132f7629SAshley Lai };
460132f7629SAshley Lai 
461132f7629SAshley Lai static const struct dev_pm_ops tpm_ibmvtpm_pm_ops = {
462132f7629SAshley Lai 	.suspend = tpm_ibmvtpm_suspend,
463132f7629SAshley Lai 	.resume = tpm_ibmvtpm_resume,
464132f7629SAshley Lai };
465132f7629SAshley Lai 
466132f7629SAshley Lai /**
467132f7629SAshley Lai  * ibmvtpm_crq_get_next - Get next responded crq
468132f7629SAshley Lai  *
46993c12f29SWinkler, Tomas  * @ibmvtpm:	vtpm device struct
47093c12f29SWinkler, Tomas  *
47193c12f29SWinkler, Tomas  * Return: vtpm crq pointer or NULL.
472132f7629SAshley Lai  */
473132f7629SAshley Lai static struct ibmvtpm_crq *ibmvtpm_crq_get_next(struct ibmvtpm_dev *ibmvtpm)
474132f7629SAshley Lai {
475132f7629SAshley Lai 	struct ibmvtpm_crq_queue *crq_q = &ibmvtpm->crq_queue;
476132f7629SAshley Lai 	struct ibmvtpm_crq *crq = &crq_q->crq_addr[crq_q->index];
477132f7629SAshley Lai 
478132f7629SAshley Lai 	if (crq->valid & VTPM_MSG_RES) {
479132f7629SAshley Lai 		if (++crq_q->index == crq_q->num_entry)
480132f7629SAshley Lai 			crq_q->index = 0;
481b5666502SAshley Lai 		smp_rmb();
482132f7629SAshley Lai 	} else
483132f7629SAshley Lai 		crq = NULL;
484132f7629SAshley Lai 	return crq;
485132f7629SAshley Lai }
486132f7629SAshley Lai 
487132f7629SAshley Lai /**
488132f7629SAshley Lai  * ibmvtpm_crq_process - Process responded crq
489132f7629SAshley Lai  *
49093c12f29SWinkler, Tomas  * @crq:	crq to be processed
49193c12f29SWinkler, Tomas  * @ibmvtpm:	vtpm device struct
49293c12f29SWinkler, Tomas  *
493132f7629SAshley Lai  */
494132f7629SAshley Lai static void ibmvtpm_crq_process(struct ibmvtpm_crq *crq,
495132f7629SAshley Lai 				struct ibmvtpm_dev *ibmvtpm)
496132f7629SAshley Lai {
497132f7629SAshley Lai 	int rc = 0;
498132f7629SAshley Lai 
499132f7629SAshley Lai 	switch (crq->valid) {
500132f7629SAshley Lai 	case VALID_INIT_CRQ:
501132f7629SAshley Lai 		switch (crq->msg) {
502132f7629SAshley Lai 		case INIT_CRQ_RES:
503132f7629SAshley Lai 			dev_info(ibmvtpm->dev, "CRQ initialized\n");
504132f7629SAshley Lai 			rc = ibmvtpm_crq_send_init_complete(ibmvtpm);
505132f7629SAshley Lai 			if (rc)
506132f7629SAshley Lai 				dev_err(ibmvtpm->dev, "Unable to send CRQ init complete rc=%d\n", rc);
507132f7629SAshley Lai 			return;
508132f7629SAshley Lai 		case INIT_CRQ_COMP_RES:
509132f7629SAshley Lai 			dev_info(ibmvtpm->dev,
510132f7629SAshley Lai 				 "CRQ initialization completed\n");
511132f7629SAshley Lai 			return;
512132f7629SAshley Lai 		default:
513132f7629SAshley Lai 			dev_err(ibmvtpm->dev, "Unknown crq message type: %d\n", crq->msg);
514132f7629SAshley Lai 			return;
515132f7629SAshley Lai 		}
516132f7629SAshley Lai 	case IBMVTPM_VALID_CMD:
517132f7629SAshley Lai 		switch (crq->msg) {
518132f7629SAshley Lai 		case VTPM_GET_RTCE_BUFFER_SIZE_RES:
519eb71f8a5Shonclo 			if (be16_to_cpu(crq->len) <= 0) {
520132f7629SAshley Lai 				dev_err(ibmvtpm->dev, "Invalid rtce size\n");
521132f7629SAshley Lai 				return;
522132f7629SAshley Lai 			}
523eb71f8a5Shonclo 			ibmvtpm->rtce_size = be16_to_cpu(crq->len);
524132f7629SAshley Lai 			ibmvtpm->rtce_buf = kmalloc(ibmvtpm->rtce_size,
52560ecd86cSHon Ching \(Vicky\) Lo 						    GFP_ATOMIC);
526132f7629SAshley Lai 			if (!ibmvtpm->rtce_buf) {
527132f7629SAshley Lai 				dev_err(ibmvtpm->dev, "Failed to allocate memory for rtce buffer\n");
528132f7629SAshley Lai 				return;
529132f7629SAshley Lai 			}
530132f7629SAshley Lai 
531132f7629SAshley Lai 			ibmvtpm->rtce_dma_handle = dma_map_single(ibmvtpm->dev,
532132f7629SAshley Lai 				ibmvtpm->rtce_buf, ibmvtpm->rtce_size,
533132f7629SAshley Lai 				DMA_BIDIRECTIONAL);
534132f7629SAshley Lai 
535132f7629SAshley Lai 			if (dma_mapping_error(ibmvtpm->dev,
536132f7629SAshley Lai 					      ibmvtpm->rtce_dma_handle)) {
537132f7629SAshley Lai 				kfree(ibmvtpm->rtce_buf);
538132f7629SAshley Lai 				ibmvtpm->rtce_buf = NULL;
539132f7629SAshley Lai 				dev_err(ibmvtpm->dev, "Failed to dma map rtce buffer\n");
540132f7629SAshley Lai 			}
541132f7629SAshley Lai 
542132f7629SAshley Lai 			return;
543132f7629SAshley Lai 		case VTPM_GET_VERSION_RES:
544eb71f8a5Shonclo 			ibmvtpm->vtpm_version = be32_to_cpu(crq->data);
545132f7629SAshley Lai 			return;
546132f7629SAshley Lai 		case VTPM_TPM_COMMAND_RES:
547b5666502SAshley Lai 			/* len of the data in rtce buffer */
548eb71f8a5Shonclo 			ibmvtpm->res_len = be16_to_cpu(crq->len);
5496674ff14SStefan Berger 			ibmvtpm->tpm_processing_cmd = false;
550b5666502SAshley Lai 			wake_up_interruptible(&ibmvtpm->wq);
551132f7629SAshley Lai 			return;
552132f7629SAshley Lai 		default:
553132f7629SAshley Lai 			return;
554132f7629SAshley Lai 		}
555132f7629SAshley Lai 	}
556132f7629SAshley Lai 	return;
557132f7629SAshley Lai }
558132f7629SAshley Lai 
559132f7629SAshley Lai /**
560132f7629SAshley Lai  * ibmvtpm_interrupt -	Interrupt handler
56193c12f29SWinkler, Tomas  *
562132f7629SAshley Lai  * @irq:		irq number to handle
563132f7629SAshley Lai  * @vtpm_instance:	vtpm that received interrupt
564132f7629SAshley Lai  *
565132f7629SAshley Lai  * Returns:
566132f7629SAshley Lai  *	IRQ_HANDLED
567132f7629SAshley Lai  **/
568132f7629SAshley Lai static irqreturn_t ibmvtpm_interrupt(int irq, void *vtpm_instance)
569132f7629SAshley Lai {
570132f7629SAshley Lai 	struct ibmvtpm_dev *ibmvtpm = (struct ibmvtpm_dev *) vtpm_instance;
571132f7629SAshley Lai 	struct ibmvtpm_crq *crq;
572132f7629SAshley Lai 
573b5666502SAshley Lai 	/* while loop is needed for initial setup (get version and
574b5666502SAshley Lai 	 * get rtce_size). There should be only one tpm request at any
575b5666502SAshley Lai 	 * given time.
576b5666502SAshley Lai 	 */
577132f7629SAshley Lai 	while ((crq = ibmvtpm_crq_get_next(ibmvtpm)) != NULL) {
578132f7629SAshley Lai 		ibmvtpm_crq_process(crq, ibmvtpm);
579132f7629SAshley Lai 		crq->valid = 0;
580b5666502SAshley Lai 		smp_wmb();
581132f7629SAshley Lai 	}
582132f7629SAshley Lai 
583b5666502SAshley Lai 	return IRQ_HANDLED;
584132f7629SAshley Lai }
585132f7629SAshley Lai 
586132f7629SAshley Lai /**
587132f7629SAshley Lai  * tpm_ibmvtpm_probe - ibm vtpm initialize entry point
58893c12f29SWinkler, Tomas  *
589132f7629SAshley Lai  * @vio_dev:	vio device struct
590132f7629SAshley Lai  * @id:		vio device id struct
591132f7629SAshley Lai  *
59293c12f29SWinkler, Tomas  * Return:
59393c12f29SWinkler, Tomas  *	0 on success.
59493c12f29SWinkler, Tomas  *	Non-zero on failure.
595132f7629SAshley Lai  */
596afc6d369SBill Pemberton static int tpm_ibmvtpm_probe(struct vio_dev *vio_dev,
597132f7629SAshley Lai 				   const struct vio_device_id *id)
598132f7629SAshley Lai {
599132f7629SAshley Lai 	struct ibmvtpm_dev *ibmvtpm;
600132f7629SAshley Lai 	struct device *dev = &vio_dev->dev;
601132f7629SAshley Lai 	struct ibmvtpm_crq_queue *crq_q;
602132f7629SAshley Lai 	struct tpm_chip *chip;
603132f7629SAshley Lai 	int rc = -ENOMEM, rc1;
604132f7629SAshley Lai 
605afb5abc2SJarkko Sakkinen 	chip = tpmm_chip_alloc(dev, &tpm_ibmvtpm);
606afb5abc2SJarkko Sakkinen 	if (IS_ERR(chip))
607afb5abc2SJarkko Sakkinen 		return PTR_ERR(chip);
608132f7629SAshley Lai 
609132f7629SAshley Lai 	ibmvtpm = kzalloc(sizeof(struct ibmvtpm_dev), GFP_KERNEL);
610132f7629SAshley Lai 	if (!ibmvtpm) {
611132f7629SAshley Lai 		dev_err(dev, "kzalloc for ibmvtpm failed\n");
612132f7629SAshley Lai 		goto cleanup;
613132f7629SAshley Lai 	}
614132f7629SAshley Lai 
6159d75f089SHon Ching \(Vicky\) Lo 	ibmvtpm->dev = dev;
6169d75f089SHon Ching \(Vicky\) Lo 	ibmvtpm->vdev = vio_dev;
6179d75f089SHon Ching \(Vicky\) Lo 
618132f7629SAshley Lai 	crq_q = &ibmvtpm->crq_queue;
619132f7629SAshley Lai 	crq_q->crq_addr = (struct ibmvtpm_crq *)get_zeroed_page(GFP_KERNEL);
620132f7629SAshley Lai 	if (!crq_q->crq_addr) {
621132f7629SAshley Lai 		dev_err(dev, "Unable to allocate memory for crq_addr\n");
622132f7629SAshley Lai 		goto cleanup;
623132f7629SAshley Lai 	}
624132f7629SAshley Lai 
625132f7629SAshley Lai 	crq_q->num_entry = CRQ_RES_BUF_SIZE / sizeof(*crq_q->crq_addr);
626132f7629SAshley Lai 	ibmvtpm->crq_dma_handle = dma_map_single(dev, crq_q->crq_addr,
627132f7629SAshley Lai 						 CRQ_RES_BUF_SIZE,
628132f7629SAshley Lai 						 DMA_BIDIRECTIONAL);
629132f7629SAshley Lai 
630132f7629SAshley Lai 	if (dma_mapping_error(dev, ibmvtpm->crq_dma_handle)) {
631132f7629SAshley Lai 		dev_err(dev, "dma mapping failed\n");
632132f7629SAshley Lai 		goto cleanup;
633132f7629SAshley Lai 	}
634132f7629SAshley Lai 
635132f7629SAshley Lai 	rc = plpar_hcall_norets(H_REG_CRQ, vio_dev->unit_address,
636132f7629SAshley Lai 				ibmvtpm->crq_dma_handle, CRQ_RES_BUF_SIZE);
637132f7629SAshley Lai 	if (rc == H_RESOURCE)
638132f7629SAshley Lai 		rc = ibmvtpm_reset_crq(ibmvtpm);
639132f7629SAshley Lai 
640132f7629SAshley Lai 	if (rc) {
641132f7629SAshley Lai 		dev_err(dev, "Unable to register CRQ rc=%d\n", rc);
642132f7629SAshley Lai 		goto reg_crq_cleanup;
643132f7629SAshley Lai 	}
644132f7629SAshley Lai 
645132f7629SAshley Lai 	rc = request_irq(vio_dev->irq, ibmvtpm_interrupt, 0,
646132f7629SAshley Lai 			 tpm_ibmvtpm_driver_name, ibmvtpm);
647132f7629SAshley Lai 	if (rc) {
648132f7629SAshley Lai 		dev_err(dev, "Error %d register irq 0x%x\n", rc, vio_dev->irq);
649132f7629SAshley Lai 		goto init_irq_cleanup;
650132f7629SAshley Lai 	}
651132f7629SAshley Lai 
652132f7629SAshley Lai 	rc = vio_enable_interrupts(vio_dev);
653132f7629SAshley Lai 	if (rc) {
654132f7629SAshley Lai 		dev_err(dev, "Error %d enabling interrupts\n", rc);
655132f7629SAshley Lai 		goto init_irq_cleanup;
656132f7629SAshley Lai 	}
657132f7629SAshley Lai 
658b5666502SAshley Lai 	init_waitqueue_head(&ibmvtpm->wq);
659b5666502SAshley Lai 
660132f7629SAshley Lai 	crq_q->index = 0;
661132f7629SAshley Lai 
66275254557SStephen Rothwell 	dev_set_drvdata(&chip->dev, ibmvtpm);
663132f7629SAshley Lai 
664132f7629SAshley Lai 	spin_lock_init(&ibmvtpm->rtce_lock);
665132f7629SAshley Lai 
666132f7629SAshley Lai 	rc = ibmvtpm_crq_send_init(ibmvtpm);
667132f7629SAshley Lai 	if (rc)
668132f7629SAshley Lai 		goto init_irq_cleanup;
669132f7629SAshley Lai 
670132f7629SAshley Lai 	rc = ibmvtpm_crq_get_version(ibmvtpm);
671132f7629SAshley Lai 	if (rc)
672132f7629SAshley Lai 		goto init_irq_cleanup;
673132f7629SAshley Lai 
674132f7629SAshley Lai 	rc = ibmvtpm_crq_get_rtce_size(ibmvtpm);
675132f7629SAshley Lai 	if (rc)
676132f7629SAshley Lai 		goto init_irq_cleanup;
677132f7629SAshley Lai 
678afb5abc2SJarkko Sakkinen 	return tpm_chip_register(chip);
679132f7629SAshley Lai init_irq_cleanup:
680132f7629SAshley Lai 	do {
681132f7629SAshley Lai 		rc1 = plpar_hcall_norets(H_FREE_CRQ, vio_dev->unit_address);
682132f7629SAshley Lai 	} while (rc1 == H_BUSY || H_IS_LONG_BUSY(rc1));
683132f7629SAshley Lai reg_crq_cleanup:
684132f7629SAshley Lai 	dma_unmap_single(dev, ibmvtpm->crq_dma_handle, CRQ_RES_BUF_SIZE,
685132f7629SAshley Lai 			 DMA_BIDIRECTIONAL);
686132f7629SAshley Lai cleanup:
687132f7629SAshley Lai 	if (ibmvtpm) {
688132f7629SAshley Lai 		if (crq_q->crq_addr)
689132f7629SAshley Lai 			free_page((unsigned long)crq_q->crq_addr);
690132f7629SAshley Lai 		kfree(ibmvtpm);
691132f7629SAshley Lai 	}
692132f7629SAshley Lai 
693132f7629SAshley Lai 	return rc;
694132f7629SAshley Lai }
695132f7629SAshley Lai 
696132f7629SAshley Lai static struct vio_driver ibmvtpm_driver = {
697132f7629SAshley Lai 	.id_table	 = tpm_ibmvtpm_device_table,
698132f7629SAshley Lai 	.probe		 = tpm_ibmvtpm_probe,
699132f7629SAshley Lai 	.remove		 = tpm_ibmvtpm_remove,
700132f7629SAshley Lai 	.get_desired_dma = tpm_ibmvtpm_get_desired_dma,
701132f7629SAshley Lai 	.name		 = tpm_ibmvtpm_driver_name,
702132f7629SAshley Lai 	.pm		 = &tpm_ibmvtpm_pm_ops,
703132f7629SAshley Lai };
704132f7629SAshley Lai 
705132f7629SAshley Lai /**
70693c12f29SWinkler, Tomas  * ibmvtpm_module_init - Initialize ibm vtpm module.
707132f7629SAshley Lai  *
70893c12f29SWinkler, Tomas  *
70993c12f29SWinkler, Tomas  * Return:
71093c12f29SWinkler, Tomas  *	0 on success.
71193c12f29SWinkler, Tomas  *	Non-zero on failure.
712132f7629SAshley Lai  */
713132f7629SAshley Lai static int __init ibmvtpm_module_init(void)
714132f7629SAshley Lai {
715132f7629SAshley Lai 	return vio_register_driver(&ibmvtpm_driver);
716132f7629SAshley Lai }
717132f7629SAshley Lai 
718132f7629SAshley Lai /**
71993c12f29SWinkler, Tomas  * ibmvtpm_module_exit - Tear down ibm vtpm module.
720132f7629SAshley Lai  */
721132f7629SAshley Lai static void __exit ibmvtpm_module_exit(void)
722132f7629SAshley Lai {
723132f7629SAshley Lai 	vio_unregister_driver(&ibmvtpm_driver);
724132f7629SAshley Lai }
725132f7629SAshley Lai 
726132f7629SAshley Lai module_init(ibmvtpm_module_init);
727132f7629SAshley Lai module_exit(ibmvtpm_module_exit);
728132f7629SAshley Lai 
729132f7629SAshley Lai MODULE_AUTHOR("adlai@us.ibm.com");
730132f7629SAshley Lai MODULE_DESCRIPTION("IBM vTPM Driver");
731132f7629SAshley Lai MODULE_VERSION("1.0");
732132f7629SAshley Lai MODULE_LICENSE("GPL");
733