mirror of
				https://github.com/mborgerson/xemu.git
				synced 2025-10-30 03:31:27 +00:00 
			
		
		
		
	To be able to remove tpm_tis_base_addr from test cases that do not really need it move the tpm_util_tis_transmit() function into tpm-tis-utils.c and rename it to tpm_tis_transmit(). Fix a locality parameter in a test case on the way. Signed-off-by: Stefan Berger <stefanb@linux.ibm.com> Reviewed-by: Ninad Palsule <ninad@linux.ibm.com> Reviewed-by: Thomas Huth <thuth@redhat.com> Message-Id: <20230331173051.3857801-3-stefanb@linux.ibm.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
		
			
				
	
	
		
			28 lines
		
	
	
		
			867 B
		
	
	
	
		
			C
		
	
	
	
	
	
			
		
		
	
	
			28 lines
		
	
	
		
			867 B
		
	
	
	
		
			C
		
	
	
	
	
	
| /*
 | |
|  * QTest TPM TIS: Common test functions used for both the
 | |
|  * ISA and SYSBUS devices
 | |
|  *
 | |
|  * Copyright (c) 2018 IBM Corporation
 | |
|  *
 | |
|  * Authors:
 | |
|  *   Stefan Berger <stefanb@linux.vnet.ibm.com>
 | |
|  *
 | |
|  * This work is licensed under the terms of the GNU GPL, version 2 or later.
 | |
|  * See the COPYING file in the top-level directory.
 | |
|  */
 | |
| 
 | |
| #ifndef TESTS_TPM_TIS_UTIL_H
 | |
| #define TESTS_TPM_TIS_UTIL_H
 | |
| 
 | |
| void tpm_tis_test_check_localities(const void *data);
 | |
| void tpm_tis_test_check_access_reg(const void *data);
 | |
| void tpm_tis_test_check_access_reg_seize(const void *data);
 | |
| void tpm_tis_test_check_access_reg_release(const void *data);
 | |
| void tpm_tis_test_check_transmit(const void *data);
 | |
| 
 | |
| void tpm_tis_transfer(QTestState *s,
 | |
|                       const unsigned char *req, size_t req_size,
 | |
|                       unsigned char *rsp, size_t rsp_size);
 | |
| 
 | |
| #endif /* TESTS_TPM_TIS_UTIL_H */
 |