Home
last modified time | relevance | path

Searched refs:sub (Results 1 – 25 of 128) sorted by relevance

123456

/u-boot/arch/x86/lib/
A Dscu.c87 static int scu_ipc_cmd(struct ipc_regs *regs, u32 cmd, u32 sub, in scu_ipc_cmd() argument
95 scu_ipc_send_command(regs, (inlen << 16) | (sub << 12) | cmd); in scu_ipc_cmd()
121 int scu_ipc_raw_command(u32 cmd, u32 sub, u32 *in, int inlen, u32 *out, in scu_ipc_raw_command() argument
154 return scu_ipc_cmd(scu->regs, cmd, sub, inbuf, inlen, out, outlen); in scu_ipc_raw_command()
169 int scu_ipc_simple_command(u32 cmd, u32 sub) in scu_ipc_simple_command() argument
181 scu_ipc_send_command(scu->regs, sub << 12 | cmd); in scu_ipc_simple_command()
196 int scu_ipc_command(u32 cmd, u32 sub, u32 *in, int inlen, u32 *out, int outlen) in scu_ipc_command() argument
208 return scu_ipc_cmd(scu->regs, cmd, sub, in, inlen, out, outlen); in scu_ipc_command()
/u-boot/arch/x86/include/asm/
A Dscu.h26 int scu_ipc_simple_command(u32 cmd, u32 sub);
27 int scu_ipc_command(u32 cmd, u32 sub, u32 *in, int inlen, u32 *out, int outlen);
28 int scu_ipc_raw_command(u32 cmd, u32 sub, u32 *in, int inlen, u32 *out,
/u-boot/test/overlay/
A Dtest-fdt-base.dts14 subtest: sub-test-node {
15 sub-test-property;
A Dtest-fdt-overlay.dts90 sub-test-node {
91 new-sub-test-property;
/u-boot/doc/uImage.FIT/
A Dsource_file_format.txt132 sub-image is required.
140 This node is a container node for component sub-image nodes. Each sub-node of
144 |- description = "component sub-image description"
146 |- type = "sub-image type name"
158 - description : Textual description of the component sub-image
159 - type : Name of component sub-image type, supported types are:
215 |- default = "default configuration sub-node unit name"
228 sub-nodes is required.
238 |- kernel = "kernel sub-node unit name"
239 |- fdt = "fdt sub-node unit-name" [, "fdt overlay sub-node unit-name", ...]
[all …]
/u-boot/arch/arm/dts/
A Dr8a774a1-hihope-rzg2m-ex.dts4 * sub board
13 model = "HopeRun HiHope RZ/G2M with sub board";
/u-boot/arch/arm/mach-at91/arm920t/
A Dlowlevel_init.S50 sub r0, r0, r1
52 sub r2, r2, r1
69 sub r0, r0, r1
71 sub r2, r2, r1
/u-boot/doc/device-tree-bindings/phy/
A Dphy-stm32-usbphyc.txt28 - #address-cells: number of address cells for phys sub-nodes, must be <1>
29 - #size-cells: number of size cells for phys sub-nodes, must be <0>
36 Required nodes: one sub-node per port the controller provides.
38 Phy sub-nodes
/u-boot/doc/device-tree-bindings/leds/
A Dleds-bcm6858.txt24 Each LED is represented as a sub-node of the brcm,bcm6858-leds device.
26 LED sub-node required properties:
29 LED sub-node optional properties:
A Dleds-bcm6358.txt21 Each LED is represented as a sub-node of the brcm,bcm6358-leds device.
23 LED sub-node required properties:
26 LED sub-node optional properties:
A Dleds-bcm6328.txt31 Each LED is represented as a sub-node of the brcm,bcm6328-leds device.
33 LED sub-node required properties:
36 LED sub-node optional properties:
A Dleds-gpio.txt6 Each LED is represented as a sub-node of the gpio-leds device. Each
9 LED sub-node properties:
/u-boot/arch/sh/lib/
A Dudiv_qrnnd.S39 sub r2,r0
49 sub r5,r0
/u-boot/doc/usage/
A Dbootefi.rst58 The UEFI boot manager is invoked by the *bootefi bootmgr* sub-command.
75 the *bootefi hello* sub-command. A session might look like
92 the *bootefi selftest* sub-command.
126 The *bootefi hello* sub-command requries CMD\_BOOTEFI\_HELLO=y.
127 The *bootefi selftest* sub-command depends on CMD\_BOOTEFI\_SELFTEST=y.
134 UEFI sub-system
/u-boot/arch/riscv/cpu/
A Dstart.S115 sub sp, a0, t0
219 sub sp, s0, t0
270 sub sp, s2, t0
276 sub t6, s4, t0 /* t6 <- relocation offset */
281 sub t3, t3, t0 /* t3 <- __bss_start_ofs */
420 sub sp, a1, t0
/u-boot/doc/device-tree-bindings/arm/
A Darm,scmi.txt24 - #address-cells : should be '1' if the device has sub-nodes, maps to
25 protocol identifier for a given sub-node.
41 Each protocol supported shall have a sub-node with corresponding compatible
44 mboxes, mbox-names and shmem shall be present in the sub-node corresponding
95 Each sub-node represents the reserved area for SCMI.
97 Required sub-node properties:
/u-boot/scripts/kconfig/tests/rand_nested_choice/
A DKconfig12 prompt "sub choice"
/u-boot/doc/device-tree-bindings/regulator/
A Dtps65090.txt7 - regulators: A node that houses a sub-node for each regulator within the
8 device. Each sub-node is identified using the node's name, with valid
9 values listed below. The content of each sub-node is defined by the
/u-boot/doc/device-tree-bindings/remoteproc/
A Dti,k3-dsp-rproc.txt4 The TI K3 family of SoCs usually have one or more TI DSP Core sub-systems that
8 These processor sub-systems usually contain additional sub-modules like L1
16 Each DSP Core sub-system is represented as a single DT node. Each node has a
/u-boot/arch/arm/cpu/armv7/
A Dlowlevel_init.S44 sub sp, sp, #GD_SIZE
/u-boot/scripts/basic/
A Dfixdep.c229 static int str_ends_with(const char *s, int slen, const char *sub) in str_ends_with() argument
231 int sublen = strlen(sub); in str_ends_with()
236 return !memcmp(s + slen - sublen, sub, sublen); in str_ends_with()
/u-boot/arch/mips/include/asm/
A Dasm.h161 #define INT_SUB sub
198 #define LONG_SUB sub
247 #define PTR_SUB sub
/u-boot/doc/api/
A Dlinker_lists.rst75 is the sub-list name. Iterators for the whole list should use the
76 global list name ("outer"); iterators for only a sub-list should use
77 the full sub-list name ("outer_2_inner").
80 named "drivers", two sub-lists named "i2c" and "pci", and iterators
81 defined for the whole list and each sub-list:
/u-boot/arch/arm/lib/
A Dgic_64.S40 sub w10, w10, #0x1
52 sub w10, w10, #0x1
/u-boot/arch/mips/mach-mtmips/mt7628/
A Dlowlevel_init.S116 sub a1, CONFIG_SYS_DCACHE_LINE_SIZE
148 sub a1, CONFIG_SYS_DCACHE_LINE_SIZE

Completed in 37 milliseconds

123456