Lines Matching +full:armv7 +full:- +full:timer
1 # -*- coding: utf-8 -*-
5 # SPDX-License-Identifier: GPL-2.0+
30 Date: Thu, 28 Apr 2011 09:58:51 -0700
33 This adds functions to enable/disable clocks and reset to on-chip peripherals.
37 ‘u64 {aka long unsigned int}’ [-Wformat=]
39 BUG=chromium-os:13875
40 TEST=build U-Boot for Seaboard, boot
42 Change-Id: I80fe1d0c0b7dd10aa58ce5bb1d9290b6664d5413
46 Signed-off-by: Simon Glass <sjg@chromium.org>
47 ---
48 arch/arm/cpu/armv7/tegra2/Makefile | 2 +-
49 arch/arm/cpu/armv7/tegra2/ap20.c | 57 ++----
50 arch/arm/cpu/armv7/tegra2/clock.c | 163 +++++++++++++++++
56 Date: Thu, 28 Apr 2011 09:58:51 -0700
59 This adds functions to enable/disable clocks and reset to on-chip peripherals.
63 ‘u64 {aka long unsigned int}’ [-Wformat=]
65 Signed-off-by: Simon Glass <sjg@chromium.org>
66 ---
68 arch/arm/cpu/armv7/tegra2/Makefile | 2 +-
69 arch/arm/cpu/armv7/tegra2/ap20.c | 57 ++----
70 arch/arm/cpu/armv7/tegra2/clock.c | 163 +++++++++++++++++
84 rc = os.system('diff -u %s %s' % (inname, expname))
93 Date: Thu, 7 Apr 2011 10:14:41 -0700
101 ---
107 5 files changed, 141 insertions(+), 0 deletions(-)
111 diff --git a/README b/README
113 --- a/README
115 @@ -2026,6 +2026,17 @@ The following options need to be configured:
119 +- Time boot progress
126 + be done in your SOC or board timer.c file.
130 - Standalone program support:
133 diff --git a/MAINTAINERS b/MAINTAINERS
135 --- a/MAINTAINERS
137 @@ -474,3 +474,8 @@ S: Maintained
138 T: git git://git.denx.de/u-boot.git
144 +L: u-boot@lists.denx.de
146 diff --git a/common/bootstage.c b/common/bootstage.c
149 --- /dev/null
151 @@ -0,0 +1,37 @@
155 + * SPDX-License-Identifier: GPL-2.0+
178 +%sif (!rec->name) {
179 + rec->time_us = (u32)timer_get_us();
180 + rec->name = name;
182 + if (!rec->name &&
184 + rec->time_us = (u32)timer_get_us();
185 + rec->name = name;
187 +%sreturn rec->time_us;
189 --
192 signoff = 'Signed-off-by: Simon Glass <sjg@chromium.org>\n'
197 elif data_type == 'no-signoff':
228 inf = self.SetupData('no-signoff')