xref: /openbmc/u-boot/Kconfig (revision f1896c45)
151631259SMasahiro Yamada#
251631259SMasahiro Yamada# For a description of the syntax of this configuration file,
359d7c34bSRobert P. J. Day# see the file Documentation/kbuild/kconfig-language.txt in the
459d7c34bSRobert P. J. Day# Linux kernel source tree.
551631259SMasahiro Yamada#
651631259SMasahiro Yamadamainmenu "U-Boot $UBOOTVERSION Configuration"
751631259SMasahiro Yamada
851631259SMasahiro Yamadaconfig UBOOTVERSION
951631259SMasahiro Yamada	string
1051631259SMasahiro Yamada	option env="UBOOTVERSION"
1151631259SMasahiro Yamada
1266afaef2SSimon Glass# Allow defaults in arch-specific code to override any given here
1366afaef2SSimon Glasssource "arch/Kconfig"
1466afaef2SSimon Glass
1551631259SMasahiro Yamadamenu "General setup"
1651631259SMasahiro Yamada
17e91c3c33SMasahiro Yamadaconfig LOCALVERSION
18e91c3c33SMasahiro Yamada	string "Local version - append to U-Boot release"
19e91c3c33SMasahiro Yamada	help
20e91c3c33SMasahiro Yamada	  Append an extra string to the end of your U-Boot version.
2159d7c34bSRobert P. J. Day	  This will show up in your boot log, for example.
22e91c3c33SMasahiro Yamada	  The string you set here will be appended after the contents of
23e91c3c33SMasahiro Yamada	  any files with a filename matching localversion* in your
24e91c3c33SMasahiro Yamada	  object and source tree, in that order.  Your total string can
25e91c3c33SMasahiro Yamada	  be a maximum of 64 characters.
26e91c3c33SMasahiro Yamada
27e91c3c33SMasahiro Yamadaconfig LOCALVERSION_AUTO
28e91c3c33SMasahiro Yamada	bool "Automatically append version information to the version string"
29e91c3c33SMasahiro Yamada	default y
30e91c3c33SMasahiro Yamada	help
31e91c3c33SMasahiro Yamada	  This will try to automatically determine if the current tree is a
3259d7c34bSRobert P. J. Day	  release tree by looking for Git tags that belong to the current
33e91c3c33SMasahiro Yamada	  top of tree revision.
34e91c3c33SMasahiro Yamada
35e91c3c33SMasahiro Yamada	  A string of the format -gxxxxxxxx will be added to the localversion
3659d7c34bSRobert P. J. Day	  if a Git-based tree is found.  The string generated by this will be
37e91c3c33SMasahiro Yamada	  appended after any matching localversion* files, and after the value
38e91c3c33SMasahiro Yamada	  set in CONFIG_LOCALVERSION.
39e91c3c33SMasahiro Yamada
40e91c3c33SMasahiro Yamada	  (The actual string used here is the first eight characters produced
41e91c3c33SMasahiro Yamada	  by running the command:
42e91c3c33SMasahiro Yamada
43e91c3c33SMasahiro Yamada	    $ git rev-parse --verify HEAD
44e91c3c33SMasahiro Yamada
45e91c3c33SMasahiro Yamada	  which is done within the script "scripts/setlocalversion".)
46e91c3c33SMasahiro Yamada
474a8ed8e2SMasahiro Yamadaconfig CC_OPTIMIZE_FOR_SIZE
484a8ed8e2SMasahiro Yamada	bool "Optimize for size"
494a8ed8e2SMasahiro Yamada	default y
504a8ed8e2SMasahiro Yamada	help
514a8ed8e2SMasahiro Yamada	  Enabling this option will pass "-Os" instead of "-O2" to gcc
524a8ed8e2SMasahiro Yamada	  resulting in a smaller U-Boot image.
534a8ed8e2SMasahiro Yamada
544a8ed8e2SMasahiro Yamada	  This option is enabled by default for U-Boot.
554a8ed8e2SMasahiro Yamada
569f823615SHans de Goedeconfig DISTRO_DEFAULTS
579f823615SHans de Goede	bool "Select defaults suitable for booting general purpose Linux distributions"
583337e3afSTom Rini	default y if ARCH_SUNXI || TEGRA
59b99ebaf9SAlexander Graf	default y if ARCH_LS2080A
6070b8bd7dSAndreas Färber	default y if ARCH_MESON
617bdedf11SRomain Perier	default y if ARCH_ROCKCHIP
629f823615SHans de Goede	default n
63a391d500STom Rini	select CMD_BOOTZ if ARM && !ARM64
6426959271SMasahiro Yamada	select CMD_BOOTI if ARM64
659f823615SHans de Goede	select CMD_DHCP
66bfb380b3SYann E. MORIN	select CMD_PXE
679f823615SHans de Goede	select CMD_EXT2
689f823615SHans de Goede	select CMD_EXT4
699f823615SHans de Goede	select CMD_FAT
709f823615SHans de Goede	select CMD_FS_GENERIC
719f823615SHans de Goede	select CMD_MII
729f823615SHans de Goede	select CMD_PING
73b331cd62SPatrick Delaunay	select CMD_PART
749f823615SHans de Goede	select HUSH_PARSER
759f823615SHans de Goede	help
769f823615SHans de Goede	  Select this to enable various options and commands which are suitable
779f823615SHans de Goede	  for building u-boot for booting general purpose Linux distributions.
789f823615SHans de Goede
79b724bd7dSSimon Glassconfig SYS_MALLOC_F
80b724bd7dSSimon Glass	bool "Enable malloc() pool before relocation"
81326a6823SMasahiro Yamada	default y if DM
82b724bd7dSSimon Glass	help
8359d7c34bSRobert P. J. Day	  Before relocation, memory is very limited on many platforms. Still,
84b724bd7dSSimon Glass	  we can provide a small malloc() pool if needed. Driver model in
85b724bd7dSSimon Glass	  particular needs this to operate, so that it can allocate the
86b724bd7dSSimon Glass	  initial serial device and any others that are needed.
87b724bd7dSSimon Glass
88b724bd7dSSimon Glassconfig SYS_MALLOC_F_LEN
89b724bd7dSSimon Glass	hex "Size of malloc() pool before relocation"
90b724bd7dSSimon Glass	depends on SYS_MALLOC_F
91b724bd7dSSimon Glass	default 0x400
92b724bd7dSSimon Glass	help
9359d7c34bSRobert P. J. Day	  Before relocation, memory is very limited on many platforms. Still,
94b724bd7dSSimon Glass	  we can provide a small malloc() pool if needed. Driver model in
95b724bd7dSSimon Glass	  particular needs this to operate, so that it can allocate the
96b724bd7dSSimon Glass	  initial serial device and any others that are needed.
97b724bd7dSSimon Glass
98*f1896c45SAndy Yanconfig SPL_SYS_MALLOC_F_LEN
99*f1896c45SAndy Yan        hex "Size of malloc() pool in spl before relocation"
100*f1896c45SAndy Yan        depends on SYS_MALLOC_F
101*f1896c45SAndy Yan        default SYS_MALLOC_F_LEN
102*f1896c45SAndy Yan        help
103*f1896c45SAndy Yan          Before relocation, memory is very limited on many platforms. Still,
104*f1896c45SAndy Yan          we can provide a small malloc() pool if needed. Driver model in
105*f1896c45SAndy Yan          particular needs this to operate, so that it can allocate the
106*f1896c45SAndy Yan          initial serial device and any others that are needed.
107*f1896c45SAndy Yan
1081bf0979fSTom Rinimenuconfig EXPERT
1091bf0979fSTom Rini	bool "Configure standard U-Boot features (expert users)"
1100aa8a4adSPrzemyslaw Marczak	default y
1111bf0979fSTom Rini	help
1121bf0979fSTom Rini	  This option allows certain base U-Boot options and settings
1131bf0979fSTom Rini	  to be disabled or tweaked. This is for specialized
1141bf0979fSTom Rini	  environments which can tolerate a "non-standard" U-Boot.
11559d7c34bSRobert P. J. Day	  Use this only if you really know what you are doing.
1161bf0979fSTom Rini
1170aa8a4adSPrzemyslaw Marczakif EXPERT
1180aa8a4adSPrzemyslaw Marczak	config SYS_MALLOC_CLEAR_ON_INIT
1190aa8a4adSPrzemyslaw Marczak	bool "Init with zeros the memory reserved for malloc (slow)"
1200aa8a4adSPrzemyslaw Marczak	default y
1210aa8a4adSPrzemyslaw Marczak	help
1220aa8a4adSPrzemyslaw Marczak	  This setting is enabled by default. The reserved malloc
1230aa8a4adSPrzemyslaw Marczak	  memory is initialized with zeros, so first malloc calls
1240aa8a4adSPrzemyslaw Marczak	  will return the pointer to the zeroed memory. But this
1250aa8a4adSPrzemyslaw Marczak	  slows the boot time.
1260aa8a4adSPrzemyslaw Marczak
1270aa8a4adSPrzemyslaw Marczak	  It is recommended to disable it, when CONFIG_SYS_MALLOC_LEN
1280aa8a4adSPrzemyslaw Marczak	  value, has more than few MiB, e.g. when uses bzip2 or bmp logo.
1290aa8a4adSPrzemyslaw Marczak	  Then the boot time can be significantly reduced.
1300aa8a4adSPrzemyslaw Marczak	  Warning:
1310aa8a4adSPrzemyslaw Marczak	  When disabling this, please check if malloc calls, maybe
13259d7c34bSRobert P. J. Day	  should be replaced by calloc - if one expects zeroed memory.
133022885cbSSimon Glass
134022885cbSSimon Glassconfig TOOLS_DEBUG
135022885cbSSimon Glass	bool "Enable debug information for tools"
136022885cbSSimon Glass	help
137022885cbSSimon Glass	  Enable generation of debug information for tools such as mkimage.
138022885cbSSimon Glass	  This can be used for debugging purposes. With debug information
139022885cbSSimon Glass	  it is possible to set breakpoints on particular lines, single-step
140022885cbSSimon Glass	  debug through the source code, etc.
141022885cbSSimon Glass
142266aa86bSRobert P. J. Dayendif # EXPERT
143bb6b142fSMasahiro Yamada
144bb6b142fSMasahiro Yamadaconfig PHYS_64BIT
145bb6b142fSMasahiro Yamada	bool "64bit physical address support"
146bb6b142fSMasahiro Yamada	help
147bb6b142fSMasahiro Yamada	  Say Y here to support 64bit physical memory address.
148bb6b142fSMasahiro Yamada	  This can be used not only for 64bit SoCs, but also for
149bb6b142fSMasahiro Yamada	  large physical address extention on 32bit SoCs.
150bb6b142fSMasahiro Yamada
15140ad4c4bSMasahiro Yamadaendmenu		# General setup
15240ad4c4bSMasahiro Yamada
153e91c3c33SMasahiro Yamadamenu "Boot images"
154e91c3c33SMasahiro Yamada
155b6cf4439SMasahiro Yamadaconfig FIT
156b6cf4439SMasahiro Yamada	bool "Support Flattened Image Tree"
157aeb9c53cSAndre Przywara	select MD5
158089df18bSTom Rini	select SHA1
159b6cf4439SMasahiro Yamada	help
160266aa86bSRobert P. J. Day	  This option allows you to boot the new uImage structure,
161b6cf4439SMasahiro Yamada	  Flattened Image Tree.  FIT is formally a FDT, which can include
162b6cf4439SMasahiro Yamada	  images of various types (kernel, FDT blob, ramdisk, etc.)
163b6cf4439SMasahiro Yamada	  in a single blob.  To boot this new uImage structure,
1641f9ac4a4SIgor Grinberg	  pass the address of the blob to the "bootm" command.
16573223f0eSSimon Glass	  FIT is very flexible, supporting compression, multiple images,
16673223f0eSSimon Glass	  multiple configurations, verification through hashing and also
167266aa86bSRobert P. J. Day	  verified boot (secure boot using RSA).
168b6cf4439SMasahiro Yamada
169266aa86bSRobert P. J. Dayif FIT
170b6cf4439SMasahiro Yamada
1710db7f685STom Riniconfig FIT_ENABLE_SHA256_SUPPORT
1720db7f685STom Rini	bool "Support SHA256 checksum of FIT image contents"
173089df18bSTom Rini	select SHA256
1740db7f685STom Rini	default y
1750db7f685STom Rini	help
1760db7f685STom Rini	  Enable this to support SHA256 checksum of FIT image contents. A
1770db7f685STom Rini	  SHA256 checksum is a 256-bit (32-byte) hash value used to check that
1780db7f685STom Rini	  the image contents have not been corrupted. SHA256 is recommended
1790db7f685STom Rini	  for use in secure applications since (as at 2016) there is no known
1800db7f685STom Rini	  feasible attack that could produce a 'collision' with differing
1810db7f685STom Rini	  input data. Use this for the highest security. Note that only the
1820db7f685STom Rini	  SHA256 variant is supported: SHA512 and others are not currently
1830db7f685STom Rini	  supported in U-Boot.
1840db7f685STom Rini
185b6cf4439SMasahiro Yamadaconfig FIT_SIGNATURE
186c4beb22fSRuchika Gupta	bool "Enable signature verification of FIT uImages"
1879009798dSChris Kuethe	depends on DM
188c4beb22fSRuchika Gupta	select RSA
189b6cf4439SMasahiro Yamada	help
190b6cf4439SMasahiro Yamada	  This option enables signature verification of FIT uImages,
19194e3c8c4Sgaurav rana	  using a hash signed and verified using RSA. If
19294e3c8c4Sgaurav rana	  CONFIG_SHA_PROG_HW_ACCEL is defined, i.e support for progressive
193266aa86bSRobert P. J. Day	  hashing is available using hardware, then the RSA library will use
19473223f0eSSimon Glass	  it. See doc/uImage.FIT/signature.txt for more details.
19573223f0eSSimon Glass
19673223f0eSSimon Glass	  WARNING: When relying on signed FIT images with a required signature
19773223f0eSSimon Glass	  check the legacy image format is disabled by default, so that
19873223f0eSSimon Glass	  unsigned images cannot be loaded. If a board needs the legacy image
19973223f0eSSimon Glass	  format support in this case, enable it using
20073223f0eSSimon Glass	  CONFIG_IMAGE_FORMAT_LEGACY.
20173223f0eSSimon Glass
202266aa86bSRobert P. J. Dayconfig FIT_VERBOSE
203266aa86bSRobert P. J. Day	bool "Show verbose messages when FIT images fail"
204266aa86bSRobert P. J. Day	help
205266aa86bSRobert P. J. Day	  Generally a system will have valid FIT images so debug messages
206266aa86bSRobert P. J. Day	  are a waste of code space. If you are debugging your images then
207266aa86bSRobert P. J. Day	  you can enable this option to get more verbose information about
208266aa86bSRobert P. J. Day	  failures.
20951c14cd1STeddy Reed
21073223f0eSSimon Glassconfig FIT_BEST_MATCH
21173223f0eSSimon Glass	bool "Select the best match for the kernel device tree"
21273223f0eSSimon Glass	help
21373223f0eSSimon Glass	  When no configuration is explicitly selected, default to the
21473223f0eSSimon Glass	  one whose fdt's compatibility field best matches that of
21573223f0eSSimon Glass	  U-Boot itself. A match is considered "best" if it matches the
21673223f0eSSimon Glass	  most specific compatibility entry of U-Boot's fdt's root node.
21773223f0eSSimon Glass	  The order of entries in the configuration's fdt is ignored.
21873223f0eSSimon Glass
219266aa86bSRobert P. J. Dayconfig FIT_IMAGE_POST_PROCESS
220266aa86bSRobert P. J. Day	bool "Enable post-processing of FIT artifacts after loading by U-Boot"
221266aa86bSRobert P. J. Day	depends on TI_SECURE_DEVICE
22273223f0eSSimon Glass	help
223266aa86bSRobert P. J. Day	  Allows doing any sort of manipulation to blobs after they got extracted
224266aa86bSRobert P. J. Day	  from FIT images like stripping off headers or modifying the size of the
225266aa86bSRobert P. J. Day	  blob, verification, authentication, decryption etc. in a platform or
226266aa86bSRobert P. J. Day	  board specific way. In order to use this feature a platform or board-
227266aa86bSRobert P. J. Day	  specific implementation of board_fit_image_post_process() must be
228266aa86bSRobert P. J. Day	  provided. Also, anything done during this post-processing step would
229266aa86bSRobert P. J. Day	  need to be comprehended in how the images were prepared before being
230266aa86bSRobert P. J. Day	  injected into the FIT creation (i.e. the blobs would have been pre-
231266aa86bSRobert P. J. Day	  processed before being added to the FIT image).
232266aa86bSRobert P. J. Day
23371139113STom Riniif SPL
23471139113STom Rini
235266aa86bSRobert P. J. Dayconfig SPL_FIT
236266aa86bSRobert P. J. Day	bool "Support Flattened Image Tree within SPL"
237266aa86bSRobert P. J. Day	depends on SPL
23885c07a5aSAndre Przywara	select SPL_OF_LIBFDT
239266aa86bSRobert P. J. Day
240266aa86bSRobert P. J. Dayconfig SPL_FIT_SIGNATURE
241266aa86bSRobert P. J. Day	bool "Enable signature verification of FIT firmware within SPL"
242266aa86bSRobert P. J. Day	depends on SPL_DM
24385c07a5aSAndre Przywara	select SPL_FIT
244266aa86bSRobert P. J. Day	select SPL_RSA
245266aa86bSRobert P. J. Day
246266aa86bSRobert P. J. Dayconfig SPL_LOAD_FIT
247266aa86bSRobert P. J. Day	bool "Enable SPL loading U-Boot as a FIT"
24885c07a5aSAndre Przywara	select SPL_FIT
249266aa86bSRobert P. J. Day	help
250266aa86bSRobert P. J. Day	  Normally with the SPL framework a legacy image is generated as part
251266aa86bSRobert P. J. Day	  of the build. This contains U-Boot along with information as to
252266aa86bSRobert P. J. Day	  where it should be loaded. This option instead enables generation
253266aa86bSRobert P. J. Day	  of a FIT (Flat Image Tree) which provides more flexibility. In
254266aa86bSRobert P. J. Day	  particular it can handle selecting from multiple device tree
255266aa86bSRobert P. J. Day	  and passing the correct one to U-Boot.
256266aa86bSRobert P. J. Day
257266aa86bSRobert P. J. Dayconfig SPL_FIT_IMAGE_POST_PROCESS
258266aa86bSRobert P. J. Day	bool "Enable post-processing of FIT artifacts after loading by the SPL"
259266aa86bSRobert P. J. Day	depends on SPL_LOAD_FIT && TI_SECURE_DEVICE
260266aa86bSRobert P. J. Day	help
261266aa86bSRobert P. J. Day	  Allows doing any sort of manipulation to blobs after they got extracted
262266aa86bSRobert P. J. Day	  from the U-Boot FIT image like stripping off headers or modifying the
263266aa86bSRobert P. J. Day	  size of the blob, verification, authentication, decryption etc. in a
264266aa86bSRobert P. J. Day	  platform or board specific way. In order to use this feature a platform
265266aa86bSRobert P. J. Day	  or board-specific implementation of board_fit_image_post_process() must
266266aa86bSRobert P. J. Day	  be provided. Also, anything done during this post-processing step would
267266aa86bSRobert P. J. Day	  need to be comprehended in how the images were prepared before being
268266aa86bSRobert P. J. Day	  injected into the FIT creation (i.e. the blobs would have been pre-
269266aa86bSRobert P. J. Day	  processed before being added to the FIT image).
270266aa86bSRobert P. J. Day
2711a12fdc4SAndre Przywaraconfig SPL_FIT_SOURCE
2721a12fdc4SAndre Przywara	string ".its source file for U-Boot FIT image"
2731a12fdc4SAndre Przywara	depends on SPL_FIT
2741a12fdc4SAndre Przywara	help
2751a12fdc4SAndre Przywara	  Specifies a (platform specific) FIT source file to generate the
2761a12fdc4SAndre Przywara	  U-Boot FIT image. This could specify further image to load and/or
2771a12fdc4SAndre Przywara	  execute.
2781a12fdc4SAndre Przywara
2791a12fdc4SAndre Przywaraconfig SPL_FIT_GENERATOR
2801a12fdc4SAndre Przywara	string ".its file generator script for U-Boot FIT image"
2811a12fdc4SAndre Przywara	depends on SPL_FIT
282d29adf8eSAndre Przywara	default "board/sunxi/mksunxi_fit_atf.sh" if SPL_LOAD_FIT && ARCH_SUNXI
2831a12fdc4SAndre Przywara	help
2841a12fdc4SAndre Przywara	  Specifies a (platform specific) script file to generate the FIT
2851a12fdc4SAndre Przywara	  source file used to build the U-Boot FIT image file. This gets
2861a12fdc4SAndre Przywara	  passed a list of supported device tree file stub names to
2871a12fdc4SAndre Przywara	  include in the generated image.
2881a12fdc4SAndre Przywara
28971139113STom Riniendif # SPL
29071139113STom Rini
291266aa86bSRobert P. J. Dayendif # FIT
29273223f0eSSimon Glass
29373223f0eSSimon Glassconfig OF_BOARD_SETUP
29473223f0eSSimon Glass	bool "Set up board-specific details in device tree before boot"
29573223f0eSSimon Glass	depends on OF_LIBFDT
29673223f0eSSimon Glass	help
29773223f0eSSimon Glass	  This causes U-Boot to call ft_board_setup() before booting into
29873223f0eSSimon Glass	  the Operating System. This function can set up various
29973223f0eSSimon Glass	  board-specific information in the device tree for use by the OS.
30073223f0eSSimon Glass	  The device tree is then passed to the OS.
30173223f0eSSimon Glass
30273223f0eSSimon Glassconfig OF_SYSTEM_SETUP
30373223f0eSSimon Glass	bool "Set up system-specific details in device tree before boot"
30473223f0eSSimon Glass	depends on OF_LIBFDT
30573223f0eSSimon Glass	help
30673223f0eSSimon Glass	  This causes U-Boot to call ft_system_setup() before booting into
30773223f0eSSimon Glass	  the Operating System. This function can set up various
30873223f0eSSimon Glass	  system-specific information in the device tree for use by the OS.
30973223f0eSSimon Glass	  The device tree is then passed to the OS.
31073223f0eSSimon Glass
31173223f0eSSimon Glassconfig OF_STDOUT_VIA_ALIAS
31273223f0eSSimon Glass	bool "Update the device-tree stdout alias from U-Boot"
31373223f0eSSimon Glass	depends on OF_LIBFDT
31473223f0eSSimon Glass	help
31573223f0eSSimon Glass	  This uses U-Boot's serial alias from the aliases node to update
31673223f0eSSimon Glass	  the device tree passed to the OS. The "linux,stdout-path" property
31773223f0eSSimon Glass	  in the chosen node is set to point to the correct serial node.
31873223f0eSSimon Glass	  This option currently references CONFIG_CONS_INDEX, which is
31973223f0eSSimon Glass	  incorrect when used with device tree as this option does not
32073223f0eSSimon Glass	  exist / should not be used.
321b6cf4439SMasahiro Yamada
32251631259SMasahiro Yamadaconfig SYS_EXTRA_OPTIONS
32351631259SMasahiro Yamada	string "Extra Options (DEPRECATED)"
32451631259SMasahiro Yamada	help
32551631259SMasahiro Yamada	  The old configuration infrastructure (= mkconfig + boards.cfg)
326ed36323fSMasahiro Yamada	  provided the extra options field. If you have something like
32751631259SMasahiro Yamada	  "HAS_BAR,BAZ=64", the optional options
32851631259SMasahiro Yamada	    #define CONFIG_HAS
32951631259SMasahiro Yamada	    #define CONFIG_BAZ	64
33051631259SMasahiro Yamada	  will be defined in include/config.h.
33151631259SMasahiro Yamada	  This option was prepared for the smooth migration from the old
33251631259SMasahiro Yamada	  configuration to Kconfig. Since this option will be removed sometime,
33351631259SMasahiro Yamada	  new boards should not use this option.
33451631259SMasahiro Yamada
3357f7563ceSMasahiro Yamadaconfig SYS_TEXT_BASE
336936478e7STom Rini	depends on ARC || X86 || ARCH_UNIPHIER || ARCH_ZYNQMP || \
3376ebf8a4aSMichal Simek		(M68K && !TARGET_ASTRO_MCF5373L) || MICROBLAZE || MIPS || \
338546b3129SMadan Srinivas		ARCH_ZYNQ || ARCH_KEYSTONE
339484cce0dSBen Stoltz	depends on !EFI_APP
3407f7563ceSMasahiro Yamada	hex "Text Base"
3417f7563ceSMasahiro Yamada	help
3427f7563ceSMasahiro Yamada	  TODO: Move CONFIG_SYS_TEXT_BASE for all the architecture
3437f7563ceSMasahiro Yamada
344eba3fbd6SAndreas Dannenberg
34533d88183SAlexey Brodkinconfig SYS_CLK_FREQ
346e71b422bSIain Paton	depends on ARC || ARCH_SUNXI
34733d88183SAlexey Brodkin	int "CPU clock frequency"
34833d88183SAlexey Brodkin	help
34933d88183SAlexey Brodkin	  TODO: Move CONFIG_SYS_CLK_FREQ for all the architecture
35033d88183SAlexey Brodkin
35163c09417SMasahiro Yamadaconfig ARCH_FIXUP_FDT_MEMORY
35263c09417SMasahiro Yamada	bool "Enable arch_fixup_memory_banks() call"
353e2f88dfdSMichal Simek	default y
354e2f88dfdSMichal Simek	help
355e2f88dfdSMichal Simek	  Enable FDT memory map syncup before OS boot. This feature can be
356e2f88dfdSMichal Simek	  used for booting OS with different memory setup where the part of
357e2f88dfdSMichal Simek	  the memory location should be used for different purpose.
358e2f88dfdSMichal Simek
359e91c3c33SMasahiro Yamadaendmenu		# Boot images
36051631259SMasahiro Yamada
3614db98d3dSEmmanuel Vadotsource "api/Kconfig"
3624db98d3dSEmmanuel Vadot
363ed36323fSMasahiro Yamadasource "common/Kconfig"
364ed36323fSMasahiro Yamada
36572a8cf8dSSimon Glasssource "cmd/Kconfig"
36672a8cf8dSSimon Glass
367e274ef6bSPatrick Delaunaysource "disk/Kconfig"
368e274ef6bSPatrick Delaunay
369783e6a72SMasahiro Yamadasource "dts/Kconfig"
370783e6a72SMasahiro Yamada
371ed36323fSMasahiro Yamadasource "net/Kconfig"
372ed36323fSMasahiro Yamada
373ed36323fSMasahiro Yamadasource "drivers/Kconfig"
374ed36323fSMasahiro Yamada
375ed36323fSMasahiro Yamadasource "fs/Kconfig"
376ed36323fSMasahiro Yamada
377ed36323fSMasahiro Yamadasource "lib/Kconfig"
3781967982aSSimon Glass
3791967982aSSimon Glasssource "test/Kconfig"
38061304dbeSMasahiro Yamada
38161304dbeSMasahiro Yamadasource "scripts/Kconfig"
382