2 * STMicroelectronics TPM I2C Linux driver for TPM ST33ZP24
3 * Copyright (C) 2009, 2010, 2014 STMicroelectronics
5 * This program is free software; you can redistribute it and/or modify
6 * it under the terms of the GNU General Public License as published by
7 * the Free Software Foundation; either version 2 of the License, or
8 * (at your option) any later version.
10 * This program is distributed in the hope that it will be useful,
11 * but WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 * GNU General Public License for more details.
15 * You should have received a copy of the GNU General Public License
16 * along with this program; if not, see <http://www.gnu.org/licenses/>.
18 * STMicroelectronics version 1.2.1, Copyright (C) 2014
19 * STMicroelectronics comes with ABSOLUTELY NO WARRANTY.
20 * This is free software, and you are welcome to redistribute it
21 * under certain conditions.
23 * @Author: Christophe RICARD tpmsupport@st.com
25 * @File: tpm_stm_st33_i2c.c
28 * 09/15/2010: First shot driver tpm_tis driver for
29 * lpc is used as model.
32 #include <linux/pci.h>
33 #include <linux/module.h>
34 #include <linux/platform_device.h>
35 #include <linux/i2c.h>
37 #include <linux/miscdevice.h>
38 #include <linux/kernel.h>
39 #include <linux/delay.h>
40 #include <linux/wait.h>
41 #include <linux/freezer.h>
42 #include <linux/string.h>
43 #include <linux/interrupt.h>
44 #include <linux/sysfs.h>
45 #include <linux/gpio.h>
46 #include <linux/sched.h>
47 #include <linux/uaccess.h>
49 #include <linux/slab.h>
50 #include <linux/of_irq.h>
51 #include <linux/of_gpio.h>
53 #include <linux/platform_data/tpm_stm_st33.h>
56 #define TPM_ACCESS 0x0
58 #define TPM_HASH_END 0x20
59 #define TPM_DATA_FIFO 0x24
60 #define TPM_HASH_DATA 0x24
61 #define TPM_HASH_START 0x28
62 #define TPM_INTF_CAPABILITY 0x14
63 #define TPM_INT_STATUS 0x10
64 #define TPM_INT_ENABLE 0x08
66 #define TPM_DUMMY_BYTE 0xAA
67 #define TPM_WRITE_DIRECTION 0x80
68 #define TPM_HEADER_SIZE 10
69 #define TPM_BUFSIZE 2048
74 enum stm33zp24_access
{
75 TPM_ACCESS_VALID
= 0x80,
76 TPM_ACCESS_ACTIVE_LOCALITY
= 0x20,
77 TPM_ACCESS_REQUEST_PENDING
= 0x04,
78 TPM_ACCESS_REQUEST_USE
= 0x02,
81 enum stm33zp24_status
{
83 TPM_STS_COMMAND_READY
= 0x40,
85 TPM_STS_DATA_AVAIL
= 0x10,
86 TPM_STS_DATA_EXPECT
= 0x08,
89 enum stm33zp24_int_flags
{
90 TPM_GLOBAL_INT_ENABLE
= 0x80,
91 TPM_INTF_CMD_READY_INT
= 0x080,
92 TPM_INTF_FIFO_AVALAIBLE_INT
= 0x040,
93 TPM_INTF_WAKE_UP_READY_INT
= 0x020,
94 TPM_INTF_LOCALITY_CHANGE_INT
= 0x004,
95 TPM_INTF_STS_VALID_INT
= 0x002,
96 TPM_INTF_DATA_AVAIL_INT
= 0x001,
100 TIS_SHORT_TIMEOUT
= 750,
101 TIS_LONG_TIMEOUT
= 2000,
105 struct i2c_client
*client
;
106 struct tpm_chip
*chip
;
107 u8 buf
[TPM_BUFSIZE
+ 1];
114 * Send byte to the TIS register according to the ST33ZP24 I2C protocol.
115 * @param: tpm_register, the tpm tis register where the data should be written
116 * @param: tpm_data, the tpm_data to write inside the tpm_register
117 * @param: tpm_size, The length of the data
118 * @return: Returns negative errno, or else the number of bytes written.
120 static int write8_reg(struct tpm_stm_dev
*tpm_dev
, u8 tpm_register
,
121 u8
*tpm_data
, u16 tpm_size
)
123 tpm_dev
->buf
[0] = tpm_register
;
124 memcpy(tpm_dev
->buf
+ 1, tpm_data
, tpm_size
);
125 return i2c_master_send(tpm_dev
->client
, tpm_dev
->buf
, tpm_size
+ 1);
130 * Recv byte from the TIS register according to the ST33ZP24 I2C protocol.
131 * @param: tpm_register, the tpm tis register where the data should be read
132 * @param: tpm_data, the TPM response
133 * @param: tpm_size, tpm TPM response size to read.
134 * @return: number of byte read successfully: should be one if success.
136 static int read8_reg(struct tpm_stm_dev
*tpm_dev
, u8 tpm_register
,
137 u8
*tpm_data
, int tpm_size
)
142 data
= TPM_DUMMY_BYTE
;
143 status
= write8_reg(tpm_dev
, tpm_register
, &data
, 1);
145 status
= i2c_master_recv(tpm_dev
->client
, tpm_data
, tpm_size
);
151 * Send byte to the TIS register according to the ST33ZP24 I2C protocol.
152 * @param: tpm_dev, the chip description
153 * @param: tpm_register, the tpm tis register where the data should be written
154 * @param: tpm_data, the tpm_data to write inside the tpm_register
155 * @param: tpm_size, The length of the data
156 * @return: number of byte written successfully: should be one if success.
158 #define I2C_WRITE_DATA(tpm_dev, tpm_register, tpm_data, tpm_size) \
159 (write8_reg(tpm_dev, tpm_register | \
160 TPM_WRITE_DIRECTION, tpm_data, tpm_size))
164 * Recv byte from the TIS register according to the ST33ZP24 I2C protocol.
165 * @param: tpm_dev, the chip description
166 * @param: tpm_register, the tpm tis register where the data should be read
167 * @param: tpm_data, the TPM response
168 * @param: tpm_size, tpm TPM response size to read.
169 * @return: number of byte read successfully: should be one if success.
171 #define I2C_READ_DATA(tpm_dev, tpm_register, tpm_data, tpm_size) \
172 (read8_reg(tpm_dev, tpm_register, tpm_data, tpm_size))
176 * clear the TPM interrupt register.
177 * @param: tpm, the chip description
178 * @return: the TPM_INT_STATUS value
180 static u8
clear_interruption(struct tpm_stm_dev
*tpm_dev
)
184 I2C_READ_DATA(tpm_dev
, TPM_INT_STATUS
, &interrupt
, 1);
185 I2C_WRITE_DATA(tpm_dev
, TPM_INT_STATUS
, &interrupt
, 1);
187 } /* clear_interruption() */
190 * tpm_stm_i2c_cancel, cancel is not implemented.
191 * @param: chip, the tpm_chip description as specified in driver/char/tpm/tpm.h
193 static void tpm_stm_i2c_cancel(struct tpm_chip
*chip
)
195 struct tpm_stm_dev
*tpm_dev
;
198 tpm_dev
= (struct tpm_stm_dev
*)TPM_VPRIV(chip
);
200 data
= TPM_STS_COMMAND_READY
;
201 I2C_WRITE_DATA(tpm_dev
, TPM_STS
, &data
, 1);
202 } /* tpm_stm_i2c_cancel() */
205 * tpm_stm_spi_status return the TPM_STS register
206 * @param: chip, the tpm chip description
207 * @return: the TPM_STS register value.
209 static u8
tpm_stm_i2c_status(struct tpm_chip
*chip
)
211 struct tpm_stm_dev
*tpm_dev
;
214 tpm_dev
= (struct tpm_stm_dev
*)TPM_VPRIV(chip
);
216 I2C_READ_DATA(tpm_dev
, TPM_STS
, &data
, 1);
218 } /* tpm_stm_i2c_status() */
222 * check_locality if the locality is active
223 * @param: chip, the tpm chip description
224 * @return: the active locality or -EACCESS.
226 static int check_locality(struct tpm_chip
*chip
)
228 struct tpm_stm_dev
*tpm_dev
;
232 tpm_dev
= (struct tpm_stm_dev
*)TPM_VPRIV(chip
);
234 status
= I2C_READ_DATA(tpm_dev
, TPM_ACCESS
, &data
, 1);
235 if (status
&& (data
&
236 (TPM_ACCESS_ACTIVE_LOCALITY
| TPM_ACCESS_VALID
)) ==
237 (TPM_ACCESS_ACTIVE_LOCALITY
| TPM_ACCESS_VALID
))
238 return chip
->vendor
.locality
;
241 } /* check_locality() */
244 * request_locality request the TPM locality
245 * @param: chip, the chip description
246 * @return: the active locality or EACCESS.
248 static int request_locality(struct tpm_chip
*chip
)
252 struct tpm_stm_dev
*tpm_dev
;
255 if (check_locality(chip
) == chip
->vendor
.locality
)
256 return chip
->vendor
.locality
;
258 tpm_dev
= (struct tpm_stm_dev
*)TPM_VPRIV(chip
);
260 data
= TPM_ACCESS_REQUEST_USE
;
261 ret
= I2C_WRITE_DATA(tpm_dev
, TPM_ACCESS
, &data
, 1);
265 stop
= jiffies
+ chip
->vendor
.timeout_a
;
267 /* Request locality is usually effective after the request */
269 if (check_locality(chip
) >= 0)
270 return chip
->vendor
.locality
;
272 } while (time_before(jiffies
, stop
));
276 } /* request_locality() */
279 * release_locality release the active locality
280 * @param: chip, the tpm chip description.
282 static void release_locality(struct tpm_chip
*chip
)
284 struct tpm_stm_dev
*tpm_dev
;
287 tpm_dev
= (struct tpm_stm_dev
*)TPM_VPRIV(chip
);
288 data
= TPM_ACCESS_ACTIVE_LOCALITY
;
290 I2C_WRITE_DATA(tpm_dev
, TPM_ACCESS
, &data
, 1);
294 * get_burstcount return the burstcount address 0x19 0x1A
295 * @param: chip, the chip description
296 * return: the burstcount.
298 static int get_burstcount(struct tpm_chip
*chip
)
301 int burstcnt
, status
;
303 struct tpm_stm_dev
*tpm_dev
;
305 tpm_dev
= (struct tpm_stm_dev
*)TPM_VPRIV(chip
);
307 stop
= jiffies
+ chip
->vendor
.timeout_d
;
309 tpm_reg
= TPM_STS
+ 1;
310 status
= I2C_READ_DATA(tpm_dev
, tpm_reg
, &temp
, 1);
314 tpm_reg
= tpm_reg
+ 1;
316 status
= I2C_READ_DATA(tpm_dev
, tpm_reg
, &temp
, 1);
320 burstcnt
|= temp
<< 8;
324 } while (time_before(jiffies
, stop
));
328 } /* get_burstcount() */
330 static bool wait_for_tpm_stat_cond(struct tpm_chip
*chip
, u8 mask
,
331 bool check_cancel
, bool *canceled
)
333 u8 status
= chip
->ops
->status(chip
);
336 if ((status
& mask
) == mask
)
338 if (check_cancel
&& chip
->ops
->req_canceled(chip
, status
)) {
346 * interrupt_to_status
347 * @param: irq_mask, the irq mask value to wait
348 * @return: the corresponding tpm_sts value
350 static u8
interrupt_to_status(u8 irq_mask
)
354 if ((irq_mask
& TPM_INTF_STS_VALID_INT
) == TPM_INTF_STS_VALID_INT
)
355 status
|= TPM_STS_VALID
;
356 if ((irq_mask
& TPM_INTF_DATA_AVAIL_INT
) == TPM_INTF_DATA_AVAIL_INT
)
357 status
|= TPM_STS_DATA_AVAIL
;
358 if ((irq_mask
& TPM_INTF_CMD_READY_INT
) == TPM_INTF_CMD_READY_INT
)
359 status
|= TPM_STS_COMMAND_READY
;
362 } /* status_to_interrupt() */
365 * wait_for_stat wait for a TPM_STS value
366 * @param: chip, the tpm chip description
367 * @param: mask, the value mask to wait
368 * @param: timeout, the timeout
369 * @param: queue, the wait queue.
370 * @param: check_cancel, does the command can be cancelled ?
371 * @return: the tpm status, 0 if success, -ETIME if timeout is reached.
373 static int wait_for_stat(struct tpm_chip
*chip
, u8 mask
, unsigned long timeout
,
374 wait_queue_head_t
*queue
, bool check_cancel
)
378 bool canceled
= false;
381 u8 interrupt
, status
;
382 struct tpm_stm_dev
*tpm_dev
;
384 tpm_dev
= (struct tpm_stm_dev
*)TPM_VPRIV(chip
);
386 /* check current status */
387 status
= tpm_stm_i2c_status(chip
);
388 if ((status
& mask
) == mask
)
391 stop
= jiffies
+ timeout
;
393 if (chip
->vendor
.irq
) {
394 cur_intrs
= tpm_dev
->intrs
;
395 interrupt
= clear_interruption(tpm_dev
);
396 enable_irq(chip
->vendor
.irq
);
399 timeout
= stop
- jiffies
;
400 if ((long) timeout
<= 0)
403 ret
= wait_event_interruptible_timeout(*queue
,
404 cur_intrs
!= tpm_dev
->intrs
, timeout
);
406 interrupt
|= clear_interruption(tpm_dev
);
407 status
= interrupt_to_status(interrupt
);
408 condition
= wait_for_tpm_stat_cond(chip
, mask
,
409 check_cancel
, &canceled
);
411 if (ret
>= 0 && condition
) {
416 if (ret
== -ERESTARTSYS
&& freezing(current
)) {
417 clear_thread_flag(TIF_SIGPENDING
);
420 disable_irq_nosync(chip
->vendor
.irq
);
425 status
= chip
->ops
->status(chip
);
426 if ((status
& mask
) == mask
)
428 } while (time_before(jiffies
, stop
));
432 } /* wait_for_stat() */
435 * recv_data receive data
436 * @param: chip, the tpm chip description
437 * @param: buf, the buffer where the data are received
438 * @param: count, the number of data to receive
439 * @return: the number of bytes read from TPM FIFO.
441 static int recv_data(struct tpm_chip
*chip
, u8
*buf
, size_t count
)
443 int size
= 0, burstcnt
, len
, ret
;
444 struct tpm_stm_dev
*tpm_dev
;
446 tpm_dev
= (struct tpm_stm_dev
*)TPM_VPRIV(chip
);
448 while (size
< count
&&
450 TPM_STS_DATA_AVAIL
| TPM_STS_VALID
,
451 chip
->vendor
.timeout_c
,
452 &chip
->vendor
.read_queue
, true) == 0) {
453 burstcnt
= get_burstcount(chip
);
456 len
= min_t(int, burstcnt
, count
- size
);
457 ret
= I2C_READ_DATA(tpm_dev
, TPM_DATA_FIFO
, buf
+ size
, len
);
467 * tpm_ioserirq_handler the serirq irq handler
468 * @param: irq, the tpm chip description
469 * @param: dev_id, the description of the chip
470 * @return: the status of the handler.
472 static irqreturn_t
tpm_ioserirq_handler(int irq
, void *dev_id
)
474 struct tpm_chip
*chip
= dev_id
;
475 struct tpm_stm_dev
*tpm_dev
;
477 tpm_dev
= (struct tpm_stm_dev
*)TPM_VPRIV(chip
);
480 wake_up_interruptible(&chip
->vendor
.read_queue
);
481 disable_irq_nosync(chip
->vendor
.irq
);
484 } /* tpm_ioserirq_handler() */
488 * tpm_stm_i2c_send send TPM commands through the I2C bus.
490 * @param: chip, the tpm_chip description as specified in driver/char/tpm/tpm.h
491 * @param: buf, the buffer to send.
492 * @param: count, the number of bytes to send.
493 * @return: In case of success the number of bytes sent.
494 * In other case, a < 0 value describing the issue.
496 static int tpm_stm_i2c_send(struct tpm_chip
*chip
, unsigned char *buf
,
503 struct i2c_client
*client
;
504 struct tpm_stm_dev
*tpm_dev
;
508 if (len
< TPM_HEADER_SIZE
)
511 tpm_dev
= (struct tpm_stm_dev
*)TPM_VPRIV(chip
);
512 client
= tpm_dev
->client
;
516 ret
= request_locality(chip
);
520 status
= tpm_stm_i2c_status(chip
);
521 if ((status
& TPM_STS_COMMAND_READY
) == 0) {
522 tpm_stm_i2c_cancel(chip
);
524 (chip
, TPM_STS_COMMAND_READY
, chip
->vendor
.timeout_b
,
525 &chip
->vendor
.read_queue
, false) < 0) {
531 for (i
= 0; i
< len
- 1;) {
532 burstcnt
= get_burstcount(chip
);
535 size
= min_t(int, len
- i
- 1, burstcnt
);
536 ret
= I2C_WRITE_DATA(tpm_dev
, TPM_DATA_FIFO
, buf
+ i
, size
);
543 status
= tpm_stm_i2c_status(chip
);
544 if ((status
& TPM_STS_DATA_EXPECT
) == 0) {
549 ret
= I2C_WRITE_DATA(tpm_dev
, TPM_DATA_FIFO
, buf
+ len
- 1, 1);
553 status
= tpm_stm_i2c_status(chip
);
554 if ((status
& TPM_STS_DATA_EXPECT
) != 0) {
560 I2C_WRITE_DATA(tpm_dev
, TPM_STS
, &data
, 1);
564 tpm_stm_i2c_cancel(chip
);
565 release_locality(chip
);
570 * tpm_stm_i2c_recv received TPM response through the I2C bus.
571 * @param: chip, the tpm_chip description as specified in driver/char/tpm/tpm.h.
572 * @param: buf, the buffer to store datas.
573 * @param: count, the number of bytes to send.
574 * @return: In case of success the number of bytes received.
575 * In other case, a < 0 value describing the issue.
577 static int tpm_stm_i2c_recv(struct tpm_chip
*chip
, unsigned char *buf
,
586 if (count
< TPM_HEADER_SIZE
) {
591 size
= recv_data(chip
, buf
, TPM_HEADER_SIZE
);
592 if (size
< TPM_HEADER_SIZE
) {
593 dev_err(chip
->pdev
, "Unable to read header\n");
597 expected
= be32_to_cpu(*(__be32
*)(buf
+ 2));
598 if (expected
> count
) {
603 size
+= recv_data(chip
, &buf
[TPM_HEADER_SIZE
],
604 expected
- TPM_HEADER_SIZE
);
605 if (size
< expected
) {
606 dev_err(chip
->pdev
, "Unable to read remainder of result\n");
612 chip
->ops
->cancel(chip
);
613 release_locality(chip
);
617 static bool tpm_stm_i2c_req_canceled(struct tpm_chip
*chip
, u8 status
)
619 return (status
== TPM_STS_COMMAND_READY
);
622 static const struct tpm_class_ops st_i2c_tpm
= {
623 .send
= tpm_stm_i2c_send
,
624 .recv
= tpm_stm_i2c_recv
,
625 .cancel
= tpm_stm_i2c_cancel
,
626 .status
= tpm_stm_i2c_status
,
627 .req_complete_mask
= TPM_STS_DATA_AVAIL
| TPM_STS_VALID
,
628 .req_complete_val
= TPM_STS_DATA_AVAIL
| TPM_STS_VALID
,
629 .req_canceled
= tpm_stm_i2c_req_canceled
,
633 static int tpm_stm_i2c_of_request_resources(struct tpm_chip
*chip
)
635 struct device_node
*pp
;
636 struct tpm_stm_dev
*tpm_dev
= (struct tpm_stm_dev
*)TPM_VPRIV(chip
);
637 struct i2c_client
*client
= tpm_dev
->client
;
641 pp
= client
->dev
.of_node
;
643 dev_err(chip
->pdev
, "No platform data\n");
647 /* Get GPIO from device tree */
648 gpio
= of_get_named_gpio(pp
, "lpcpd-gpios", 0);
650 dev_err(chip
->pdev
, "Failed to retrieve lpcpd-gpios from dts.\n");
651 tpm_dev
->io_lpcpd
= -1;
653 * lpcpd pin is not specified. This is not an issue as
654 * power management can be also managed by TPM specific
655 * commands. So leave with a success status code.
659 /* GPIO request and configuration */
660 ret
= devm_gpio_request_one(&client
->dev
, gpio
,
661 GPIOF_OUT_INIT_HIGH
, "TPM IO LPCPD");
663 dev_err(chip
->pdev
, "Failed to request lpcpd pin\n");
666 tpm_dev
->io_lpcpd
= gpio
;
671 static int tpm_stm_i2c_of_request_resources(struct tpm_chip
*chip
)
677 static int tpm_stm_i2c_request_resources(struct i2c_client
*client
,
678 struct tpm_chip
*chip
)
680 struct st33zp24_platform_data
*pdata
;
681 struct tpm_stm_dev
*tpm_dev
= (struct tpm_stm_dev
*)TPM_VPRIV(chip
);
684 pdata
= client
->dev
.platform_data
;
686 dev_err(chip
->pdev
, "No platform data\n");
690 /* store for late use */
691 tpm_dev
->io_lpcpd
= pdata
->io_lpcpd
;
693 if (gpio_is_valid(pdata
->io_lpcpd
)) {
694 ret
= devm_gpio_request_one(&client
->dev
,
695 pdata
->io_lpcpd
, GPIOF_OUT_INIT_HIGH
,
698 dev_err(chip
->pdev
, "%s : reset gpio_request failed\n",
708 * tpm_stm_i2c_probe initialize the TPM device
709 * @param: client, the i2c_client drescription (TPM I2C description).
710 * @param: id, the i2c_device_id struct.
711 * @return: 0 in case of success.
715 tpm_stm_i2c_probe(struct i2c_client
*client
, const struct i2c_device_id
*id
)
719 struct tpm_chip
*chip
;
720 struct st33zp24_platform_data
*platform_data
;
721 struct tpm_stm_dev
*tpm_dev
;
724 pr_info("%s: i2c client is NULL. Device not accessible.\n",
729 if (!i2c_check_functionality(client
->adapter
, I2C_FUNC_I2C
)) {
730 dev_info(&client
->dev
, "client not i2c capable\n");
734 tpm_dev
= devm_kzalloc(&client
->dev
, sizeof(struct tpm_stm_dev
),
739 chip
= tpmm_chip_alloc(&client
->dev
, &st_i2c_tpm
);
741 return PTR_ERR(chip
);
743 TPM_VPRIV(chip
) = tpm_dev
;
744 tpm_dev
->client
= client
;
746 platform_data
= client
->dev
.platform_data
;
747 if (!platform_data
&& client
->dev
.of_node
) {
748 ret
= tpm_stm_i2c_of_request_resources(chip
);
750 goto _tpm_clean_answer
;
751 } else if (platform_data
) {
752 ret
= tpm_stm_i2c_request_resources(client
, chip
);
754 goto _tpm_clean_answer
;
757 chip
->vendor
.timeout_a
= msecs_to_jiffies(TIS_SHORT_TIMEOUT
);
758 chip
->vendor
.timeout_b
= msecs_to_jiffies(TIS_LONG_TIMEOUT
);
759 chip
->vendor
.timeout_c
= msecs_to_jiffies(TIS_SHORT_TIMEOUT
);
760 chip
->vendor
.timeout_d
= msecs_to_jiffies(TIS_SHORT_TIMEOUT
);
762 chip
->vendor
.locality
= LOCALITY0
;
765 /* INTERRUPT Setup */
766 init_waitqueue_head(&chip
->vendor
.read_queue
);
769 if (request_locality(chip
) != LOCALITY0
) {
771 goto _tpm_clean_answer
;
774 clear_interruption(tpm_dev
);
775 ret
= devm_request_irq(&client
->dev
, client
->irq
,
776 tpm_ioserirq_handler
,
778 "TPM SERIRQ management", chip
);
780 dev_err(chip
->pdev
, "TPM SERIRQ signals %d not available\n",
782 goto _tpm_clean_answer
;
785 intmask
|= TPM_INTF_CMD_READY_INT
786 | TPM_INTF_STS_VALID_INT
787 | TPM_INTF_DATA_AVAIL_INT
;
789 ret
= I2C_WRITE_DATA(tpm_dev
, TPM_INT_ENABLE
, &intmask
, 1);
791 goto _tpm_clean_answer
;
793 intmask
= TPM_GLOBAL_INT_ENABLE
;
794 ret
= I2C_WRITE_DATA(tpm_dev
, (TPM_INT_ENABLE
+ 3),
797 goto _tpm_clean_answer
;
799 chip
->vendor
.irq
= client
->irq
;
801 disable_irq_nosync(chip
->vendor
.irq
);
803 tpm_gen_interrupt(chip
);
806 tpm_get_timeouts(chip
);
807 tpm_do_selftest(chip
);
809 return tpm_chip_register(chip
);
811 dev_info(chip
->pdev
, "TPM I2C initialisation fail\n");
816 * tpm_stm_i2c_remove remove the TPM device
817 * @param: client, the i2c_client description (TPM I2C description).
818 * @return: 0 in case of success.
820 static int tpm_stm_i2c_remove(struct i2c_client
*client
)
822 struct tpm_chip
*chip
=
823 (struct tpm_chip
*) i2c_get_clientdata(client
);
826 tpm_chip_unregister(chip
);
831 #ifdef CONFIG_PM_SLEEP
833 * tpm_stm_i2c_pm_suspend suspend the TPM device
834 * @param: client, the i2c_client drescription (TPM I2C description).
835 * @param: mesg, the power management message.
836 * @return: 0 in case of success.
838 static int tpm_stm_i2c_pm_suspend(struct device
*dev
)
840 struct st33zp24_platform_data
*pin_infos
= dev
->platform_data
;
843 if (gpio_is_valid(pin_infos
->io_lpcpd
))
844 gpio_set_value(pin_infos
->io_lpcpd
, 0);
846 ret
= tpm_pm_suspend(dev
);
849 } /* tpm_stm_i2c_suspend() */
852 * tpm_stm_i2c_pm_resume resume the TPM device
853 * @param: client, the i2c_client drescription (TPM I2C description).
854 * @return: 0 in case of success.
856 static int tpm_stm_i2c_pm_resume(struct device
*dev
)
858 struct tpm_chip
*chip
= dev_get_drvdata(dev
);
859 struct st33zp24_platform_data
*pin_infos
= dev
->platform_data
;
863 if (gpio_is_valid(pin_infos
->io_lpcpd
)) {
864 gpio_set_value(pin_infos
->io_lpcpd
, 1);
865 ret
= wait_for_stat(chip
,
866 TPM_STS_VALID
, chip
->vendor
.timeout_b
,
867 &chip
->vendor
.read_queue
, false);
869 ret
= tpm_pm_resume(dev
);
871 tpm_do_selftest(chip
);
874 } /* tpm_stm_i2c_pm_resume() */
877 static const struct i2c_device_id tpm_stm_i2c_id
[] = {
881 MODULE_DEVICE_TABLE(i2c
, tpm_stm_i2c_id
);
884 static const struct of_device_id of_st33zp24_i2c_match
[] = {
885 { .compatible
= "st,st33zp24-i2c", },
888 MODULE_DEVICE_TABLE(of
, of_st33zp24_i2c_match
);
891 static SIMPLE_DEV_PM_OPS(tpm_stm_i2c_ops
, tpm_stm_i2c_pm_suspend
,
892 tpm_stm_i2c_pm_resume
);
894 static struct i2c_driver tpm_stm_i2c_driver
= {
896 .owner
= THIS_MODULE
,
897 .name
= TPM_ST33_I2C
,
898 .pm
= &tpm_stm_i2c_ops
,
899 .of_match_table
= of_match_ptr(of_st33zp24_i2c_match
),
901 .probe
= tpm_stm_i2c_probe
,
902 .remove
= tpm_stm_i2c_remove
,
903 .id_table
= tpm_stm_i2c_id
906 module_i2c_driver(tpm_stm_i2c_driver
);
908 MODULE_AUTHOR("Christophe Ricard (tpmsupport@st.com)");
909 MODULE_DESCRIPTION("STM TPM I2C ST33 Driver");
910 MODULE_VERSION("1.2.1");
911 MODULE_LICENSE("GPL");