tpm.h 2.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071
  1. /*
  2. * Copyright (c) 2011 The Chromium OS Authors.
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. #ifndef _INCLUDE_TPM_H_
  23. #define _INCLUDE_TPM_H_
  24. #include <common.h>
  25. /*
  26. * tis_init()
  27. *
  28. * Initialize the TPM device. Returns 0 on success or -1 on
  29. * failure (in case device probing did not succeed).
  30. */
  31. int tis_init(void);
  32. /*
  33. * tis_open()
  34. *
  35. * Requests access to locality 0 for the caller. After all commands have been
  36. * completed the caller is supposed to call tis_close().
  37. *
  38. * Returns 0 on success, -1 on failure.
  39. */
  40. int tis_open(void);
  41. /*
  42. * tis_close()
  43. *
  44. * terminate the currect session with the TPM by releasing the locked
  45. * locality. Returns 0 on success of -1 on failure (in case lock
  46. * removal did not succeed).
  47. */
  48. int tis_close(void);
  49. /*
  50. * tis_sendrecv()
  51. *
  52. * Send the requested data to the TPM and then try to get its response
  53. *
  54. * @sendbuf - buffer of the data to send
  55. * @send_size size of the data to send
  56. * @recvbuf - memory to save the response to
  57. * @recv_len - pointer to the size of the response buffer
  58. *
  59. * Returns 0 on success (and places the number of response bytes at recv_len)
  60. * or -1 on failure.
  61. */
  62. int tis_sendrecv(const uint8_t *sendbuf, size_t send_size, uint8_t *recvbuf,
  63. size_t *recv_len);
  64. #endif /* _INCLUDE_TPM_H_ */