blob: e1b94bd1a7db44c1fff252e546596af251017941 [file] [log] [blame]
Simon Glass2eb5fc12017-05-29 15:31:28 -06001# -*- coding: utf-8 -*-
Tom Rini83d290c2018-05-06 17:58:06 -04002# SPDX-License-Identifier: GPL-2.0+
Simon Glass0d24de92012-01-14 15:12:45 +00003#
4# Copyright (c) 2011 The Chromium OS Authors.
5#
Simon Glass0d24de92012-01-14 15:12:45 +00006
7import os
8import tempfile
9import unittest
10
11import checkpatch
12import gitutil
13import patchstream
14import series
15
16
17class TestPatch(unittest.TestCase):
18 """Test this program
19
20 TODO: Write tests for the rest of the functionality
21 """
22
23 def testBasic(self):
24 """Test basic filter operation"""
25 data='''
26
27From 656c9a8c31fa65859d924cd21da920d6ba537fad Mon Sep 17 00:00:00 2001
28From: Simon Glass <sjg@chromium.org>
29Date: Thu, 28 Apr 2011 09:58:51 -0700
30Subject: [PATCH (resend) 3/7] Tegra2: Add more clock support
31
32This adds functions to enable/disable clocks and reset to on-chip peripherals.
33
Simon Glass2eb5fc12017-05-29 15:31:28 -060034cmd/pci.c:152:11: warning: format ‘%llx’ expects argument of type
35 ‘long long unsigned int’, but argument 3 has type
36 ‘u64 {aka long unsigned int}’ [-Wformat=]
37
Simon Glass0d24de92012-01-14 15:12:45 +000038BUG=chromium-os:13875
39TEST=build U-Boot for Seaboard, boot
40
41Change-Id: I80fe1d0c0b7dd10aa58ce5bb1d9290b6664d5413
42
43Review URL: http://codereview.chromium.org/6900006
44
45Signed-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 ++----
49 arch/arm/cpu/armv7/tegra2/clock.c | 163 +++++++++++++++++
50'''
51 expected='''
52
53From 656c9a8c31fa65859d924cd21da920d6ba537fad Mon Sep 17 00:00:00 2001
54From: Simon Glass <sjg@chromium.org>
55Date: Thu, 28 Apr 2011 09:58:51 -0700
56Subject: [PATCH (resend) 3/7] Tegra2: Add more clock support
57
58This adds functions to enable/disable clocks and reset to on-chip peripherals.
59
Simon Glass2eb5fc12017-05-29 15:31:28 -060060cmd/pci.c:152:11: warning: format ‘%llx’ expects argument of type
61 ‘long long unsigned int’, but argument 3 has type
62 ‘u64 {aka long unsigned int}’ [-Wformat=]
63
Simon Glass0d24de92012-01-14 15:12:45 +000064Signed-off-by: Simon Glass <sjg@chromium.org>
65---
Simon Glasse752edc2014-08-28 09:43:35 -060066
Simon Glass0d24de92012-01-14 15:12:45 +000067 arch/arm/cpu/armv7/tegra2/Makefile | 2 +-
68 arch/arm/cpu/armv7/tegra2/ap20.c | 57 ++----
69 arch/arm/cpu/armv7/tegra2/clock.c | 163 +++++++++++++++++
70'''
71 out = ''
72 inhandle, inname = tempfile.mkstemp()
73 infd = os.fdopen(inhandle, 'w')
74 infd.write(data)
75 infd.close()
76
77 exphandle, expname = tempfile.mkstemp()
78 expfd = os.fdopen(exphandle, 'w')
79 expfd.write(expected)
80 expfd.close()
81
82 patchstream.FixPatch(None, inname, series.Series(), None)
83 rc = os.system('diff -u %s %s' % (inname, expname))
84 self.assertEqual(rc, 0)
85
86 os.remove(inname)
87 os.remove(expname)
88
89 def GetData(self, data_type):
Simon Glass6c328f22017-11-12 21:52:12 -070090 data='''From 4924887af52713cabea78420eff03badea8f0035 Mon Sep 17 00:00:00 2001
Simon Glass0d24de92012-01-14 15:12:45 +000091From: Simon Glass <sjg@chromium.org>
92Date: Thu, 7 Apr 2011 10:14:41 -0700
93Subject: [PATCH 1/4] Add microsecond boot time measurement
94
95This defines the basics of a new boot time measurement feature. This allows
96logging of very accurate time measurements as the boot proceeds, by using
97an available microsecond counter.
98
99%s
100---
101 README | 11 ++++++++
Simon Glass6c328f22017-11-12 21:52:12 -0700102 MAINTAINERS | 3 ++
Simon Glass0d24de92012-01-14 15:12:45 +0000103 common/bootstage.c | 50 ++++++++++++++++++++++++++++++++++++
104 include/bootstage.h | 71 +++++++++++++++++++++++++++++++++++++++++++++++++++
105 include/common.h | 8 ++++++
106 5 files changed, 141 insertions(+), 0 deletions(-)
107 create mode 100644 common/bootstage.c
108 create mode 100644 include/bootstage.h
109
110diff --git a/README b/README
111index 6f3748d..f9e4e65 100644
112--- a/README
113+++ b/README
114@@ -2026,6 +2026,17 @@ The following options need to be configured:
Doug Anderson05d52822012-11-26 15:21:39 +0000115 example, some LED's) on your board. At the moment,
116 the following checkpoints are implemented:
Simon Glass0d24de92012-01-14 15:12:45 +0000117
118+- Time boot progress
119+ CONFIG_BOOTSTAGE
120+
121+ Define this option to enable microsecond boot stage timing
122+ on supported platforms. For this to work your platform
123+ needs to define a function timer_get_us() which returns the
124+ number of microseconds since reset. This would normally
125+ be done in your SOC or board timer.c file.
126+
127+ You can add calls to bootstage_mark() to set time markers.
128+
129 - Standalone program support:
Doug Anderson05d52822012-11-26 15:21:39 +0000130 CONFIG_STANDALONE_LOAD_ADDR
Simon Glass0d24de92012-01-14 15:12:45 +0000131
Simon Glass6c328f22017-11-12 21:52:12 -0700132diff --git a/MAINTAINERS b/MAINTAINERS
133index b167b028ec..beb7dc634f 100644
134--- a/MAINTAINERS
135+++ b/MAINTAINERS
136@@ -474,3 +474,8 @@ S: Maintained
137 T: git git://git.denx.de/u-boot.git
138 F: *
139 F: */
140+
141+BOOTSTAGE
142+M: Simon Glass <sjg@chromium.org>
143+L: u-boot@lists.denx.de
144+F: common/bootstage.c
Simon Glass0d24de92012-01-14 15:12:45 +0000145diff --git a/common/bootstage.c b/common/bootstage.c
146new file mode 100644
147index 0000000..2234c87
148--- /dev/null
149+++ b/common/bootstage.c
Simon Glass6c328f22017-11-12 21:52:12 -0700150@@ -0,0 +1,37 @@
Chris Packhamfe6ef1e2018-06-07 20:45:07 +1200151+%s
Simon Glass0d24de92012-01-14 15:12:45 +0000152+/*
153+ * Copyright (c) 2011, Google Inc. All rights reserved.
154+ *
Simon Glass0d24de92012-01-14 15:12:45 +0000155+ */
156+
Simon Glass0d24de92012-01-14 15:12:45 +0000157+/*
158+ * This module records the progress of boot and arbitrary commands, and
159+ * permits accurate timestamping of each. The records can optionally be
160+ * passed to kernel in the ATAGs
161+ */
162+
163+#include <common.h>
164+
Simon Glass0d24de92012-01-14 15:12:45 +0000165+struct bootstage_record {
Simon Glass6c328f22017-11-12 21:52:12 -0700166+ u32 time_us;
Simon Glass0d24de92012-01-14 15:12:45 +0000167+ const char *name;
168+};
169+
170+static struct bootstage_record record[BOOTSTAGE_COUNT];
171+
Simon Glass6c328f22017-11-12 21:52:12 -0700172+u32 bootstage_mark(enum bootstage_id id, const char *name)
Simon Glass0d24de92012-01-14 15:12:45 +0000173+{
174+ struct bootstage_record *rec = &record[id];
175+
176+ /* Only record the first event for each */
177+%sif (!rec->name) {
Simon Glass6c328f22017-11-12 21:52:12 -0700178+ rec->time_us = (u32)timer_get_us();
Simon Glass0d24de92012-01-14 15:12:45 +0000179+ rec->name = name;
180+ }
Simon Glassd29fe6e2013-03-26 13:09:39 +0000181+ if (!rec->name &&
182+ %ssomething_else) {
Simon Glass6c328f22017-11-12 21:52:12 -0700183+ rec->time_us = (u32)timer_get_us();
Simon Glassd29fe6e2013-03-26 13:09:39 +0000184+ rec->name = name;
185+ }
Simon Glass0d24de92012-01-14 15:12:45 +0000186+%sreturn rec->time_us;
187+}
188--
1891.7.3.1
190'''
191 signoff = 'Signed-off-by: Simon Glass <sjg@chromium.org>\n'
Chris Packhamfe6ef1e2018-06-07 20:45:07 +1200192 license = '// SPDX-License-Identifier: GPL-2.0+'
Simon Glass0d24de92012-01-14 15:12:45 +0000193 tab = ' '
Simon Glassd29fe6e2013-03-26 13:09:39 +0000194 indent = ' '
Simon Glass0d24de92012-01-14 15:12:45 +0000195 if data_type == 'good':
196 pass
197 elif data_type == 'no-signoff':
198 signoff = ''
Chris Packhamfe6ef1e2018-06-07 20:45:07 +1200199 elif data_type == 'no-license':
200 license = ''
Simon Glass0d24de92012-01-14 15:12:45 +0000201 elif data_type == 'spaces':
202 tab = ' '
Simon Glassd29fe6e2013-03-26 13:09:39 +0000203 elif data_type == 'indent':
204 indent = tab
Simon Glass0d24de92012-01-14 15:12:45 +0000205 else:
Paul Burtona920a172016-09-27 16:03:50 +0100206 print('not implemented')
Chris Packhamfe6ef1e2018-06-07 20:45:07 +1200207 return data % (signoff, license, tab, indent, tab)
Simon Glass0d24de92012-01-14 15:12:45 +0000208
209 def SetupData(self, data_type):
210 inhandle, inname = tempfile.mkstemp()
211 infd = os.fdopen(inhandle, 'w')
212 data = self.GetData(data_type)
213 infd.write(data)
214 infd.close()
215 return inname
216
Simon Glassd29fe6e2013-03-26 13:09:39 +0000217 def testGood(self):
Simon Glass0d24de92012-01-14 15:12:45 +0000218 """Test checkpatch operation"""
219 inf = self.SetupData('good')
Simon Glassd29fe6e2013-03-26 13:09:39 +0000220 result = checkpatch.CheckPatch(inf)
221 self.assertEqual(result.ok, True)
222 self.assertEqual(result.problems, [])
223 self.assertEqual(result.errors, 0)
224 self.assertEqual(result.warnings, 0)
225 self.assertEqual(result.checks, 0)
Simon Glass6c328f22017-11-12 21:52:12 -0700226 self.assertEqual(result.lines, 62)
Simon Glass0d24de92012-01-14 15:12:45 +0000227 os.remove(inf)
228
Simon Glassd29fe6e2013-03-26 13:09:39 +0000229 def testNoSignoff(self):
Simon Glass0d24de92012-01-14 15:12:45 +0000230 inf = self.SetupData('no-signoff')
Simon Glassd29fe6e2013-03-26 13:09:39 +0000231 result = checkpatch.CheckPatch(inf)
232 self.assertEqual(result.ok, False)
233 self.assertEqual(len(result.problems), 1)
234 self.assertEqual(result.errors, 1)
235 self.assertEqual(result.warnings, 0)
236 self.assertEqual(result.checks, 0)
Simon Glass6c328f22017-11-12 21:52:12 -0700237 self.assertEqual(result.lines, 62)
Simon Glass0d24de92012-01-14 15:12:45 +0000238 os.remove(inf)
239
Chris Packhamfe6ef1e2018-06-07 20:45:07 +1200240 def testNoLicense(self):
241 inf = self.SetupData('no-license')
242 result = checkpatch.CheckPatch(inf)
243 self.assertEqual(result.ok, False)
244 self.assertEqual(len(result.problems), 1)
245 self.assertEqual(result.errors, 0)
246 self.assertEqual(result.warnings, 1)
247 self.assertEqual(result.checks, 0)
248 self.assertEqual(result.lines, 62)
249 os.remove(inf)
250
Simon Glassd29fe6e2013-03-26 13:09:39 +0000251 def testSpaces(self):
Simon Glass0d24de92012-01-14 15:12:45 +0000252 inf = self.SetupData('spaces')
Simon Glassd29fe6e2013-03-26 13:09:39 +0000253 result = checkpatch.CheckPatch(inf)
254 self.assertEqual(result.ok, False)
Simon Glass6c328f22017-11-12 21:52:12 -0700255 self.assertEqual(len(result.problems), 3)
Simon Glassd29fe6e2013-03-26 13:09:39 +0000256 self.assertEqual(result.errors, 0)
Simon Glass6c328f22017-11-12 21:52:12 -0700257 self.assertEqual(result.warnings, 3)
Simon Glassd29fe6e2013-03-26 13:09:39 +0000258 self.assertEqual(result.checks, 0)
Simon Glass6c328f22017-11-12 21:52:12 -0700259 self.assertEqual(result.lines, 62)
Simon Glassd29fe6e2013-03-26 13:09:39 +0000260 os.remove(inf)
261
262 def testIndent(self):
263 inf = self.SetupData('indent')
264 result = checkpatch.CheckPatch(inf)
265 self.assertEqual(result.ok, False)
266 self.assertEqual(len(result.problems), 1)
267 self.assertEqual(result.errors, 0)
268 self.assertEqual(result.warnings, 0)
269 self.assertEqual(result.checks, 1)
Simon Glass6c328f22017-11-12 21:52:12 -0700270 self.assertEqual(result.lines, 62)
Simon Glass0d24de92012-01-14 15:12:45 +0000271 os.remove(inf)
272
273
274if __name__ == "__main__":
275 unittest.main()
276 gitutil.RunTests()