Searched refs:tpm_register (Results 1 – 3 of 3) sorted by relevance
| /linux/drivers/char/tpm/st33zp24/ |
| A D | i2c.c | 31 static int write8_reg(void *phy_id, u8 tpm_register, u8 *tpm_data, int tpm_size) in write8_reg() argument 35 phy->buf[0] = tpm_register; in write8_reg() 48 static int read8_reg(void *phy_id, u8 tpm_register, u8 *tpm_data, int tpm_size) in read8_reg() argument 55 status = write8_reg(phy, tpm_register, &data, 1); in read8_reg() 70 static int st33zp24_i2c_send(void *phy_id, u8 tpm_register, u8 *tpm_data, in st33zp24_i2c_send() argument 73 return write8_reg(phy_id, tpm_register | TPM_WRITE_DIRECTION, tpm_data, in st33zp24_i2c_send() 86 static int st33zp24_i2c_recv(void *phy_id, u8 tpm_register, u8 *tpm_data, in st33zp24_i2c_recv() argument 89 return read8_reg(phy_id, tpm_register, tpm_data, tpm_size); in st33zp24_i2c_recv()
|
| A D | spi.c | 96 static int st33zp24_spi_send(void *phy_id, u8 tpm_register, u8 *tpm_data, in st33zp24_spi_send() argument 109 phy->tx_buf[total_length++] = tpm_register; in st33zp24_spi_send() 111 if (tpm_size > 0 && tpm_register == TPM_DATA_FIFO) { in st33zp24_spi_send() 139 static int st33zp24_spi_read8_reg(void *phy_id, u8 tpm_register, u8 *tpm_data, in st33zp24_spi_read8_reg() argument 152 phy->tx_buf[total_length++] = tpm_register; in st33zp24_spi_read8_reg() 180 static int st33zp24_spi_recv(void *phy_id, u8 tpm_register, u8 *tpm_data, in st33zp24_spi_recv() argument 185 ret = st33zp24_spi_read8_reg(phy_id, tpm_register, tpm_data, tpm_size); in st33zp24_spi_recv()
|
| A D | st33zp24.h | 29 int (*send)(void *phy_id, u8 tpm_register, u8 *tpm_data, int tpm_size); 30 int (*recv)(void *phy_id, u8 tpm_register, u8 *tpm_data, int tpm_size);
|
Completed in 7 milliseconds