diff options
| author | Chris Engel <cjengel@us.ibm.com> | 2016-07-13 16:10:54 -0500 |
|---|---|---|
| committer | William G. Hoffa <wghoffa@us.ibm.com> | 2016-08-22 13:47:05 -0400 |
| commit | b692f91c173ca684b557b8f76d268720e58b36a4 (patch) | |
| tree | 6f100e0f80e5bc60b69824441e266e1da69e6760 /src/include/usr/devicefw | |
| parent | 984f7f35a02e4894c8cb448223bea8d53b64f459 (diff) | |
| download | blackbird-hostboot-b692f91c173ca684b557b8f76d268720e58b36a4.tar.gz blackbird-hostboot-b692f91c173ca684b557b8f76d268720e58b36a4.zip | |
Trustedboot support for using TPM target
Change-Id: I362085fd81663b9b8ec56ed9e0670cf71fc851e4
RTC: 153386
Reviewed-on: http://ralgit01.raleigh.ibm.com/gerrit1/28482
Reviewed-by: Christopher J. Engel <cjengel@us.ibm.com>
Tested-by: Jenkins Server <pfd-jenkins+hostboot@us.ibm.com>
Tested-by: FSP CI Jenkins <fsp-CI-jenkins+hostboot@us.ibm.com>
Reviewed-by: William G. Hoffa <wghoffa@us.ibm.com>
Diffstat (limited to 'src/include/usr/devicefw')
| -rw-r--r-- | src/include/usr/devicefw/userif.H | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/src/include/usr/devicefw/userif.H b/src/include/usr/devicefw/userif.H index 970a747a6..59e812d8a 100644 --- a/src/include/usr/devicefw/userif.H +++ b/src/include/usr/devicefw/userif.H @@ -304,15 +304,13 @@ namespace DeviceFW /** * Construct the device addressing parameters for the TPM device ops. - * @param[in] i_tpm_enum The chip number of the TPM to access. See - * tpm_chip_types_t in tpmddif.H * @param[in] i_tpm_operation The TPM operation to perform. See * tpm_op_types_t in tpmddif.H * @param[in] i_command_len Command length to write during transmit * operations */ - #define DEVICE_TPM_ADDRESS( i_tpm_enum, i_tpm_op, i_command_len )\ - DeviceFW::TPM, static_cast<uint64_t>(( i_tpm_enum )),\ + #define DEVICE_TPM_ADDRESS( i_tpm_op, i_command_len )\ + DeviceFW::TPM,\ static_cast<uint64_t>(( i_tpm_op )),\ static_cast<uint64_t>(( i_command_len )) |

