blob: 9514d9a00cb67b035947cf20245a50ed33e59615 [file] [log] [blame]
Simon Glass793dca32019-10-31 07:42:57 -06001#!/usr/bin/env python3
Tom Rini83d290c2018-05-06 17:58:06 -04002# SPDX-License-Identifier: GPL-2.0+
Masahiro Yamada5a27c732015-05-20 11:36:07 +09003#
4# Author: Masahiro Yamada <yamada.masahiro@socionext.com>
5#
Masahiro Yamada5a27c732015-05-20 11:36:07 +09006
7"""
8Move config options from headers to defconfig files.
9
10Since Kconfig was introduced to U-Boot, we have worked on moving
11config options from headers to Kconfig (defconfig).
12
13This tool intends to help this tremendous work.
14
15
16Usage
17-----
18
Masahiro Yamadab6ef3932016-05-19 15:51:58 +090019First, you must edit the Kconfig to add the menu entries for the configs
Joe Hershberger96464ba2015-05-19 13:21:17 -050020you are moving.
21
Masahiro Yamadab6ef3932016-05-19 15:51:58 +090022And then run this tool giving CONFIG names you want to move.
23For example, if you want to move CONFIG_CMD_USB and CONFIG_SYS_TEXT_BASE,
24simply type as follows:
Masahiro Yamada5a27c732015-05-20 11:36:07 +090025
Masahiro Yamadab6ef3932016-05-19 15:51:58 +090026 $ tools/moveconfig.py CONFIG_CMD_USB CONFIG_SYS_TEXT_BASE
Masahiro Yamada5a27c732015-05-20 11:36:07 +090027
Masahiro Yamadab6ef3932016-05-19 15:51:58 +090028The tool walks through all the defconfig files and move the given CONFIGs.
Masahiro Yamada5a27c732015-05-20 11:36:07 +090029
30The log is also displayed on the terminal.
31
Masahiro Yamada1d085562016-05-19 15:52:02 +090032The log is printed for each defconfig as follows:
Masahiro Yamada5a27c732015-05-20 11:36:07 +090033
Masahiro Yamada1d085562016-05-19 15:52:02 +090034<defconfig_name>
35 <action1>
36 <action2>
37 <action3>
38 ...
Masahiro Yamada5a27c732015-05-20 11:36:07 +090039
Masahiro Yamada1d085562016-05-19 15:52:02 +090040<defconfig_name> is the name of the defconfig.
41
42<action*> shows what the tool did for that defconfig.
Masahiro Yamadac21fc7e2016-08-21 16:12:36 +090043It looks like one of the following:
Masahiro Yamada5a27c732015-05-20 11:36:07 +090044
45 - Move 'CONFIG_... '
46 This config option was moved to the defconfig
47
Masahiro Yamadacc008292016-05-19 15:51:56 +090048 - CONFIG_... is not defined in Kconfig. Do nothing.
Masahiro Yamada916224c2016-08-22 22:18:21 +090049 The entry for this CONFIG was not found in Kconfig. The option is not
50 defined in the config header, either. So, this case can be just skipped.
51
52 - CONFIG_... is not defined in Kconfig (suspicious). Do nothing.
53 This option is defined in the config header, but its entry was not found
54 in Kconfig.
Masahiro Yamadacc008292016-05-19 15:51:56 +090055 There are two common cases:
56 - You forgot to create an entry for the CONFIG before running
57 this tool, or made a typo in a CONFIG passed to this tool.
58 - The entry was hidden due to unmet 'depends on'.
Masahiro Yamada916224c2016-08-22 22:18:21 +090059 The tool does not know if the result is reasonable, so please check it
60 manually.
Masahiro Yamada5a27c732015-05-20 11:36:07 +090061
Masahiro Yamadacc008292016-05-19 15:51:56 +090062 - 'CONFIG_...' is the same as the define in Kconfig. Do nothing.
63 The define in the config header matched the one in Kconfig.
64 We do not need to touch it.
Masahiro Yamada5a27c732015-05-20 11:36:07 +090065
Masahiro Yamada90ed6cb2016-05-19 15:51:53 +090066 - Compiler is missing. Do nothing.
67 The compiler specified for this architecture was not found
68 in your PATH environment.
69 (If -e option is passed, the tool exits immediately.)
70
71 - Failed to process.
Masahiro Yamada5a27c732015-05-20 11:36:07 +090072 An error occurred during processing this defconfig. Skipped.
73 (If -e option is passed, the tool exits immediately on error.)
74
75Finally, you will be asked, Clean up headers? [y/n]:
76
77If you say 'y' here, the unnecessary config defines are removed
78from the config headers (include/configs/*.h).
79It just uses the regex method, so you should not rely on it.
80Just in case, please do 'git diff' to see what happened.
81
82
Masahiro Yamadab6ef3932016-05-19 15:51:58 +090083How does it work?
84-----------------
Masahiro Yamada5a27c732015-05-20 11:36:07 +090085
86This tool runs configuration and builds include/autoconf.mk for every
87defconfig. The config options defined in Kconfig appear in the .config
88file (unless they are hidden because of unmet dependency.)
89On the other hand, the config options defined by board headers are seen
90in include/autoconf.mk. The tool looks for the specified options in both
Masahiro Yamadab6ef3932016-05-19 15:51:58 +090091of them to decide the appropriate action for the options. If the given
92config option is found in the .config, but its value does not match the
93one from the board header, the config option in the .config is replaced
94with the define in the board header. Then, the .config is synced by
95"make savedefconfig" and the defconfig is updated with it.
Masahiro Yamada5a27c732015-05-20 11:36:07 +090096
97For faster processing, this tool handles multi-threading. It creates
98separate build directories where the out-of-tree build is run. The
99temporary build directories are automatically created and deleted as
100needed. The number of threads are chosen based on the number of the CPU
101cores of your system although you can change it via -j (--jobs) option.
102
103
104Toolchains
105----------
106
107Appropriate toolchain are necessary to generate include/autoconf.mk
108for all the architectures supported by U-Boot. Most of them are available
Simon Glass6821a742017-07-10 14:47:47 -0600109at the kernel.org site, some are not provided by kernel.org. This tool uses
110the same tools as buildman, so see that tool for setup (e.g. --fetch-arch).
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900111
112
Simon Glassddf91c62017-06-01 19:39:00 -0600113Tips and trips
114--------------
115
116To sync only X86 defconfigs:
117
118 ./tools/moveconfig.py -s -d <(grep -l X86 configs/*)
119
120or:
121
122 grep -l X86 configs/* | ./tools/moveconfig.py -s -d -
123
124To process CONFIG_CMD_FPGAD only for a subset of configs based on path match:
125
126 ls configs/{hrcon*,iocon*,strider*} | \
127 ./tools/moveconfig.py -Cy CONFIG_CMD_FPGAD -d -
128
129
Simon Glass99b66602017-06-01 19:39:03 -0600130Finding implied CONFIGs
131-----------------------
132
133Some CONFIG options can be implied by others and this can help to reduce
134the size of the defconfig files. For example, CONFIG_X86 implies
135CONFIG_CMD_IRQ, so we can put 'imply CMD_IRQ' under 'config X86' and
136all x86 boards will have that option, avoiding adding CONFIG_CMD_IRQ to
137each of the x86 defconfig files.
138
139This tool can help find such configs. To use it, first build a database:
140
141 ./tools/moveconfig.py -b
142
143Then try to query it:
144
145 ./tools/moveconfig.py -i CONFIG_CMD_IRQ
146 CONFIG_CMD_IRQ found in 311/2384 defconfigs
147 44 : CONFIG_SYS_FSL_ERRATUM_IFC_A002769
148 41 : CONFIG_SYS_FSL_ERRATUM_A007075
149 31 : CONFIG_SYS_FSL_DDR_VER_44
150 28 : CONFIG_ARCH_P1010
151 28 : CONFIG_SYS_FSL_ERRATUM_P1010_A003549
152 28 : CONFIG_SYS_FSL_ERRATUM_SEC_A003571
153 28 : CONFIG_SYS_FSL_ERRATUM_IFC_A003399
154 25 : CONFIG_SYS_FSL_ERRATUM_A008044
155 22 : CONFIG_ARCH_P1020
156 21 : CONFIG_SYS_FSL_DDR_VER_46
157 20 : CONFIG_MAX_PIRQ_LINKS
158 20 : CONFIG_HPET_ADDRESS
159 20 : CONFIG_X86
160 20 : CONFIG_PCIE_ECAM_SIZE
161 20 : CONFIG_IRQ_SLOT_COUNT
162 20 : CONFIG_I8259_PIC
163 20 : CONFIG_CPU_ADDR_BITS
164 20 : CONFIG_RAMBASE
165 20 : CONFIG_SYS_FSL_ERRATUM_A005871
166 20 : CONFIG_PCIE_ECAM_BASE
167 20 : CONFIG_X86_TSC_TIMER
168 20 : CONFIG_I8254_TIMER
169 20 : CONFIG_CMD_GETTIME
170 19 : CONFIG_SYS_FSL_ERRATUM_A005812
171 18 : CONFIG_X86_RUN_32BIT
172 17 : CONFIG_CMD_CHIP_CONFIG
173 ...
174
175This shows a list of config options which might imply CONFIG_CMD_EEPROM along
176with how many defconfigs they cover. From this you can see that CONFIG_X86
177implies CONFIG_CMD_EEPROM. Therefore, instead of adding CONFIG_CMD_EEPROM to
178the defconfig of every x86 board, you could add a single imply line to the
179Kconfig file:
180
181 config X86
182 bool "x86 architecture"
183 ...
184 imply CMD_EEPROM
185
186That will cover 20 defconfigs. Many of the options listed are not suitable as
187they are not related. E.g. it would be odd for CONFIG_CMD_GETTIME to imply
188CMD_EEPROM.
189
190Using this search you can reduce the size of moveconfig patches.
191
Simon Glasscb008832017-06-15 21:39:33 -0600192You can automatically add 'imply' statements in the Kconfig with the -a
193option:
194
195 ./tools/moveconfig.py -s -i CONFIG_SCSI \
196 -a CONFIG_ARCH_LS1021A,CONFIG_ARCH_LS1043A
197
198This will add 'imply SCSI' to the two CONFIG options mentioned, assuming that
199the database indicates that they do actually imply CONFIG_SCSI and do not
200already have an 'imply SCSI'.
201
202The output shows where the imply is added:
203
204 18 : CONFIG_ARCH_LS1021A arch/arm/cpu/armv7/ls102xa/Kconfig:1
205 13 : CONFIG_ARCH_LS1043A arch/arm/cpu/armv8/fsl-layerscape/Kconfig:11
206 12 : CONFIG_ARCH_LS1046A arch/arm/cpu/armv8/fsl-layerscape/Kconfig:31
207
208The first number is the number of boards which can avoid having a special
209CONFIG_SCSI option in their defconfig file if this 'imply' is added.
210The location at the right is the Kconfig file and line number where the config
211appears. For example, adding 'imply CONFIG_SCSI' to the 'config ARCH_LS1021A'
212in arch/arm/cpu/armv7/ls102xa/Kconfig at line 1 will help 18 boards to reduce
213the size of their defconfig files.
214
215If you want to add an 'imply' to every imply config in the list, you can use
216
217 ./tools/moveconfig.py -s -i CONFIG_SCSI -a all
218
219To control which ones are displayed, use -I <list> where list is a list of
220options (use '-I help' to see possible options and their meaning).
221
222To skip showing you options that already have an 'imply' attached, use -A.
223
224When you have finished adding 'imply' options you can regenerate the
225defconfig files for affected boards with something like:
226
227 git show --stat | ./tools/moveconfig.py -s -d -
228
229This will regenerate only those defconfigs changed in the current commit.
230If you start with (say) 100 defconfigs being changed in the commit, and add
231a few 'imply' options as above, then regenerate, hopefully you can reduce the
232number of defconfigs changed in the commit.
233
Simon Glass99b66602017-06-01 19:39:03 -0600234
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900235Available options
236-----------------
237
238 -c, --color
239 Surround each portion of the log with escape sequences to display it
240 in color on the terminal.
241
Simon Glass9ede2122016-09-12 23:18:21 -0600242 -C, --commit
243 Create a git commit with the changes when the operation is complete. A
244 standard commit message is used which may need to be edited.
245
Joe Hershberger91040e82015-05-19 13:21:19 -0500246 -d, --defconfigs
Masahiro Yamada0dbc9b52016-10-19 14:39:54 +0900247 Specify a file containing a list of defconfigs to move. The defconfig
Simon Glassddf91c62017-06-01 19:39:00 -0600248 files can be given with shell-style wildcards. Use '-' to read from stdin.
Joe Hershberger91040e82015-05-19 13:21:19 -0500249
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900250 -n, --dry-run
Masahiro Yamadab6ef3932016-05-19 15:51:58 +0900251 Perform a trial run that does not make any changes. It is useful to
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900252 see what is going to happen before one actually runs it.
253
254 -e, --exit-on-error
255 Exit immediately if Make exits with a non-zero status while processing
256 a defconfig file.
257
Masahiro Yamada8513dc02016-05-19 15:52:08 +0900258 -s, --force-sync
259 Do "make savedefconfig" forcibly for all the defconfig files.
260 If not specified, "make savedefconfig" only occurs for cases
261 where at least one CONFIG was moved.
262
Masahiro Yamada07913d12016-08-22 22:18:22 +0900263 -S, --spl
264 Look for moved config options in spl/include/autoconf.mk instead of
265 include/autoconf.mk. This is useful for moving options for SPL build
266 because SPL related options (mostly prefixed with CONFIG_SPL_) are
267 sometimes blocked by CONFIG_SPL_BUILD ifdef conditionals.
268
Joe Hershberger2144f882015-05-19 13:21:20 -0500269 -H, --headers-only
270 Only cleanup the headers; skip the defconfig processing
271
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900272 -j, --jobs
273 Specify the number of threads to run simultaneously. If not specified,
274 the number of threads is the same as the number of CPU cores.
275
Joe Hershberger6b96c1a2016-06-10 14:53:32 -0500276 -r, --git-ref
277 Specify the git ref to clone for building the autoconf.mk. If unspecified
278 use the CWD. This is useful for when changes to the Kconfig affect the
279 default values and you want to capture the state of the defconfig from
280 before that change was in effect. If in doubt, specify a ref pre-Kconfig
281 changes (use HEAD if Kconfig changes are not committed). Worst case it will
282 take a bit longer to run, but will always do the right thing.
283
Joe Hershberger95bf9c72015-05-19 13:21:24 -0500284 -v, --verbose
285 Show any build errors as boards are built
286
Simon Glass6b403df2016-09-12 23:18:20 -0600287 -y, --yes
288 Instead of prompting, automatically go ahead with all operations. This
Simon Glassddf91c62017-06-01 19:39:00 -0600289 includes cleaning up headers, CONFIG_SYS_EXTRA_OPTIONS, the config whitelist
290 and the README.
Simon Glass6b403df2016-09-12 23:18:20 -0600291
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900292To see the complete list of supported options, run
293
294 $ tools/moveconfig.py -h
295
296"""
297
Markus Klotzbuecherb3192f42020-02-12 20:46:44 +0100298import asteval
Simon Glass99b66602017-06-01 19:39:03 -0600299import collections
Masahiro Yamada8ba1f5d2016-07-25 19:15:24 +0900300import copy
Masahiro Yamadaf2f69812016-07-25 19:15:25 +0900301import difflib
Masahiro Yamadac8e1b102016-05-19 15:52:07 +0900302import filecmp
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900303import fnmatch
Masahiro Yamada0dbc9b52016-10-19 14:39:54 +0900304import glob
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900305import multiprocessing
306import optparse
307import os
Simon Glass793dca32019-10-31 07:42:57 -0600308import queue
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900309import re
310import shutil
311import subprocess
312import sys
313import tempfile
Simon Glassd73fcb12017-06-01 19:39:02 -0600314import threading
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900315import time
316
Simon Glass0ede00f2020-04-17 18:09:02 -0600317from buildman import bsettings
318from buildman import kconfiglib
319from buildman import toolchain
Simon Glasscb008832017-06-15 21:39:33 -0600320
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900321SHOW_GNU_MAKE = 'scripts/show-gnu-make'
322SLEEP_TIME=0.03
323
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900324STATE_IDLE = 0
325STATE_DEFCONFIG = 1
326STATE_AUTOCONF = 2
Joe Hershberger96464ba2015-05-19 13:21:17 -0500327STATE_SAVEDEFCONFIG = 3
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900328
329ACTION_MOVE = 0
Masahiro Yamadacc008292016-05-19 15:51:56 +0900330ACTION_NO_ENTRY = 1
Masahiro Yamada916224c2016-08-22 22:18:21 +0900331ACTION_NO_ENTRY_WARN = 2
332ACTION_NO_CHANGE = 3
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900333
334COLOR_BLACK = '0;30'
335COLOR_RED = '0;31'
336COLOR_GREEN = '0;32'
337COLOR_BROWN = '0;33'
338COLOR_BLUE = '0;34'
339COLOR_PURPLE = '0;35'
340COLOR_CYAN = '0;36'
341COLOR_LIGHT_GRAY = '0;37'
342COLOR_DARK_GRAY = '1;30'
343COLOR_LIGHT_RED = '1;31'
344COLOR_LIGHT_GREEN = '1;32'
345COLOR_YELLOW = '1;33'
346COLOR_LIGHT_BLUE = '1;34'
347COLOR_LIGHT_PURPLE = '1;35'
348COLOR_LIGHT_CYAN = '1;36'
349COLOR_WHITE = '1;37'
350
Simon Glassf3b8e642017-06-01 19:39:01 -0600351AUTO_CONF_PATH = 'include/config/auto.conf'
Simon Glassd73fcb12017-06-01 19:39:02 -0600352CONFIG_DATABASE = 'moveconfig.db'
Simon Glassf3b8e642017-06-01 19:39:01 -0600353
Simon Glasscb008832017-06-15 21:39:33 -0600354CONFIG_LEN = len('CONFIG_')
Simon Glassf3b8e642017-06-01 19:39:01 -0600355
Markus Klotzbuecherb237d352019-05-15 15:15:52 +0200356SIZES = {
357 "SZ_1": 0x00000001, "SZ_2": 0x00000002,
358 "SZ_4": 0x00000004, "SZ_8": 0x00000008,
359 "SZ_16": 0x00000010, "SZ_32": 0x00000020,
360 "SZ_64": 0x00000040, "SZ_128": 0x00000080,
361 "SZ_256": 0x00000100, "SZ_512": 0x00000200,
362 "SZ_1K": 0x00000400, "SZ_2K": 0x00000800,
363 "SZ_4K": 0x00001000, "SZ_8K": 0x00002000,
364 "SZ_16K": 0x00004000, "SZ_32K": 0x00008000,
365 "SZ_64K": 0x00010000, "SZ_128K": 0x00020000,
366 "SZ_256K": 0x00040000, "SZ_512K": 0x00080000,
367 "SZ_1M": 0x00100000, "SZ_2M": 0x00200000,
368 "SZ_4M": 0x00400000, "SZ_8M": 0x00800000,
369 "SZ_16M": 0x01000000, "SZ_32M": 0x02000000,
370 "SZ_64M": 0x04000000, "SZ_128M": 0x08000000,
371 "SZ_256M": 0x10000000, "SZ_512M": 0x20000000,
372 "SZ_1G": 0x40000000, "SZ_2G": 0x80000000,
373 "SZ_4G": 0x100000000
374}
375
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900376### helper functions ###
377def get_devnull():
378 """Get the file object of '/dev/null' device."""
379 try:
380 devnull = subprocess.DEVNULL # py3k
381 except AttributeError:
382 devnull = open(os.devnull, 'wb')
383 return devnull
384
385def check_top_directory():
386 """Exit if we are not at the top of source directory."""
387 for f in ('README', 'Licenses'):
388 if not os.path.exists(f):
389 sys.exit('Please run at the top of source directory.')
390
Masahiro Yamadabd63e5b2016-05-19 15:51:54 +0900391def check_clean_directory():
392 """Exit if the source tree is not clean."""
393 for f in ('.config', 'include/config'):
394 if os.path.exists(f):
395 sys.exit("source tree is not clean, please run 'make mrproper'")
396
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900397def get_make_cmd():
398 """Get the command name of GNU Make.
399
400 U-Boot needs GNU Make for building, but the command name is not
401 necessarily "make". (for example, "gmake" on FreeBSD).
402 Returns the most appropriate command name on your system.
403 """
404 process = subprocess.Popen([SHOW_GNU_MAKE], stdout=subprocess.PIPE)
405 ret = process.communicate()
406 if process.returncode:
407 sys.exit('GNU Make not found')
408 return ret[0].rstrip()
409
Simon Glass25f978c2017-06-01 19:38:58 -0600410def get_matched_defconfig(line):
411 """Get the defconfig files that match a pattern
412
413 Args:
414 line: Path or filename to match, e.g. 'configs/snow_defconfig' or
415 'k2*_defconfig'. If no directory is provided, 'configs/' is
416 prepended
417
418 Returns:
419 a list of matching defconfig files
420 """
421 dirname = os.path.dirname(line)
422 if dirname:
423 pattern = line
424 else:
425 pattern = os.path.join('configs', line)
426 return glob.glob(pattern) + glob.glob(pattern + '_defconfig')
427
Masahiro Yamada0dbc9b52016-10-19 14:39:54 +0900428def get_matched_defconfigs(defconfigs_file):
Simon Glassee4e61b2017-06-01 19:38:59 -0600429 """Get all the defconfig files that match the patterns in a file.
430
431 Args:
432 defconfigs_file: File containing a list of defconfigs to process, or
433 '-' to read the list from stdin
434
435 Returns:
436 A list of paths to defconfig files, with no duplicates
437 """
Masahiro Yamada0dbc9b52016-10-19 14:39:54 +0900438 defconfigs = []
Simon Glassee4e61b2017-06-01 19:38:59 -0600439 if defconfigs_file == '-':
440 fd = sys.stdin
441 defconfigs_file = 'stdin'
442 else:
443 fd = open(defconfigs_file)
444 for i, line in enumerate(fd):
Masahiro Yamada0dbc9b52016-10-19 14:39:54 +0900445 line = line.strip()
446 if not line:
447 continue # skip blank lines silently
Simon Glass2ddd85d2017-06-15 21:39:31 -0600448 if ' ' in line:
449 line = line.split(' ')[0] # handle 'git log' input
Simon Glass25f978c2017-06-01 19:38:58 -0600450 matched = get_matched_defconfig(line)
Masahiro Yamada0dbc9b52016-10-19 14:39:54 +0900451 if not matched:
Simon Glass793dca32019-10-31 07:42:57 -0600452 print("warning: %s:%d: no defconfig matched '%s'" % \
453 (defconfigs_file, i + 1, line), file=sys.stderr)
Masahiro Yamada0dbc9b52016-10-19 14:39:54 +0900454
455 defconfigs += matched
456
457 # use set() to drop multiple matching
458 return [ defconfig[len('configs') + 1:] for defconfig in set(defconfigs) ]
459
Masahiro Yamada684c3062016-07-25 19:15:28 +0900460def get_all_defconfigs():
461 """Get all the defconfig files under the configs/ directory."""
462 defconfigs = []
463 for (dirpath, dirnames, filenames) in os.walk('configs'):
464 dirpath = dirpath[len('configs') + 1:]
465 for filename in fnmatch.filter(filenames, '*_defconfig'):
466 defconfigs.append(os.path.join(dirpath, filename))
467
468 return defconfigs
469
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900470def color_text(color_enabled, color, string):
471 """Return colored string."""
472 if color_enabled:
Masahiro Yamada1d085562016-05-19 15:52:02 +0900473 # LF should not be surrounded by the escape sequence.
474 # Otherwise, additional whitespace or line-feed might be printed.
475 return '\n'.join([ '\033[' + color + 'm' + s + '\033[0m' if s else ''
476 for s in string.split('\n') ])
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900477 else:
478 return string
479
Masahiro Yamadae9ea1222016-07-25 19:15:26 +0900480def show_diff(a, b, file_path, color_enabled):
Masahiro Yamadaf2f69812016-07-25 19:15:25 +0900481 """Show unidified diff.
482
483 Arguments:
484 a: A list of lines (before)
485 b: A list of lines (after)
486 file_path: Path to the file
Masahiro Yamadae9ea1222016-07-25 19:15:26 +0900487 color_enabled: Display the diff in color
Masahiro Yamadaf2f69812016-07-25 19:15:25 +0900488 """
489
490 diff = difflib.unified_diff(a, b,
491 fromfile=os.path.join('a', file_path),
492 tofile=os.path.join('b', file_path))
493
494 for line in diff:
Masahiro Yamadae9ea1222016-07-25 19:15:26 +0900495 if line[0] == '-' and line[1] != '-':
Simon Glass793dca32019-10-31 07:42:57 -0600496 print(color_text(color_enabled, COLOR_RED, line), end=' ')
Masahiro Yamadae9ea1222016-07-25 19:15:26 +0900497 elif line[0] == '+' and line[1] != '+':
Simon Glass793dca32019-10-31 07:42:57 -0600498 print(color_text(color_enabled, COLOR_GREEN, line), end=' ')
Masahiro Yamadae9ea1222016-07-25 19:15:26 +0900499 else:
Simon Glass793dca32019-10-31 07:42:57 -0600500 print(line, end=' ')
Masahiro Yamadaf2f69812016-07-25 19:15:25 +0900501
Masahiro Yamada8ba1f5d2016-07-25 19:15:24 +0900502def extend_matched_lines(lines, matched, pre_patterns, post_patterns, extend_pre,
503 extend_post):
504 """Extend matched lines if desired patterns are found before/after already
505 matched lines.
506
507 Arguments:
508 lines: A list of lines handled.
509 matched: A list of line numbers that have been already matched.
510 (will be updated by this function)
511 pre_patterns: A list of regular expression that should be matched as
512 preamble.
513 post_patterns: A list of regular expression that should be matched as
514 postamble.
515 extend_pre: Add the line number of matched preamble to the matched list.
516 extend_post: Add the line number of matched postamble to the matched list.
517 """
518 extended_matched = []
519
520 j = matched[0]
521
522 for i in matched:
523 if i == 0 or i < j:
524 continue
525 j = i
526 while j in matched:
527 j += 1
528 if j >= len(lines):
529 break
530
531 for p in pre_patterns:
532 if p.search(lines[i - 1]):
533 break
534 else:
535 # not matched
536 continue
537
538 for p in post_patterns:
539 if p.search(lines[j]):
540 break
541 else:
542 # not matched
543 continue
544
545 if extend_pre:
546 extended_matched.append(i - 1)
547 if extend_post:
548 extended_matched.append(j)
549
550 matched += extended_matched
551 matched.sort()
552
Chris Packham85edfc12017-05-02 21:30:46 +1200553def confirm(options, prompt):
554 if not options.yes:
555 while True:
Simon Glass793dca32019-10-31 07:42:57 -0600556 choice = input('{} [y/n]: '.format(prompt))
Chris Packham85edfc12017-05-02 21:30:46 +1200557 choice = choice.lower()
Simon Glass793dca32019-10-31 07:42:57 -0600558 print(choice)
Chris Packham85edfc12017-05-02 21:30:46 +1200559 if choice == 'y' or choice == 'n':
560 break
561
562 if choice == 'n':
563 return False
564
565 return True
566
Chris Packham4d9dbb12019-01-30 20:23:16 +1300567def cleanup_empty_blocks(header_path, options):
568 """Clean up empty conditional blocks
569
570 Arguments:
571 header_path: path to the cleaned file.
572 options: option flags.
573 """
574 pattern = re.compile(r'^\s*#\s*if.*$\n^\s*#\s*endif.*$\n*', flags=re.M)
575 with open(header_path) as f:
576 data = f.read()
577
578 new_data = pattern.sub('\n', data)
579
580 show_diff(data.splitlines(True), new_data.splitlines(True), header_path,
581 options.color)
582
583 if options.dry_run:
584 return
585
586 with open(header_path, 'w') as f:
587 f.write(new_data)
588
Masahiro Yamadae9ea1222016-07-25 19:15:26 +0900589def cleanup_one_header(header_path, patterns, options):
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900590 """Clean regex-matched lines away from a file.
591
592 Arguments:
593 header_path: path to the cleaned file.
594 patterns: list of regex patterns. Any lines matching to these
595 patterns are deleted.
Masahiro Yamadae9ea1222016-07-25 19:15:26 +0900596 options: option flags.
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900597 """
598 with open(header_path) as f:
599 lines = f.readlines()
600
601 matched = []
602 for i, line in enumerate(lines):
Masahiro Yamadaa3a779f2016-07-25 19:15:27 +0900603 if i - 1 in matched and lines[i - 1][-2:] == '\\\n':
604 matched.append(i)
605 continue
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900606 for pattern in patterns:
Masahiro Yamada8ba1f5d2016-07-25 19:15:24 +0900607 if pattern.search(line):
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900608 matched.append(i)
609 break
610
Masahiro Yamada8ba1f5d2016-07-25 19:15:24 +0900611 if not matched:
612 return
613
614 # remove empty #ifdef ... #endif, successive blank lines
615 pattern_if = re.compile(r'#\s*if(def|ndef)?\W') # #if, #ifdef, #ifndef
616 pattern_elif = re.compile(r'#\s*el(if|se)\W') # #elif, #else
617 pattern_endif = re.compile(r'#\s*endif\W') # #endif
618 pattern_blank = re.compile(r'^\s*$') # empty line
619
620 while True:
621 old_matched = copy.copy(matched)
622 extend_matched_lines(lines, matched, [pattern_if],
623 [pattern_endif], True, True)
624 extend_matched_lines(lines, matched, [pattern_elif],
625 [pattern_elif, pattern_endif], True, False)
626 extend_matched_lines(lines, matched, [pattern_if, pattern_elif],
627 [pattern_blank], False, True)
628 extend_matched_lines(lines, matched, [pattern_blank],
629 [pattern_elif, pattern_endif], True, False)
630 extend_matched_lines(lines, matched, [pattern_blank],
631 [pattern_blank], True, False)
632 if matched == old_matched:
633 break
634
Masahiro Yamadaf2f69812016-07-25 19:15:25 +0900635 tolines = copy.copy(lines)
636
637 for i in reversed(matched):
638 tolines.pop(i)
639
Masahiro Yamadae9ea1222016-07-25 19:15:26 +0900640 show_diff(lines, tolines, header_path, options.color)
Masahiro Yamada8ba1f5d2016-07-25 19:15:24 +0900641
Masahiro Yamadae9ea1222016-07-25 19:15:26 +0900642 if options.dry_run:
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900643 return
644
645 with open(header_path, 'w') as f:
Masahiro Yamadaf2f69812016-07-25 19:15:25 +0900646 for line in tolines:
647 f.write(line)
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900648
Masahiro Yamadae9ea1222016-07-25 19:15:26 +0900649def cleanup_headers(configs, options):
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900650 """Delete config defines from board headers.
651
652 Arguments:
Masahiro Yamadab134bc12016-05-19 15:51:57 +0900653 configs: A list of CONFIGs to remove.
Masahiro Yamadae9ea1222016-07-25 19:15:26 +0900654 options: option flags.
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900655 """
Chris Packham85edfc12017-05-02 21:30:46 +1200656 if not confirm(options, 'Clean up headers?'):
657 return
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900658
659 patterns = []
Masahiro Yamadab134bc12016-05-19 15:51:57 +0900660 for config in configs:
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900661 patterns.append(re.compile(r'#\s*define\s+%s\W' % config))
662 patterns.append(re.compile(r'#\s*undef\s+%s\W' % config))
663
Joe Hershberger60727f52015-05-19 13:21:21 -0500664 for dir in 'include', 'arch', 'board':
665 for (dirpath, dirnames, filenames) in os.walk(dir):
Masahiro Yamadadc6de502016-07-25 19:15:22 +0900666 if dirpath == os.path.join('include', 'generated'):
667 continue
Joe Hershberger60727f52015-05-19 13:21:21 -0500668 for filename in filenames:
Simon Glassa38cc172020-08-11 11:23:34 -0600669 if not filename.endswith(('~', '.dts', '.dtsi', '.bin',
670 '.elf')):
Chris Packham4d9dbb12019-01-30 20:23:16 +1300671 header_path = os.path.join(dirpath, filename)
Tom Rini02b56702019-11-10 21:19:37 -0500672 # This file contains UTF-16 data and no CONFIG symbols
673 if header_path == 'include/video_font_data.h':
674 continue
Chris Packham4d9dbb12019-01-30 20:23:16 +1300675 cleanup_one_header(header_path, patterns, options)
676 cleanup_empty_blocks(header_path, options)
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900677
Masahiro Yamada9ab02962016-07-25 19:15:29 +0900678def cleanup_one_extra_option(defconfig_path, configs, options):
679 """Delete config defines in CONFIG_SYS_EXTRA_OPTIONS in one defconfig file.
680
681 Arguments:
682 defconfig_path: path to the cleaned defconfig file.
683 configs: A list of CONFIGs to remove.
684 options: option flags.
685 """
686
687 start = 'CONFIG_SYS_EXTRA_OPTIONS="'
688 end = '"\n'
689
690 with open(defconfig_path) as f:
691 lines = f.readlines()
692
693 for i, line in enumerate(lines):
694 if line.startswith(start) and line.endswith(end):
695 break
696 else:
697 # CONFIG_SYS_EXTRA_OPTIONS was not found in this defconfig
698 return
699
700 old_tokens = line[len(start):-len(end)].split(',')
701 new_tokens = []
702
703 for token in old_tokens:
704 pos = token.find('=')
705 if not (token[:pos] if pos >= 0 else token) in configs:
706 new_tokens.append(token)
707
708 if new_tokens == old_tokens:
709 return
710
711 tolines = copy.copy(lines)
712
713 if new_tokens:
714 tolines[i] = start + ','.join(new_tokens) + end
715 else:
716 tolines.pop(i)
717
718 show_diff(lines, tolines, defconfig_path, options.color)
719
720 if options.dry_run:
721 return
722
723 with open(defconfig_path, 'w') as f:
724 for line in tolines:
725 f.write(line)
726
727def cleanup_extra_options(configs, options):
728 """Delete config defines in CONFIG_SYS_EXTRA_OPTIONS in defconfig files.
729
730 Arguments:
731 configs: A list of CONFIGs to remove.
732 options: option flags.
733 """
Chris Packham85edfc12017-05-02 21:30:46 +1200734 if not confirm(options, 'Clean up CONFIG_SYS_EXTRA_OPTIONS?'):
735 return
Masahiro Yamada9ab02962016-07-25 19:15:29 +0900736
737 configs = [ config[len('CONFIG_'):] for config in configs ]
738
739 defconfigs = get_all_defconfigs()
740
741 for defconfig in defconfigs:
742 cleanup_one_extra_option(os.path.join('configs', defconfig), configs,
743 options)
744
Chris Packhamca438342017-05-02 21:30:47 +1200745def cleanup_whitelist(configs, options):
746 """Delete config whitelist entries
747
748 Arguments:
749 configs: A list of CONFIGs to remove.
750 options: option flags.
751 """
752 if not confirm(options, 'Clean up whitelist entries?'):
753 return
754
755 with open(os.path.join('scripts', 'config_whitelist.txt')) as f:
756 lines = f.readlines()
757
758 lines = [x for x in lines if x.strip() not in configs]
759
760 with open(os.path.join('scripts', 'config_whitelist.txt'), 'w') as f:
761 f.write(''.join(lines))
762
Chris Packhamf90df592017-05-02 21:30:48 +1200763def find_matching(patterns, line):
764 for pat in patterns:
765 if pat.search(line):
766 return True
767 return False
768
769def cleanup_readme(configs, options):
770 """Delete config description in README
771
772 Arguments:
773 configs: A list of CONFIGs to remove.
774 options: option flags.
775 """
776 if not confirm(options, 'Clean up README?'):
777 return
778
779 patterns = []
780 for config in configs:
781 patterns.append(re.compile(r'^\s+%s' % config))
782
783 with open('README') as f:
784 lines = f.readlines()
785
786 found = False
787 newlines = []
788 for line in lines:
789 if not found:
790 found = find_matching(patterns, line)
791 if found:
792 continue
793
794 if found and re.search(r'^\s+CONFIG', line):
795 found = False
796
797 if not found:
798 newlines.append(line)
799
800 with open('README', 'w') as f:
801 f.write(''.join(newlines))
802
Markus Klotzbuecherb237d352019-05-15 15:15:52 +0200803def try_expand(line):
804 """If value looks like an expression, try expanding it
805 Otherwise just return the existing value
806 """
807 if line.find('=') == -1:
808 return line
809
810 try:
Markus Klotzbuecherb3192f42020-02-12 20:46:44 +0100811 aeval = asteval.Interpreter( usersyms=SIZES, minimal=True )
Markus Klotzbuecherb237d352019-05-15 15:15:52 +0200812 cfg, val = re.split("=", line)
813 val= val.strip('\"')
814 if re.search("[*+-/]|<<|SZ_+|\(([^\)]+)\)", val):
Markus Klotzbuecherb3192f42020-02-12 20:46:44 +0100815 newval = hex(aeval(val))
Simon Glass793dca32019-10-31 07:42:57 -0600816 print("\tExpanded expression %s to %s" % (val, newval))
Markus Klotzbuecherb237d352019-05-15 15:15:52 +0200817 return cfg+'='+newval
818 except:
Simon Glass793dca32019-10-31 07:42:57 -0600819 print("\tFailed to expand expression in %s" % line)
Markus Klotzbuecherb237d352019-05-15 15:15:52 +0200820
821 return line
822
Chris Packhamca438342017-05-02 21:30:47 +1200823
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900824### classes ###
Masahiro Yamadac5e60fd2016-05-19 15:51:55 +0900825class Progress:
826
827 """Progress Indicator"""
828
829 def __init__(self, total):
830 """Create a new progress indicator.
831
832 Arguments:
833 total: A number of defconfig files to process.
834 """
835 self.current = 0
836 self.total = total
837
838 def inc(self):
839 """Increment the number of processed defconfig files."""
840
841 self.current += 1
842
843 def show(self):
844 """Display the progress."""
Simon Glass793dca32019-10-31 07:42:57 -0600845 print(' %d defconfigs out of %d\r' % (self.current, self.total), end=' ')
Masahiro Yamadac5e60fd2016-05-19 15:51:55 +0900846 sys.stdout.flush()
847
Simon Glasscb008832017-06-15 21:39:33 -0600848
849class KconfigScanner:
850 """Kconfig scanner."""
851
852 def __init__(self):
853 """Scan all the Kconfig files and create a Config object."""
854 # Define environment variables referenced from Kconfig
855 os.environ['srctree'] = os.getcwd()
856 os.environ['UBOOTVERSION'] = 'dummy'
857 os.environ['KCONFIG_OBJDIR'] = ''
Tom Rini65e05dd2019-09-20 17:42:09 -0400858 self.conf = kconfiglib.Kconfig()
Simon Glasscb008832017-06-15 21:39:33 -0600859
860
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900861class KconfigParser:
862
863 """A parser of .config and include/autoconf.mk."""
864
865 re_arch = re.compile(r'CONFIG_SYS_ARCH="(.*)"')
866 re_cpu = re.compile(r'CONFIG_SYS_CPU="(.*)"')
867
Masahiro Yamada522e8dc2016-05-19 15:52:01 +0900868 def __init__(self, configs, options, build_dir):
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900869 """Create a new parser.
870
871 Arguments:
Masahiro Yamadab134bc12016-05-19 15:51:57 +0900872 configs: A list of CONFIGs to move.
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900873 options: option flags.
874 build_dir: Build directory.
875 """
Masahiro Yamadab134bc12016-05-19 15:51:57 +0900876 self.configs = configs
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900877 self.options = options
Masahiro Yamada1f169922016-05-19 15:52:00 +0900878 self.dotconfig = os.path.join(build_dir, '.config')
879 self.autoconf = os.path.join(build_dir, 'include', 'autoconf.mk')
Masahiro Yamada07913d12016-08-22 22:18:22 +0900880 self.spl_autoconf = os.path.join(build_dir, 'spl', 'include',
881 'autoconf.mk')
Simon Glassf3b8e642017-06-01 19:39:01 -0600882 self.config_autoconf = os.path.join(build_dir, AUTO_CONF_PATH)
Masahiro Yamada5da4f852016-05-19 15:52:06 +0900883 self.defconfig = os.path.join(build_dir, 'defconfig')
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900884
Simon Glass6821a742017-07-10 14:47:47 -0600885 def get_arch(self):
886 """Parse .config file and return the architecture.
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900887
888 Returns:
Simon Glass6821a742017-07-10 14:47:47 -0600889 Architecture name (e.g. 'arm').
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900890 """
891 arch = ''
892 cpu = ''
Masahiro Yamada1f169922016-05-19 15:52:00 +0900893 for line in open(self.dotconfig):
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900894 m = self.re_arch.match(line)
895 if m:
896 arch = m.group(1)
897 continue
898 m = self.re_cpu.match(line)
899 if m:
900 cpu = m.group(1)
901
Masahiro Yamada90ed6cb2016-05-19 15:51:53 +0900902 if not arch:
903 return None
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900904
905 # fix-up for aarch64
906 if arch == 'arm' and cpu == 'armv8':
907 arch = 'aarch64'
908
Simon Glass6821a742017-07-10 14:47:47 -0600909 return arch
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900910
Masahiro Yamadab134bc12016-05-19 15:51:57 +0900911 def parse_one_config(self, config, dotconfig_lines, autoconf_lines):
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900912 """Parse .config, defconfig, include/autoconf.mk for one config.
913
914 This function looks for the config options in the lines from
915 defconfig, .config, and include/autoconf.mk in order to decide
916 which action should be taken for this defconfig.
917
918 Arguments:
Masahiro Yamadab134bc12016-05-19 15:51:57 +0900919 config: CONFIG name to parse.
Masahiro Yamadacc008292016-05-19 15:51:56 +0900920 dotconfig_lines: lines from the .config file.
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900921 autoconf_lines: lines from the include/autoconf.mk file.
922
923 Returns:
924 A tupple of the action for this defconfig and the line
925 matched for the config.
926 """
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900927 not_set = '# %s is not set' % config
928
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900929 for line in autoconf_lines:
930 line = line.rstrip()
931 if line.startswith(config + '='):
Masahiro Yamadacc008292016-05-19 15:51:56 +0900932 new_val = line
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900933 break
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900934 else:
Masahiro Yamadacc008292016-05-19 15:51:56 +0900935 new_val = not_set
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900936
Markus Klotzbuecherb237d352019-05-15 15:15:52 +0200937 new_val = try_expand(new_val)
938
Masahiro Yamada916224c2016-08-22 22:18:21 +0900939 for line in dotconfig_lines:
940 line = line.rstrip()
941 if line.startswith(config + '=') or line == not_set:
942 old_val = line
943 break
944 else:
945 if new_val == not_set:
946 return (ACTION_NO_ENTRY, config)
947 else:
948 return (ACTION_NO_ENTRY_WARN, config)
949
Masahiro Yamadacc008292016-05-19 15:51:56 +0900950 # If this CONFIG is neither bool nor trisate
951 if old_val[-2:] != '=y' and old_val[-2:] != '=m' and old_val != not_set:
952 # tools/scripts/define2mk.sed changes '1' to 'y'.
953 # This is a problem if the CONFIG is int type.
954 # Check the type in Kconfig and handle it correctly.
955 if new_val[-2:] == '=y':
956 new_val = new_val[:-1] + '1'
957
Masahiro Yamada50301592016-06-15 14:33:50 +0900958 return (ACTION_NO_CHANGE if old_val == new_val else ACTION_MOVE,
959 new_val)
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900960
Masahiro Yamada1d085562016-05-19 15:52:02 +0900961 def update_dotconfig(self):
Masahiro Yamada6ff36d22016-05-19 15:51:50 +0900962 """Parse files for the config options and update the .config.
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900963
Masahiro Yamadacc008292016-05-19 15:51:56 +0900964 This function parses the generated .config and include/autoconf.mk
965 searching the target options.
Masahiro Yamada6ff36d22016-05-19 15:51:50 +0900966 Move the config option(s) to the .config as needed.
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900967
968 Arguments:
969 defconfig: defconfig name.
Masahiro Yamada522e8dc2016-05-19 15:52:01 +0900970
971 Returns:
Masahiro Yamada7fb0bac2016-05-19 15:52:04 +0900972 Return a tuple of (updated flag, log string).
973 The "updated flag" is True if the .config was updated, False
974 otherwise. The "log string" shows what happend to the .config.
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900975 """
976
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900977 results = []
Masahiro Yamada7fb0bac2016-05-19 15:52:04 +0900978 updated = False
Masahiro Yamada916224c2016-08-22 22:18:21 +0900979 suspicious = False
Masahiro Yamada07913d12016-08-22 22:18:22 +0900980 rm_files = [self.config_autoconf, self.autoconf]
981
982 if self.options.spl:
983 if os.path.exists(self.spl_autoconf):
984 autoconf_path = self.spl_autoconf
985 rm_files.append(self.spl_autoconf)
986 else:
987 for f in rm_files:
988 os.remove(f)
989 return (updated, suspicious,
990 color_text(self.options.color, COLOR_BROWN,
991 "SPL is not enabled. Skipped.") + '\n')
992 else:
993 autoconf_path = self.autoconf
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900994
Masahiro Yamada1f169922016-05-19 15:52:00 +0900995 with open(self.dotconfig) as f:
Masahiro Yamadacc008292016-05-19 15:51:56 +0900996 dotconfig_lines = f.readlines()
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900997
Masahiro Yamada07913d12016-08-22 22:18:22 +0900998 with open(autoconf_path) as f:
Masahiro Yamada5a27c732015-05-20 11:36:07 +0900999 autoconf_lines = f.readlines()
1000
Masahiro Yamadab134bc12016-05-19 15:51:57 +09001001 for config in self.configs:
1002 result = self.parse_one_config(config, dotconfig_lines,
Joe Hershberger96464ba2015-05-19 13:21:17 -05001003 autoconf_lines)
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001004 results.append(result)
1005
1006 log = ''
1007
1008 for (action, value) in results:
1009 if action == ACTION_MOVE:
1010 actlog = "Move '%s'" % value
1011 log_color = COLOR_LIGHT_GREEN
Masahiro Yamadacc008292016-05-19 15:51:56 +09001012 elif action == ACTION_NO_ENTRY:
1013 actlog = "%s is not defined in Kconfig. Do nothing." % value
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001014 log_color = COLOR_LIGHT_BLUE
Masahiro Yamada916224c2016-08-22 22:18:21 +09001015 elif action == ACTION_NO_ENTRY_WARN:
1016 actlog = "%s is not defined in Kconfig (suspicious). Do nothing." % value
1017 log_color = COLOR_YELLOW
1018 suspicious = True
Masahiro Yamadacc008292016-05-19 15:51:56 +09001019 elif action == ACTION_NO_CHANGE:
1020 actlog = "'%s' is the same as the define in Kconfig. Do nothing." \
1021 % value
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001022 log_color = COLOR_LIGHT_PURPLE
Masahiro Yamada07913d12016-08-22 22:18:22 +09001023 elif action == ACTION_SPL_NOT_EXIST:
1024 actlog = "SPL is not enabled for this defconfig. Skip."
1025 log_color = COLOR_PURPLE
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001026 else:
1027 sys.exit("Internal Error. This should not happen.")
1028
Masahiro Yamada1d085562016-05-19 15:52:02 +09001029 log += color_text(self.options.color, log_color, actlog) + '\n'
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001030
Masahiro Yamada1f169922016-05-19 15:52:00 +09001031 with open(self.dotconfig, 'a') as f:
Masahiro Yamadae423d172016-05-19 15:51:49 +09001032 for (action, value) in results:
1033 if action == ACTION_MOVE:
1034 f.write(value + '\n')
Masahiro Yamada7fb0bac2016-05-19 15:52:04 +09001035 updated = True
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001036
Masahiro Yamada5da4f852016-05-19 15:52:06 +09001037 self.results = results
Masahiro Yamada07913d12016-08-22 22:18:22 +09001038 for f in rm_files:
1039 os.remove(f)
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001040
Masahiro Yamada916224c2016-08-22 22:18:21 +09001041 return (updated, suspicious, log)
Masahiro Yamada522e8dc2016-05-19 15:52:01 +09001042
Masahiro Yamada5da4f852016-05-19 15:52:06 +09001043 def check_defconfig(self):
1044 """Check the defconfig after savedefconfig
1045
1046 Returns:
1047 Return additional log if moved CONFIGs were removed again by
1048 'make savedefconfig'.
1049 """
1050
1051 log = ''
1052
1053 with open(self.defconfig) as f:
1054 defconfig_lines = f.readlines()
1055
1056 for (action, value) in self.results:
1057 if action != ACTION_MOVE:
1058 continue
1059 if not value + '\n' in defconfig_lines:
1060 log += color_text(self.options.color, COLOR_YELLOW,
1061 "'%s' was removed by savedefconfig.\n" %
1062 value)
1063
1064 return log
1065
Simon Glassd73fcb12017-06-01 19:39:02 -06001066
1067class DatabaseThread(threading.Thread):
1068 """This thread processes results from Slot threads.
1069
1070 It collects the data in the master config directary. There is only one
1071 result thread, and this helps to serialise the build output.
1072 """
1073 def __init__(self, config_db, db_queue):
1074 """Set up a new result thread
1075
1076 Args:
1077 builder: Builder which will be sent each result
1078 """
1079 threading.Thread.__init__(self)
1080 self.config_db = config_db
1081 self.db_queue= db_queue
1082
1083 def run(self):
1084 """Called to start up the result thread.
1085
1086 We collect the next result job and pass it on to the build.
1087 """
1088 while True:
1089 defconfig, configs = self.db_queue.get()
1090 self.config_db[defconfig] = configs
1091 self.db_queue.task_done()
1092
1093
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001094class Slot:
1095
1096 """A slot to store a subprocess.
1097
1098 Each instance of this class handles one subprocess.
1099 This class is useful to control multiple threads
1100 for faster processing.
1101 """
1102
Simon Glass6821a742017-07-10 14:47:47 -06001103 def __init__(self, toolchains, configs, options, progress, devnull,
1104 make_cmd, reference_src_dir, db_queue):
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001105 """Create a new process slot.
1106
1107 Arguments:
Simon Glass6821a742017-07-10 14:47:47 -06001108 toolchains: Toolchains object containing toolchains.
Masahiro Yamadab134bc12016-05-19 15:51:57 +09001109 configs: A list of CONFIGs to move.
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001110 options: option flags.
Masahiro Yamadac5e60fd2016-05-19 15:51:55 +09001111 progress: A progress indicator.
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001112 devnull: A file object of '/dev/null'.
1113 make_cmd: command name of GNU Make.
Joe Hershberger6b96c1a2016-06-10 14:53:32 -05001114 reference_src_dir: Determine the true starting config state from this
1115 source tree.
Simon Glassd73fcb12017-06-01 19:39:02 -06001116 db_queue: output queue to write config info for the database
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001117 """
Simon Glass6821a742017-07-10 14:47:47 -06001118 self.toolchains = toolchains
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001119 self.options = options
Masahiro Yamadac5e60fd2016-05-19 15:51:55 +09001120 self.progress = progress
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001121 self.build_dir = tempfile.mkdtemp()
1122 self.devnull = devnull
1123 self.make_cmd = (make_cmd, 'O=' + self.build_dir)
Joe Hershberger6b96c1a2016-06-10 14:53:32 -05001124 self.reference_src_dir = reference_src_dir
Simon Glassd73fcb12017-06-01 19:39:02 -06001125 self.db_queue = db_queue
Masahiro Yamada522e8dc2016-05-19 15:52:01 +09001126 self.parser = KconfigParser(configs, options, self.build_dir)
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001127 self.state = STATE_IDLE
Masahiro Yamada09c6c062016-08-22 22:18:20 +09001128 self.failed_boards = set()
1129 self.suspicious_boards = set()
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001130
1131 def __del__(self):
1132 """Delete the working directory
1133
1134 This function makes sure the temporary directory is cleaned away
1135 even if Python suddenly dies due to error. It should be done in here
Joe Hershbergerf2dae752016-06-10 14:53:29 -05001136 because it is guaranteed the destructor is always invoked when the
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001137 instance of the class gets unreferenced.
1138
1139 If the subprocess is still running, wait until it finishes.
1140 """
1141 if self.state != STATE_IDLE:
1142 while self.ps.poll() == None:
1143 pass
1144 shutil.rmtree(self.build_dir)
1145
Masahiro Yamadac5e60fd2016-05-19 15:51:55 +09001146 def add(self, defconfig):
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001147 """Assign a new subprocess for defconfig and add it to the slot.
1148
1149 If the slot is vacant, create a new subprocess for processing the
1150 given defconfig and add it to the slot. Just returns False if
1151 the slot is occupied (i.e. the current subprocess is still running).
1152
1153 Arguments:
1154 defconfig: defconfig name.
1155
1156 Returns:
1157 Return True on success or False on failure
1158 """
1159 if self.state != STATE_IDLE:
1160 return False
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001161
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001162 self.defconfig = defconfig
Masahiro Yamada1d085562016-05-19 15:52:02 +09001163 self.log = ''
Masahiro Yamadaf432c332016-06-15 14:33:52 +09001164 self.current_src_dir = self.reference_src_dir
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001165 self.do_defconfig()
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001166 return True
1167
1168 def poll(self):
1169 """Check the status of the subprocess and handle it as needed.
1170
1171 Returns True if the slot is vacant (i.e. in idle state).
1172 If the configuration is successfully finished, assign a new
1173 subprocess to build include/autoconf.mk.
1174 If include/autoconf.mk is generated, invoke the parser to
Masahiro Yamada7fb0bac2016-05-19 15:52:04 +09001175 parse the .config and the include/autoconf.mk, moving
1176 config options to the .config as needed.
1177 If the .config was updated, run "make savedefconfig" to sync
1178 it, update the original defconfig, and then set the slot back
1179 to the idle state.
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001180
1181 Returns:
1182 Return True if the subprocess is terminated, False otherwise
1183 """
1184 if self.state == STATE_IDLE:
1185 return True
1186
1187 if self.ps.poll() == None:
1188 return False
1189
1190 if self.ps.poll() != 0:
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001191 self.handle_error()
1192 elif self.state == STATE_DEFCONFIG:
Masahiro Yamadaf432c332016-06-15 14:33:52 +09001193 if self.reference_src_dir and not self.current_src_dir:
Joe Hershberger6b96c1a2016-06-10 14:53:32 -05001194 self.do_savedefconfig()
1195 else:
1196 self.do_autoconf()
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001197 elif self.state == STATE_AUTOCONF:
Masahiro Yamadaf432c332016-06-15 14:33:52 +09001198 if self.current_src_dir:
1199 self.current_src_dir = None
Joe Hershberger6b96c1a2016-06-10 14:53:32 -05001200 self.do_defconfig()
Simon Glassd73fcb12017-06-01 19:39:02 -06001201 elif self.options.build_db:
1202 self.do_build_db()
Joe Hershberger6b96c1a2016-06-10 14:53:32 -05001203 else:
1204 self.do_savedefconfig()
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001205 elif self.state == STATE_SAVEDEFCONFIG:
1206 self.update_defconfig()
1207 else:
1208 sys.exit("Internal Error. This should not happen.")
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001209
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001210 return True if self.state == STATE_IDLE else False
Joe Hershberger96464ba2015-05-19 13:21:17 -05001211
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001212 def handle_error(self):
1213 """Handle error cases."""
Masahiro Yamada8513dc02016-05-19 15:52:08 +09001214
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001215 self.log += color_text(self.options.color, COLOR_LIGHT_RED,
1216 "Failed to process.\n")
1217 if self.options.verbose:
1218 self.log += color_text(self.options.color, COLOR_LIGHT_CYAN,
Markus Klotzbuecher4f5c5e92020-02-12 20:46:45 +01001219 self.ps.stderr.read().decode())
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001220 self.finish(False)
Joe Hershberger96464ba2015-05-19 13:21:17 -05001221
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001222 def do_defconfig(self):
1223 """Run 'make <board>_defconfig' to create the .config file."""
Masahiro Yamadac8e1b102016-05-19 15:52:07 +09001224
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001225 cmd = list(self.make_cmd)
1226 cmd.append(self.defconfig)
1227 self.ps = subprocess.Popen(cmd, stdout=self.devnull,
Masahiro Yamadaf432c332016-06-15 14:33:52 +09001228 stderr=subprocess.PIPE,
1229 cwd=self.current_src_dir)
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001230 self.state = STATE_DEFCONFIG
Masahiro Yamadac8e1b102016-05-19 15:52:07 +09001231
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001232 def do_autoconf(self):
Simon Glassf3b8e642017-06-01 19:39:01 -06001233 """Run 'make AUTO_CONF_PATH'."""
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001234
Simon Glass6821a742017-07-10 14:47:47 -06001235 arch = self.parser.get_arch()
1236 try:
1237 toolchain = self.toolchains.Select(arch)
1238 except ValueError:
Masahiro Yamada1d085562016-05-19 15:52:02 +09001239 self.log += color_text(self.options.color, COLOR_YELLOW,
Chris Packhamce3ba452017-08-27 20:00:51 +12001240 "Tool chain for '%s' is missing. Do nothing.\n" % arch)
Masahiro Yamada4efef992016-05-19 15:52:03 +09001241 self.finish(False)
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001242 return
Simon Glass793dca32019-10-31 07:42:57 -06001243 env = toolchain.MakeEnvironment(False)
Masahiro Yamada90ed6cb2016-05-19 15:51:53 +09001244
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001245 cmd = list(self.make_cmd)
Joe Hershberger7740f652015-05-19 13:21:18 -05001246 cmd.append('KCONFIG_IGNORE_DUPLICATES=1')
Simon Glassf3b8e642017-06-01 19:39:01 -06001247 cmd.append(AUTO_CONF_PATH)
Simon Glass6821a742017-07-10 14:47:47 -06001248 self.ps = subprocess.Popen(cmd, stdout=self.devnull, env=env,
Masahiro Yamadaf432c332016-06-15 14:33:52 +09001249 stderr=subprocess.PIPE,
1250 cwd=self.current_src_dir)
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001251 self.state = STATE_AUTOCONF
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001252
Simon Glassd73fcb12017-06-01 19:39:02 -06001253 def do_build_db(self):
1254 """Add the board to the database"""
1255 configs = {}
1256 with open(os.path.join(self.build_dir, AUTO_CONF_PATH)) as fd:
1257 for line in fd.readlines():
1258 if line.startswith('CONFIG'):
1259 config, value = line.split('=', 1)
1260 configs[config] = value.rstrip()
1261 self.db_queue.put([self.defconfig, configs])
1262 self.finish(True)
1263
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001264 def do_savedefconfig(self):
1265 """Update the .config and run 'make savedefconfig'."""
1266
Masahiro Yamada916224c2016-08-22 22:18:21 +09001267 (updated, suspicious, log) = self.parser.update_dotconfig()
1268 if suspicious:
1269 self.suspicious_boards.add(self.defconfig)
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001270 self.log += log
1271
1272 if not self.options.force_sync and not updated:
1273 self.finish(True)
1274 return
1275 if updated:
1276 self.log += color_text(self.options.color, COLOR_LIGHT_GREEN,
1277 "Syncing by savedefconfig...\n")
1278 else:
1279 self.log += "Syncing by savedefconfig (forced by option)...\n"
1280
1281 cmd = list(self.make_cmd)
1282 cmd.append('savedefconfig')
1283 self.ps = subprocess.Popen(cmd, stdout=self.devnull,
1284 stderr=subprocess.PIPE)
1285 self.state = STATE_SAVEDEFCONFIG
1286
1287 def update_defconfig(self):
1288 """Update the input defconfig and go back to the idle state."""
1289
Masahiro Yamadafc2661e2016-06-15 14:33:54 +09001290 log = self.parser.check_defconfig()
1291 if log:
Masahiro Yamada09c6c062016-08-22 22:18:20 +09001292 self.suspicious_boards.add(self.defconfig)
Masahiro Yamadafc2661e2016-06-15 14:33:54 +09001293 self.log += log
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001294 orig_defconfig = os.path.join('configs', self.defconfig)
1295 new_defconfig = os.path.join(self.build_dir, 'defconfig')
1296 updated = not filecmp.cmp(orig_defconfig, new_defconfig)
1297
1298 if updated:
Joe Hershberger06cc1d32016-06-10 14:53:30 -05001299 self.log += color_text(self.options.color, COLOR_LIGHT_BLUE,
Masahiro Yamadae307fa92016-06-08 11:47:37 +09001300 "defconfig was updated.\n")
1301
1302 if not self.options.dry_run and updated:
1303 shutil.move(new_defconfig, orig_defconfig)
1304 self.finish(True)
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001305
Masahiro Yamada4efef992016-05-19 15:52:03 +09001306 def finish(self, success):
1307 """Display log along with progress and go to the idle state.
Masahiro Yamada1d085562016-05-19 15:52:02 +09001308
1309 Arguments:
Masahiro Yamada4efef992016-05-19 15:52:03 +09001310 success: Should be True when the defconfig was processed
1311 successfully, or False when it fails.
Masahiro Yamada1d085562016-05-19 15:52:02 +09001312 """
1313 # output at least 30 characters to hide the "* defconfigs out of *".
1314 log = self.defconfig.ljust(30) + '\n'
1315
1316 log += '\n'.join([ ' ' + s for s in self.log.split('\n') ])
1317 # Some threads are running in parallel.
1318 # Print log atomically to not mix up logs from different threads.
Simon Glass793dca32019-10-31 07:42:57 -06001319 print(log, file=(sys.stdout if success else sys.stderr))
Masahiro Yamada4efef992016-05-19 15:52:03 +09001320
1321 if not success:
1322 if self.options.exit_on_error:
1323 sys.exit("Exit on error.")
1324 # If --exit-on-error flag is not set, skip this board and continue.
1325 # Record the failed board.
Masahiro Yamada09c6c062016-08-22 22:18:20 +09001326 self.failed_boards.add(self.defconfig)
Masahiro Yamada4efef992016-05-19 15:52:03 +09001327
Masahiro Yamada1d085562016-05-19 15:52:02 +09001328 self.progress.inc()
1329 self.progress.show()
Masahiro Yamada4efef992016-05-19 15:52:03 +09001330 self.state = STATE_IDLE
Masahiro Yamada1d085562016-05-19 15:52:02 +09001331
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001332 def get_failed_boards(self):
Masahiro Yamada09c6c062016-08-22 22:18:20 +09001333 """Returns a set of failed boards (defconfigs) in this slot.
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001334 """
1335 return self.failed_boards
1336
Masahiro Yamadafc2661e2016-06-15 14:33:54 +09001337 def get_suspicious_boards(self):
Masahiro Yamada09c6c062016-08-22 22:18:20 +09001338 """Returns a set of boards (defconfigs) with possible misconversion.
Masahiro Yamadafc2661e2016-06-15 14:33:54 +09001339 """
Masahiro Yamada916224c2016-08-22 22:18:21 +09001340 return self.suspicious_boards - self.failed_boards
Masahiro Yamadafc2661e2016-06-15 14:33:54 +09001341
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001342class Slots:
1343
1344 """Controller of the array of subprocess slots."""
1345
Simon Glass6821a742017-07-10 14:47:47 -06001346 def __init__(self, toolchains, configs, options, progress,
1347 reference_src_dir, db_queue):
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001348 """Create a new slots controller.
1349
1350 Arguments:
Simon Glass6821a742017-07-10 14:47:47 -06001351 toolchains: Toolchains object containing toolchains.
Masahiro Yamadab134bc12016-05-19 15:51:57 +09001352 configs: A list of CONFIGs to move.
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001353 options: option flags.
Masahiro Yamadac5e60fd2016-05-19 15:51:55 +09001354 progress: A progress indicator.
Joe Hershberger6b96c1a2016-06-10 14:53:32 -05001355 reference_src_dir: Determine the true starting config state from this
1356 source tree.
Simon Glassd73fcb12017-06-01 19:39:02 -06001357 db_queue: output queue to write config info for the database
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001358 """
1359 self.options = options
1360 self.slots = []
1361 devnull = get_devnull()
1362 make_cmd = get_make_cmd()
1363 for i in range(options.jobs):
Simon Glass6821a742017-07-10 14:47:47 -06001364 self.slots.append(Slot(toolchains, configs, options, progress,
1365 devnull, make_cmd, reference_src_dir,
1366 db_queue))
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001367
Masahiro Yamadac5e60fd2016-05-19 15:51:55 +09001368 def add(self, defconfig):
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001369 """Add a new subprocess if a vacant slot is found.
1370
1371 Arguments:
1372 defconfig: defconfig name to be put into.
1373
1374 Returns:
1375 Return True on success or False on failure
1376 """
1377 for slot in self.slots:
Masahiro Yamadac5e60fd2016-05-19 15:51:55 +09001378 if slot.add(defconfig):
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001379 return True
1380 return False
1381
1382 def available(self):
1383 """Check if there is a vacant slot.
1384
1385 Returns:
1386 Return True if at lease one vacant slot is found, False otherwise.
1387 """
1388 for slot in self.slots:
1389 if slot.poll():
1390 return True
1391 return False
1392
1393 def empty(self):
1394 """Check if all slots are vacant.
1395
1396 Returns:
1397 Return True if all the slots are vacant, False otherwise.
1398 """
1399 ret = True
1400 for slot in self.slots:
1401 if not slot.poll():
1402 ret = False
1403 return ret
1404
1405 def show_failed_boards(self):
1406 """Display all of the failed boards (defconfigs)."""
Masahiro Yamada09c6c062016-08-22 22:18:20 +09001407 boards = set()
Masahiro Yamada96dccd92016-06-15 14:33:53 +09001408 output_file = 'moveconfig.failed'
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001409
1410 for slot in self.slots:
Masahiro Yamada09c6c062016-08-22 22:18:20 +09001411 boards |= slot.get_failed_boards()
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001412
Masahiro Yamada96dccd92016-06-15 14:33:53 +09001413 if boards:
1414 boards = '\n'.join(boards) + '\n'
1415 msg = "The following boards were not processed due to error:\n"
1416 msg += boards
1417 msg += "(the list has been saved in %s)\n" % output_file
Simon Glass793dca32019-10-31 07:42:57 -06001418 print(color_text(self.options.color, COLOR_LIGHT_RED,
1419 msg), file=sys.stderr)
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001420
Masahiro Yamada96dccd92016-06-15 14:33:53 +09001421 with open(output_file, 'w') as f:
1422 f.write(boards)
Joe Hershberger2559cd82015-05-19 13:21:22 -05001423
Masahiro Yamadafc2661e2016-06-15 14:33:54 +09001424 def show_suspicious_boards(self):
1425 """Display all boards (defconfigs) with possible misconversion."""
Masahiro Yamada09c6c062016-08-22 22:18:20 +09001426 boards = set()
Masahiro Yamadafc2661e2016-06-15 14:33:54 +09001427 output_file = 'moveconfig.suspicious'
1428
1429 for slot in self.slots:
Masahiro Yamada09c6c062016-08-22 22:18:20 +09001430 boards |= slot.get_suspicious_boards()
Masahiro Yamadafc2661e2016-06-15 14:33:54 +09001431
1432 if boards:
1433 boards = '\n'.join(boards) + '\n'
1434 msg = "The following boards might have been converted incorrectly.\n"
1435 msg += "It is highly recommended to check them manually:\n"
1436 msg += boards
1437 msg += "(the list has been saved in %s)\n" % output_file
Simon Glass793dca32019-10-31 07:42:57 -06001438 print(color_text(self.options.color, COLOR_YELLOW,
1439 msg), file=sys.stderr)
Masahiro Yamadafc2661e2016-06-15 14:33:54 +09001440
1441 with open(output_file, 'w') as f:
1442 f.write(boards)
1443
Masahiro Yamada5cc42a52016-06-15 14:33:51 +09001444class ReferenceSource:
1445
1446 """Reference source against which original configs should be parsed."""
1447
1448 def __init__(self, commit):
1449 """Create a reference source directory based on a specified commit.
1450
1451 Arguments:
1452 commit: commit to git-clone
1453 """
1454 self.src_dir = tempfile.mkdtemp()
Simon Glass793dca32019-10-31 07:42:57 -06001455 print("Cloning git repo to a separate work directory...")
Masahiro Yamada5cc42a52016-06-15 14:33:51 +09001456 subprocess.check_output(['git', 'clone', os.getcwd(), '.'],
1457 cwd=self.src_dir)
Simon Glass793dca32019-10-31 07:42:57 -06001458 print("Checkout '%s' to build the original autoconf.mk." % \
1459 subprocess.check_output(['git', 'rev-parse', '--short', commit]).strip())
Masahiro Yamada5cc42a52016-06-15 14:33:51 +09001460 subprocess.check_output(['git', 'checkout', commit],
1461 stderr=subprocess.STDOUT, cwd=self.src_dir)
Joe Hershberger6b96c1a2016-06-10 14:53:32 -05001462
1463 def __del__(self):
Masahiro Yamada5cc42a52016-06-15 14:33:51 +09001464 """Delete the reference source directory
Joe Hershberger6b96c1a2016-06-10 14:53:32 -05001465
1466 This function makes sure the temporary directory is cleaned away
1467 even if Python suddenly dies due to error. It should be done in here
1468 because it is guaranteed the destructor is always invoked when the
1469 instance of the class gets unreferenced.
1470 """
Masahiro Yamada5cc42a52016-06-15 14:33:51 +09001471 shutil.rmtree(self.src_dir)
Joe Hershberger6b96c1a2016-06-10 14:53:32 -05001472
Masahiro Yamada5cc42a52016-06-15 14:33:51 +09001473 def get_dir(self):
1474 """Return the absolute path to the reference source directory."""
1475
1476 return self.src_dir
Joe Hershberger6b96c1a2016-06-10 14:53:32 -05001477
Simon Glass6821a742017-07-10 14:47:47 -06001478def move_config(toolchains, configs, options, db_queue):
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001479 """Move config options to defconfig files.
1480
1481 Arguments:
Masahiro Yamadab134bc12016-05-19 15:51:57 +09001482 configs: A list of CONFIGs to move.
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001483 options: option flags
1484 """
Masahiro Yamadab134bc12016-05-19 15:51:57 +09001485 if len(configs) == 0:
Masahiro Yamada6a9f79f2016-05-19 15:52:09 +09001486 if options.force_sync:
Simon Glass793dca32019-10-31 07:42:57 -06001487 print('No CONFIG is specified. You are probably syncing defconfigs.', end=' ')
Simon Glassd73fcb12017-06-01 19:39:02 -06001488 elif options.build_db:
Simon Glass793dca32019-10-31 07:42:57 -06001489 print('Building %s database' % CONFIG_DATABASE)
Masahiro Yamada6a9f79f2016-05-19 15:52:09 +09001490 else:
Simon Glass793dca32019-10-31 07:42:57 -06001491 print('Neither CONFIG nor --force-sync is specified. Nothing will happen.', end=' ')
Masahiro Yamada6a9f79f2016-05-19 15:52:09 +09001492 else:
Simon Glass793dca32019-10-31 07:42:57 -06001493 print('Move ' + ', '.join(configs), end=' ')
1494 print('(jobs: %d)\n' % options.jobs)
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001495
Joe Hershberger6b96c1a2016-06-10 14:53:32 -05001496 if options.git_ref:
Masahiro Yamada5cc42a52016-06-15 14:33:51 +09001497 reference_src = ReferenceSource(options.git_ref)
1498 reference_src_dir = reference_src.get_dir()
1499 else:
Masahiro Yamadaf432c332016-06-15 14:33:52 +09001500 reference_src_dir = None
Joe Hershberger6b96c1a2016-06-10 14:53:32 -05001501
Joe Hershberger91040e82015-05-19 13:21:19 -05001502 if options.defconfigs:
Masahiro Yamada0dbc9b52016-10-19 14:39:54 +09001503 defconfigs = get_matched_defconfigs(options.defconfigs)
Joe Hershberger91040e82015-05-19 13:21:19 -05001504 else:
Masahiro Yamada684c3062016-07-25 19:15:28 +09001505 defconfigs = get_all_defconfigs()
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001506
Masahiro Yamadac5e60fd2016-05-19 15:51:55 +09001507 progress = Progress(len(defconfigs))
Simon Glass6821a742017-07-10 14:47:47 -06001508 slots = Slots(toolchains, configs, options, progress, reference_src_dir,
1509 db_queue)
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001510
1511 # Main loop to process defconfig files:
1512 # Add a new subprocess into a vacant slot.
1513 # Sleep if there is no available slot.
Masahiro Yamadac5e60fd2016-05-19 15:51:55 +09001514 for defconfig in defconfigs:
1515 while not slots.add(defconfig):
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001516 while not slots.available():
1517 # No available slot: sleep for a while
1518 time.sleep(SLEEP_TIME)
1519
1520 # wait until all the subprocesses finish
1521 while not slots.empty():
1522 time.sleep(SLEEP_TIME)
1523
Simon Glass793dca32019-10-31 07:42:57 -06001524 print('')
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001525 slots.show_failed_boards()
Masahiro Yamadafc2661e2016-06-15 14:33:54 +09001526 slots.show_suspicious_boards()
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001527
Simon Glasscb008832017-06-15 21:39:33 -06001528def find_kconfig_rules(kconf, config, imply_config):
1529 """Check whether a config has a 'select' or 'imply' keyword
1530
1531 Args:
Tom Rini65e05dd2019-09-20 17:42:09 -04001532 kconf: Kconfiglib.Kconfig object
Simon Glasscb008832017-06-15 21:39:33 -06001533 config: Name of config to check (without CONFIG_ prefix)
1534 imply_config: Implying config (without CONFIG_ prefix) which may or
1535 may not have an 'imply' for 'config')
1536
1537 Returns:
1538 Symbol object for 'config' if found, else None
1539 """
Tom Rini65e05dd2019-09-20 17:42:09 -04001540 sym = kconf.syms.get(imply_config)
Simon Glasscb008832017-06-15 21:39:33 -06001541 if sym:
Ulf Magnusson4e1102f2017-09-19 12:52:55 +02001542 for sel in sym.get_selected_symbols() | sym.get_implied_symbols():
Simon Glasscb008832017-06-15 21:39:33 -06001543 if sel.get_name() == config:
1544 return sym
1545 return None
1546
1547def check_imply_rule(kconf, config, imply_config):
1548 """Check if we can add an 'imply' option
1549
1550 This finds imply_config in the Kconfig and looks to see if it is possible
1551 to add an 'imply' for 'config' to that part of the Kconfig.
1552
1553 Args:
Tom Rini65e05dd2019-09-20 17:42:09 -04001554 kconf: Kconfiglib.Kconfig object
Simon Glasscb008832017-06-15 21:39:33 -06001555 config: Name of config to check (without CONFIG_ prefix)
1556 imply_config: Implying config (without CONFIG_ prefix) which may or
1557 may not have an 'imply' for 'config')
1558
1559 Returns:
1560 tuple:
1561 filename of Kconfig file containing imply_config, or None if none
1562 line number within the Kconfig file, or 0 if none
1563 message indicating the result
1564 """
Tom Rini65e05dd2019-09-20 17:42:09 -04001565 sym = kconf.syms.get(imply_config)
Simon Glasscb008832017-06-15 21:39:33 -06001566 if not sym:
1567 return 'cannot find sym'
1568 locs = sym.get_def_locations()
1569 if len(locs) != 1:
1570 return '%d locations' % len(locs)
1571 fname, linenum = locs[0]
1572 cwd = os.getcwd()
1573 if cwd and fname.startswith(cwd):
1574 fname = fname[len(cwd) + 1:]
1575 file_line = ' at %s:%d' % (fname, linenum)
1576 with open(fname) as fd:
1577 data = fd.read().splitlines()
1578 if data[linenum - 1] != 'config %s' % imply_config:
1579 return None, 0, 'bad sym format %s%s' % (data[linenum], file_line)
1580 return fname, linenum, 'adding%s' % file_line
1581
1582def add_imply_rule(config, fname, linenum):
1583 """Add a new 'imply' option to a Kconfig
1584
1585 Args:
1586 config: config option to add an imply for (without CONFIG_ prefix)
1587 fname: Kconfig filename to update
1588 linenum: Line number to place the 'imply' before
1589
1590 Returns:
1591 Message indicating the result
1592 """
1593 file_line = ' at %s:%d' % (fname, linenum)
1594 data = open(fname).read().splitlines()
1595 linenum -= 1
1596
1597 for offset, line in enumerate(data[linenum:]):
1598 if line.strip().startswith('help') or not line:
1599 data.insert(linenum + offset, '\timply %s' % config)
1600 with open(fname, 'w') as fd:
1601 fd.write('\n'.join(data) + '\n')
1602 return 'added%s' % file_line
1603
1604 return 'could not insert%s'
1605
1606(IMPLY_MIN_2, IMPLY_TARGET, IMPLY_CMD, IMPLY_NON_ARCH_BOARD) = (
1607 1, 2, 4, 8)
Simon Glass9b2a2e82017-06-15 21:39:32 -06001608
1609IMPLY_FLAGS = {
1610 'min2': [IMPLY_MIN_2, 'Show options which imply >2 boards (normally >5)'],
1611 'target': [IMPLY_TARGET, 'Allow CONFIG_TARGET_... options to imply'],
1612 'cmd': [IMPLY_CMD, 'Allow CONFIG_CMD_... to imply'],
Simon Glasscb008832017-06-15 21:39:33 -06001613 'non-arch-board': [
1614 IMPLY_NON_ARCH_BOARD,
1615 'Allow Kconfig options outside arch/ and /board/ to imply'],
Simon Glass9b2a2e82017-06-15 21:39:32 -06001616};
1617
Simon Glasscb008832017-06-15 21:39:33 -06001618def do_imply_config(config_list, add_imply, imply_flags, skip_added,
1619 check_kconfig=True, find_superset=False):
Simon Glass99b66602017-06-01 19:39:03 -06001620 """Find CONFIG options which imply those in the list
1621
1622 Some CONFIG options can be implied by others and this can help to reduce
1623 the size of the defconfig files. For example, CONFIG_X86 implies
1624 CONFIG_CMD_IRQ, so we can put 'imply CMD_IRQ' under 'config X86' and
1625 all x86 boards will have that option, avoiding adding CONFIG_CMD_IRQ to
1626 each of the x86 defconfig files.
1627
1628 This function uses the moveconfig database to find such options. It
1629 displays a list of things that could possibly imply those in the list.
1630 The algorithm ignores any that start with CONFIG_TARGET since these
1631 typically refer to only a few defconfigs (often one). It also does not
1632 display a config with less than 5 defconfigs.
1633
1634 The algorithm works using sets. For each target config in config_list:
1635 - Get the set 'defconfigs' which use that target config
1636 - For each config (from a list of all configs):
1637 - Get the set 'imply_defconfig' of defconfigs which use that config
1638 -
1639 - If imply_defconfigs contains anything not in defconfigs then
1640 this config does not imply the target config
1641
1642 Params:
1643 config_list: List of CONFIG options to check (each a string)
Simon Glasscb008832017-06-15 21:39:33 -06001644 add_imply: Automatically add an 'imply' for each config.
Simon Glass9b2a2e82017-06-15 21:39:32 -06001645 imply_flags: Flags which control which implying configs are allowed
1646 (IMPLY_...)
Simon Glasscb008832017-06-15 21:39:33 -06001647 skip_added: Don't show options which already have an imply added.
1648 check_kconfig: Check if implied symbols already have an 'imply' or
1649 'select' for the target config, and show this information if so.
Simon Glass99b66602017-06-01 19:39:03 -06001650 find_superset: True to look for configs which are a superset of those
1651 already found. So for example if CONFIG_EXYNOS5 implies an option,
1652 but CONFIG_EXYNOS covers a larger set of defconfigs and also
1653 implies that option, this will drop the former in favour of the
1654 latter. In practice this option has not proved very used.
1655
1656 Note the terminoloy:
1657 config - a CONFIG_XXX options (a string, e.g. 'CONFIG_CMD_EEPROM')
1658 defconfig - a defconfig file (a string, e.g. 'configs/snow_defconfig')
1659 """
Simon Glasscb008832017-06-15 21:39:33 -06001660 kconf = KconfigScanner().conf if check_kconfig else None
1661 if add_imply and add_imply != 'all':
1662 add_imply = add_imply.split()
1663
Simon Glass99b66602017-06-01 19:39:03 -06001664 # key is defconfig name, value is dict of (CONFIG_xxx, value)
1665 config_db = {}
1666
1667 # Holds a dict containing the set of defconfigs that contain each config
1668 # key is config, value is set of defconfigs using that config
1669 defconfig_db = collections.defaultdict(set)
1670
1671 # Set of all config options we have seen
1672 all_configs = set()
1673
1674 # Set of all defconfigs we have seen
1675 all_defconfigs = set()
1676
1677 # Read in the database
1678 configs = {}
1679 with open(CONFIG_DATABASE) as fd:
1680 for line in fd.readlines():
1681 line = line.rstrip()
1682 if not line: # Separator between defconfigs
1683 config_db[defconfig] = configs
1684 all_defconfigs.add(defconfig)
1685 configs = {}
1686 elif line[0] == ' ': # CONFIG line
1687 config, value = line.strip().split('=', 1)
1688 configs[config] = value
1689 defconfig_db[config].add(defconfig)
1690 all_configs.add(config)
1691 else: # New defconfig
1692 defconfig = line
1693
1694 # Work through each target config option in tern, independently
1695 for config in config_list:
1696 defconfigs = defconfig_db.get(config)
1697 if not defconfigs:
Simon Glass793dca32019-10-31 07:42:57 -06001698 print('%s not found in any defconfig' % config)
Simon Glass99b66602017-06-01 19:39:03 -06001699 continue
1700
1701 # Get the set of defconfigs without this one (since a config cannot
1702 # imply itself)
1703 non_defconfigs = all_defconfigs - defconfigs
1704 num_defconfigs = len(defconfigs)
Simon Glass793dca32019-10-31 07:42:57 -06001705 print('%s found in %d/%d defconfigs' % (config, num_defconfigs,
1706 len(all_configs)))
Simon Glass99b66602017-06-01 19:39:03 -06001707
1708 # This will hold the results: key=config, value=defconfigs containing it
1709 imply_configs = {}
1710 rest_configs = all_configs - set([config])
1711
1712 # Look at every possible config, except the target one
1713 for imply_config in rest_configs:
Simon Glass9b2a2e82017-06-15 21:39:32 -06001714 if 'ERRATUM' in imply_config:
Simon Glass99b66602017-06-01 19:39:03 -06001715 continue
Simon Glass9b2a2e82017-06-15 21:39:32 -06001716 if not (imply_flags & IMPLY_CMD):
1717 if 'CONFIG_CMD' in imply_config:
1718 continue
1719 if not (imply_flags & IMPLY_TARGET):
1720 if 'CONFIG_TARGET' in imply_config:
1721 continue
Simon Glass99b66602017-06-01 19:39:03 -06001722
1723 # Find set of defconfigs that have this config
1724 imply_defconfig = defconfig_db[imply_config]
1725
1726 # Get the intersection of this with defconfigs containing the
1727 # target config
1728 common_defconfigs = imply_defconfig & defconfigs
1729
1730 # Get the set of defconfigs containing this config which DO NOT
1731 # also contain the taret config. If this set is non-empty it means
1732 # that this config affects other defconfigs as well as (possibly)
1733 # the ones affected by the target config. This means it implies
1734 # things we don't want to imply.
1735 not_common_defconfigs = imply_defconfig & non_defconfigs
1736 if not_common_defconfigs:
1737 continue
1738
1739 # If there are common defconfigs, imply_config may be useful
1740 if common_defconfigs:
1741 skip = False
1742 if find_superset:
Simon Glass793dca32019-10-31 07:42:57 -06001743 for prev in list(imply_configs.keys()):
Simon Glass99b66602017-06-01 19:39:03 -06001744 prev_count = len(imply_configs[prev])
1745 count = len(common_defconfigs)
1746 if (prev_count > count and
1747 (imply_configs[prev] & common_defconfigs ==
1748 common_defconfigs)):
1749 # skip imply_config because prev is a superset
1750 skip = True
1751 break
1752 elif count > prev_count:
1753 # delete prev because imply_config is a superset
1754 del imply_configs[prev]
1755 if not skip:
1756 imply_configs[imply_config] = common_defconfigs
1757
1758 # Now we have a dict imply_configs of configs which imply each config
1759 # The value of each dict item is the set of defconfigs containing that
1760 # config. Rank them so that we print the configs that imply the largest
1761 # number of defconfigs first.
Simon Glasscb008832017-06-15 21:39:33 -06001762 ranked_iconfigs = sorted(imply_configs,
Simon Glass99b66602017-06-01 19:39:03 -06001763 key=lambda k: len(imply_configs[k]), reverse=True)
Simon Glasscb008832017-06-15 21:39:33 -06001764 kconfig_info = ''
1765 cwd = os.getcwd()
1766 add_list = collections.defaultdict(list)
1767 for iconfig in ranked_iconfigs:
1768 num_common = len(imply_configs[iconfig])
Simon Glass99b66602017-06-01 19:39:03 -06001769
1770 # Don't bother if there are less than 5 defconfigs affected.
Simon Glass9b2a2e82017-06-15 21:39:32 -06001771 if num_common < (2 if imply_flags & IMPLY_MIN_2 else 5):
Simon Glass99b66602017-06-01 19:39:03 -06001772 continue
Simon Glasscb008832017-06-15 21:39:33 -06001773 missing = defconfigs - imply_configs[iconfig]
Simon Glass99b66602017-06-01 19:39:03 -06001774 missing_str = ', '.join(missing) if missing else 'all'
1775 missing_str = ''
Simon Glasscb008832017-06-15 21:39:33 -06001776 show = True
1777 if kconf:
1778 sym = find_kconfig_rules(kconf, config[CONFIG_LEN:],
1779 iconfig[CONFIG_LEN:])
1780 kconfig_info = ''
1781 if sym:
1782 locs = sym.get_def_locations()
1783 if len(locs) == 1:
1784 fname, linenum = locs[0]
1785 if cwd and fname.startswith(cwd):
1786 fname = fname[len(cwd) + 1:]
1787 kconfig_info = '%s:%d' % (fname, linenum)
1788 if skip_added:
1789 show = False
1790 else:
Tom Rini65e05dd2019-09-20 17:42:09 -04001791 sym = kconf.syms.get(iconfig[CONFIG_LEN:])
Simon Glasscb008832017-06-15 21:39:33 -06001792 fname = ''
1793 if sym:
1794 locs = sym.get_def_locations()
1795 if len(locs) == 1:
1796 fname, linenum = locs[0]
1797 if cwd and fname.startswith(cwd):
1798 fname = fname[len(cwd) + 1:]
1799 in_arch_board = not sym or (fname.startswith('arch') or
1800 fname.startswith('board'))
1801 if (not in_arch_board and
1802 not (imply_flags & IMPLY_NON_ARCH_BOARD)):
1803 continue
1804
1805 if add_imply and (add_imply == 'all' or
1806 iconfig in add_imply):
1807 fname, linenum, kconfig_info = (check_imply_rule(kconf,
1808 config[CONFIG_LEN:], iconfig[CONFIG_LEN:]))
1809 if fname:
1810 add_list[fname].append(linenum)
1811
1812 if show and kconfig_info != 'skip':
Simon Glass793dca32019-10-31 07:42:57 -06001813 print('%5d : %-30s%-25s %s' % (num_common, iconfig.ljust(30),
1814 kconfig_info, missing_str))
Simon Glasscb008832017-06-15 21:39:33 -06001815
1816 # Having collected a list of things to add, now we add them. We process
1817 # each file from the largest line number to the smallest so that
1818 # earlier additions do not affect our line numbers. E.g. if we added an
1819 # imply at line 20 it would change the position of each line after
1820 # that.
Simon Glass793dca32019-10-31 07:42:57 -06001821 for fname, linenums in add_list.items():
Simon Glasscb008832017-06-15 21:39:33 -06001822 for linenum in sorted(linenums, reverse=True):
1823 add_imply_rule(config[CONFIG_LEN:], fname, linenum)
Simon Glass99b66602017-06-01 19:39:03 -06001824
1825
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001826def main():
1827 try:
1828 cpu_count = multiprocessing.cpu_count()
1829 except NotImplementedError:
1830 cpu_count = 1
1831
1832 parser = optparse.OptionParser()
1833 # Add options here
Simon Glasscb008832017-06-15 21:39:33 -06001834 parser.add_option('-a', '--add-imply', type='string', default='',
1835 help='comma-separated list of CONFIG options to add '
1836 "an 'imply' statement to for the CONFIG in -i")
1837 parser.add_option('-A', '--skip-added', action='store_true', default=False,
1838 help="don't show options which are already marked as "
1839 'implying others')
Simon Glassd73fcb12017-06-01 19:39:02 -06001840 parser.add_option('-b', '--build-db', action='store_true', default=False,
1841 help='build a CONFIG database')
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001842 parser.add_option('-c', '--color', action='store_true', default=False,
1843 help='display the log in color')
Simon Glass9ede2122016-09-12 23:18:21 -06001844 parser.add_option('-C', '--commit', action='store_true', default=False,
1845 help='Create a git commit for the operation')
Joe Hershberger91040e82015-05-19 13:21:19 -05001846 parser.add_option('-d', '--defconfigs', type='string',
Simon Glassee4e61b2017-06-01 19:38:59 -06001847 help='a file containing a list of defconfigs to move, '
1848 "one per line (for example 'snow_defconfig') "
1849 "or '-' to read from stdin")
Simon Glass99b66602017-06-01 19:39:03 -06001850 parser.add_option('-i', '--imply', action='store_true', default=False,
1851 help='find options which imply others')
Simon Glass9b2a2e82017-06-15 21:39:32 -06001852 parser.add_option('-I', '--imply-flags', type='string', default='',
1853 help="control the -i option ('help' for help")
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001854 parser.add_option('-n', '--dry-run', action='store_true', default=False,
1855 help='perform a trial run (show log with no changes)')
1856 parser.add_option('-e', '--exit-on-error', action='store_true',
1857 default=False,
1858 help='exit immediately on any error')
Masahiro Yamada8513dc02016-05-19 15:52:08 +09001859 parser.add_option('-s', '--force-sync', action='store_true', default=False,
1860 help='force sync by savedefconfig')
Masahiro Yamada07913d12016-08-22 22:18:22 +09001861 parser.add_option('-S', '--spl', action='store_true', default=False,
1862 help='parse config options defined for SPL build')
Joe Hershberger2144f882015-05-19 13:21:20 -05001863 parser.add_option('-H', '--headers-only', dest='cleanup_headers_only',
1864 action='store_true', default=False,
1865 help='only cleanup the headers')
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001866 parser.add_option('-j', '--jobs', type='int', default=cpu_count,
1867 help='the number of jobs to run simultaneously')
Joe Hershberger6b96c1a2016-06-10 14:53:32 -05001868 parser.add_option('-r', '--git-ref', type='string',
1869 help='the git ref to clone for building the autoconf.mk')
Simon Glass6b403df2016-09-12 23:18:20 -06001870 parser.add_option('-y', '--yes', action='store_true', default=False,
1871 help="respond 'yes' to any prompts")
Joe Hershberger95bf9c72015-05-19 13:21:24 -05001872 parser.add_option('-v', '--verbose', action='store_true', default=False,
1873 help='show any build errors as boards are built')
Masahiro Yamadab6ef3932016-05-19 15:51:58 +09001874 parser.usage += ' CONFIG ...'
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001875
Masahiro Yamadab6ef3932016-05-19 15:51:58 +09001876 (options, configs) = parser.parse_args()
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001877
Simon Glass99b66602017-06-01 19:39:03 -06001878 if len(configs) == 0 and not any((options.force_sync, options.build_db,
1879 options.imply)):
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001880 parser.print_usage()
1881 sys.exit(1)
1882
Masahiro Yamadab6ef3932016-05-19 15:51:58 +09001883 # prefix the option name with CONFIG_ if missing
1884 configs = [ config if config.startswith('CONFIG_') else 'CONFIG_' + config
1885 for config in configs ]
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001886
Joe Hershberger2144f882015-05-19 13:21:20 -05001887 check_top_directory()
1888
Simon Glass99b66602017-06-01 19:39:03 -06001889 if options.imply:
Simon Glass9b2a2e82017-06-15 21:39:32 -06001890 imply_flags = 0
Simon Glassdee36c72017-07-10 14:47:46 -06001891 if options.imply_flags == 'all':
1892 imply_flags = -1
1893
1894 elif options.imply_flags:
1895 for flag in options.imply_flags.split(','):
1896 bad = flag not in IMPLY_FLAGS
1897 if bad:
Simon Glass793dca32019-10-31 07:42:57 -06001898 print("Invalid flag '%s'" % flag)
Simon Glassdee36c72017-07-10 14:47:46 -06001899 if flag == 'help' or bad:
Simon Glass793dca32019-10-31 07:42:57 -06001900 print("Imply flags: (separate with ',')")
1901 for name, info in IMPLY_FLAGS.items():
1902 print(' %-15s: %s' % (name, info[1]))
Simon Glassdee36c72017-07-10 14:47:46 -06001903 parser.print_usage()
1904 sys.exit(1)
1905 imply_flags |= IMPLY_FLAGS[flag][0]
Simon Glass9b2a2e82017-06-15 21:39:32 -06001906
Simon Glasscb008832017-06-15 21:39:33 -06001907 do_imply_config(configs, options.add_imply, imply_flags,
1908 options.skip_added)
Simon Glass99b66602017-06-01 19:39:03 -06001909 return
1910
Simon Glassd73fcb12017-06-01 19:39:02 -06001911 config_db = {}
Simon Glass793dca32019-10-31 07:42:57 -06001912 db_queue = queue.Queue()
Simon Glassd73fcb12017-06-01 19:39:02 -06001913 t = DatabaseThread(config_db, db_queue)
1914 t.setDaemon(True)
1915 t.start()
1916
Joe Hershberger2144f882015-05-19 13:21:20 -05001917 if not options.cleanup_headers_only:
Masahiro Yamadaf7536f72016-07-25 19:15:23 +09001918 check_clean_directory()
Simon Glass793dca32019-10-31 07:42:57 -06001919 bsettings.Setup('')
Simon Glass6821a742017-07-10 14:47:47 -06001920 toolchains = toolchain.Toolchains()
1921 toolchains.GetSettings()
1922 toolchains.Scan(verbose=False)
1923 move_config(toolchains, configs, options, db_queue)
Simon Glassd73fcb12017-06-01 19:39:02 -06001924 db_queue.join()
Joe Hershberger2144f882015-05-19 13:21:20 -05001925
Masahiro Yamada6a9f79f2016-05-19 15:52:09 +09001926 if configs:
Masahiro Yamadae9ea1222016-07-25 19:15:26 +09001927 cleanup_headers(configs, options)
Masahiro Yamada9ab02962016-07-25 19:15:29 +09001928 cleanup_extra_options(configs, options)
Chris Packhamca438342017-05-02 21:30:47 +12001929 cleanup_whitelist(configs, options)
Chris Packhamf90df592017-05-02 21:30:48 +12001930 cleanup_readme(configs, options)
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001931
Simon Glass9ede2122016-09-12 23:18:21 -06001932 if options.commit:
1933 subprocess.call(['git', 'add', '-u'])
1934 if configs:
1935 msg = 'Convert %s %sto Kconfig' % (configs[0],
1936 'et al ' if len(configs) > 1 else '')
1937 msg += ('\n\nThis converts the following to Kconfig:\n %s\n' %
1938 '\n '.join(configs))
1939 else:
1940 msg = 'configs: Resync with savedefconfig'
1941 msg += '\n\nRsync all defconfig files using moveconfig.py'
1942 subprocess.call(['git', 'commit', '-s', '-m', msg])
1943
Simon Glassd73fcb12017-06-01 19:39:02 -06001944 if options.build_db:
1945 with open(CONFIG_DATABASE, 'w') as fd:
Simon Glass793dca32019-10-31 07:42:57 -06001946 for defconfig, configs in config_db.items():
Simon Glassc79d18c2017-08-13 16:02:54 -06001947 fd.write('%s\n' % defconfig)
Simon Glassd73fcb12017-06-01 19:39:02 -06001948 for config in sorted(configs.keys()):
Simon Glassc79d18c2017-08-13 16:02:54 -06001949 fd.write(' %s=%s\n' % (config, configs[config]))
1950 fd.write('\n')
Simon Glassd73fcb12017-06-01 19:39:02 -06001951
Masahiro Yamada5a27c732015-05-20 11:36:07 +09001952if __name__ == '__main__':
1953 main()