WIP FPC-III support
[linux/fpc-iii.git] / drivers / char / tpm / st33zp24 / spi.c
bloba75dafd3944517dda0eacf52175062dbd5bf9ea4
1 // SPDX-License-Identifier: GPL-2.0-or-later
2 /*
3 * STMicroelectronics TPM SPI Linux driver for TPM ST33ZP24
4 * Copyright (C) 2009 - 2016 STMicroelectronics
5 */
7 #include <linux/module.h>
8 #include <linux/spi/spi.h>
9 #include <linux/gpio.h>
10 #include <linux/gpio/consumer.h>
11 #include <linux/of_irq.h>
12 #include <linux/of_gpio.h>
13 #include <linux/acpi.h>
14 #include <linux/tpm.h>
15 #include <linux/platform_data/st33zp24.h>
17 #include "../tpm.h"
18 #include "st33zp24.h"
20 #define TPM_DATA_FIFO 0x24
21 #define TPM_INTF_CAPABILITY 0x14
23 #define TPM_DUMMY_BYTE 0x00
25 #define MAX_SPI_LATENCY 15
26 #define LOCALITY0 0
28 #define ST33ZP24_OK 0x5A
29 #define ST33ZP24_UNDEFINED_ERR 0x80
30 #define ST33ZP24_BADLOCALITY 0x81
31 #define ST33ZP24_TISREGISTER_UNKNOWN 0x82
32 #define ST33ZP24_LOCALITY_NOT_ACTIVATED 0x83
33 #define ST33ZP24_HASH_END_BEFORE_HASH_START 0x84
34 #define ST33ZP24_BAD_COMMAND_ORDER 0x85
35 #define ST33ZP24_INCORECT_RECEIVED_LENGTH 0x86
36 #define ST33ZP24_TPM_FIFO_OVERFLOW 0x89
37 #define ST33ZP24_UNEXPECTED_READ_FIFO 0x8A
38 #define ST33ZP24_UNEXPECTED_WRITE_FIFO 0x8B
39 #define ST33ZP24_CMDRDY_SET_WHEN_PROCESSING_HASH_END 0x90
40 #define ST33ZP24_DUMMY_BYTES 0x00
43 * TPM command can be up to 2048 byte, A TPM response can be up to
44 * 1024 byte.
45 * Between command and response, there are latency byte (up to 15
46 * usually on st33zp24 2 are enough).
48 * Overall when sending a command and expecting an answer we need if
49 * worst case:
50 * 2048 (for the TPM command) + 1024 (for the TPM answer). We need
51 * some latency byte before the answer is available (max 15).
52 * We have 2048 + 1024 + 15.
54 #define ST33ZP24_SPI_BUFFER_SIZE (ST33ZP24_BUFSIZE + (ST33ZP24_BUFSIZE / 2) +\
55 MAX_SPI_LATENCY)
58 struct st33zp24_spi_phy {
59 struct spi_device *spi_device;
61 u8 tx_buf[ST33ZP24_SPI_BUFFER_SIZE];
62 u8 rx_buf[ST33ZP24_SPI_BUFFER_SIZE];
64 int io_lpcpd;
65 int latency;
68 static int st33zp24_status_to_errno(u8 code)
70 switch (code) {
71 case ST33ZP24_OK:
72 return 0;
73 case ST33ZP24_UNDEFINED_ERR:
74 case ST33ZP24_BADLOCALITY:
75 case ST33ZP24_TISREGISTER_UNKNOWN:
76 case ST33ZP24_LOCALITY_NOT_ACTIVATED:
77 case ST33ZP24_HASH_END_BEFORE_HASH_START:
78 case ST33ZP24_BAD_COMMAND_ORDER:
79 case ST33ZP24_UNEXPECTED_READ_FIFO:
80 case ST33ZP24_UNEXPECTED_WRITE_FIFO:
81 case ST33ZP24_CMDRDY_SET_WHEN_PROCESSING_HASH_END:
82 return -EPROTO;
83 case ST33ZP24_INCORECT_RECEIVED_LENGTH:
84 case ST33ZP24_TPM_FIFO_OVERFLOW:
85 return -EMSGSIZE;
86 case ST33ZP24_DUMMY_BYTES:
87 return -ENOSYS;
89 return code;
93 * st33zp24_spi_send
94 * Send byte to the TIS register according to the ST33ZP24 SPI protocol.
95 * @param: phy_id, the phy description
96 * @param: tpm_register, the tpm tis register where the data should be written
97 * @param: tpm_data, the tpm_data to write inside the tpm_register
98 * @param: tpm_size, The length of the data
99 * @return: should be zero if success else a negative error code.
101 static int st33zp24_spi_send(void *phy_id, u8 tpm_register, u8 *tpm_data,
102 int tpm_size)
104 int total_length = 0, ret = 0;
105 struct st33zp24_spi_phy *phy = phy_id;
106 struct spi_device *dev = phy->spi_device;
107 struct spi_transfer spi_xfer = {
108 .tx_buf = phy->tx_buf,
109 .rx_buf = phy->rx_buf,
112 /* Pre-Header */
113 phy->tx_buf[total_length++] = TPM_WRITE_DIRECTION | LOCALITY0;
114 phy->tx_buf[total_length++] = tpm_register;
116 if (tpm_size > 0 && tpm_register == TPM_DATA_FIFO) {
117 phy->tx_buf[total_length++] = tpm_size >> 8;
118 phy->tx_buf[total_length++] = tpm_size;
121 memcpy(&phy->tx_buf[total_length], tpm_data, tpm_size);
122 total_length += tpm_size;
124 memset(&phy->tx_buf[total_length], TPM_DUMMY_BYTE, phy->latency);
126 spi_xfer.len = total_length + phy->latency;
128 ret = spi_sync_transfer(dev, &spi_xfer, 1);
129 if (ret == 0)
130 ret = phy->rx_buf[total_length + phy->latency - 1];
132 return st33zp24_status_to_errno(ret);
133 } /* st33zp24_spi_send() */
136 * st33zp24_spi_read8_recv
137 * Recv byte from the TIS register according to the ST33ZP24 SPI protocol.
138 * @param: phy_id, the phy description
139 * @param: tpm_register, the tpm tis register where the data should be read
140 * @param: tpm_data, the TPM response
141 * @param: tpm_size, tpm TPM response size to read.
142 * @return: should be zero if success else a negative error code.
144 static int st33zp24_spi_read8_reg(void *phy_id, u8 tpm_register, u8 *tpm_data,
145 int tpm_size)
147 int total_length = 0, ret;
148 struct st33zp24_spi_phy *phy = phy_id;
149 struct spi_device *dev = phy->spi_device;
150 struct spi_transfer spi_xfer = {
151 .tx_buf = phy->tx_buf,
152 .rx_buf = phy->rx_buf,
155 /* Pre-Header */
156 phy->tx_buf[total_length++] = LOCALITY0;
157 phy->tx_buf[total_length++] = tpm_register;
159 memset(&phy->tx_buf[total_length], TPM_DUMMY_BYTE,
160 phy->latency + tpm_size);
162 spi_xfer.len = total_length + phy->latency + tpm_size;
164 /* header + status byte + size of the data + status byte */
165 ret = spi_sync_transfer(dev, &spi_xfer, 1);
166 if (tpm_size > 0 && ret == 0) {
167 ret = phy->rx_buf[total_length + phy->latency - 1];
169 memcpy(tpm_data, phy->rx_buf + total_length + phy->latency,
170 tpm_size);
173 return ret;
174 } /* st33zp24_spi_read8_reg() */
177 * st33zp24_spi_recv
178 * Recv byte from the TIS register according to the ST33ZP24 SPI protocol.
179 * @param: phy_id, the phy description
180 * @param: tpm_register, the tpm tis register where the data should be read
181 * @param: tpm_data, the TPM response
182 * @param: tpm_size, tpm TPM response size to read.
183 * @return: number of byte read successfully: should be one if success.
185 static int st33zp24_spi_recv(void *phy_id, u8 tpm_register, u8 *tpm_data,
186 int tpm_size)
188 int ret;
190 ret = st33zp24_spi_read8_reg(phy_id, tpm_register, tpm_data, tpm_size);
191 if (!st33zp24_status_to_errno(ret))
192 return tpm_size;
193 return ret;
194 } /* st33zp24_spi_recv() */
196 static int st33zp24_spi_evaluate_latency(void *phy_id)
198 struct st33zp24_spi_phy *phy = phy_id;
199 int latency = 1, status = 0;
200 u8 data = 0;
202 while (!status && latency < MAX_SPI_LATENCY) {
203 phy->latency = latency;
204 status = st33zp24_spi_read8_reg(phy_id, TPM_INTF_CAPABILITY,
205 &data, 1);
206 latency++;
208 if (status < 0)
209 return status;
210 if (latency == MAX_SPI_LATENCY)
211 return -ENODEV;
213 return latency - 1;
214 } /* evaluate_latency() */
216 static const struct st33zp24_phy_ops spi_phy_ops = {
217 .send = st33zp24_spi_send,
218 .recv = st33zp24_spi_recv,
221 static const struct acpi_gpio_params lpcpd_gpios = { 1, 0, false };
223 static const struct acpi_gpio_mapping acpi_st33zp24_gpios[] = {
224 { "lpcpd-gpios", &lpcpd_gpios, 1 },
228 static int st33zp24_spi_acpi_request_resources(struct spi_device *spi_dev)
230 struct tpm_chip *chip = spi_get_drvdata(spi_dev);
231 struct st33zp24_dev *tpm_dev = dev_get_drvdata(&chip->dev);
232 struct st33zp24_spi_phy *phy = tpm_dev->phy_id;
233 struct gpio_desc *gpiod_lpcpd;
234 struct device *dev = &spi_dev->dev;
235 int ret;
237 ret = devm_acpi_dev_add_driver_gpios(dev, acpi_st33zp24_gpios);
238 if (ret)
239 return ret;
241 /* Get LPCPD GPIO from ACPI */
242 gpiod_lpcpd = devm_gpiod_get(dev, "lpcpd", GPIOD_OUT_HIGH);
243 if (IS_ERR(gpiod_lpcpd)) {
244 dev_err(dev, "Failed to retrieve lpcpd-gpios from acpi.\n");
245 phy->io_lpcpd = -1;
247 * lpcpd pin is not specified. This is not an issue as
248 * power management can be also managed by TPM specific
249 * commands. So leave with a success status code.
251 return 0;
254 phy->io_lpcpd = desc_to_gpio(gpiod_lpcpd);
256 return 0;
259 static int st33zp24_spi_of_request_resources(struct spi_device *spi_dev)
261 struct tpm_chip *chip = spi_get_drvdata(spi_dev);
262 struct st33zp24_dev *tpm_dev = dev_get_drvdata(&chip->dev);
263 struct st33zp24_spi_phy *phy = tpm_dev->phy_id;
264 struct device_node *pp;
265 int gpio;
266 int ret;
268 pp = spi_dev->dev.of_node;
269 if (!pp) {
270 dev_err(&spi_dev->dev, "No platform data\n");
271 return -ENODEV;
274 /* Get GPIO from device tree */
275 gpio = of_get_named_gpio(pp, "lpcpd-gpios", 0);
276 if (gpio < 0) {
277 dev_err(&spi_dev->dev,
278 "Failed to retrieve lpcpd-gpios from dts.\n");
279 phy->io_lpcpd = -1;
281 * lpcpd pin is not specified. This is not an issue as
282 * power management can be also managed by TPM specific
283 * commands. So leave with a success status code.
285 return 0;
287 /* GPIO request and configuration */
288 ret = devm_gpio_request_one(&spi_dev->dev, gpio,
289 GPIOF_OUT_INIT_HIGH, "TPM IO LPCPD");
290 if (ret) {
291 dev_err(&spi_dev->dev, "Failed to request lpcpd pin\n");
292 return -ENODEV;
294 phy->io_lpcpd = gpio;
296 return 0;
299 static int st33zp24_spi_request_resources(struct spi_device *dev)
301 struct tpm_chip *chip = spi_get_drvdata(dev);
302 struct st33zp24_dev *tpm_dev = dev_get_drvdata(&chip->dev);
303 struct st33zp24_spi_phy *phy = tpm_dev->phy_id;
304 struct st33zp24_platform_data *pdata;
305 int ret;
307 pdata = dev->dev.platform_data;
308 if (!pdata) {
309 dev_err(&dev->dev, "No platform data\n");
310 return -ENODEV;
313 /* store for late use */
314 phy->io_lpcpd = pdata->io_lpcpd;
316 if (gpio_is_valid(pdata->io_lpcpd)) {
317 ret = devm_gpio_request_one(&dev->dev,
318 pdata->io_lpcpd, GPIOF_OUT_INIT_HIGH,
319 "TPM IO_LPCPD");
320 if (ret) {
321 dev_err(&dev->dev, "%s : reset gpio_request failed\n",
322 __FILE__);
323 return ret;
327 return 0;
331 * st33zp24_spi_probe initialize the TPM device
332 * @param: dev, the spi_device description (TPM SPI description).
333 * @return: 0 in case of success.
334 * or a negative value describing the error.
336 static int st33zp24_spi_probe(struct spi_device *dev)
338 int ret;
339 struct st33zp24_platform_data *pdata;
340 struct st33zp24_spi_phy *phy;
342 /* Check SPI platform functionnalities */
343 if (!dev) {
344 pr_info("%s: dev is NULL. Device is not accessible.\n",
345 __func__);
346 return -ENODEV;
349 phy = devm_kzalloc(&dev->dev, sizeof(struct st33zp24_spi_phy),
350 GFP_KERNEL);
351 if (!phy)
352 return -ENOMEM;
354 phy->spi_device = dev;
356 pdata = dev->dev.platform_data;
357 if (!pdata && dev->dev.of_node) {
358 ret = st33zp24_spi_of_request_resources(dev);
359 if (ret)
360 return ret;
361 } else if (pdata) {
362 ret = st33zp24_spi_request_resources(dev);
363 if (ret)
364 return ret;
365 } else if (ACPI_HANDLE(&dev->dev)) {
366 ret = st33zp24_spi_acpi_request_resources(dev);
367 if (ret)
368 return ret;
371 phy->latency = st33zp24_spi_evaluate_latency(phy);
372 if (phy->latency <= 0)
373 return -ENODEV;
375 return st33zp24_probe(phy, &spi_phy_ops, &dev->dev, dev->irq,
376 phy->io_lpcpd);
380 * st33zp24_spi_remove remove the TPM device
381 * @param: client, the spi_device description (TPM SPI description).
382 * @return: 0 in case of success.
384 static int st33zp24_spi_remove(struct spi_device *dev)
386 struct tpm_chip *chip = spi_get_drvdata(dev);
387 int ret;
389 ret = st33zp24_remove(chip);
390 if (ret)
391 return ret;
393 return 0;
396 static const struct spi_device_id st33zp24_spi_id[] = {
397 {TPM_ST33_SPI, 0},
400 MODULE_DEVICE_TABLE(spi, st33zp24_spi_id);
402 static const struct of_device_id of_st33zp24_spi_match[] = {
403 { .compatible = "st,st33zp24-spi", },
406 MODULE_DEVICE_TABLE(of, of_st33zp24_spi_match);
408 static const struct acpi_device_id st33zp24_spi_acpi_match[] = {
409 {"SMO3324"},
412 MODULE_DEVICE_TABLE(acpi, st33zp24_spi_acpi_match);
414 static SIMPLE_DEV_PM_OPS(st33zp24_spi_ops, st33zp24_pm_suspend,
415 st33zp24_pm_resume);
417 static struct spi_driver st33zp24_spi_driver = {
418 .driver = {
419 .name = TPM_ST33_SPI,
420 .pm = &st33zp24_spi_ops,
421 .of_match_table = of_match_ptr(of_st33zp24_spi_match),
422 .acpi_match_table = ACPI_PTR(st33zp24_spi_acpi_match),
424 .probe = st33zp24_spi_probe,
425 .remove = st33zp24_spi_remove,
426 .id_table = st33zp24_spi_id,
429 module_spi_driver(st33zp24_spi_driver);
431 MODULE_AUTHOR("TPM support (TPMsupport@list.st.com)");
432 MODULE_DESCRIPTION("STM TPM 1.2 SPI ST33 Driver");
433 MODULE_VERSION("1.3.0");
434 MODULE_LICENSE("GPL");