Lines Matching +full:656 +full:- +full:4

1 # -*- coding: utf-8 -*-
2 # SPDX-License-Identifier: GPL-2.0+
27 From 656c9a8c31fa65859d924cd21da920d6ba537fad Mon Sep 17 00:00:00 2001
29 Date: Thu, 28 Apr 2011 09:58:51 -0700
32 This adds functions to enable/disable clocks and reset to on-chip peripherals.
36 ‘u64 {aka long unsigned int}’ [-Wformat=]
38 BUG=chromium-os:13875
39 TEST=build U-Boot for Seaboard, boot
41 Change-Id: I80fe1d0c0b7dd10aa58ce5bb1d9290b6664d5413
45 Signed-off-by: Simon Glass <sjg@chromium.org>
46 ---
47 arch/arm/cpu/armv7/tegra2/Makefile | 2 +-
48 arch/arm/cpu/armv7/tegra2/ap20.c | 57 ++----
53 From 656c9a8c31fa65859d924cd21da920d6ba537fad Mon Sep 17 00:00:00 2001
55 Date: Thu, 28 Apr 2011 09:58:51 -0700
58 This adds functions to enable/disable clocks and reset to on-chip peripherals.
62 ‘u64 {aka long unsigned int}’ [-Wformat=]
64 Signed-off-by: Simon Glass <sjg@chromium.org>
65 ---
67 arch/arm/cpu/armv7/tegra2/Makefile | 2 +-
68 arch/arm/cpu/armv7/tegra2/ap20.c | 57 ++----
83 rc = os.system('diff -u %s %s' % (inname, expname))
92 Date: Thu, 7 Apr 2011 10:14:41 -0700
93 Subject: [PATCH 1/4] Add microsecond boot time measurement
100 ---
106 5 files changed, 141 insertions(+), 0 deletions(-)
110 diff --git a/README b/README
112 --- a/README
114 @@ -2026,6 +2026,17 @@ The following options need to be configured:
118 +- Time boot progress
129 - Standalone program support:
132 diff --git a/MAINTAINERS b/MAINTAINERS
134 --- a/MAINTAINERS
136 @@ -474,3 +474,8 @@ S: Maintained
137 T: git git://git.denx.de/u-boot.git
143 +L: u-boot@lists.denx.de
145 diff --git a/common/bootstage.c b/common/bootstage.c
148 --- /dev/null
150 @@ -0,0 +1,37 @@
177 +%sif (!rec->name) {
178 + rec->time_us = (u32)timer_get_us();
179 + rec->name = name;
181 + if (!rec->name &&
183 + rec->time_us = (u32)timer_get_us();
184 + rec->name = name;
186 +%sreturn rec->time_us;
188 --
191 signoff = 'Signed-off-by: Simon Glass <sjg@chromium.org>\n'
192 license = '// SPDX-License-Identifier: GPL-2.0+'
197 elif data_type == 'no-signoff':
199 elif data_type == 'no-license':
230 inf = self.SetupData('no-signoff')
241 inf = self.SetupData('no-license')