Home
last modified time | relevance | path

Searched refs:option (Results 1 – 25 of 438) sorted by relevance

12345678910>>...18

/rk3399_rockchip-uboot/include/linux/
H A Dkconfig.h30 #define IS_ENABLED(option) \ argument
31 (config_enabled(option) || config_enabled(option##_MODULE))
38 #define IS_BUILTIN(option) config_enabled(option) argument
44 #define IS_MODULE(option) config_enabled(option##_MODULE) argument
79 #define CONFIG_VAL(option) config_val(option) argument
87 #define CONFIG_IS_ENABLED(option) \ argument
88 (config_enabled(CONFIG_VAL(option)) || \
89 config_enabled(CONFIG_VAL(option##_MODULE)))
97 #define CONFIG_IS_BUILTIN(option) config_enabled(CONFIG_VAL(option)) argument
105 #define CONFIG_IS_MODULE(option) config_enabled(CONFIG_VAL(option##_MODULE)) argument
/rk3399_rockchip-uboot/arch/arm/
H A Dconfig.mk22 PLATFORM_RELFLAGS += $(call cc-option, -msoft-float) \
23 $(call cc-option,-mshort-load-bytes,$(call cc-option,-malignment-traps,))
26 LLVMS_RELFLAGS := $(call cc-option,-mllvm,) \
27 $(call cc-option,-target arm-none-eabi,) \
28 $(call cc-option,-arm-use-movt=0,)
41 AFLAGS_IMPLICIT_IT := $(call as-option,-Wa$(comma)-mimplicit-it=always)
43 $(call cc-option, -mthumb -mthumb-interwork,\
44 $(call cc-option,-marm,)\
45 $(call cc-option,-mno-thumb-interwork,)\
48 PF_CPPFLAGS_ARM := $(call cc-option,-marm,) \
[all …]
/rk3399_rockchip-uboot/arch/arm/mach-omap2/omap5/
H A DKconfig51 expected to specify a pre-computed time using the above option.
72 This config option enables Normal OPP for MPU. This is the safest
73 option for booting.
86 This config option enables Normal OPP for DSPEVE. This is the safest
87 option for booting and choose this when unsure about other OPPs .
92 This config option enables Over drive OPP for DSPEVE.
97 This config option enables High OPP for DSPEVE.
110 This config option enables Normal OPP for IVA. This is the safest
111 option for booting and choose this when unsure about other OPPs .
116 This config option enables Over drive OPP for IVA.
[all …]
/rk3399_rockchip-uboot/scripts/
H A DMakefile.extrawarn26 warning-1 += $(call cc-option, -Wmissing-prototypes)
28 warning-1 += $(call cc-option, -Wmissing-include-dirs)
29 warning-1 += $(call cc-option, -Wunused-but-set-variable)
37 warning-2 += $(call cc-option, -Wlogical-op)
38 warning-2 += $(call cc-option, -Wmissing-field-initializers)
48 warning-3 += $(call cc-option, -Wpacked-bitfield-compat)
49 warning-3 += $(call cc-option, -Wvla)
H A DKbuild.include87 # Usage: option = $(call try-run, $(CC)...-o "$$TMP",option-ok,otherwise)
88 # Exit code chooses option. "$$TMP" is can be used as temporary file and
90 # modifed for U-Boot: prevent cc-option from leaving .*.su files
101 # as-option
102 # Usage: cflags-y += $(call as-option,-Wa$(comma)-isa=foo,)
104 as-option = $(call try-run,\
113 # cc-option
114 # Usage: cflags-y += $(call cc-option,-march=winchip-c6,-march=i586)
116 cc-option = $(call try-run,\
119 # cc-option-yn
[all …]
/rk3399_rockchip-uboot/drivers/dfu/
H A DKconfig10 This option allows performing update of DFU-managed medium with data
18 This option enables using DFU to read and write to MMC based storage.
23 This option enables using DFU to read and write to NAND based
29 This option enables using DFU to read and write to MTD based
35 This option enables using DFU to read and write RAM on the target.
40 This option enables using DFU to read and write to SPI flash based
/rk3399_rockchip-uboot/drivers/video/rk_eink/
H A DKconfig5 Choose this option to enable support for EBC TCON controller
11 Choose this option to enable support for TPS65185, which is
18 Choose this option to enable support for eink display, which is
28 Choose this option to enable support for FP9931 PMIC.
36 Choose this option to enable support for SY7636A PMIC.
/rk3399_rockchip-uboot/scripts/kconfig/
H A Dkxgettext.c85 const char *option; member
92 static struct message *message__new(const char *msg, char *option, in message__new() argument
108 self->option = option; in message__new()
149 static int message__add(const char *msg, char *option, const char *file, in message__add() argument
160 m = message__new(escaped, option, file, lineno); in message__add()
194 if (self->option != NULL) in message__print_file_lineno()
195 printf("# %s:00000\n", self->option); in message__print_file_lineno()
/rk3399_rockchip-uboot/arch/arm/mach-imx/
H A Dcache.c17 enum dcache_option option = DCACHE_WRITETHROUGH; in enable_caches() local
19 enum dcache_option option = DCACHE_WRITEBACK; in enable_caches()
30 option); in enable_caches()
33 option); in enable_caches()
/rk3399_rockchip-uboot/arch/
H A DKconfig138 This option should contain the architecture name to build the
140 All the architectures should specify this option correctly.
145 This option should contain the CPU name to build the correct
149 leave this option empty.
154 This option should contain the SoC name to build the directory
158 leave this option empty.
163 This option should contain the vendor name of the target board.
171 leave this option empty.
176 This option should contain the name of the target board.
182 leave this option empty.
[all …]
/rk3399_rockchip-uboot/drivers/pinctrl/
H A DKconfig24 If this option is disabled (it is the only possible choice for non-DT
41 this option and implement your own set_state callback in the pinctrl
49 This option enables pin multiplexing through the generic pinctrl
59 This option enables pin configuration through the generic pinctrl
73 If the option is disabled, this behavior is deactivated and only
82 This option is an SPL-variant of the PINCTRL option.
91 This option is an SPL-variant of the PINCTRL_FULL option.
99 This option is an SPL-variant of the PINCTRL_GENERIC option.
107 This option is an SPL-variant of the PINMUX option.
113 enable this option. You will need to enable device tree in SPL
[all …]
/rk3399_rockchip-uboot/drivers/usb/musb-new/
H A DMakefile18 ccflags-y := $(call cc-option,-Wno-unused-variable) \
19 $(call cc-option,-Wno-unused-but-set-variable) \
20 $(call cc-option,-Wno-unused-label)
/rk3399_rockchip-uboot/arch/arm/mach-bcm283x/
H A DKconfig40 the A, A+, B, B+, Compute Module, and Zero. This option cannot
44 This option creates a build targetting the ARM1176 ISA.
53 This option also supports BCM2837-based variants such as the RPi 3
67 This option creates a build targetting the ARMv7/AArch32 ISA.
76 This option assumes the VideoCore firmware is configured to use the
79 default option must be present in config.txt: enable_uart=1. This is
83 This option creates a build targetting the ARMv7/AArch32 ISA.
92 This option assumes the VideoCore firmware is configured to use the
95 default option must be present in config.txt: enable_uart=1. This is
99 At the time of writing, the VC FW requires a non-default option in
[all …]
/rk3399_rockchip-uboot/cmd/
H A Dbootmenu.c251 const char *option; in bootmenu_create() local
267 while ((option = bootmenu_getoption(i))) { in bootmenu_create()
268 sep = strchr(option, '='); in bootmenu_create()
270 printf("Invalid bootmenu entry: %s\n", option); in bootmenu_create()
278 len = sep-option; in bootmenu_create()
284 memcpy(entry->title, option, len); in bootmenu_create()
366 char *option, *sep; in bootmenu_show() local
370 option = bootmenu_getoption(0); in bootmenu_show()
371 if (!option) { in bootmenu_show()
375 sep = strchr(option, '='); in bootmenu_show()
/rk3399_rockchip-uboot/board/coreboot/coreboot/
H A DKconfig32 This option selects the board configuration file in include/configs/
39 This option selects the board Device Tree Source (dts) file in
46 This option specifies the board specific Cache-As-RAM (CAR) address.
52 This option specifies the board specific Cache-As-RAM (CAR) size.
/rk3399_rockchip-uboot/arch/powerpc/cpu/mpc85xx/
H A Dconfig.mk13 PLATFORM_CPPFLAGS += $(call cc-option,-mspe=yes) \
14 $(call cc-option,-mno-spe)
/rk3399_rockchip-uboot/arch/arm/lib/
H A Dcache-cp15.c25 void set_section_dcache(int section, enum dcache_option option) in set_section_dcache() argument
40 value |= option; in set_section_dcache()
52 enum dcache_option option) in mmu_set_region_dcache_behaviour() argument
66 option); in mmu_set_region_dcache_behaviour()
69 option); in mmu_set_region_dcache_behaviour()
72 set_section_dcache(upto, option); in mmu_set_region_dcache_behaviour()
/rk3399_rockchip-uboot/arch/arm/mach-zynq/
H A DKconfig34 This option used to perform DDR specific initialization
36 want to skip ddr init and this option is useful for it.
52 This option contains information about board configuration name.
53 Based on this option include/configs/<CONFIG_SYS_CONFIG_NAME>.h header
/rk3399_rockchip-uboot/doc/
H A DREADME.fsl-hwconfig4 option. See README.hwconfig for general information about 'hwconfig'.
9 This option specifies which of the two oscillator frequencies should be
12 12.288MHz. This option has two effects. First, the MUX on the board
26 This option specifies the following for a USB controller:
/rk3399_rockchip-uboot/drivers/video/drm/
H A DKconfig70 enable HDMI on, you should selet this option.
78 enable HDMI on, you should select this option.
86 enable HDMI on, you should selet this option.
94 this option.
134 option.
146 option.
155 on RK3588 based SoC, you should select this option.
165 on RK3288 based SoC, you should selet this option.
172 Choose this option to enable support for Rockchip LVDS controllers.
182 Choose this option to enable support for Rockchip RGB driver.
[all …]
/rk3399_rockchip-uboot/drivers/pinctrl/rockchip/
H A DKconfig15 This option is an SPL-variant of the PINCTRL_ROCKCHIP option.
/rk3399_rockchip-uboot/drivers/sound/
H A DKconfig20 SoC to the audio codec. This option enables sound support using
29 data to an audio codec. This option enables support for this,
31 option provides an implementation for sound_init() and
39 data to an audio codec. This option enables support for this,
41 option provides an implementation for sound_init() and
70 sound on the host machine. This option implements the sound_init()
/rk3399_rockchip-uboot/dts/
H A DKconfig44 U-Boot's device tree (e.g. to delete device from it). This option
55 which is not enough to support device tree. Enable this option to
73 which is not enough to support device tree. Enable this option to
83 can invalidate driver-model device tree offsets. This option
95 If this option is enabled, the device tree will be built and
101 If this option is enabled, the device tree will be picked up and
110 If this option is enabled, the device tree will be provided by
118 If this option is enabled, DTB will be read from a file on startup.
125 If this option is enabled, the device tree used for DT
135 This option specifies the default Device Tree used for DT control.
[all …]
/rk3399_rockchip-uboot/drivers/clk/at91/
H A DKconfig6 This option is used to enable the AT91 clock driver.
19 This option is used to enable the AT91 UTMI PLL clock
30 This option is used to enable the AT91 H32MX matrixes
40 This option is used to enable the AT91 generic clock
/rk3399_rockchip-uboot/board/rockchip/evb_rk3399/
H A DREADME72 Both origin binaries and Tool are ready now, choose either option 1 or
73 option 2 to deploy U-Boot.
78 Package the image for U-Boot SPL(option 1)
85 Package the image for Rockchip miniloader(option 2)
97 Flash the image with U-Boot SPL(option 1)
105 Flash the image with Rockchip miniloader(option 2)

12345678910>>...18