| /u-boot/drivers/pinctrl/ |
| A D | pinctrl-generic.c | 239 if (prefix) { in alloc_name_with_prefix() 251 if (prefix) in free_name_with_prefix() 269 const char *prefix, in pinctrl_generic_set_state_one() argument 343 const char *prefix, in pinctrl_generic_get_subnode_type() argument 353 free_name_with_prefix(propname, prefix); in pinctrl_generic_get_subnode_type() 361 free_name_with_prefix(propname, prefix); in pinctrl_generic_get_subnode_type() 370 free_name_with_prefix(propname, prefix); in pinctrl_generic_get_subnode_type() 391 const char *prefix) in pinctrl_generic_set_state_subnode() argument 409 free_name_with_prefix(propname, prefix); in pinctrl_generic_set_state_subnode() 421 free_name_with_prefix(propname, prefix); in pinctrl_generic_set_state_subnode() [all …]
|
| /u-boot/arch/arm/dts/ |
| A D | meson-g12.dtsi | 17 sound-name-prefix = "TDM_A"; 28 sound-name-prefix = "TDM_B"; 39 sound-name-prefix = "TDM_C"; 54 sound-name-prefix = "PDM"; 104 sound-name-prefix = "TODDR_A"; 119 sound-name-prefix = "TODDR_B"; 134 sound-name-prefix = "TODDR_C"; 149 sound-name-prefix = "FRDDR_A"; 164 sound-name-prefix = "FRDDR_B"; 179 sound-name-prefix = "FRDDR_C"; [all …]
|
| A D | meson-sm1.dtsi | 19 sound-name-prefix = "TDM_A"; 30 sound-name-prefix = "TDM_B"; 41 sound-name-prefix = "TDM_C"; 183 sound-name-prefix = "TODDR_A"; 198 sound-name-prefix = "TODDR_B"; 213 sound-name-prefix = "TODDR_C"; 228 sound-name-prefix = "FRDDR_A"; 243 sound-name-prefix = "FRDDR_B"; 258 sound-name-prefix = "FRDDR_C"; 280 sound-name-prefix = "TDMIN_A"; [all …]
|
| /u-boot/include/linux/ |
| A D | compiler.h | 177 # define __UNIQUE_ID(prefix) __PASTE(__PASTE(__UNIQUE_ID_, prefix), __LINE__) argument 323 # define __compiletime_assert(condition, msg, prefix, suffix) \ argument 325 extern void prefix ## suffix(void) __compiletime_error(msg); \ 327 prefix ## suffix(); \ 330 # define __compiletime_assert(condition, msg, prefix, suffix) do { } while (0) argument 333 #define _compiletime_assert(condition, msg, prefix, suffix) \ argument 334 __compiletime_assert(condition, msg, prefix, suffix)
|
| A D | compiler-clang.h | 13 #define __UNIQUE_ID(prefix) __PASTE(__PASTE(__UNIQUE_ID_, prefix), __COUNTER__) argument
|
| /u-boot/tools/binman/btool/ |
| A D | lzma_alone.py | 67 with tempfile.NamedTemporaryFile(prefix='comp.tmp', 70 with tempfile.NamedTemporaryFile(prefix='compo.otmp', 85 with tempfile.NamedTemporaryFile(prefix='decomp.tmp', 88 with tempfile.NamedTemporaryFile(prefix='compo.otmp',
|
| A D | lz4.py | 90 with tempfile.NamedTemporaryFile(prefix='comp.tmp', 105 with tempfile.NamedTemporaryFile(prefix='decomp.tmp',
|
| /u-boot/tools/binman/etype/ |
| A D | vblock.py | 71 prefix = self.keydir + '/' 74 keyblock=prefix + self.keyblock, 75 signprivate=prefix + self.signprivate, 78 kernelkey=prefix + self.kernelkey,
|
| /u-boot/doc/device-tree-bindings/regulator/ |
| A D | regulator.txt | 5 by the prefix of regulator node's name, or, if this fails, by the prefix of the 13 For the node name e.g.: "prefix[:alpha:]num { ... }": 14 - the driver prefix should be: "prefix" - case sensitive 17 Example the prefix "ldo" will pass for: "ldo1", "ldo@1", "ldoreg@1, ... 22 property is possible. The syntax for the prefix of the "regulator-name" property 26 named "BOOST_DRV". Using prefix "regualtor@1" for driver matching would load 27 the same driver for both regulators, hence the prefix is ambiguous. 31 binding if binding by node's name prefix fails
|
| /u-boot/drivers/power/pmic/ |
| A D | pca9450.c | 24 { .prefix = "b", .driver = PCA9450_REGULATOR_DRIVER}, 25 { .prefix = "B", .driver = PCA9450_REGULATOR_DRIVER}, 27 { .prefix = "l", .driver = PCA9450_REGULATOR_DRIVER}, 28 { .prefix = "L", .driver = PCA9450_REGULATOR_DRIVER},
|
| A D | pmic_tps65910_dm.c | 15 { .prefix = "ldo_", .driver = TPS65910_LDO_DRIVER }, 16 { .prefix = "buck_", .driver = TPS65910_BUCK_DRIVER }, 17 { .prefix = "boost_", .driver = TPS65910_BOOST_DRIVER },
|
| A D | pmic-uclass.c | 48 for (info = child_info; info->prefix && info->driver; info++) { in pmic_bind_children() 49 debug(" - compatible prefix: '%s'\n", info->prefix); in pmic_bind_children() 51 prefix_len = strlen(info->prefix); in pmic_bind_children() 52 if (strncmp(info->prefix, node_name, prefix_len)) { in pmic_bind_children() 57 if (strncmp(info->prefix, reg_name, prefix_len)) in pmic_bind_children()
|
| A D | stpmic1.c | 34 { .prefix = "ldo", .driver = "stpmic1_ldo" }, 35 { .prefix = "buck", .driver = "stpmic1_buck" }, 36 { .prefix = "vref_ddr", .driver = "stpmic1_vref_ddr" }, 37 { .prefix = "pwr_sw", .driver = "stpmic1_pwr_sw" }, 38 { .prefix = "boost", .driver = "stpmic1_boost" },
|
| A D | sandbox.c | 20 { .prefix = SANDBOX_OF_LDO_PREFIX, .driver = SANDBOX_LDO_DRIVER }, 21 { .prefix = SANDBOX_OF_BUCK_PREFIX, .driver = SANDBOX_BUCK_DRIVER },
|
| /u-boot/lib/crypt/ |
| A D | crypt.c | 38 const char *prefix; in crypt_compare() member 53 if (!crypt_algos[n].prefix) in crypt_compare() 55 if (strncmp(should, crypt_algos[n].prefix, 3) == 0) in crypt_compare()
|
| A D | Kconfig | 17 The prefix is "$5$". 24 The prefix is "$6$".
|
| /u-boot/tools/dtoc/ |
| A D | src_scan.py | 296 prefix = '' 299 if prefix: 301 prefix = '' 303 prefix = line[:-1] 366 prefix = '' 369 if prefix: 371 prefix = '' 373 prefix = line[:-1] 483 prefix = '' 486 if prefix: [all …]
|
| /u-boot/tools/binman/test/ |
| A D | 067_fmap.dts | 11 name-prefix = "ro-"; 20 name-prefix = "rw-";
|
| A D | 056_name_prefix.dts | 14 name-prefix = "ro-"; 22 name-prefix = "rw-";
|
| A D | 060_fdt_update.dts | 13 name-prefix = "ro-"; 21 name-prefix = "rw-";
|
| A D | 061_fdt_update_bad.dts | 13 name-prefix = "ro-"; 21 name-prefix = "rw-";
|
| /u-boot/boot/ |
| A D | bootmeth_script.c | 71 const char *prefix; in script_read_bootflow_file() local 88 prefix = prefixes ? prefixes[i] : NULL; in script_read_bootflow_file() 90 ret = bootmeth_try_file(bflow, desc, prefix, SCRIPT_FNAME1); in script_read_bootflow_file() 92 ret = bootmeth_try_file(bflow, desc, prefix, in script_read_bootflow_file() 98 bflow->subdir = strdup(prefix ? prefix : ""); in script_read_bootflow_file()
|
| /u-boot/test/ |
| A D | test-main.c | 205 static bool test_matches(const char *prefix, const char *test_name, in test_matches() argument 221 if (prefix) { in test_matches() 223 if (!strncmp(test_name, prefix, strlen(prefix))) in test_matches() 224 test_name += strlen(prefix); in test_matches() 511 static int ut_run_tests(struct unit_test_state *uts, const char *prefix, in ut_run_tests() argument 539 if (!test_matches(prefix, test_name, select_name)) in ut_run_tests() 595 int ut_run_list(const char *category, const char *prefix, in ut_run_list() argument 632 ret = ut_run_tests(&uts, prefix, tests, count, select_name, in ut_run_list()
|
| /u-boot/lib/ |
| A D | string.c | 752 unsigned int words, prefix; in memchr_inv() local 762 prefix = (unsigned long)start % 8; in memchr_inv() 763 if (prefix) { in memchr_inv() 766 prefix = 8 - prefix; in memchr_inv() 767 r = check_bytes8(start, value, prefix); in memchr_inv() 770 start += prefix; in memchr_inv() 771 bytes -= prefix; in memchr_inv()
|
| /u-boot/drivers/usb/eth/ |
| A D | lan7x.h | 134 const char *prefix, const u32 reg, in lan7x_wait_for_bit() argument 163 debug("%s: Timeout (reg=0x%x mask=%08x wait_set=%i)\n", prefix, reg, in lan7x_wait_for_bit() 175 const char *prefix, in lan7x_mdio_wait_for_bit() argument 205 debug("%s: Timeout (reg=0x%x mask=%08x wait_set=%i)\n", prefix, reg, in lan7x_mdio_wait_for_bit()
|