Home
last modified time | relevance | path

Searched refs:command (Results 1 – 25 of 417) sorted by relevance

12345678910>>...17

/u-boot/drivers/mtd/spi/
A Dsf_dataflash.c136 memset(dataflash->command, 0 , sizeof(dataflash->command)); in spi_dataflash_erase()
137 command = dataflash->command; in spi_dataflash_erase()
178 command[0], command[1], command[2], command[3], in spi_dataflash_erase()
227 memset(dataflash->command, 0 , sizeof(dataflash->command)); in spi_dataflash_read()
228 command = dataflash->command; in spi_dataflash_read()
232 command[0], command[1], command[2], command[3]); in spi_dataflash_read()
285 memset(dataflash->command, 0 , sizeof(dataflash->command)); in spi_dataflash_write()
286 command = dataflash->command; in spi_dataflash_write()
333 command[0], command[1], command[2], command[3]); in spi_dataflash_write()
359 command[0], command[1], command[2], command[3]); in spi_dataflash_write()
[all …]
/u-boot/lib/
A Dtpm-v1.c44 0, command, sizeof(command), in tpm_startup()
134 0, command, sizeof(command), in tpm_nv_define_space()
163 0, command, sizeof(command), in tpm_nv_read_value()
200 0, command, sizeof(command), in tpm_nv_write_value()
233 0, command, sizeof(command), in tpm_extend()
265 0, command, sizeof(command), in tpm_pcr_read()
287 0, command, sizeof(command), in tpm_tsc_physical_presence()
370 0, command, sizeof(command), in tpm_physical_set_deactivated()
398 0, command, sizeof(command), in tpm_get_capability()
501 0, command, sizeof(command), in tpm_flush_specific()
[all …]
/u-boot/doc/develop/
A Dcommands.rst23 the command itself.
28 command
30 called when the command is issued.
45 Sub-command definition
56 This table has to be evaluated in the command function of the main command, e.g.
72 /* drop sub-command argument */
100 * CMD_FLAG_BOOTD - The command is called by the bootd command.
101 * CMD_FLAG_ENV - The command is called by the run command.
112 The command was successfully executed.
115 The command failed.
[all …]
/u-boot/drivers/fastboot/
A Dfb_command.c58 const char *command; member
62 .command = "getvar",
66 .command = "download",
71 .command = "flash",
75 .command = "erase",
80 .command = "boot",
84 .command = "continue",
88 .command = "reboot",
104 .command = "set_active",
127 .command = "UCmd",
[all …]
A DKconfig66 bool "Enable FASTBOOT FLASH command"
71 The fastboot protocol includes a "flash" command for writing
73 this to enable the "fastboot flash" command.
76 bool "Enable FASTBOOT i.MX UUU special command"
79 The fastboot protocol includes "UCmd" and "ACmd" command.
80 Be aware that you provide full access to any U-Boot command,
155 The "erase" command erase all the userdata.
194 bool "Enable the 'oem format' command"
199 partitions as required by the gpt command.
202 bool "Enable the 'oem partconf' command"
[all …]
/u-boot/tools/
A Drmboard.py31 from patman import command
47 stdout = command.RunPipe([cmd], capture=True, raise_on_error=False).stdout
54 stdout = command.RunPipe([cmd], capture=True).stdout
57 stdout = command.RunPipe([cmd], capture=True).stdout
72 stdout = command.RunPipe([cmd], capture=True).stdout
113 stdout = (command.RunPipe([cmd], capture=True, raise_on_error=False).
121 stdout = command.RunPipe([cmd], capture=True).stdout
135 stdout = command.RunPipe([cmd], capture=True).stdout
140 print(command.RunPipe([cmd], capture=True, raise_on_error=False).stdout)
/u-boot/tools/patman/
A Dgitutil.py10 from patman import command
70 result = command.RunPipe(pipe, capture=True, capture_stderr=True,
88 stdout = command.RunPipe([pipe], capture=True, oneline=True).stdout
111 result = command.RunPipe(pipe, capture=True, capture_stderr=True,
182 result = command.RunPipe(pipe, capture=True, capture_stderr=True,
214 stdout = command.RunPipe(pipe, capture=True, oneline=True).stdout
245 result = command.RunPipe([pipe], capture=True, cwd=output_dir,
262 result = command.RunPipe([pipe], capture=True, capture_stderr=True)
292 result = command.RunPipe([pipe], capture=True, cwd=output_dir,
339 stdout = command.RunList(cmd)
[all …]
/u-boot/cmd/mvebu/
A DKconfig9 For details about bubt command please see the documentation
21 Allow usage of NAND flash as a target for "bubt" command
22 For details about bubt command please see the documentation
30 Allow usage of SPI flash as a target for "bubt" command
31 For details about bubt command please see the documentation
39 Allow usage of eMMC/SD device as a target for "bubt" command
40 For details about bubt command please see the documentation
46 string "Default image name for bubt command"
50 MVEBU "bubt" command if the source file name is omitted
/u-boot/tools/buildman/
A Dfunc_test.py16 from patman import command
183 command.test_result = self._HandleCommand
232 command.test_result = None
243 command.test_result = None
252 command.test_result = command.CommandResult(return_code=1)
256 command.test_result = command.CommandResult(return_code=0)
264 return command.CommandResult(return_code=0)
330 return command.CommandResult(return_code=0)
333 return command.CommandResult(return_code=0)
336 return command.CommandResult(return_code=0)
[all …]
/u-boot/doc/usage/
A Dqfw.rst3 qfw command
18 The *qfw* command is used to retrieve information form the QEMU firmware.
20 The *qfw list* sub-command displays the QEMU firmware files.
22 The *qfw cpus* sub-command displays the available CPUs.
24 The *qfw load* command is used to load a kernel and an initial RAM disk.
39 QEMU firmware files are listed via the *qfw list* command:
57 The available CPUs can be shown via the *qfw cpus* command:
73 the *qfw load* command and booted thereafter.
89 The qfw command is only available if CONFIG_CMD_QFW=y.
A Dfalse.rst1 false command
14 The false command sets the return value $? to 1 (false).
28 The false command is only available if CONFIG_HUSH_PARSER=y.
A Dtrue.rst1 true command
14 The true command sets the return value $? to 0 (true).
28 The true command is only available if CONFIG_HUSH_PARSER=y.
A Dbootefi.rst4 bootefi command
20 The *bootefi* command is used to launch a UEFI binary which can be either of
36 command sequence to run a UEFI application might look like
53 *bootm* command.
58 The UEFI boot manager is invoked by the *bootefi bootmgr* sub-command.
68 The values of these variables can be managed using the U-Boot command
75 the *bootefi hello* sub-command. A session might look like
92 the *bootefi selftest* sub-command.
120 return to the command line but require a board reset.
125 To use the *bootefi* command you must specify CONFIG\_CMD\_BOOTEFI=y.
[all …]
A Dmbr.rst3 mbr command
17 The mbr command lets users create or verify the MBR (Master Boot Record)
24 the one used by the 'gpt' command.
53 text description one has to issue following command (assuming that
60 The verify sub-command is especially useful in the system update scripts:
69 The 'mbr write' command returns 0 on success write or 1 on failure.
77 To use the mbr command you must specify CONFIG_CMD_MBR=y.
A Daddrmap.rst3 addrmap command
16 The addrmap command is used to display non-identity virtual-physical memory
40 To use the addrmap command you must specify CONFIG_CMD_ADDRMAP=y.
/u-boot/test/py/tests/test_fs/test_squashfs/
A Dtest_sqfs_load.py16 command = "sqfsload host 0 $kernel_addr_r "
30 output = u_boot_console.run_command(command + "xxx")
35 output = u_boot_console.run_command(command + f)
42 output = u_boot_console.run_command(command + "sym")
/u-boot/cmd/ti/
A DKconfig1 menu "TI specific command line interface"
4 bool "command for verifying DDR features"
6 Support for testing ddr3 on TI platforms. This command
/u-boot/doc/driver-model/
A Dbind.rst10 the U-boot command line.
12 The unbind command calls the remove device driver callback and unbind the
15 The bind command binds a device to its driver.
18 the command line.
36 command or first column of "dm tree" command.
38 - <driver> is the driver name to bind given by the "dm drivers" command or the by
/u-boot/cmd/
A Dbootmenu.c271 free(iter->command); in bootmenu_destroy()
323 entry->command = malloc(len + 1); in bootmenu_create()
324 if (!entry->command) { in bootmenu_create()
330 entry->command[len] = 0; in bootmenu_create()
362 entry->command = strdup(""); in bootmenu_create()
363 if (!entry->command) { in bootmenu_create()
431 char *command = NULL; in bootmenu_show() local
482 command = strdup(iter->command); in bootmenu_show()
495 if (title && command) { in bootmenu_show()
498 run_command(command, 0); in bootmenu_show()
[all …]
A DKconfig371 command.
603 command's help.
646 Memory-search command
924 command.
982 Provides an 'iod' command to display I/O space and an 'iow' command
1279 SPI utility command.
1762 bool "rng command"
2117 Enables EXT2 FS command
2151 bool "fsuuid command"
2156 bool "jffs2 command"
[all …]
/u-boot/scripts/
A DKconfig.include13 # $(if-success,<command>,<then>,<else>)
14 # Return <then> if <command> exits with 0, <else> otherwise.
17 # $(success,<command>)
18 # Return y if <command> exits with 0, n otherwise
/u-boot/drivers/tpm/
A Dtpm2_tis_sandbox.c78 switch (command) { in sandbox_tpm2_check_session()
85 command); in sandbox_tpm2_check_session()
108 if (command == TPM2_CC_PCR_EXTEND) in sandbox_tpm2_check_session()
116 if (command == TPM2_CC_CLEAR) { in sandbox_tpm2_check_session()
193 switch (command) { in sandbox_tpm2_check_readyness()
267 u32 length, command, rc = 0; in sandbox_tpm2_xfer() local
295 command = get_unaligned_be32(sent); in sandbox_tpm2_xfer()
296 sent += sizeof(command); in sandbox_tpm2_xfer()
297 rc = sandbox_tpm2_check_readyness(dev, command); in sandbox_tpm2_xfer()
309 switch (command) { in sandbox_tpm2_xfer()
[all …]
/u-boot/arch/x86/include/asm/acpi/cros_ec/
A Dsuperio.asl15 * SIO_EC_HOST_ENABLE : Enable EC host command interface resources
16 * EC_LPC_ADDR_HOST_DATA : EC host command interface data port
17 * EC_LPC_ADDR_HOST_CMD : EC host command interface command port
18 * EC_HOST_CMD_REGION0 : EC host command buffer
19 * EC_HOST_CMD_REGION1 : EC host command buffer
20 * EC_HOST_CMD_REGION_SIZE : EC host command buffer size
/u-boot/arch/arm/mach-stm32mp/cmd_stm32prog/
A DKconfig3 bool "command stm32prog for STM32CudeProgrammer"
13 activate a specific command stm32prog for STM32MP soc family
23 activate the command "stm32prog usb" for STM32MP soc family
32 activate the command "stm32prog serial" for STM32MP soc family
/u-boot/drivers/spi/
A Dtegra20_slink.c69 u32 command; /* SLINK_COMMAND_0 register */ member
160 reg = readl(&regs->command); in tegra30_spi_claim_bus()
162 writel(reg, &regs->command); in tegra30_spi_claim_bus()
163 debug("%s: COMMAND = %08x\n", __func__, readl(&regs->command)); in tegra30_spi_claim_bus()
184 setbits_le32(&priv->regs->command, SLINK_CMD_CS_VAL); in spi_cs_activate()
194 clrbits_le32(&priv->regs->command, SLINK_CMD_CS_VAL); in spi_cs_deactivate()
230 debug("%s entry: COMMAND = %08x\n", __func__, readl(&regs->command)); in tegra30_spi_xfer()
257 clrsetbits_le32(&regs->command, SLINK_CMD_BIT_LENGTH_MASK, in tegra30_spi_xfer()
260 setbits_le32(&regs->command, SLINK_CMD_GO); in tegra30_spi_xfer()
335 reg = readl(&regs->command); in tegra30_spi_set_mode()
[all …]

Completed in 43 milliseconds

12345678910>>...17