/SCP-firmware-master/tools/ |
A D | product.py | 55 cmd = 'make -f Makefile.cmake ' 56 cmd += 'PRODUCT={} TOOLCHAIN={} MODE={} '.format(self.name, 60 cmd += 'LOG_LEVEL={} '.format(self.log_level.name) 62 cmd += 'PLATFORM_VARIANT=\"{}\" '.format(self.variant.name) 64 cmd += Build.__extra_arg__(extra) 66 cmd += Build.__extra_arg__(extra) 68 cmd += Build.__extra_arg__(extra) 69 return cmd
|
A D | build_string.py | 16 cmd = 'git describe --tags --dirty --always' 17 output = subprocess.check_output(cmd.split())
|
A D | cppcheck_wrapper.py | 54 cmd = "{} {}".format(tool_path, tool_args) 95 print_msg(cmd, output=verbose) 97 r = subprocess.Popen(cmd,
|
A D | check_style.py | 76 cmd = '{} {}'.format(checkpatch_params, filename) 79 subprocess.check_call(cmd, shell=True, stdin=0)
|
/SCP-firmware-master/product/n1sdp/module/n1sdp_c2c/include/ |
A D | mod_n1sdp_c2c_i2c.h | 122 int (*set_state)(enum n1sdp_c2c_cmd cmd, uint8_t pd_id, uint8_t pd_type); 134 *get_state)(enum n1sdp_c2c_cmd cmd, uint8_t pd_id, unsigned int *state); 145 enum n1sdp_c2c_cmd cmd,
|
/SCP-firmware-master/product/synquacer/include/ |
A D | qspi_api.h | 148 #define IS_QSPI_COMMAND_EMPTY(cmd) \ argument 149 (cmd.code == 0 && cmd.len.code_byte == 0 && cmd.len.addr_byte == 0 && \ 150 cmd.len.alt_byte == 0 && cmd.len.dummy_cycle == 0 && \ 151 cmd.len.data_byte == 0)
|
/SCP-firmware-master/product/morello/module/scmi_agent/src/ |
A D | mod_scmi_agent.c | 60 struct mod_smt_command_config *cmd) in _scmi_agent_transact() argument 74 status = ctx.smt_api->send(agent_ctx->config->transport_id, cmd); in _scmi_agent_transact() 105 struct mod_smt_command_config cmd = { in agent_get_protocol_version() local 124 status = _scmi_agent_transact(agent_id, &cmd); in agent_get_protocol_version() 138 struct mod_smt_command_config cmd = { in agent_get_clock_status() local 148 status = _scmi_agent_transact(agent_id, &cmd); in agent_get_clock_status() 165 struct mod_smt_command_config cmd = { in agent_get_chipid_info() local 175 status = _scmi_agent_transact(agent_id, &cmd); in agent_get_chipid_info()
|
/SCP-firmware-master/product/n1sdp/module/scmi_agent/src/ |
A D | mod_scmi_agent.c | 56 struct mod_smt_command_config *cmd) in _scmi_agent_transact() argument 70 status = ctx.smt_api->send(agent_ctx->config->transport_id, cmd); in _scmi_agent_transact() 101 struct mod_smt_command_config cmd = { in agent_get_protocol_version() local 111 status = _scmi_agent_transact(agent_id, &cmd); in agent_get_protocol_version() 125 struct mod_smt_command_config cmd = { in agent_get_clock_status() local 135 status = _scmi_agent_transact(agent_id, &cmd); in agent_get_clock_status() 151 struct mod_smt_command_config cmd = { in agent_get_chipid_info() local 161 status = _scmi_agent_transact(agent_id, &cmd); in agent_get_chipid_info()
|
/SCP-firmware-master/docker/rootfs/usr/local/bin/ |
A D | prepare_llvm | 39 cmd() { 44 cmdp() { logln $1; echo -n " $1..."; shift; cmd $@; echo "ok!"; } 85 cmd chmod +x $TMP_FOLDER/install-llvm.sh 93 cmd cd ${TMP_FOLDER}/compiler-rt-13.0.1.src 96 cmd mkdir -p $BAREMETAL_PATH
|
/SCP-firmware-master/product/morello/module/morello_smt/src/ |
A D | mod_smt.c | 232 static int smt_send(fwk_id_t channel_id, struct mod_smt_command_config *cmd) in smt_send() argument 240 if (((cmd->size != 0) && (cmd->payload == NULL)) || in smt_send() 241 (cmd->size > channel_ctx->max_payload_size)) { in smt_send() 255 if (cmd->payload != NULL) in smt_send() 256 memcpy(memory->payload, cmd->payload, cmd->size); in smt_send() 258 SCMI_MESSAGE_HEADER(cmd->message_id, cmd->protocol_id, 0); in smt_send() 259 memory->length = sizeof(memory->message_header) + cmd->size; in smt_send()
|
/SCP-firmware-master/product/n1sdp/module/n1sdp_smt/src/ |
A D | mod_smt.c | 230 static int smt_send(fwk_id_t channel_id, struct mod_smt_command_config *cmd) in smt_send() argument 238 if (((cmd->size != 0) && (cmd->payload == NULL)) || in smt_send() 239 (cmd->size > channel_ctx->max_payload_size)) { in smt_send() 253 if (cmd->payload != NULL) in smt_send() 254 memcpy(memory->payload, cmd->payload, cmd->size); in smt_send() 255 memory->message_header = SCMI_MESSAGE_HEADER(cmd->message_id, in smt_send() 256 cmd->protocol_id, 0); in smt_send() 257 memory->length = sizeof(memory->message_header) + cmd->size; in smt_send()
|
/SCP-firmware-master/product/n1sdp/module/n1sdp_c2c/src/ |
A D | mod_n1sdp_c2c_i2c.c | 155 static int n1sdp_c2c_primary_tx_command(uint8_t cmd) in n1sdp_c2c_primary_tx_command() argument 160 FWK_LOG_INFO("[C2C] %s in secondary...", cmd_str[cmd]); in n1sdp_c2c_primary_tx_command() 162 n1sdp_c2c_ctx.primary_tx_data[0] = cmd; in n1sdp_c2c_primary_tx_command() 238 status = n1sdp_c2c_primary_tx_command(cmd); in n1sdp_c2c_multichip_run_command() 245 FWK_LOG_INFO("[C2C] %s in primary...", cmd_str[cmd]); in n1sdp_c2c_multichip_run_command() 247 switch (cmd) { in n1sdp_c2c_multichip_run_command() 623 uint8_t cmd; in n1sdp_c2c_process_command() local 632 cmd = rx_data[0]; in n1sdp_c2c_process_command() 634 switch (cmd) { in n1sdp_c2c_process_command() 956 status = n1sdp_c2c_primary_tx_command((uint8_t)cmd); in n1sdp_c2c_pd_set_state() [all …]
|
/SCP-firmware-master/ |
A D | Vagrantfile | 14 d.cmd = [ "sudo", "/usr/sbin/sshd", "-D" ]
|
/SCP-firmware-master/debugger/src/cli/ |
A D | cli.c | 67 cli_command_st cmd; member 84 if (strcmp(new_cmd.command, c->cmd.command) == 0) in cli_command_register() 93 c->cmd = new_cmd; in cli_command_register() 1220 cli_print(cc->cmd.help); in cli_command_dispatch() 1251 if (strcmp(args[0], cc->cmd.command) == 0) { in cli_command_dispatch() 1261 if (cc->cmd.ignore_help_flag == false) { in cli_command_dispatch() 1268 if ((args[index] != 0 || cc->cmd.handler == 0) && in cli_command_dispatch() 1269 cc->cmd.help != 0) { in cli_command_dispatch() 1270 status = cli_print(cc->cmd.help); in cli_command_dispatch() 1288 if (cc->cmd.handler != 0) in cli_command_dispatch() [all …]
|
/SCP-firmware-master/product/morello/module/morello_smt/include/ |
A D | mod_smt.h | 264 int (*send)(fwk_id_t channel_id, struct mod_smt_command_config *cmd);
|
/SCP-firmware-master/product/n1sdp/module/n1sdp_smt/include/ |
A D | mod_smt.h | 262 int (*send)(fwk_id_t channel_id, struct mod_smt_command_config *cmd);
|
/SCP-firmware-master/product/n1sdp/module/n1sdp_dmc620/src/ |
A D | mod_n1sdp_dmc620.c | 572 uint32_t addr, uint32_t cmd, uint8_t ms) in execute_ddr_cmd() argument 577 dmc->DIRECT_CMD = cmd; in execute_ddr_cmd() 588 cmd); in execute_ddr_cmd()
|
/SCP-firmware-master/product/morello/module/dmc_bing/src/ |
A D | mod_dmc_bing.c | 631 uint32_t cmd, in execute_ddr_cmd() argument 637 dmc->DIRECT_CMD = cmd; in execute_ddr_cmd() 648 cmd); in execute_ddr_cmd()
|