Home
last modified time | relevance | path

Searched refs:node (Results 76 – 100 of 1120) sorted by relevance

12345678910>>...45

/Zephyr-latest/boards/native/nrf_bsim/
Dnrf5340bsim_nrf5340_cpunet.dts36 /delete-node/ memory@20000000;
37 /delete-node/ memory@21000000;
38 /delete-node/ watchdog@4100b000;
39 /delete-node/ i2c@41013000;
40 /delete-node/ spi@41013000;
41 /delete-node/ acl@41080000;
42 /delete-node/ vmc@41081000;
45 /delete-node/ cpus;
46 /delete-node/ sw-pwm;
/Zephyr-latest/doc/build/dts/
Dintro-syntax-structure.rst29 a-node {
30 subnode_nodelabel: a-sub-node {
45 #. A root node: ``/``
46 #. A node named ``a-node``, which is a child of the root node
47 #. A node named ``a-sub-node``, which is a child of ``a-node``
49 .. _dt-node-labels:
51 Nodes can be assigned *node labels*, which are unique shorthands that refer to
52 the labeled node. Above, ``a-sub-node`` has the node label
53 ``subnode_nodelabel``. A node can have zero, one, or multiple node labels. You
54 can use node labels to refer to the node elsewhere in the devicetree.
[all …]
/Zephyr-latest/dts/arm/nxp/
Dnxp_rt1015.dtsi49 /delete-node/ &lpspi3;
50 /delete-node/ &lpspi4;
55 /delete-node/ adc@400C8000;
57 /delete-node/ gpio@401c4000;
58 /delete-node/ gpio@42000000;
59 /delete-node/ gpio@42004000;
60 /delete-node/ gpio@42008000;
61 /delete-node/ gpio@4200c000;
63 /delete-node/ spi@402a4000;
65 /delete-node/ enet@402d8000;
/Zephyr-latest/boards/nxp/ls1046ardb/
Dls1046ardb_ls1046a.dts22 /delete-node/ cpu@0;
23 /delete-node/ cpu@1;
24 /delete-node/ cpu@2;
29 /delete-node/ &psci;
/Zephyr-latest/doc/_extensions/zephyr/kconfig/
D__init__.py173 def kconfig_search_visit_html(self, node: nodes.Node) -> None:
174 self.body.append(node.html())
178 def kconfig_search_visit_latex(self, node: nodes.Node) -> None:
214 def unknown_visit(self, node: nodes.Node) -> None:
218 self._found = isinstance(node, KconfigSearchNode)
248 node: pending_xref,
306 for node in sc.nodes:
307 if "defconfig" not in node.filename:
310 for value, cond in node.orig_defaults:
314 alt_defaults.append([fmt, node.filename])
[all …]
/Zephyr-latest/dts/arm/nordic/
Dnrf9280_cpuapp.dtsi17 /delete-node/ &cpuppr;
18 /delete-node/ &cpurad;
19 /delete-node/ &cpurad_peripherals;
20 /delete-node/ &cpurad_ppb;
21 /delete-node/ &cpurad_ram0;
Dnrf9280_cpurad.dtsi17 /delete-node/ &cpuapp;
18 /delete-node/ &cpuapp_peripherals;
19 /delete-node/ &cpuapp_ppb;
20 /delete-node/ &cpuapp_ram0;
21 /delete-node/ &cpuppr;
Dnrf54h20_cpurad.dtsi18 /delete-node/ &cpuapp;
19 /delete-node/ &cpuapp_peripherals;
20 /delete-node/ &cpuapp_ppb;
21 /delete-node/ &cpuapp_ram0;
22 /delete-node/ &cpuppr;
23 /delete-node/ &cpuflpr;
/Zephyr-latest/samples/subsys/fs/fs_sample/boards/
Dnrf54l15dk_nrf54l15_cpuapp.overlay11 /delete-node/ &slot0_partition;
12 /delete-node/ &slot1_partition;
13 /delete-node/ &slot0_ns_partition;
14 /delete-node/ &slot1_ns_partition;
15 /delete-node/ &storage_partition;
/Zephyr-latest/scripts/dts/python-devicetree/src/devicetree/
Ddtlib.py156 for node in self.nodes.values():
157 yield from node.node_iter()
304 def __init__(self, node: Node, name: str):
308 node.dt._parse_error("'@' is only allowed in node names")
316 self.node: Node = node
386 .format(self.name, self.node.path, self.node.dt.filename,
407 .format(self.name, self.node.path, self.node.dt.filename,
426 .format(self.name, self.node.path, self.node.dt.filename,
446 .format(self.name, self.node.path, self.node.dt.filename,
472 .format(self.name, self.node.path, self.node.dt.filename,
[all …]
/Zephyr-latest/tests/lib/lockfree/src/
Dtest_mpsc.c28 mpsc_ptr_t node, head; in ZTEST() local
42 node = mpsc_pop(&push_pop_q); in ZTEST()
43 zassert_is_null(node, "Pop on empty queue should return null"); in ZTEST()
58 node = mpsc_pop(&push_pop_q); in ZTEST()
61 zassert_not_equal(node, stub, "Pop should not return stub"); in ZTEST()
62 zassert_not_null(node, "Pop should not return null"); in ZTEST()
63 zassert_equal(node, &push_pop_nodes[0], in ZTEST()
65 &push_pop_nodes[0], node); in ZTEST()
67 node = mpsc_pop(&push_pop_q); in ZTEST()
68 zassert_is_null(node, "Pop on empty queue should return null"); in ZTEST()
[all …]
/Zephyr-latest/tests/boot/mcuboot_data_sharing/boards/
Dnrf52840dk_nrf52840.overlay29 /delete-node/ &gpregret1;
30 /delete-node/ &gpregret2;
31 /delete-node/ &boot_partition;
32 /delete-node/ &slot0_partition;
33 /delete-node/ &slot1_partition;
/Zephyr-latest/tests/cmake/snippets/extra_snippet_root/snippets/bar/
Dbar.overlay2 /delete-node/ deleted-by-bar;
3 /delete-node/ added-by-foo;
5 /* This node will be deleted by the `foo` snippet if applied. */
/Zephyr-latest/subsys/pm/policy/
Dpolicy_latency.c31 SYS_SLIST_FOR_EACH_CONTAINER(&latency_reqs, req, node) { in update_max_latency()
42 SYS_SLIST_FOR_EACH_CONTAINER(&latency_subs, sreq, node) { in update_max_latency()
62 sys_slist_append(&latency_reqs, &req->node); in pm_policy_latency_request_add()
83 (void)sys_slist_find_and_remove(&latency_reqs, &req->node); in pm_policy_latency_request_remove()
95 sys_slist_append(&latency_subs, &req->node); in pm_policy_latency_changed_subscribe()
104 (void)sys_slist_find_and_remove(&latency_subs, &req->node); in pm_policy_latency_changed_unsubscribe()
/Zephyr-latest/subsys/mgmt/mcumgr/grp/fs_mgmt/src/
Dfs_mgmt_hash_checksum.c18 (void)sys_slist_find_and_remove(&fs_mgmt_hash_checksum_group_list, &group->node); in fs_mgmt_hash_checksum_unregister_group()
23 sys_slist_append(&fs_mgmt_hash_checksum_group_list, &group->node); in fs_mgmt_hash_checksum_register_group()
34 CONTAINER_OF(snp, struct fs_mgmt_hash_checksum_group, node); in fs_mgmt_hash_checksum_find_handler()
51 CONTAINER_OF(snp, struct fs_mgmt_hash_checksum_group, node); in fs_mgmt_hash_checksum_find_handlers()
/Zephyr-latest/scripts/kconfig/
Dlint.py141 for node in kconf.node_iter():
142 if node.is_menuconfig and not node.list and \
143 isinstance(node.item, kconfiglib.Symbol):
144 print("{0.item.name:40} {0.filename}:{0.linenr}".format(node))
150 if all("defconfig" in node.filename for node in sym.nodes):
239 for node in kconf.node_iter()
240 for ref in node.referenced
270 return any(node.prompt for node in sym.nodes)
290 ", ".join("{0.filename}:{0.linenr}".format(node) for node in sym.nodes))
/Zephyr-latest/tests/cmake/snippets/snippets/foo/
Dfoo.overlay2 /delete-node/ deleted-by-foo;
3 /delete-node/ added-by-bar;
5 /* This node will be deleted by the `bar` snippet if applied. */
/Zephyr-latest/tests/boot/mcuboot_recovery_retention/boards/
Dnrf52840dk_nrf52840_mem.overlay41 /delete-node/ &gpregret1;
42 /delete-node/ &gpregret2;
43 /delete-node/ &boot_partition;
44 /delete-node/ &slot0_partition;
45 /delete-node/ &slot1_partition;
/Zephyr-latest/boards/nordic/nrf9280pdk/
Dnrf9280pdk_nrf9280_cpuppr.dts14 /delete-node/ &cpuapp_cpurad_ipc;
15 /delete-node/ &cpuapp_cpusys_ipc;
16 /delete-node/ &cpurad_cpusys_ipc;
17 /delete-node/ &cpusec_cpuapp_ipc;
18 /delete-node/ &cpusec_cpurad_ipc;
/Zephyr-latest/doc/build/dts/api/
Dapi.rst30 A *node identifier* is a way to refer to a devicetree node at C preprocessor
31 time. While node identifiers are not C values, you can use them to access
35 The root node ``/`` has node identifier ``DT_ROOT``. You can create node
40 used to create node identifiers for a given node's parent node or a particular
41 child node, respectively.
43 The following macros create or operate on node identifiers.
52 The following general-purpose macros can be used to access node properties.
56 Property values can be read using these macros even if the node is disabled,
69 matching bindings. However, they take on special semantics when the node's
70 binding indicates it is a PCIe bus node, as defined in the
[all …]
/Zephyr-latest/tests/subsys/fs/littlefs/boards/
Dnrf54l15dk_nrf54l15_cpuapp.overlay7 /delete-node/ &slot0_ns_partition;
8 /delete-node/ &slot1_partition;
9 /delete-node/ &slot1_ns_partition;
/Zephyr-latest/subsys/mgmt/mcumgr/mgmt/src/
Dmgmt.c32 (void)sys_slist_find_and_remove(&mgmt_group_list, &group->node); in mgmt_unregister_group()
49 CONTAINER_OF(snp, struct mgmt_group, node); in mgmt_find_handler()
82 CONTAINER_OF(snp, struct mgmt_group, node); in mgmt_find_group()
115 CONTAINER_OF(snp, struct mgmt_group, node); in mgmt_find_error_translation_function()
133 sys_slist_append(&mgmt_group_list, &group->node); in mgmt_register_group()
139 sys_slist_append(&mgmt_callback_list, &callback->node); in mgmt_callback_register()
144 (void)sys_slist_find_and_remove(&mgmt_callback_list, &callback->node); in mgmt_callback_unregister()
170 CONTAINER_OF(snp, struct mgmt_callback, node); in mgmt_callback_notify()
235 const struct mgmt_group *group = CONTAINER_OF(snp, struct mgmt_group, node); in mgmt_groups_foreach()
/Zephyr-latest/doc/_extensions/zephyr/domain/static/js/
Dcodesample-livesearch.js22 function highlightMatches(node, query) { argument
23 if (node.nodeType === Node.TEXT_NODE) {
24 const text = node.textContent;
38 node.parentNode.replaceChild(highlightedFragment, node);
40 } else if (node.nodeType === Node.ELEMENT_NODE) {
41 node.childNodes.forEach((child) => highlightMatches(child, query));
/Zephyr-latest/samples/drivers/can/babbling/
DKconfig4 menu "Controller Area Network babbling node sample"
12 Babbling node CAN ID.
17 Babling node sends extended (29-bit) CAN ID frames.
22 Babbling node sends Remote Transmission Request (RTR) frames.
28 Babbling node sends CAN FD format frames.
/Zephyr-latest/drivers/usb_c/tcpc/
Dshell.c15 #define TCPC_DUMP_CONN_NODE(node) TCPC_DUMP_DEV(DEVICE_DT_GET(DT_PROP(node, tcpc))) argument
26 #define TCPC_VBUS_CONN_NODE(node) TCPC_VBUS_DEV(DEVICE_DT_GET(DT_PROP(node, vbus))) argument
40 #define TCPC_GET_CHIP_CONN_NODE(node) TCPC_GET_CHIP_DEV(DEVICE_DT_GET(DT_PROP(node, tcpc))) argument

12345678910>>...45