st33zp24.h 1.5 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950
  1. /*
  2. * STMicroelectronics TPM Linux driver for TPM ST33ZP24
  3. * Copyright (C) 2009 - 2016 STMicroelectronics
  4. *
  5. * This program is free software; you can redistribute it and/or modify it
  6. * under the terms and conditions of the GNU General Public License,
  7. * version 2, as published by the Free Software Foundation.
  8. *
  9. * This program is distributed in the hope that it will be useful,
  10. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  11. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  12. * GNU General Public License for more details.
  13. *
  14. * You should have received a copy of the GNU General Public License
  15. * along with this program; if not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #ifndef __LOCAL_ST33ZP24_H__
  18. #define __LOCAL_ST33ZP24_H__
  19. #define TPM_WRITE_DIRECTION 0x80
  20. #define TPM_BUFSIZE 2048
  21. struct st33zp24_dev {
  22. struct tpm_chip *chip;
  23. void *phy_id;
  24. const struct st33zp24_phy_ops *ops;
  25. int locality;
  26. int irq;
  27. u32 intrs;
  28. int io_lpcpd;
  29. wait_queue_head_t read_queue;
  30. };
  31. struct st33zp24_phy_ops {
  32. int (*send)(void *phy_id, u8 tpm_register, u8 *tpm_data, int tpm_size);
  33. int (*recv)(void *phy_id, u8 tpm_register, u8 *tpm_data, int tpm_size);
  34. };
  35. #ifdef CONFIG_PM_SLEEP
  36. int st33zp24_pm_suspend(struct device *dev);
  37. int st33zp24_pm_resume(struct device *dev);
  38. #endif
  39. int st33zp24_probe(void *phy_id, const struct st33zp24_phy_ops *ops,
  40. struct device *dev, int irq, int io_lpcpd);
  41. int st33zp24_remove(struct tpm_chip *chip);
  42. #endif /* __LOCAL_ST33ZP24_H__ */