/SCP-firmware-master/product/synquacer/module/hsspi/src/ |
A D | mod_hsspi.c | 273 command->alt.data[0], get_trp_io(command->io.addr_bit)); in set_command_sequence() 276 command->alt.data[i - 1], get_trp_io(command->io.addr_bit)); in set_command_sequence() 290 if (command->len.data_byte == 0 && command->len.dummy_cycle == 0) { in set_command_sequence() 428 if (command->io.code_bit != 0 && command->io.code_bit != 1 && in check_command() 429 command->io.code_bit != 2 && command->io.code_bit != 4) { in check_command() 433 if (command->io.addr_bit != 0 && command->io.addr_bit != 1 && in check_command() 434 command->io.addr_bit != 2 && command->io.addr_bit != 4) { in check_command() 438 if (command->io.data_bit != 0 && command->io.data_bit != 1 && in check_command() 439 command->io.data_bit != 2 && command->io.data_bit != 4) { in check_command() 491 if (command->len.code_byte != 0 && command->len.addr_byte == 0 && in set_write_command() [all …]
|
/SCP-firmware-master/product/synquacer/src/ |
A D | device_nor_w25.c | 24 struct qspi_command command) in set_read_command() argument 26 if (IS_QSPI_COMMAND_EMPTY(command)) { in set_read_command() 30 return qspi_api->set_read_command(id, &command); in set_read_command() 36 struct qspi_command command) in set_write_command() argument 38 if (IS_QSPI_COMMAND_EMPTY(command)) { in set_write_command() 42 return qspi_api->set_write_command(id, &command); in set_write_command() 142 struct qspi_command command; in w25_nor_set_4byte_addr_mode() local 145 command = W25_COMMAND_ENTER_4BYTE; in w25_nor_set_4byte_addr_mode() 147 command = W25_COMMAND_EXIT_4BYTE; in w25_nor_set_4byte_addr_mode() 150 return set_write_command(id, qspi_api, command); in w25_nor_set_4byte_addr_mode()
|
A D | device_nor_mx25.c | 24 struct qspi_command command) in set_read_command() argument 26 if (IS_QSPI_COMMAND_EMPTY(command)) { in set_read_command() 30 return qspi_api->set_read_command(id, &command); in set_read_command() 36 struct qspi_command command) in set_write_command() argument 38 if (IS_QSPI_COMMAND_EMPTY(command)) { in set_write_command() 42 return qspi_api->set_write_command(id, &command); in set_write_command() 139 struct qspi_command command; in mx25_nor_set_4byte_addr_mode() local 142 command = MX25_COMMAND_ENTER_4BYTE; in mx25_nor_set_4byte_addr_mode() 144 command = MX25_COMMAND_EXIT_4BYTE; in mx25_nor_set_4byte_addr_mode() 147 return set_write_command(id, qspi_api, command); in mx25_nor_set_4byte_addr_mode()
|
A D | device_nor_mt25.c | 24 struct qspi_command command) in set_read_command() argument 26 if (IS_QSPI_COMMAND_EMPTY(command)) { in set_read_command() 30 return qspi_api->set_read_command(id, &command); in set_read_command() 36 struct qspi_command command) in set_write_command() argument 38 if (IS_QSPI_COMMAND_EMPTY(command)) { in set_write_command() 42 return qspi_api->set_write_command(id, &command); in set_write_command()
|
A D | device_nor_s25.c | 24 struct qspi_command command) in set_read_command() argument 26 if (IS_QSPI_COMMAND_EMPTY(command)) { in set_read_command() 30 return qspi_api->set_read_command(id, &command); in set_read_command() 36 struct qspi_command command) in set_write_command() argument 38 if (IS_QSPI_COMMAND_EMPTY(command)) { in set_write_command() 42 return qspi_api->set_write_command(id, &command); in set_write_command()
|
/SCP-firmware-master/cmake/ |
A D | SCPPreprocessSource.cmake | 14 # .. command:: scp_preprocess_source 32 # describes the command line required to preprocess a C source file. This 49 set(command ${CMAKE_C_CREATE_PREPROCESSED_SOURCE}) variable 50 string(REPLACE " " ";" command ${command}) 76 string(REGEX REPLACE "<([[A-Z_]+)>" "\${cpp_\\1}" command "${command}") 77 string(REGEX MATCH "\\\${[^}]*}" match "${command}") 81 string(REPLACE "\${${variable}}" "${${variable}}" command "${command}") 82 string(REGEX MATCH "\\\${[^}]*}" match "${command}") 88 COMMAND "${command}"
|
A D | SCPModuleTrace.cmake | 14 # .. command:: scp_module_trace
|
A D | SCPTargetLinkerScript.cmake | 14 # .. command:: scp_target_linker_script
|
/SCP-firmware-master/module/scmi_apcore/doc/ |
A D | scmi_apcore.md | 31 On success, this command returns the version of the protocol. For this version 37 This command is mandatory. 49 This command returns the implementation details associated with this protocol. 54 This command is mandatory. 68 On success, this command returns the implementation details associated with a 70 described in section 4.1.4 of the SCMI specification, the command can return the 77 This command is mandatory. 88 * Flags associated with a specific command in the protocol. For all commands 97 reset address. This command allows the SCP to carry out the programming on 104 This command is optional. [all …]
|
/SCP-firmware-master/debugger/src/cli/ |
A D | readme.txt | 12 console. If you wish to add new commands, create a new command structure and 13 add links to the command functions in the structure then call the command 17 Definitions of compile-time command line interface settings, such as buffer 51 By default the CLI is in command mode, to exit command mode and enter debug, 52 mode press Ctrl+C. To return to command mode, press Ctrl+C again. Know that, 53 while in command mode, the print buffers can fill up quickly.
|
A D | cli.c | 84 if (strcmp(new_cmd.command, c->cmd.command) == 0) in cli_command_register() 107 for (index = 0; cli_commands[index].command != 0; index++) { in cli_command_init() 251 char *command, 1140 char *command, in cli_split() argument 1159 command[index] = 0; in cli_split() 1165 if (command[index] == '\"') { in cli_split() 1169 command[index] = 0; in cli_split() 1178 command[index] = 0; in cli_split() 1189 argbuf[argbuf_ctr] = &command[index]; in cli_split() 1219 cli_printf(NONE, "%s\n", cc->cmd.command); in cli_command_dispatch() [all …]
|
/SCP-firmware-master/module/scmi_system_power_req/doc/ |
A D | scmi_system_power_req.md | 15 command, if the module is implementing the requester. It interacts with this 18 It implements a set and get state command. The set state is the only one 20 the system power state is cached for the get command.
|
/SCP-firmware-master/tools/ |
A D | yaml-format.py | 102 if args.command == "diff": 119 elif args.command == "format":
|
A D | ci_cmake.py | 116 build.command(), 123 print('[CMD] {}'.format(build.command()))
|
A D | product.py | 54 def command(self): member in Build
|
/SCP-firmware-master/product/n1sdp/ |
A D | readme.md | 10 Example build command -
|
/SCP-firmware-master/product/synquacer/include/ |
A D | qspi_api.h | 176 int (*set_read_command)(fwk_id_t id, struct qspi_command *command); 189 int (*set_write_command)(fwk_id_t id, struct qspi_command *command);
|
/SCP-firmware-master/debugger/include/ |
A D | cli.h | 117 const char *command; member
|
/SCP-firmware-master/module/scmi_sensor_req/doc/ |
A D | scmi_sensor_req.md | 22 Requester issues a "Sensor Reading Get" command to the entity responsible of 85 Currently only the Sensor Reading Get command is implemented.
|
/SCP-firmware-master/arch/arm/armv8-a/ |
A D | CMakeLists.txt | 40 # describes the command line required to preprocess a C source file. This
|
/SCP-firmware-master/doc/ |
A D | cmake_readme.md | 45 command to build all firmwares for a product 54 The above command accepts a number of options. Execute the command below to get 136 - Using cmake command line option 172 > Build options can subsequently tuned using below command 285 If you simply wish to invoke a command from within the container, you may also 286 use Vagrant's [`docker-run`] command, e.g.: 399 configure the firmware target. If you're using `cmake` on the command line, this 420 The various configuration variables can be listed on the command line with:
|
A D | Doxyfile | 376 # \nosubgrouping command. 688 # popen()) the command command input-file, where command is the value of the 880 # command). 900 # \image command). 906 # by executing (via popen()) the command: 2156 # command. Doxygen will then run the mscgen tool (see: 2297 # accomplished by means of the command \hidecallgraph. 2309 # accomplished by means of the command \hidecallergraph. 2368 # command). 2375 # command). [all …]
|
/SCP-firmware-master/arch/none/optee/doc/ |
A D | arch_optee_design.md | 68 The OPTEE mailbox module implements a doorbell mecnaism. The PTA invoke command
|
/SCP-firmware-master/arch/arm/arm-m/ |
A D | CMakeLists.txt | 84 # describes the command line required to preprocess a C source file. This
|
/SCP-firmware-master/ |
A D | user_guide.md | 143 This command will also fetch submodules related to unit testing.For more 175 To build SCP-firmware for a specific product the basic command format for 291 When all build images are created and deployed you can run the following command 363 command line: 434 An example command line to build Arm Trusted Firmware-A for AArch64 is given 477 Linux and Unix systems, this can be done with the `sync` command) and reset the
|