tpm/tpm_i2c_stm_st33: formatting and white space changes
[GitHub/mt8127/android_kernel_alcatel_ttab.git] / drivers / char / tpm / tpm_i2c_stm_st33.c
1 /*
2 * STMicroelectronics TPM I2C Linux driver for TPM ST33ZP24
3 * Copyright (C) 2009, 2010 STMicroelectronics
4 *
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.
9 *
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.
14 *
15 * You should have received a copy of the GNU General Public License along
16 * with this program; if not, write to the Free Software Foundation, Inc.,
17 * 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
18 *
19 * STMicroelectronics version 1.2.0, Copyright (C) 2010
20 * STMicroelectronics comes with ABSOLUTELY NO WARRANTY.
21 * This is free software, and you are welcome to redistribute it
22 * under certain conditions.
23 *
24 * @Author: Christophe RICARD tpmsupport@st.com
25 *
26 * @File: tpm_stm_st33_i2c.c
27 *
28 * @Synopsis:
29 * 09/15/2010: First shot driver tpm_tis driver for
30 lpc is used as model.
31 */
32
33 #include <linux/pci.h>
34 #include <linux/module.h>
35 #include <linux/platform_device.h>
36 #include <linux/i2c.h>
37 #include <linux/fs.h>
38 #include <linux/miscdevice.h>
39 #include <linux/module.h>
40 #include <linux/kernel.h>
41 #include <linux/delay.h>
42 #include <linux/init.h>
43 #include <linux/wait.h>
44 #include <linux/string.h>
45 #include <linux/interrupt.h>
46 #include <linux/spinlock.h>
47 #include <linux/sysfs.h>
48 #include <linux/gpio.h>
49 #include <linux/sched.h>
50 #include <linux/uaccess.h>
51 #include <linux/io.h>
52 #include <linux/slab.h>
53 #include <linux/sched.h>
54
55 #include "tpm.h"
56 #include "tpm_i2c_stm_st33.h"
57
58 enum stm33zp24_access {
59 TPM_ACCESS_VALID = 0x80,
60 TPM_ACCESS_ACTIVE_LOCALITY = 0x20,
61 TPM_ACCESS_REQUEST_PENDING = 0x04,
62 TPM_ACCESS_REQUEST_USE = 0x02,
63 };
64
65 enum stm33zp24_status {
66 TPM_STS_VALID = 0x80,
67 TPM_STS_COMMAND_READY = 0x40,
68 TPM_STS_GO = 0x20,
69 TPM_STS_DATA_AVAIL = 0x10,
70 TPM_STS_DATA_EXPECT = 0x08,
71 };
72
73 enum stm33zp24_int_flags {
74 TPM_GLOBAL_INT_ENABLE = 0x80,
75 TPM_INTF_CMD_READY_INT = 0x080,
76 TPM_INTF_FIFO_AVALAIBLE_INT = 0x040,
77 TPM_INTF_WAKE_UP_READY_INT = 0x020,
78 TPM_INTF_LOCALITY_CHANGE_INT = 0x004,
79 TPM_INTF_STS_VALID_INT = 0x002,
80 TPM_INTF_DATA_AVAIL_INT = 0x001,
81 };
82
83 enum tis_defaults {
84 TIS_SHORT_TIMEOUT = 750,
85 TIS_LONG_TIMEOUT = 2000,
86 };
87
88 /*
89 * write8_reg
90 * Send byte to the TIS register according to the ST33ZP24 I2C protocol.
91 * @param: tpm_register, the tpm tis register where the data should be written
92 * @param: tpm_data, the tpm_data to write inside the tpm_register
93 * @param: tpm_size, The length of the data
94 * @return: Returns negative errno, or else the number of bytes written.
95 */
96 static int write8_reg(struct i2c_client *client, u8 tpm_register,
97 u8 *tpm_data, u16 tpm_size)
98 {
99 struct st33zp24_platform_data *pin_infos;
100
101 pin_infos = client->dev.platform_data;
102
103 pin_infos->tpm_i2c_buffer[0][0] = tpm_register;
104 memcpy(&pin_infos->tpm_i2c_buffer[0][1], tpm_data, tpm_size);
105 return i2c_master_send(client, pin_infos->tpm_i2c_buffer[0],
106 tpm_size + 1);
107 } /* write8_reg() */
108
109 /*
110 * read8_reg
111 * Recv byte from the TIS register according to the ST33ZP24 I2C protocol.
112 * @param: tpm_register, the tpm tis register where the data should be read
113 * @param: tpm_data, the TPM response
114 * @param: tpm_size, tpm TPM response size to read.
115 * @return: number of byte read successfully: should be one if success.
116 */
117 static int read8_reg(struct i2c_client *client, u8 tpm_register,
118 u8 *tpm_data, int tpm_size)
119 {
120 u8 status = 0;
121 u8 data;
122
123 data = TPM_DUMMY_BYTE;
124 status = write8_reg(client, tpm_register, &data, 1);
125 if (status == 2)
126 status = i2c_master_recv(client, tpm_data, tpm_size);
127 return status;
128 } /* read8_reg() */
129
130 /*
131 * I2C_WRITE_DATA
132 * Send byte to the TIS register according to the ST33ZP24 I2C protocol.
133 * @param: client, the chip description
134 * @param: tpm_register, the tpm tis register where the data should be written
135 * @param: tpm_data, the tpm_data to write inside the tpm_register
136 * @param: tpm_size, The length of the data
137 * @return: number of byte written successfully: should be one if success.
138 */
139 #define I2C_WRITE_DATA(client, tpm_register, tpm_data, tpm_size) \
140 (write8_reg(client, tpm_register | \
141 TPM_WRITE_DIRECTION, tpm_data, tpm_size))
142
143 /*
144 * I2C_READ_DATA
145 * Recv byte from the TIS register according to the ST33ZP24 I2C protocol.
146 * @param: tpm, the chip description
147 * @param: tpm_register, the tpm tis register where the data should be read
148 * @param: tpm_data, the TPM response
149 * @param: tpm_size, tpm TPM response size to read.
150 * @return: number of byte read successfully: should be one if success.
151 */
152 #define I2C_READ_DATA(client, tpm_register, tpm_data, tpm_size) \
153 (read8_reg(client, tpm_register, tpm_data, tpm_size))
154
155 /*
156 * clear_interruption
157 * clear the TPM interrupt register.
158 * @param: tpm, the chip description
159 */
160 static void clear_interruption(struct i2c_client *client)
161 {
162 u8 interrupt;
163 I2C_READ_DATA(client, TPM_INT_STATUS, &interrupt, 1);
164 I2C_WRITE_DATA(client, TPM_INT_STATUS, &interrupt, 1);
165 I2C_READ_DATA(client, TPM_INT_STATUS, &interrupt, 1);
166 } /* clear_interruption() */
167
168 /*
169 * _wait_for_interrupt_serirq_timeout
170 * @param: tpm, the chip description
171 * @param: timeout, the timeout of the interrupt
172 * @return: the status of the interruption.
173 */
174 static long _wait_for_interrupt_serirq_timeout(struct tpm_chip *chip,
175 unsigned long timeout)
176 {
177 long status;
178 struct i2c_client *client;
179 struct st33zp24_platform_data *pin_infos;
180
181 client = (struct i2c_client *)TPM_VPRIV(chip);
182 pin_infos = client->dev.platform_data;
183
184 status = wait_for_completion_interruptible_timeout(
185 &pin_infos->irq_detection,
186 timeout);
187 if (status > 0)
188 enable_irq(gpio_to_irq(pin_infos->io_serirq));
189 gpio_direction_input(pin_infos->io_serirq);
190
191 return status;
192 } /* wait_for_interrupt_serirq_timeout() */
193
194 static int wait_for_serirq_timeout(struct tpm_chip *chip, bool condition,
195 unsigned long timeout)
196 {
197 int status = 2;
198 struct i2c_client *client;
199
200 client = (struct i2c_client *)TPM_VPRIV(chip);
201
202 status = _wait_for_interrupt_serirq_timeout(chip, timeout);
203 if (!status) {
204 status = -EBUSY;
205 } else {
206 clear_interruption(client);
207 if (condition)
208 status = 1;
209 }
210 return status;
211 }
212
213 /*
214 * tpm_stm_i2c_cancel, cancel is not implemented.
215 * @param: chip, the tpm_chip description as specified in driver/char/tpm/tpm.h
216 */
217 static void tpm_stm_i2c_cancel(struct tpm_chip *chip)
218 {
219 struct i2c_client *client;
220 u8 data;
221
222 client = (struct i2c_client *)TPM_VPRIV(chip);
223
224 data = TPM_STS_COMMAND_READY;
225 I2C_WRITE_DATA(client, TPM_STS, &data, 1);
226 if (chip->vendor.irq)
227 wait_for_serirq_timeout(chip, 1, chip->vendor.timeout_a);
228 } /* tpm_stm_i2c_cancel() */
229
230 /*
231 * tpm_stm_spi_status return the TPM_STS register
232 * @param: chip, the tpm chip description
233 * @return: the TPM_STS register value.
234 */
235 static u8 tpm_stm_i2c_status(struct tpm_chip *chip)
236 {
237 struct i2c_client *client;
238 u8 data;
239 client = (struct i2c_client *)TPM_VPRIV(chip);
240
241 I2C_READ_DATA(client, TPM_STS, &data, 1);
242 return data;
243 } /* tpm_stm_i2c_status() */
244
245
246 /*
247 * check_locality if the locality is active
248 * @param: chip, the tpm chip description
249 * @return: the active locality or -EACCESS.
250 */
251 static int check_locality(struct tpm_chip *chip)
252 {
253 struct i2c_client *client;
254 u8 data;
255 u8 status;
256
257 client = (struct i2c_client *)TPM_VPRIV(chip);
258
259 status = I2C_READ_DATA(client, TPM_ACCESS, &data, 1);
260 if (status && (data &
261 (TPM_ACCESS_ACTIVE_LOCALITY | TPM_ACCESS_VALID)) ==
262 (TPM_ACCESS_ACTIVE_LOCALITY | TPM_ACCESS_VALID))
263 return chip->vendor.locality;
264
265 return -EACCES;
266
267 } /* check_locality() */
268
269 /*
270 * request_locality request the TPM locality
271 * @param: chip, the chip description
272 * @return: the active locality or EACCESS.
273 */
274 static int request_locality(struct tpm_chip *chip)
275 {
276 unsigned long stop;
277 long rc;
278 struct i2c_client *client;
279 u8 data;
280
281 client = (struct i2c_client *)TPM_VPRIV(chip);
282
283 if (check_locality(chip) == chip->vendor.locality)
284 return chip->vendor.locality;
285
286 data = TPM_ACCESS_REQUEST_USE;
287 rc = I2C_WRITE_DATA(client, TPM_ACCESS, &data, 1);
288 if (rc < 0)
289 goto end;
290
291 if (chip->vendor.irq) {
292 rc = wait_for_serirq_timeout(chip, (check_locality
293 (chip) >= 0),
294 chip->vendor.timeout_a);
295 if (rc > 0)
296 return chip->vendor.locality;
297 } else {
298 stop = jiffies + chip->vendor.timeout_a;
299 do {
300 if (check_locality(chip) >= 0)
301 return chip->vendor.locality;
302 msleep(TPM_TIMEOUT);
303 } while (time_before(jiffies, stop));
304 }
305 rc = -EACCES;
306 end:
307 return rc;
308 } /* request_locality() */
309
310 /*
311 * release_locality release the active locality
312 * @param: chip, the tpm chip description.
313 */
314 static void release_locality(struct tpm_chip *chip)
315 {
316 struct i2c_client *client;
317 u8 data;
318
319 client = (struct i2c_client *)TPM_VPRIV(chip);
320 data = TPM_ACCESS_ACTIVE_LOCALITY;
321
322 I2C_WRITE_DATA(client, TPM_ACCESS, &data, 1);
323 }
324
325 /*
326 * get_burstcount return the burstcount address 0x19 0x1A
327 * @param: chip, the chip description
328 * return: the burstcount.
329 */
330 static int get_burstcount(struct tpm_chip *chip)
331 {
332 unsigned long stop;
333 int burstcnt, status;
334 u8 tpm_reg, temp;
335
336 struct i2c_client *client = (struct i2c_client *)TPM_VPRIV(chip);
337
338 stop = jiffies + chip->vendor.timeout_d;
339 do {
340 tpm_reg = TPM_STS + 1;
341 status = I2C_READ_DATA(client, tpm_reg, &temp, 1);
342 if (status < 0)
343 goto end;
344
345 tpm_reg = tpm_reg + 1;
346 burstcnt = temp;
347 status = I2C_READ_DATA(client, tpm_reg, &temp, 1);
348 if (status < 0)
349 goto end;
350
351 burstcnt |= temp << 8;
352 if (burstcnt)
353 return burstcnt;
354 msleep(TPM_TIMEOUT);
355 } while (time_before(jiffies, stop));
356
357 end:
358 return -EBUSY;
359 } /* get_burstcount() */
360
361 /*
362 * wait_for_stat wait for a TPM_STS value
363 * @param: chip, the tpm chip description
364 * @param: mask, the value mask to wait
365 * @param: timeout, the timeout
366 * @param: queue, the wait queue.
367 * @return: the tpm status, 0 if success, -ETIME if timeout is reached.
368 */
369 static int wait_for_stat(struct tpm_chip *chip, u8 mask, unsigned long timeout,
370 wait_queue_head_t *queue)
371 {
372 unsigned long stop;
373 long rc;
374 u8 status;
375
376 if (chip->vendor.irq) {
377 rc = wait_for_serirq_timeout(chip, ((tpm_stm_i2c_status
378 (chip) & mask) ==
379 mask), timeout);
380 if (rc > 0)
381 return 0;
382 } else {
383 stop = jiffies + timeout;
384 do {
385 msleep(TPM_TIMEOUT);
386 status = tpm_stm_i2c_status(chip);
387 if ((status & mask) == mask)
388 return 0;
389 } while (time_before(jiffies, stop));
390 }
391 return -ETIME;
392 } /* wait_for_stat() */
393
394 /*
395 * recv_data receive data
396 * @param: chip, the tpm chip description
397 * @param: buf, the buffer where the data are received
398 * @param: count, the number of data to receive
399 * @return: the number of bytes read from TPM FIFO.
400 */
401 static int recv_data(struct tpm_chip *chip, u8 *buf, size_t count)
402 {
403 int size = 0, burstcnt, len;
404 struct i2c_client *client;
405
406 client = (struct i2c_client *)TPM_VPRIV(chip);
407
408 while (size < count &&
409 wait_for_stat(chip,
410 TPM_STS_DATA_AVAIL | TPM_STS_VALID,
411 chip->vendor.timeout_c,
412 &chip->vendor.read_queue)
413 == 0) {
414 burstcnt = get_burstcount(chip);
415 len = min_t(int, burstcnt, count - size);
416 I2C_READ_DATA(client, TPM_DATA_FIFO, buf + size, len);
417 size += len;
418 }
419 return size;
420 }
421
422 /*
423 * tpm_ioserirq_handler the serirq irq handler
424 * @param: irq, the tpm chip description
425 * @param: dev_id, the description of the chip
426 * @return: the status of the handler.
427 */
428 static irqreturn_t tpm_ioserirq_handler(int irq, void *dev_id)
429 {
430 struct tpm_chip *chip = dev_id;
431 struct i2c_client *client;
432 struct st33zp24_platform_data *pin_infos;
433
434 disable_irq_nosync(irq);
435
436 client = (struct i2c_client *)TPM_VPRIV(chip);
437 pin_infos = client->dev.platform_data;
438
439 complete(&pin_infos->irq_detection);
440 return IRQ_HANDLED;
441 } /* tpm_ioserirq_handler() */
442
443
444 /*
445 * tpm_stm_i2c_send send TPM commands through the I2C bus.
446 *
447 * @param: chip, the tpm_chip description as specified in driver/char/tpm/tpm.h
448 * @param: buf, the buffer to send.
449 * @param: count, the number of bytes to send.
450 * @return: In case of success the number of bytes sent.
451 * In other case, a < 0 value describing the issue.
452 */
453 static int tpm_stm_i2c_send(struct tpm_chip *chip, unsigned char *buf,
454 size_t len)
455 {
456 u32 status, burstcnt = 0, i, size;
457 int ret;
458 u8 data;
459 struct i2c_client *client;
460
461 if (chip == NULL)
462 return -EBUSY;
463 if (len < TPM_HEADER_SIZE)
464 return -EBUSY;
465
466 client = (struct i2c_client *)TPM_VPRIV(chip);
467
468 client->flags = 0;
469
470 ret = request_locality(chip);
471 if (ret < 0)
472 return ret;
473
474 status = tpm_stm_i2c_status(chip);
475 if ((status & TPM_STS_COMMAND_READY) == 0) {
476 tpm_stm_i2c_cancel(chip);
477 if (wait_for_stat
478 (chip, TPM_STS_COMMAND_READY, chip->vendor.timeout_b,
479 &chip->vendor.int_queue) < 0) {
480 ret = -ETIME;
481 goto out_err;
482 }
483 }
484
485 for (i = 0; i < len - 1;) {
486 burstcnt = get_burstcount(chip);
487 size = min_t(int, len - i - 1, burstcnt);
488 ret = I2C_WRITE_DATA(client, TPM_DATA_FIFO, buf, size);
489 if (ret < 0)
490 goto out_err;
491
492 i += size;
493 }
494
495 status = tpm_stm_i2c_status(chip);
496 if ((status & TPM_STS_DATA_EXPECT) == 0) {
497 ret = -EIO;
498 goto out_err;
499 }
500
501 ret = I2C_WRITE_DATA(client, TPM_DATA_FIFO, buf + len - 1, 1);
502 if (ret < 0)
503 goto out_err;
504
505 status = tpm_stm_i2c_status(chip);
506 if ((status & TPM_STS_DATA_EXPECT) != 0) {
507 ret = -EIO;
508 goto out_err;
509 }
510
511 data = TPM_STS_GO;
512 I2C_WRITE_DATA(client, TPM_STS, &data, 1);
513
514 return len;
515 out_err:
516 tpm_stm_i2c_cancel(chip);
517 release_locality(chip);
518 return ret;
519 }
520
521 /*
522 * tpm_stm_i2c_recv received TPM response through the I2C bus.
523 * @param: chip, the tpm_chip description as specified in driver/char/tpm/tpm.h.
524 * @param: buf, the buffer to store datas.
525 * @param: count, the number of bytes to send.
526 * @return: In case of success the number of bytes received.
527 * In other case, a < 0 value describing the issue.
528 */
529 static int tpm_stm_i2c_recv(struct tpm_chip *chip, unsigned char *buf,
530 size_t count)
531 {
532 int size = 0;
533 int expected;
534
535 if (chip == NULL)
536 return -EBUSY;
537
538 if (count < TPM_HEADER_SIZE) {
539 size = -EIO;
540 goto out;
541 }
542
543 size = recv_data(chip, buf, TPM_HEADER_SIZE);
544 if (size < TPM_HEADER_SIZE) {
545 dev_err(chip->dev, "Unable to read header\n");
546 goto out;
547 }
548
549 expected = be32_to_cpu(*(__be32 *)(buf + 2));
550 if (expected > count) {
551 size = -EIO;
552 goto out;
553 }
554
555 size += recv_data(chip, &buf[TPM_HEADER_SIZE],
556 expected - TPM_HEADER_SIZE);
557 if (size < expected) {
558 dev_err(chip->dev, "Unable to read remainder of result\n");
559 size = -ETIME;
560 goto out;
561 }
562
563 out:
564 chip->vendor.cancel(chip);
565 release_locality(chip);
566 return size;
567 }
568
569 static bool tpm_st33_i2c_req_canceled(struct tpm_chip *chip, u8 status)
570 {
571 return (status == TPM_STS_COMMAND_READY);
572 }
573
574 static const struct file_operations tpm_st33_i2c_fops = {
575 .owner = THIS_MODULE,
576 .llseek = no_llseek,
577 .read = tpm_read,
578 .write = tpm_write,
579 .open = tpm_open,
580 .release = tpm_release,
581 };
582
583 static DEVICE_ATTR(pubek, S_IRUGO, tpm_show_pubek, NULL);
584 static DEVICE_ATTR(pcrs, S_IRUGO, tpm_show_pcrs, NULL);
585 static DEVICE_ATTR(enabled, S_IRUGO, tpm_show_enabled, NULL);
586 static DEVICE_ATTR(active, S_IRUGO, tpm_show_active, NULL);
587 static DEVICE_ATTR(owned, S_IRUGO, tpm_show_owned, NULL);
588 static DEVICE_ATTR(temp_deactivated, S_IRUGO, tpm_show_temp_deactivated, NULL);
589 static DEVICE_ATTR(caps, S_IRUGO, tpm_show_caps_1_2, NULL);
590 static DEVICE_ATTR(cancel, S_IWUSR | S_IWGRP, NULL, tpm_store_cancel);
591
592 static struct attribute *stm_tpm_attrs[] = {
593 &dev_attr_pubek.attr,
594 &dev_attr_pcrs.attr,
595 &dev_attr_enabled.attr,
596 &dev_attr_active.attr,
597 &dev_attr_owned.attr,
598 &dev_attr_temp_deactivated.attr,
599 &dev_attr_caps.attr,
600 &dev_attr_cancel.attr, NULL,
601 };
602
603 static struct attribute_group stm_tpm_attr_grp = {
604 .attrs = stm_tpm_attrs
605 };
606
607 static struct tpm_vendor_specific st_i2c_tpm = {
608 .send = tpm_stm_i2c_send,
609 .recv = tpm_stm_i2c_recv,
610 .cancel = tpm_stm_i2c_cancel,
611 .status = tpm_stm_i2c_status,
612 .req_complete_mask = TPM_STS_DATA_AVAIL | TPM_STS_VALID,
613 .req_complete_val = TPM_STS_DATA_AVAIL | TPM_STS_VALID,
614 .req_canceled = tpm_st33_i2c_req_canceled,
615 .attr_group = &stm_tpm_attr_grp,
616 .miscdev = {.fops = &tpm_st33_i2c_fops,},
617 };
618
619 static int interrupts;
620 module_param(interrupts, int, 0444);
621 MODULE_PARM_DESC(interrupts, "Enable interrupts");
622
623 static int power_mgt = 1;
624 module_param(power_mgt, int, 0444);
625 MODULE_PARM_DESC(power_mgt, "Power Management");
626
627 /*
628 * tpm_st33_i2c_probe initialize the TPM device
629 * @param: client, the i2c_client drescription (TPM I2C description).
630 * @param: id, the i2c_device_id struct.
631 * @return: 0 in case of success.
632 * -1 in other case.
633 */
634 static int
635 tpm_st33_i2c_probe(struct i2c_client *client, const struct i2c_device_id *id)
636 {
637 int err;
638 u8 intmask;
639 struct tpm_chip *chip;
640 struct st33zp24_platform_data *platform_data;
641
642 if (client == NULL) {
643 pr_info("%s: i2c client is NULL. Device not accessible.\n",
644 __func__);
645 err = -ENODEV;
646 goto end;
647 }
648
649 if (!i2c_check_functionality(client->adapter, I2C_FUNC_I2C)) {
650 dev_info(&client->dev, "client not i2c capable\n");
651 err = -ENODEV;
652 goto end;
653 }
654
655 chip = tpm_register_hardware(&client->dev, &st_i2c_tpm);
656 if (!chip) {
657 dev_info(&client->dev, "fail chip\n");
658 err = -ENODEV;
659 goto end;
660 }
661
662 platform_data = client->dev.platform_data;
663
664 if (!platform_data) {
665 dev_info(&client->dev, "chip not available\n");
666 err = -ENODEV;
667 goto _tpm_clean_answer;
668 }
669
670 platform_data->tpm_i2c_buffer[0] =
671 kmalloc(TPM_BUFSIZE * sizeof(u8), GFP_KERNEL);
672 if (platform_data->tpm_i2c_buffer[0] == NULL) {
673 err = -ENOMEM;
674 goto _tpm_clean_answer;
675 }
676 platform_data->tpm_i2c_buffer[1] =
677 kmalloc(TPM_BUFSIZE * sizeof(u8), GFP_KERNEL);
678 if (platform_data->tpm_i2c_buffer[1] == NULL) {
679 err = -ENOMEM;
680 goto _tpm_clean_response1;
681 }
682
683 TPM_VPRIV(chip) = client;
684
685 chip->vendor.timeout_a = msecs_to_jiffies(TIS_SHORT_TIMEOUT);
686 chip->vendor.timeout_b = msecs_to_jiffies(TIS_LONG_TIMEOUT);
687 chip->vendor.timeout_c = msecs_to_jiffies(TIS_SHORT_TIMEOUT);
688 chip->vendor.timeout_d = msecs_to_jiffies(TIS_SHORT_TIMEOUT);
689
690 chip->vendor.locality = LOCALITY0;
691
692 if (power_mgt) {
693 err = gpio_request(platform_data->io_lpcpd, "TPM IO_LPCPD");
694 if (err)
695 goto _gpio_init1;
696 gpio_set_value(platform_data->io_lpcpd, 1);
697 }
698
699 if (interrupts) {
700 init_completion(&platform_data->irq_detection);
701 if (request_locality(chip) != LOCALITY0) {
702 err = -ENODEV;
703 goto _tpm_clean_response2;
704 }
705 err = gpio_request(platform_data->io_serirq, "TPM IO_SERIRQ");
706 if (err)
707 goto _gpio_init2;
708
709 clear_interruption(client);
710 err = request_irq(gpio_to_irq(platform_data->io_serirq),
711 &tpm_ioserirq_handler,
712 IRQF_TRIGGER_HIGH,
713 "TPM SERIRQ management", chip);
714 if (err < 0) {
715 dev_err(chip->dev , "TPM SERIRQ signals %d not available\n",
716 gpio_to_irq(platform_data->io_serirq));
717 goto _irq_set;
718 }
719
720 err = I2C_READ_DATA(client, TPM_INT_ENABLE, &intmask, 1);
721 if (err < 0)
722 goto _irq_set;
723
724 intmask |= TPM_INTF_CMD_READY_INT
725 | TPM_INTF_FIFO_AVALAIBLE_INT
726 | TPM_INTF_WAKE_UP_READY_INT
727 | TPM_INTF_LOCALITY_CHANGE_INT
728 | TPM_INTF_STS_VALID_INT
729 | TPM_INTF_DATA_AVAIL_INT;
730
731 err = I2C_WRITE_DATA(client, TPM_INT_ENABLE, &intmask, 1);
732 if (err < 0)
733 goto _irq_set;
734
735 intmask = TPM_GLOBAL_INT_ENABLE;
736 err = I2C_WRITE_DATA(client, (TPM_INT_ENABLE + 3), &intmask, 1);
737 if (err < 0)
738 goto _irq_set;
739
740 err = I2C_READ_DATA(client, TPM_INT_STATUS, &intmask, 1);
741 if (err < 0)
742 goto _irq_set;
743
744 chip->vendor.irq = interrupts;
745
746 tpm_gen_interrupt(chip);
747 }
748
749 tpm_get_timeouts(chip);
750
751 i2c_set_clientdata(client, chip);
752
753 dev_info(chip->dev, "TPM I2C Initialized\n");
754 return 0;
755 _irq_set:
756 free_irq(gpio_to_irq(platform_data->io_serirq), (void *)chip);
757 _gpio_init2:
758 if (interrupts)
759 gpio_free(platform_data->io_serirq);
760 _gpio_init1:
761 if (power_mgt)
762 gpio_free(platform_data->io_lpcpd);
763 _tpm_clean_response2:
764 kzfree(platform_data->tpm_i2c_buffer[1]);
765 platform_data->tpm_i2c_buffer[1] = NULL;
766 _tpm_clean_response1:
767 kzfree(platform_data->tpm_i2c_buffer[0]);
768 platform_data->tpm_i2c_buffer[0] = NULL;
769 _tpm_clean_answer:
770 tpm_remove_hardware(chip->dev);
771 end:
772 pr_info("TPM I2C initialisation fail\n");
773 return err;
774 }
775
776 /*
777 * tpm_st33_i2c_remove remove the TPM device
778 * @param: client, the i2c_client drescription (TPM I2C description).
779 clear_bit(0, &chip->is_open);
780 * @return: 0 in case of success.
781 */
782 static int tpm_st33_i2c_remove(struct i2c_client *client)
783 {
784 struct tpm_chip *chip = (struct tpm_chip *)i2c_get_clientdata(client);
785 struct st33zp24_platform_data *pin_infos =
786 ((struct i2c_client *)TPM_VPRIV(chip))->dev.platform_data;
787
788 if (pin_infos != NULL) {
789 free_irq(pin_infos->io_serirq, chip);
790
791 gpio_free(pin_infos->io_serirq);
792 gpio_free(pin_infos->io_lpcpd);
793
794 tpm_remove_hardware(chip->dev);
795
796 if (pin_infos->tpm_i2c_buffer[1] != NULL) {
797 kzfree(pin_infos->tpm_i2c_buffer[1]);
798 pin_infos->tpm_i2c_buffer[1] = NULL;
799 }
800 if (pin_infos->tpm_i2c_buffer[0] != NULL) {
801 kzfree(pin_infos->tpm_i2c_buffer[0]);
802 pin_infos->tpm_i2c_buffer[0] = NULL;
803 }
804 }
805
806 return 0;
807 }
808
809 #ifdef CONFIG_PM_SLEEP
810 /*
811 * tpm_st33_i2c_pm_suspend suspend the TPM device
812 * Added: Work around when suspend and no tpm application is running, suspend
813 * may fail because chip->data_buffer is not set (only set in tpm_open in Linux
814 * TPM core)
815 * @param: client, the i2c_client drescription (TPM I2C description).
816 * @param: mesg, the power management message.
817 * @return: 0 in case of success.
818 */
819 static int tpm_st33_i2c_pm_suspend(struct device *dev)
820 {
821 struct tpm_chip *chip = dev_get_drvdata(dev);
822 struct st33zp24_platform_data *pin_infos = dev->platform_data;
823 int ret = 0;
824
825 if (power_mgt) {
826 gpio_set_value(pin_infos->io_lpcpd, 0);
827 } else {
828 if (chip->data_buffer == NULL)
829 chip->data_buffer = pin_infos->tpm_i2c_buffer[0];
830 ret = tpm_pm_suspend(dev);
831 }
832 return ret;
833 } /* tpm_st33_i2c_suspend() */
834
835 /*
836 * tpm_st33_i2c_pm_resume resume the TPM device
837 * @param: client, the i2c_client drescription (TPM I2C description).
838 * @return: 0 in case of success.
839 */
840 static int tpm_st33_i2c_pm_resume(struct device *dev)
841 {
842 struct tpm_chip *chip = dev_get_drvdata(dev);
843 struct st33zp24_platform_data *pin_infos = dev->platform_data;
844
845 int ret = 0;
846
847 if (power_mgt) {
848 gpio_set_value(pin_infos->io_lpcpd, 1);
849 ret = wait_for_serirq_timeout(chip,
850 (chip->vendor.status(chip) &
851 TPM_STS_VALID) == TPM_STS_VALID,
852 chip->vendor.timeout_b);
853 } else {
854 if (chip->data_buffer == NULL)
855 chip->data_buffer = pin_infos->tpm_i2c_buffer[0];
856 ret = tpm_pm_resume(dev);
857 if (!ret)
858 tpm_do_selftest(chip);
859 }
860 return ret;
861 } /* tpm_st33_i2c_pm_resume() */
862 #endif
863
864 static const struct i2c_device_id tpm_st33_i2c_id[] = {
865 {TPM_ST33_I2C, 0},
866 {}
867 };
868 MODULE_DEVICE_TABLE(i2c, tpm_st33_i2c_id);
869 static SIMPLE_DEV_PM_OPS(tpm_st33_i2c_ops, tpm_st33_i2c_pm_suspend,
870 tpm_st33_i2c_pm_resume);
871 static struct i2c_driver tpm_st33_i2c_driver = {
872 .driver = {
873 .owner = THIS_MODULE,
874 .name = TPM_ST33_I2C,
875 .pm = &tpm_st33_i2c_ops,
876 },
877 .probe = tpm_st33_i2c_probe,
878 .remove = tpm_st33_i2c_remove,
879 .id_table = tpm_st33_i2c_id
880 };
881
882 module_i2c_driver(tpm_st33_i2c_driver);
883
884 MODULE_AUTHOR("Christophe Ricard (tpmsupport@st.com)");
885 MODULE_DESCRIPTION("STM TPM I2C ST33 Driver");
886 MODULE_VERSION("1.2.0");
887 MODULE_LICENSE("GPL");