mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 17:08:10 +00:00
46fe777164
Based on 1 normalized pattern(s): this program is free software you can redistribute it and or modify it under the terms and conditions of the gnu general public license version 2 as published by the free software foundation this program is distributed in the hope that it will be useful but without any warranty without even the implied warranty of merchantability or fitness for a particular purpose see the gnu general public license for more details you should have received a copy of the gnu general public license along with this program if not see http www gnu org licenses extracted by the scancode license scanner the SPDX license identifier GPL-2.0-only has been chosen to replace the boilerplate/reference in 33 file(s). Signed-off-by: Thomas Gleixner <tglx@linutronix.de> Reviewed-by: Allison Randal <allison@lohutok.net> Reviewed-by: Kate Stewart <kstewart@linuxfoundation.org> Cc: linux-spdx@vger.kernel.org Link: https://lkml.kernel.org/r/20190531081038.745679586@linutronix.de Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
38 lines
958 B
C
38 lines
958 B
C
/* SPDX-License-Identifier: GPL-2.0-only */
|
|
/*
|
|
* STMicroelectronics TPM Linux driver for TPM ST33ZP24
|
|
* Copyright (C) 2009 - 2016 STMicroelectronics
|
|
*/
|
|
|
|
#ifndef __LOCAL_ST33ZP24_H__
|
|
#define __LOCAL_ST33ZP24_H__
|
|
|
|
#define TPM_WRITE_DIRECTION 0x80
|
|
#define ST33ZP24_BUFSIZE 2048
|
|
|
|
struct st33zp24_dev {
|
|
struct tpm_chip *chip;
|
|
void *phy_id;
|
|
const struct st33zp24_phy_ops *ops;
|
|
int locality;
|
|
int irq;
|
|
u32 intrs;
|
|
int io_lpcpd;
|
|
wait_queue_head_t read_queue;
|
|
};
|
|
|
|
|
|
struct st33zp24_phy_ops {
|
|
int (*send)(void *phy_id, u8 tpm_register, u8 *tpm_data, int tpm_size);
|
|
int (*recv)(void *phy_id, u8 tpm_register, u8 *tpm_data, int tpm_size);
|
|
};
|
|
|
|
#ifdef CONFIG_PM_SLEEP
|
|
int st33zp24_pm_suspend(struct device *dev);
|
|
int st33zp24_pm_resume(struct device *dev);
|
|
#endif
|
|
|
|
int st33zp24_probe(void *phy_id, const struct st33zp24_phy_ops *ops,
|
|
struct device *dev, int irq, int io_lpcpd);
|
|
int st33zp24_remove(struct tpm_chip *chip);
|
|
#endif /* __LOCAL_ST33ZP24_H__ */
|