summaryrefslogtreecommitdiff
path: root/meta-openbmc-mods/meta-ast2600/recipes-bsp/u-boot/files/0008-AST2600-Add-TPM-pulse-trigger.patch
blob: 19606ee3825a6db281dbce541dd63f23e4363353 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
From b7f02c074c0dee6b5d6d1c1f632993f7b0e3e952 Mon Sep 17 00:00:00 2001
From: Jae Hyun Yoo <jae.hyun.yoo@intel.com>
Date: Wed, 25 Mar 2020 15:04:26 -0700
Subject: [PATCH] AST2600: Add TPM pulse trigger

This commit adds TPM pulse trigger into u-boot booting.

Signed-off-by: Jae Hyun Yoo <jae.hyun.yoo@intel.com>
---
 board/aspeed/ast2600_intel/intel.c | 17 +++++++++++++++++
 1 file changed, 17 insertions(+)

diff --git a/board/aspeed/ast2600_intel/intel.c b/board/aspeed/ast2600_intel/intel.c
index 22a377d2cb77..47e5ad21d66d 100644
--- a/board/aspeed/ast2600_intel/intel.c
+++ b/board/aspeed/ast2600_intel/intel.c
@@ -204,6 +204,21 @@ static void set_gpio_default_state(void)
 	       AST_GPIO_BASE | GPIO_020);
 }
 
+void enable_onboard_tpm(void)
+{
+#define GPIO_C2			BIT(18)
+
+	writel(readl(AST_GPIO_BASE | GPIO_004) | GPIO_C2,
+	       AST_GPIO_BASE | GPIO_004);
+	writel(readl(AST_GPIO_BASE | GPIO_000) | GPIO_C2,
+	       AST_GPIO_BASE | GPIO_000);
+
+	mdelay(50);
+
+	writel(readl(AST_GPIO_BASE | GPIO_000) & ~GPIO_C2,
+	       AST_GPIO_BASE | GPIO_000);
+}
+
 static void timer_handler(void *regs)
 {
 	printf("+");
@@ -234,6 +249,8 @@ int board_early_init_r(void)
 	debug("board_early_init_r\n");
 	/* timer_enable(0, 1, timer_handler); */
 
+	enable_onboard_tpm();
+
 	return 0;
 }
 
-- 
2.7.4