tis.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  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 __TIS_H
  23. #define __TIS_H
  24. #include <common.h>
  25. /* Low-level interface to access TPM */
  26. /*
  27. * tis_init()
  28. *
  29. * Initialize the TPM device. Returns 0 on success or -1 on
  30. * failure (in case device probing did not succeed).
  31. */
  32. int tis_init(void);
  33. /*
  34. * tis_open()
  35. *
  36. * Requests access to locality 0 for the caller. After all commands have been
  37. * completed the caller is supposed to call tis_close().
  38. *
  39. * Returns 0 on success, -1 on failure.
  40. */
  41. int tis_open(void);
  42. /*
  43. * tis_close()
  44. *
  45. * terminate the currect session with the TPM by releasing the locked
  46. * locality. Returns 0 on success of -1 on failure (in case lock
  47. * removal did not succeed).
  48. */
  49. int tis_close(void);
  50. /*
  51. * tis_sendrecv()
  52. *
  53. * Send the requested data to the TPM and then try to get its response
  54. *
  55. * @sendbuf - buffer of the data to send
  56. * @send_size size of the data to send
  57. * @recvbuf - memory to save the response to
  58. * @recv_len - pointer to the size of the response buffer
  59. *
  60. * Returns 0 on success (and places the number of response bytes at recv_len)
  61. * or -1 on failure.
  62. */
  63. int tis_sendrecv(const uint8_t *sendbuf, size_t send_size, uint8_t *recvbuf,
  64. size_t *recv_len);
  65. #endif /* __TIS_H */