From mboxrd@z Thu Jan 1 00:00:00 1970 From: Che-Liang Chiou Date: Mon, 19 Dec 2011 17:50:22 +0800 Subject: [U-Boot] [PATCH v2 0/2] Add i2c TPM driver Message-ID: <1324288224-5075-1-git-send-email-clchiou@chromium.org> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de This patchset adds an i2c bus based TPM driver. Changes in v1: - Update s-o-b Peter Huewe's email address - Squash patch #3 into patch #2 Changes in v2: - Style improvements Che-Liang Chiou (2): tpm: Rename generic_lpc_tpm to tpm_tis_lpc tpm: Add i2c TPM driver Makefile | 2 +- README | 18 +- drivers/tpm/Makefile | 5 +- drivers/tpm/tpm.c | 466 +++++++++++++++++ drivers/tpm/tpm_private.h | 134 +++++ drivers/tpm/tpm_tis_i2c.c | 587 ++++++++++++++++++++++ drivers/tpm/{generic_lpc_tpm.c => tpm_tis_lpc.c} | 0 7 files changed, 1209 insertions(+), 3 deletions(-) create mode 100644 drivers/tpm/tpm.c create mode 100644 drivers/tpm/tpm_private.h create mode 100644 drivers/tpm/tpm_tis_i2c.c rename drivers/tpm/{generic_lpc_tpm.c => tpm_tis_lpc.c} (100%) -- 1.7.3.1