Home
last modified time | relevance | path

Searched refs:opt (Results 1 – 25 of 47) sorted by relevance

12

/rk3399_rockchip-uboot/include/
H A Dhwconfig.h20 extern int hwconfig_f(const char *opt, char *buf);
21 extern const char *hwconfig_arg_f(const char *opt, size_t *arglen, char *buf);
22 extern int hwconfig_arg_cmp_f(const char *opt, const char *arg, char *buf);
23 extern int hwconfig_sub_f(const char *opt, const char *subopt, char *buf);
24 extern const char *hwconfig_subarg_f(const char *opt, const char *subopt,
26 extern int hwconfig_subarg_cmp_f(const char *opt, const char *subopt,
30 static inline int hwconfig_f(const char *opt, char *buf) in hwconfig_f() argument
35 static inline const char *hwconfig_arg_f(const char *opt, size_t *arglen, in hwconfig_arg_f() argument
42 static inline int hwconfig_arg_cmp_f(const char *opt, const char *arg, in hwconfig_arg_cmp_f() argument
48 static inline int hwconfig_sub_f(const char *opt, const char *subopt, char *buf) in hwconfig_sub_f() argument
[all …]
/rk3399_rockchip-uboot/common/
H A Dhwconfig.c30 const char *opt, char *stopchs, char eqch, in hwconfig_parse()
33 size_t optlen = strlen(opt); in hwconfig_parse()
39 str = strstr(opts, opt); in hwconfig_parse()
72 static const char *__hwconfig(const char *opt, size_t *arglen, in __hwconfig() argument
89 opt, ";", ':', arglen); in __hwconfig()
95 opt, ";", ':', arglen); in __hwconfig()
100 opt, ";", ':', arglen); in __hwconfig()
123 int hwconfig_f(const char *opt, char *buf) in hwconfig_f() argument
125 return !!__hwconfig(opt, NULL, buf); in hwconfig_f()
141 const char *hwconfig_arg_f(const char *opt, size_t *arglen, char *buf) in hwconfig_arg_f() argument
[all …]
H A Dcli_hush.c3388 int opt; local
3438 while ((opt = getopt(argc, argv, "c:xif")) > 0) {
3439 switch (opt) {
3444 opt = parse_string_outer(optarg, FLAG_PARSE_SEMICOLON);
3487 opt=parse_file_outer(stdin);
3495 opt = parse_file_outer(input);
3515 return(opt?opt:last_return_code);
/rk3399_rockchip-uboot/drivers/dma/
H A Dti-edma3.c91 u32 opt; in edma3_set_dest() local
96 opt = __raw_readl(&rg->opt); in edma3_set_dest()
98 opt = (opt & EDMA3_SLOPT_FIFO_WIDTH_MASK) | in edma3_set_dest()
102 opt &= ~EDMA3_SLOPT_DST_ADDR_CONST_MODE; in edma3_set_dest()
104 __raw_writel(opt, &rg->opt); in edma3_set_dest()
162 u32 opt; in edma3_set_src() local
167 opt = __raw_readl(&rg->opt); in edma3_set_src()
169 opt = (opt & EDMA3_SLOPT_FIFO_WIDTH_MASK) | in edma3_set_src()
173 opt &= ~EDMA3_SLOPT_DST_ADDR_CONST_MODE; in edma3_set_src()
175 __raw_writel(opt, &rg->opt); in edma3_set_src()
[all …]
/rk3399_rockchip-uboot/drivers/phy/marvell/
H A Dcomphy_mux.c24 int lane, opt, valid; in comphy_mux_check_config() local
35 for (opt = 0, valid = 0; opt < mux_data->max_lane_values; in comphy_mux_check_config()
36 opt++, mux_opt++) { in comphy_mux_check_config()
61 int opt; in comphy_mux_get_mux_value() local
67 for (opt = 0 ; opt < mux_data->max_lane_values; opt++, mux_opt++) { in comphy_mux_get_mux_value()
/rk3399_rockchip-uboot/board/phytec/phycore_rk3288/
H A Dphycore-rk3288.c77 struct rk3288_som opt; in rk3288_board_late_init() local
97 ret = i2c_eeprom_read(dev, 0, (uint8_t *)&opt, in rk3288_board_late_init()
104 if (opt.api_version != 0 || !valid_rk3288_som(&opt)) { in rk3288_board_late_init()
109 if (is_valid_ethaddr(opt.mac)) in rk3288_board_late_init()
110 eth_env_set_enetaddr("ethaddr", opt.mac); in rk3288_board_late_init()
/rk3399_rockchip-uboot/lib/efi_loader/
H A Defi_image_loader.c127 IMAGE_OPTIONAL_HEADER64 *opt = &nt64->OptionalHeader; in efi_load_pe() local
128 image_size = opt->SizeOfImage; in efi_load_pe()
135 entry = efi_reloc + opt->AddressOfEntryPoint; in efi_load_pe()
136 rel_size = opt->DataDirectory[rel_idx].Size; in efi_load_pe()
137 rel = efi_reloc + opt->DataDirectory[rel_idx].VirtualAddress; in efi_load_pe()
140 IMAGE_OPTIONAL_HEADER32 *opt = &nt->OptionalHeader; in efi_load_pe() local
141 image_size = opt->SizeOfImage; in efi_load_pe()
148 entry = efi_reloc + opt->AddressOfEntryPoint; in efi_load_pe()
149 rel_size = opt->DataDirectory[rel_idx].Size; in efi_load_pe()
150 rel = efi_reloc + opt->DataDirectory[rel_idx].VirtualAddress; in efi_load_pe()
/rk3399_rockchip-uboot/arch/sandbox/cpu/
H A Dstart.c48 struct sandbox_cmdline_option *opt = sb_opt[i]; in sandbox_early_getopt_check() local
51 if (opt->flag_short >= 0x100) in sandbox_early_getopt_check()
54 printf(" -%c, ", opt->flag_short); in sandbox_early_getopt_check()
57 if (opt->has_arg) in sandbox_early_getopt_check()
58 printf("--%-*s <arg> ", max_arg_len, opt->flag); in sandbox_early_getopt_check()
60 printf("--%-*s", max_noarg_len, opt->flag); in sandbox_early_getopt_check()
63 printf(" %s\n", opt->help); in sandbox_early_getopt_check()
/rk3399_rockchip-uboot/arch/arm/mach-rockchip/
H A Dmake_fit_atf.py219 for opt, val in opts:
220 if opt == "-o":
222 elif opt == "-u":
224 elif opt == "-b":
226 elif opt == "-h":
/rk3399_rockchip-uboot/tools/
H A Ddumpimage.c60 int opt; in main() local
69 while ((opt = getopt(argc, argv, "li:o:T:p:V")) != -1) { in main()
70 switch (opt) { in main()
H A Dproftool.c568 int opt; in main() local
571 while ((opt = getopt(argc, argv, "m:p:t:v:")) != -1) { in main()
572 switch (opt) { in main()
H A Dmkimage.c146 int opt; in process_args() local
148 while ((opt = getopt(argc, argv, in process_args()
150 switch (opt) { in process_args()
H A Difdtool.c814 int opt, option_index = 0; in main() local
854 while ((opt = getopt_long(argc, argv, "cdD:ef:hi:lr:s:uU:vw:x?", in main()
856 switch (opt) { in main()
H A Dfdtgrep.c1072 int opt; in scan_args() local
1074 while ((opt = util_getopt_long()) != EOF) { in scan_args()
1078 switch (opt) { in scan_args()
/rk3399_rockchip-uboot/arch/arm/include/asm/ti-common/
H A Dti-edma3.h61 u32 opt; member
79 u32 opt; member
/rk3399_rockchip-uboot/doc/driver-model/
H A Dremoteproc-framework.txt55 +-> | | (opt) | |
60 +---v-----+ (opt) |
63 (opt) +---------+
66 opt: Optional state transition implemented by driver.
/rk3399_rockchip-uboot/scripts/dtc/
H A Ddtc.c177 int opt; in main() local
188 while ((opt = util_getopt_long()) != EOF) { in main()
189 switch (opt) { in main()
/rk3399_rockchip-uboot/tools/gdb/
H A DMakefile30 BFD_ROOT_DIR = /opt/powerpc
/rk3399_rockchip-uboot/arch/sandbox/include/asm/
H A Dgetopt.h31 int (*callback)(struct sandbox_state *state, const char *opt);
/rk3399_rockchip-uboot/scripts/kconfig/
H A Dconf.c495 int opt; in main() local
505 while ((opt = getopt_long(ac, av, "s", long_opts, NULL)) != -1) { in main()
506 if (opt == 's') { in main()
510 input_mode = (enum input_mode)opt; in main()
511 switch (opt) { in main()
/rk3399_rockchip-uboot/board/keymile/scripts/
H A Ddevelop-common.txt8 toolchain=/opt/eldk
/rk3399_rockchip-uboot/test/stdint/
H A Dtest-includes.sh58 try_both seaboard arm tegra20 /opt/linaro/gcc-linaro-arm-linux-gnueabihf-4.8-2013.08_linux/bin/arm-…
/rk3399_rockchip-uboot/board/freescale/mx35pdk/
H A DREADME33 …e=ttymxc0,115200 root=/dev/nfsroot rootfstype=nfsroot nfsroot=192.168.1.1:/opt/eldk-4.2-arm/armVFP…
69 …e=ttymxc0,115200 root=/dev/nfsroot rootfstype=nfsroot nfsroot=192.168.1.1:/opt/eldk-4.2-arm/arm rw…
/rk3399_rockchip-uboot/arch/arm/dts/
H A Dam335x-draco.dtsi133 ti,nand-ecc-opt = "bch8";
H A Ddm8168-evm.dts97 ti,nand-ecc-opt = "bch8";

12