Simon Glass | 4840b71 | 2023-09-23 13:44:16 -0600 | [diff] [blame] | 1 | .. SPDX-License-Identifier: GPL-2.0+ |
| 2 | |
| 3 | qconfig - Querying CONFIG options |
| 4 | ================================= |
| 5 | |
| 6 | It is not possible to see all the CONFIG options used by a board without |
| 7 | building its `.config` file. This tool allows this to be done efficiently for |
| 8 | all boards, or a subset, writing the results to a unified database file. |
| 9 | |
| 10 | This database can be queried, to find boards which used a certain combination |
| 11 | of options, to aid in discovering Kconfig options which imply others. |
| 12 | |
| 13 | The tool also permits syncing of defconfigs, which corrects the ordering and |
| 14 | drops options which are implied by others. |
| 15 | |
| 16 | Finally, it allows scanning the source code to look for inconsistencies in the |
| 17 | use of Kconfig options. |
| 18 | |
| 19 | Installation |
| 20 | ------------ |
| 21 | |
| 22 | You may need to install 'python3-asteval' for the 'asteval' module. |
| 23 | |
| 24 | How does it work? |
| 25 | ----------------- |
| 26 | |
| 27 | When building a database (`-b`), this tool runs configuration and builds |
| 28 | include/autoconf.mk for every defconfig. The config options defined in Kconfig |
| 29 | appear in the .config file (unless they are hidden because of unmet dependency.) |
| 30 | On the other hand, the config options defined by board headers are seen |
| 31 | in include/autoconf.mk. |
| 32 | |
| 33 | When resyncing defconfigs (`-s`) the .config is synced by "make savedefconfig" |
| 34 | and the defconfig is updated with it. |
| 35 | |
| 36 | For faster processing, this tool is multi-threaded. It creates |
| 37 | separate build directories where the out-of-tree build is run. The |
| 38 | temporary build directories are automatically created and deleted as |
| 39 | needed. The number of threads are chosen based on the number of the CPU |
| 40 | cores of your system although you can change it via -j (--jobs) option. |
| 41 | |
| 42 | Note that `*.config` fragments are not supported. |
| 43 | |
| 44 | Toolchains |
| 45 | ---------- |
| 46 | |
| 47 | Appropriate toolchains are necessary to generate include/autoconf.mk |
| 48 | for all the architectures supported by U-Boot. Most of them are available |
| 49 | at the kernel.org site. This tool uses the same tools as |
| 50 | :doc:`../build/buildman`, so you can use `buildman --fetch-arch` to fetch |
| 51 | toolchains. |
| 52 | |
| 53 | |
| 54 | Examples |
| 55 | -------- |
| 56 | |
| 57 | To sync only X86 defconfigs:: |
| 58 | |
| 59 | ./tools/qconfig.py -s -d <(grep -l X86 configs/*) |
| 60 | |
| 61 | or:: |
| 62 | |
| 63 | grep -l X86 configs/* | ./tools/qconfig.py -s -d - |
| 64 | |
| 65 | To process CONFIG_CMD_FPGAD only for a subset of configs based on path match:: |
| 66 | |
| 67 | ls configs/{hrcon*,iocon*,strider*} | \ |
| 68 | ./tools/qconfig.py -C CONFIG_CMD_FPGAD -d - |
| 69 | |
| 70 | |
| 71 | Finding boards with particular CONFIG combinations |
| 72 | -------------------------------------------------- |
| 73 | |
| 74 | You can use `qconfig.py` to figure out which boards have a CONFIG enabled, or |
| 75 | which do not. To use it, first build a database:: |
| 76 | |
| 77 | ./tools/qconfig.py -b |
| 78 | |
| 79 | Then you can run queries using the `-f` flag followed by a list of CONFIG terms. |
| 80 | Each term is CONFIG name, with or without a tilde (~) prefix. The tool searches |
| 81 | for boards which match the CONFIG name, or do not match if tilde is used. For |
| 82 | example, to find boards which enabled CONFIG_SCSI but not CONFIG_BLK:: |
| 83 | |
| 84 | tools/qconfig.py -f SCSI ~BLK |
| 85 | 3 matches |
| 86 | pg_wcom_seli8_defconfig highbank_defconfig pg_wcom_expu1_defconfig |
| 87 | |
| 88 | |
| 89 | Finding implied CONFIGs |
| 90 | ----------------------- |
| 91 | |
| 92 | Some CONFIG options can be implied by others and this can help to reduce |
| 93 | the size of the defconfig files. For example, CONFIG_X86 implies |
| 94 | CONFIG_CMD_IRQ, so we can put 'imply CMD_IRQ' under 'config X86' and |
| 95 | all x86 boards will have that option, avoiding adding CONFIG_CMD_IRQ to |
| 96 | each of the x86 defconfig files. |
| 97 | |
| 98 | This tool can help find such configs. To use it, first build a database:: |
| 99 | |
| 100 | ./tools/qconfig.py -b |
| 101 | |
| 102 | Then try to query it:: |
| 103 | |
| 104 | ./tools/qconfig.py -i CONFIG_I8042_KEYB |
| 105 | CONFIG_I8042_KEYB found in 33/5155 defconfigs |
| 106 | 28 : CONFIG_X86 |
| 107 | 28 : CONFIG_SA_PCIEX_LENGTH |
| 108 | 28 : CONFIG_HPET_ADDRESS |
| 109 | 28 : CONFIG_MAX_PIRQ_LINKS |
| 110 | 28 : CONFIG_I8254_TIMER |
| 111 | 28 : CONFIG_I8259_PIC |
| 112 | 28 : CONFIG_RAMBASE |
| 113 | 28 : CONFIG_IRQ_SLOT_COUNT |
| 114 | 28 : CONFIG_PCIE_ECAM_SIZE |
| 115 | 28 : CONFIG_APIC |
| 116 | ... |
| 117 | |
| 118 | This shows a list of config options which might imply CONFIG_I8042_KEYB along |
| 119 | with how many defconfigs they cover. From this you can see that CONFIG_X86 |
| 120 | generally implies CONFIG_I8042_KEYB but not always (28 out of 35). Therefore, |
| 121 | instead of adding CONFIG_I8042_KEYB to |
| 122 | the defconfig of every x86 board, you could add a single imply line to the |
| 123 | Kconfig file:: |
| 124 | |
| 125 | config X86 |
| 126 | bool "x86 architecture" |
| 127 | ... |
| 128 | imply CMD_EEPROM |
| 129 | |
| 130 | That will cover 28 defconfigs and you can perhaps find another condition that |
| 131 | indicates that CONFIG_I8042_KEYB is not needed for the remaining 5 boards. Many |
| 132 | of the options listed are not suitable as they are not related. E.g. it would be |
| 133 | odd for CONFIG_RAMBASE to imply CONFIG_I8042_KEYB. |
| 134 | |
| 135 | Using this search you can reduce the size of qconfig patches. |
| 136 | |
| 137 | You can automatically add 'imply' statements in the Kconfig with the -a |
| 138 | option:: |
| 139 | |
| 140 | ./tools/qconfig.py -s -i CONFIG_SCSI \ |
| 141 | -a CONFIG_ARCH_LS1021A,CONFIG_ARCH_LS1043A |
| 142 | |
| 143 | This will add 'imply SCSI' to the two CONFIG options mentioned, assuming that |
| 144 | the database indicates that they do actually imply CONFIG_SCSI and do not |
| 145 | already have an 'imply SCSI'. |
| 146 | |
| 147 | The output shows where the imply is added:: |
| 148 | |
| 149 | 18 : CONFIG_ARCH_LS1021A arch/arm/cpu/armv7/ls102xa/Kconfig:1 |
| 150 | 13 : CONFIG_ARCH_LS1043A arch/arm/cpu/armv8/fsl-layerscape/Kconfig:11 |
| 151 | 12 : CONFIG_ARCH_LS1046A arch/arm/cpu/armv8/fsl-layerscape/Kconfig:31 |
| 152 | |
| 153 | The first number is the number of boards which can avoid having a special |
| 154 | CONFIG_SCSI option in their defconfig file if this 'imply' is added. |
| 155 | The location at the right is the Kconfig file and line number where the config |
| 156 | appears. For example, adding 'imply CONFIG_SCSI' to the 'config ARCH_LS1021A' |
| 157 | in arch/arm/cpu/armv7/ls102xa/Kconfig at line 1 will help 18 boards to reduce |
| 158 | the size of their defconfig files. |
| 159 | |
| 160 | If you want to add an 'imply' to every imply config in the list, you can use:: |
| 161 | |
| 162 | ./tools/qconfig.py -s -i CONFIG_SCSI -a all |
| 163 | |
| 164 | To control which ones are displayed, use -I <list> where list is a list of |
| 165 | options (use '-I help' to see possible options and their meaning). |
| 166 | |
| 167 | To skip showing you options that already have an 'imply' attached, use -A. |
| 168 | |
| 169 | When you have finished adding 'imply' options you can regenerate the |
| 170 | defconfig files for affected boards with something like:: |
| 171 | |
| 172 | git show --stat | ./tools/qconfig.py -s -d - |
| 173 | |
| 174 | This will regenerate only those defconfigs changed in the current commit. |
| 175 | If you start with (say) 100 defconfigs being changed in the commit, and add |
| 176 | a few 'imply' options as above, then regenerate, hopefully you can reduce the |
| 177 | number of defconfigs changed in the commit. |
| 178 | |
| 179 | |
| 180 | Available options |
| 181 | ----------------- |
| 182 | |
| 183 | --nocolour |
| 184 | Disables colouring of output. This is normally used when writing to a |
| 185 | terminal. |
| 186 | |
| 187 | -C, --commit |
| 188 | Create a git commit with the changes when the operation is complete. A |
| 189 | standard commit message is used which may need to be edited. |
| 190 | |
| 191 | -d, --defconfigs |
| 192 | Specify a file containing a list of defconfigs to move. The defconfig |
| 193 | files can be given with shell-style wildcards. Use '-' to read from stdin. |
| 194 | |
| 195 | -f, --find |
| 196 | Find boards with a given config combination |
| 197 | |
| 198 | -n, --dry-run |
| 199 | Perform a trial run that does not make any changes. It is useful to |
| 200 | see what is going to happen before one actually runs it. |
| 201 | |
| 202 | -e, --exit-on-error |
| 203 | Exit immediately if Make exits with a non-zero status while processing |
| 204 | a defconfig file. |
| 205 | |
| 206 | -s, --force-sync |
| 207 | Do "make savedefconfig" forcibly for all the defconfig files. |
| 208 | If not specified, "make savedefconfig" only occurs for cases |
| 209 | where at least one CONFIG was moved. |
| 210 | |
| 211 | -S, --spl |
| 212 | Look for moved config options in spl/include/autoconf.mk instead of |
| 213 | include/autoconf.mk. This is useful for moving options for SPL build |
| 214 | because SPL related options (mostly prefixed with CONFIG_SPL\_) are |
| 215 | sometimes blocked by CONFIG_SPL_BUILD ifdef conditionals. |
| 216 | |
| 217 | -j, --jobs |
| 218 | Specify the number of threads to run simultaneously. If not specified, |
| 219 | the number of threads is the same as the number of CPU cores. |
| 220 | |
| 221 | -r, --git-ref |
| 222 | Specify the git ref to clone for building the autoconf.mk. If unspecified |
| 223 | use the CWD. This is useful for when changes to the Kconfig affect the |
| 224 | default values and you want to capture the state of the defconfig from |
| 225 | before that change was in effect. If in doubt, specify a ref pre-Kconfig |
| 226 | changes (use HEAD if Kconfig changes are not committed). Worst case it will |
| 227 | take a bit longer to run, but will always do the right thing. |
| 228 | |
| 229 | -v, --verbose |
| 230 | Show any build errors as boards are built |
| 231 | |
| 232 | To see the complete list of supported options, run:: |
| 233 | |
| 234 | tools/qconfig.py -h |