| /rk3399_rockchip-uboot/tools/buildman/ |
| H A D | control.py | 26 def GetActionSummary(is_summary, commits, selected, options): argument 34 count = (count + options.step - 1) / options.step 41 str += ' (%d thread%s, %d job%s per thread)' % (options.threads, 42 GetPlural(options.threads), options.jobs, GetPlural(options.jobs)) 45 def ShowActions(series, why_selected, boards_selected, builder, options): argument 68 options) 71 for upto in range(0, len(series.commits), options.step): 79 if options.verbose: 84 def DoBuildman(options, args, toolchains=None, make_func=None, boards=None, argument 102 if options.full_help: [all …]
|
| H A D | buildman | 55 options, args = cmdline.ParseArgs() variable 58 if options.test: 63 bsettings.Setup(options.config_file) 64 ret_code = control.DoBuildman(options, args)
|
| H A D | buildman.py | 55 options, args = cmdline.ParseArgs() variable 58 if options.test: 63 bsettings.Setup(options.config_file) 64 ret_code = control.DoBuildman(options, args)
|
| H A D | test.py | 291 options = Options() 292 options.git = os.getcwd() 293 options.summary = False 294 options.jobs = None 295 options.dry_run = False 297 options.branch = 'test-buildman' 298 options.force_build = False 299 options.list_tool_chains = False 300 options.count = -1 301 options.git_dir = None [all …]
|
| /rk3399_rockchip-uboot/tools/patman/ |
| H A D | patman.py | 75 (options, args) = parser.parse_args() 76 settings.Setup(parser, options.project, '') 77 (options, args) = parser.parse_args() 83 elif options.test: 106 elif options.cc_cmd: 107 fd = open(options.cc_cmd, 'r') 118 elif options.full_help: 130 if options.count == -1: 132 options.count = gitutil.CountCommitsToBranch() - options.start 135 if not options.count: [all …]
|
| H A D | patman | 75 (options, args) = parser.parse_args() 76 settings.Setup(parser, options.project, '') 77 (options, args) = parser.parse_args() 83 elif options.test: 106 elif options.cc_cmd: 107 fd = open(options.cc_cmd, 'r') 118 elif options.full_help: 130 if options.count == -1: 132 options.count = gitutil.CountCommitsToBranch() - options.start 135 if not options.count: [all …]
|
| /rk3399_rockchip-uboot/tools/binman/ |
| H A D | control.py | 56 def Binman(options, args): argument 68 if options.full_help: 78 if options.dt: 79 dtb_fname = options.dt 81 board = options.board 84 board_pathname = os.path.join(options.build_dir, board) 86 if not options.indir: 87 options.indir = ['.'] 88 options.indir.append(board_pathname) 91 tout.Init(options.verbosity) [all …]
|
| H A D | binman.py | 63 'tools/binman/binman.py -t' % options.build_dir) 73 def RunBinman(options, args): argument 85 if not options.debug: 88 if options.test: 91 elif options.test_coverage: 94 elif options.full_help: 104 ret_code = control.Binman(options, args) 107 if options.debug: 115 (options, args) = cmdline.ParseArgs(sys.argv) 116 ret_code = RunBinman(options, args)
|
| H A D | binman | 63 'tools/binman/binman.py -t' % options.build_dir) 73 def RunBinman(options, args): argument 85 if not options.debug: 88 if options.test: 91 elif options.test_coverage: 94 elif options.full_help: 104 ret_code = control.Binman(options, args) 107 if options.debug: 115 (options, args) = cmdline.ParseArgs(sys.argv) 116 ret_code = RunBinman(options, args)
|
| /rk3399_rockchip-uboot/drivers/crypto/fsl/ |
| H A D | desc_constr.h | 89 static inline void init_desc(u32 *desc, u32 options) in init_desc() argument 91 *desc = (options | HDR_ONE) + 1; in init_desc() 94 static inline void init_job_desc(u32 *desc, u32 options) in init_job_desc() argument 96 init_desc(desc, CMD_DESC_HDR | options); in init_job_desc() 99 static inline void init_job_desc_pdb(u32 *desc, u32 options, size_t pdb_bytes) in init_job_desc_pdb() argument 105 options); in init_job_desc_pdb() 189 static inline u32 *append_##cmd(u32 *desc, u32 options) \ 193 append_cmd(desc, CMD_##op | options); \ 212 static inline void append_##cmd(u32 *desc, u32 options) \ 215 append_cmd(desc, CMD_##op | options); \ [all …]
|
| H A D | jobdesc.c | 182 u32 options; in inline_cnstr_jobdesc_hash() local 193 options = LDST_CLASS_2_CCB | FIFOLD_TYPE_MSG | FIFOLD_TYPE_LAST2; in inline_cnstr_jobdesc_hash() 195 options |= FIFOLDST_SGF; in inline_cnstr_jobdesc_hash() 197 options |= FIFOLDST_EXT; in inline_cnstr_jobdesc_hash() 198 append_fifo_load(desc, dma_addr_in, 0, options); in inline_cnstr_jobdesc_hash() 201 append_fifo_load(desc, dma_addr_in, msgsz, options); in inline_cnstr_jobdesc_hash()
|
| /rk3399_rockchip-uboot/tools/ |
| H A D | moveconfig.py | 535 def confirm(options, prompt): argument 536 if not options.yes: 549 def cleanup_one_header(header_path, patterns, options): argument 600 show_diff(lines, tolines, header_path, options.color) 602 if options.dry_run: 609 def cleanup_headers(configs, options): argument 616 if not confirm(options, 'Clean up headers?'): 631 patterns, options) 633 def cleanup_one_extra_option(defconfig_path, configs, options): argument 673 show_diff(lines, tolines, defconfig_path, options.color) [all …]
|
| H A D | microcode-tool.py | 274 (options, args) = parser.parse_args() 281 if (not not options.mcfile) != (not not options.mcfile): 283 if options.headerfile: 284 date, license_text, microcodes = ParseHeaderFiles(options.headerfile) 285 elif options.mcfile: 286 date, license_text, microcodes = ParseFile(options.mcfile) 291 List(date, microcodes, options.model) 295 if not options.model: 297 model = options.model.lower() 298 if options.model == 'all': [all …]
|
| H A D | microcode-tool | 274 (options, args) = parser.parse_args() 281 if (not not options.mcfile) != (not not options.mcfile): 283 if options.headerfile: 284 date, license_text, microcodes = ParseHeaderFiles(options.headerfile) 285 elif options.mcfile: 286 date, license_text, microcodes = ParseFile(options.mcfile) 291 List(date, microcodes, options.model) 295 if not options.model: 297 model = options.model.lower() 298 if options.model == 'all': [all …]
|
| /rk3399_rockchip-uboot/drivers/mtd/nand/raw/ |
| H A D | nand_bbt.c | 112 if (td->options & NAND_BBT_NO_OOB) in check_pattern() 149 if (!(td->options & NAND_BBT_NO_OOB)) in add_marker_len() 153 if (td->options & NAND_BBT_VERSION) in add_marker_len() 176 int bits = td->options & NAND_BBT_NRBITS_MSK; in read_bbt() 267 if (td->options & NAND_BBT_PERCHIP) { in read_abs_bbt() 295 if (td->options & NAND_BBT_VERSION) in scan_read_data() 345 if (td->options & NAND_BBT_NO_OOB) in scan_read() 371 if (!(td->options & NAND_BBT_NO_OOB)) in bbt_get_ver_offs() 392 if (td->options & NAND_BBT_VERSION) { in read_abs_bbts() 401 if (md && (md->options & NAND_BBT_VERSION)) { in read_abs_bbts() [all …]
|
| /rk3399_rockchip-uboot/tools/dtoc/ |
| H A D | dtoc.py | 68 (options, args) = parser.parse_args() 71 if options.test: 75 dtb_platdata.run_steps(args, options.dtb_file, options.include_disabled, 76 options.output)
|
| H A D | dtoc | 68 (options, args) = parser.parse_args() 71 if options.test: 75 dtb_platdata.run_steps(args, options.dtb_file, options.include_disabled, 76 options.output)
|
| /rk3399_rockchip-uboot/drivers/video/ |
| H A D | videomodes.h | 82 unsigned int *depth, unsigned int *freq, const char **options); 87 const char **options); 89 void video_get_option_string(const char *options, const char *name, 92 int video_get_option_int(const char *options, const char *name, int def);
|
| H A D | videomodes.c | 236 unsigned int *depth, unsigned int *freq, const char **options) in video_get_video_mode() argument 277 *options = p ? p + 1 : NULL; in video_get_video_mode() 296 const char **options) in video_get_ctfb_res_modes() argument 302 *options = NULL; in video_get_ctfb_res_modes() 304 if (!video_get_video_mode(&xres, &yres, &depth, &refresh, options)) in video_get_ctfb_res_modes() 332 void video_get_option_string(const char *options, const char *name, in video_get_option_string() argument 335 const char *p = options; in video_get_option_string() 363 int video_get_option_int(const char *options, const char *name, int def) in video_get_option_int() argument 365 const char *p = options; in video_get_option_int()
|
| /rk3399_rockchip-uboot/drivers/ddr/fsl/ |
| H A D | Makefile | 7 obj-$(CONFIG_SYS_FSL_DDR1) += main.o util.o ctrl_regs.o options.o \ 9 obj-$(CONFIG_SYS_FSL_DDR2) += main.o util.o ctrl_regs.o options.o \ 11 obj-$(CONFIG_SYS_FSL_DDR3) += main.o util.o ctrl_regs.o options.o \ 13 obj-$(CONFIG_SYS_FSL_DDR4) += main.o util.o ctrl_regs.o options.o \
|
| /rk3399_rockchip-uboot/arch/arm/ |
| H A D | Kconfig.debug | 21 selecting one of the platform specific options above if 25 options; the platform specific options are deprecated 36 # Compatibility options for 8250
|
| /rk3399_rockchip-uboot/board/birdland/bav335x/ |
| H A D | README | 25 When removing options as part of customization, 27 needs and to remove no longer relevant options as in some cases we 29 note that all of the SPL options are grouped together, rather than with
|
| /rk3399_rockchip-uboot/include/fsl-mc/ |
| H A D | fsl_dpni.h | 127 MC_CMD_OP(cmd, 1, 0, 32, uint32_t, cfg->adv.options); \ 181 MC_RSP_OP(cmd, 1, 0, 32, uint32_t, attr->options); \ 219 MC_CMD_OP(cmd, 0, 32, 32, uint32_t, layout->options); \ 244 MC_CMD_OP(cmd, 0, 32, 32, uint32_t, layout->options); \ 269 MC_CMD_OP(cmd, 0, 32, 32, uint32_t, layout->options); \ 304 MC_CMD_OP(cmd, 2, 0, 64, uint64_t, cfg->options);\ 312 MC_RSP_OP(cmd, 2, 0, 64, uint64_t, state->options);\ 368 MC_CMD_OP(cmd, 2, 0, 32, uint32_t, cfg->options);\ 397 MC_CMD_OP(cmd, 2, 32, 32, uint32_t, cfg->options); \ 403 MC_CMD_OP(cmd, 3, 32, 32, uint32_t, cfg->flc_cfg.options);\ [all …]
|
| H A D | fsl_dpmac.h | 74 MC_RSP_OP(cmd, 0, 0, 64, uint64_t, cfg->options); \ 81 MC_CMD_OP(cmd, 0, 0, 64, uint64_t, cfg->options); \ 334 uint64_t options; member 359 uint64_t options; member
|
| /rk3399_rockchip-uboot/include/linux/mtd/ |
| H A D | bbm.h | 48 int options; member 146 int options; member
|