Mathias Leblanc | 251a7b0 | 2012-11-28 18:22:24 +0100 | [diff] [blame] | 1 | /* |
Christophe Ricard | bf38b87 | 2015-03-08 11:17:14 +0100 | [diff] [blame] | 2 | * STMicroelectronics TPM Linux driver for TPM 1.2 ST33ZP24 |
Christophe RICARD | 2c2b217 | 2016-02-13 16:15:31 +0100 | [diff] [blame] | 3 | * Copyright (C) 2009 - 2016 STMicroelectronics |
Mathias Leblanc | 251a7b0 | 2012-11-28 18:22:24 +0100 | [diff] [blame] | 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 | * |
Christophe Ricard | b9626f3 | 2014-12-01 19:32:51 +0100 | [diff] [blame] | 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/>. |
Mathias Leblanc | 251a7b0 | 2012-11-28 18:22:24 +0100 | [diff] [blame] | 17 | */ |
Christophe Ricard | bf38b87 | 2015-03-08 11:17:14 +0100 | [diff] [blame] | 18 | #ifndef __ST33ZP24_H__ |
| 19 | #define __ST33ZP24_H__ |
Mathias Leblanc | 251a7b0 | 2012-11-28 18:22:24 +0100 | [diff] [blame] | 20 | |
Christophe Ricard | 3eda7d0 | 2015-01-13 23:13:13 +0100 | [diff] [blame] | 21 | #define TPM_ST33_I2C "st33zp24-i2c" |
| 22 | #define TPM_ST33_SPI "st33zp24-spi" |
Kent Yoder | 3d7a7bd | 2012-12-05 16:52:43 -0600 | [diff] [blame] | 23 | |
| 24 | struct st33zp24_platform_data { |
Kent Yoder | 3d7a7bd | 2012-12-05 16:52:43 -0600 | [diff] [blame] | 25 | int io_lpcpd; |
Mathias Leblanc | 251a7b0 | 2012-11-28 18:22:24 +0100 | [diff] [blame] | 26 | }; |
| 27 | |
Christophe Ricard | bf38b87 | 2015-03-08 11:17:14 +0100 | [diff] [blame] | 28 | #endif /* __ST33ZP24_H__ */ |