/u-boot/include/linux/ |
A D | kconfig.h | 30 #define IS_ENABLED(option) \ argument 31 (config_enabled(option)) 56 #define CONFIG_VAL(option) config_val(option) argument 72 #define __CONFIG_IS_ENABLED_1(option) __CONFIG_IS_ENABLED_3(option, (1), (0)) argument 73 #define __CONFIG_IS_ENABLED_2(option, case1) __CONFIG_IS_ENABLED_3(option, case1, ()) argument 74 #define __CONFIG_IS_ENABLED_3(option, case1, case0) \ argument 75 __concat(__unwrap, config_enabled(CONFIG_VAL(option))) (case1, case0) 106 #define CONFIG_IS_ENABLED(option, ...) \ argument 107 __concat(__CONFIG_IS_ENABLED_, __count_args(option, ##__VA_ARGS__)) (option, ##__VA_ARGS__)
|
A D | compiler_types.h | 239 #define __diag_ignore(compiler, version, option, comment) \ argument 240 __diag_ ## compiler(version, ignore, option) 241 #define __diag_warn(compiler, version, option, comment) \ argument 242 __diag_ ## compiler(version, warn, option) 243 #define __diag_error(compiler, version, option, comment) \ argument 244 __diag_ ## compiler(version, error, option)
|
/u-boot/arch/arm/ |
A D | config.mk | 21 $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,)) 24 LLVM_RELFLAGS := $(call cc-option,-mllvm,) \ 25 $(call cc-option,-mno-movt,) 40 $(call cc-option, -mthumb -mthumb-interwork,\ 41 $(call cc-option,-marm,)\ 42 $(call cc-option,-mno-thumb-interwork,)\ 45 PF_CPPFLAGS_ARM := $(call cc-option,-marm,) \ 46 $(call cc-option,-mno-thumb-interwork,) 81 PF_CPPFLAGS_ABI := $(call cc-option,\ 83 $(call cc-option,\ [all …]
|
/u-boot/scripts/ |
A D | Makefile.extrawarn | 24 warning-1 += $(call cc-option, -Wmissing-prototypes) 26 warning-1 += $(call cc-option, -Wmissing-include-dirs) 27 warning-1 += $(call cc-option, -Wunused-but-set-variable) 35 warning-2 += $(call cc-option, -Wlogical-op) 36 warning-2 += $(call cc-option, -Wmissing-field-initializers) 46 warning-3 += $(call cc-option, -Wpacked-bitfield-compat) 47 warning-3 += $(call cc-option, -Wvla)
|
A D | Kconfig.include | 21 # $(cc-option,<flag>) 23 cc-option = $(success,$(CC) -Werror $(1) -E -x c /dev/null -o /dev/null) 25 # $(ld-option,<flag>) 27 ld-option = $(success,$(LD) -v $(1))
|
A D | Kbuild.include | 87 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise) 101 # as-option 104 as-option = $(call try-run,\ 113 # __cc-option 118 # cc-option 120 cc-option = $(call __cc-option, $(CC),\ 123 # hostcc-option 125 hostcc-option = $(call __cc-option, $(HOSTCC),\ 128 # cc-option-yn 161 # ld-option [all …]
|
/u-boot/arch/arm/mach-omap2/omap5/ |
A D | Kconfig | 58 expected to specify a pre-computed time using the above option. 79 This config option enables Normal OPP for MPU. This is the safest 80 option for booting. 94 option for booting and choose this when unsure about other OPPs . 99 This config option enables Over drive OPP for DSPEVE. 104 This config option enables High OPP for DSPEVE. 117 This config option enables Normal OPP for IVA. This is the safest 123 This config option enables Over drive OPP for IVA. 128 This config option enables High OPP for IVA. 147 This config option enables Over drive OPP for GPU. [all …]
|
/u-boot/arch/arm/lib/ |
A D | cache-cp15.c | 30 enum dcache_option option) in set_section_phys() argument 45 value |= option; in set_section_phys() 51 void set_section_dcache(int section, enum dcache_option option) in set_section_dcache() argument 53 set_section_phys(section, (u32)section << MMU_SECTION_SHIFT, option); in set_section_dcache() 62 size_t size, enum dcache_option option) in mmu_set_region_dcache_behaviour_phys() argument 79 option); in mmu_set_region_dcache_behaviour_phys() 82 option); in mmu_set_region_dcache_behaviour_phys() 85 set_section_phys(upto, phys, option); in mmu_set_region_dcache_behaviour_phys() 101 enum dcache_option option) in mmu_set_region_dcache_behaviour() argument 103 mmu_set_region_dcache_behaviour_phys(start, start, size, option); in mmu_set_region_dcache_behaviour()
|
/u-boot/drivers/dfu/ |
A D | Kconfig | 26 This option allows performing update of DFU-managed medium with data 34 This option adds an optional timeout parameter for DFU which, if set, 40 This option enables using DFU to read and write to MMC based storage. 47 This option enables using DFU to read and write to NAND based 60 This option enables using DFU to read and write RAM on the target. 65 This option enables using DFU to read and write to SPI flash based 73 This option enables the support of "part" and "partubi" target in 81 This option enables using DFU to read and write to on any MTD device. 86 This option enables using DFU to read and write to VIRTUAL device 93 This option allows to call the function set_dfu_alt_info to
|
/u-boot/board/freescale/common/ |
A D | Kconfig | 19 This option enables two commands used for secure booting: 28 This option enables setting core voltage based on individual 35 This option enables LTC3882 voltage monitor read 42 This option enables LTC3882 voltage monitor set 49 This option enables ISL68233 voltage monitor read 56 This option enables ISL68233 voltage monitor set
|
/u-boot/arch/arm/mach-meson/ |
A D | Kconfig | 66 This option contains information about board name. 67 Based on this option board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD> will 79 This option contains information about board name. 80 Based on this option board/<CONFIG_SYS_VENDOR>/<CONFIG_SYS_BOARD> will 87 This option contains information about board configuration name. 88 Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
|
/u-boot/arch/arm/mach-imx/ |
A D | cache.c | 46 enum dcache_option option = DCACHE_WRITETHROUGH; in enable_caches() local 48 enum dcache_option option = DCACHE_WRITEBACK; in enable_caches() 62 option); in enable_caches() 65 option); in enable_caches()
|
/u-boot/tools/ |
A D | imx8image.c | 104 param_stack[p_idx].option = FLAG; in parse_cfg_cmd() 180 param_stack[p_idx].option = M40; in parse_cfg_fld() 191 param_stack[p_idx].option = in parse_cfg_fld() 197 param_stack[p_idx].option = in parse_cfg_fld() 203 param_stack[p_idx].option = in parse_cfg_fld() 665 if (img_sp->option == APPEND) { in get_container_image_start_pos() 812 switch (img_sp->option) { in build_container() 941 if (img_sp->option == M40 || img_sp->option == M41 || in build_container() 942 img_sp->option == AP || img_sp->option == DATA || in build_container() 943 img_sp->option == SCD || img_sp->option == SCFW || in build_container() [all …]
|
A D | k3_gen_x509_cert.sh | 121 for option in "${!options_help[@]}" 123 arg=`echo ${options_help[$option]}|cut -d ':' -f1` 127 echo -n "[-$option$arg] " 131 for option in "${!options_help[@]}" 133 arg=`echo ${options_help[$option]}|cut -d ':' -f1` 134 txt=`echo ${options_help[$option]}|cut -d ':' -f2` 140 echo -e " -$option$arg:$tb$txt"
|
/u-boot/arch/arm/mach-bcm283x/ |
A D | Kconfig | 58 the A, A+, B, B+, Compute Module, and Zero. This option cannot 62 This option creates a build targeting the ARM1176 ISA. 71 This option assumes the VideoCore firmware is configured to use the 74 non-default option must be present in config.txt: enable_uart=1. 78 This option creates a build targeting the ARMv7/AArch32 ISA. 87 This option also supports BCM2837-based variants such as the RPi 3 101 This option creates a build targeting the ARMv7/AArch32 ISA. 117 This option creates a build targeting the ARMv7/AArch32 ISA. 145 This option creates a build targeting the ARMv8/AArch64 ISA. 164 This option creates a build targeting the ARMv7/AArch32 ISA. [all …]
|
/u-boot/drivers/usb/musb-new/ |
A D | Makefile | 17 ccflags-y := $(call cc-option,-Wno-unused-variable) \ 18 $(call cc-option,-Wno-unused-but-set-variable) \ 19 $(call cc-option,-Wno-unused-label)
|
/u-boot/arch/arm/mach-octeontx2/ |
A D | config.mk | 2 PLATFORM_CPPFLAGS += $(call cc-option,-march=armv8.2-a,) 3 PLATFORM_CPPFLAGS += $(call cc-option,-mtune=octeontx2,)
|
/u-boot/arch/arm/mach-versal/ |
A D | Kconfig | 20 This option contains information about board configuration name. 21 Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header 48 If defined this option is used to setup different space for 56 This option if enabled defines the TCM and OCM memory and its 62 This option configures MMU with no DDR to avoid speculative
|
/u-boot/drivers/pinctrl/ |
A D | Kconfig | 49 This option enables pin multiplexing through the generic pinctrl 82 This option is an SPL-variant of the PINCTRL option. 89 This option is an TPL variant of the PINCTRL option. 98 This option is an SPL-variant of the PINCTRL_FULL option. 105 This option is an TPL-variant of the PINCTRL_FULL option. 113 This option is an SPL-variant of the PINCTRL_GENERIC option. 121 This option is an SPL-variant of the PINMUX option. 134 This option is an SPL-variant of the PINCONF option. 143 This option is an SPL-variant of the PINCONF_RECURSIVE option. 161 This option is to enable the AT91 pinctrl driver for AT91 PIO [all …]
|
/u-boot/arch/powerpc/cpu/mpc85xx/ |
A D | config.mk | 12 PLATFORM_CPPFLAGS += $(call cc-option,-mspe=yes) \ 13 $(call cc-option,-mno-spe)
|
/u-boot/lib/crypto/ |
A D | Kconfig | 4 This option provides support for a key type that holds the data for 14 This option provides support for asymmetric public key type handling. 26 This option provides support for parsing a blob containing RSA 38 This option provides support for parsing X.509 format blobs for key 49 This option provides support for parsing PKCS#7 format messages for
|
/u-boot/arch/ |
A D | Kconfig | 257 This option should contain the architecture name to build the 259 All the architectures should specify this option correctly. 264 This option should contain the CPU name to build the correct 268 leave this option empty. 273 This option should contain the SoC name to build the directory 277 leave this option empty. 290 leave this option empty. 295 This option should contain the name of the target board. 301 leave this option empty. 313 This option disables dcache flush and dcache invalidation [all …]
|
/u-boot/cmd/ |
A D | bootmenu.c | 281 const char *option; in bootmenu_create() local 302 while ((option = bootmenu_getoption(i))) { in bootmenu_create() 303 sep = strchr(option, '='); in bootmenu_create() 305 printf("Invalid bootmenu entry: %s\n", option); in bootmenu_create() 313 len = sep-option; in bootmenu_create() 319 memcpy(entry->title, option, len); in bootmenu_create() 435 char *option, *sep; in bootmenu_show() local 439 option = bootmenu_getoption(0); in bootmenu_show() 440 if (!option) { in bootmenu_show() 444 sep = strchr(option, '='); in bootmenu_show()
|
/u-boot/arch/arm/mach-zynq/ |
A D | Kconfig | 34 This option used to perform DDR specific initialization 36 want to skip ddr init and this option is useful for it. 53 This option contains information about board configuration name. 54 Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
|
/u-boot/drivers/clk/at91/ |
A D | Kconfig | 6 This option is used to enable the AT91 clock driver. 23 This option is used to enable the AT91 UTMI PLL clock 34 This option is used to enable the USB Input Clock, from 42 This option is used to enable the AT91 H32MX matrixes 52 This option is used to enable the AT91 generic clock 62 This option is used to enable the AT91 SAM9X60's PLL clock
|