Lines Matching +full:tx +full:- +full:channel
9 * SPDX-License-Identifier: Apache-2.0
20 * @defgroup devicetree-mbox Devicetree MBOX API
31 * mbox1: mbox-controller@... { ... };
36 * mbox-names = "tx", "rx";
41 * DT_MBOX_CTLR_BY_NAME(DT_NODELABEL(n), tx) // DT_NODELABEL(mbox1)
45 * @param name lowercase-and-underscores name of a mboxes element
46 * as defined by the node's mbox-names property
56 * @brief Get a MBOX channel value by name
61 * #mbox-cells = <1>;
67 * mbox-names = "tx", "rx";
72 * mbox-cells:
73 * - channel
77 * DT_MBOX_CHANNEL_BY_NAME(DT_NODELABEL(n), tx) // 1
81 * @param name lowercase-and-underscores name of a mboxes element
82 * as defined by the node's mbox-names property
84 * @return the channel value in the specifier at the named element or 0 if no
90 DT_PHA_BY_NAME_OR(node_id, mboxes, name, channel, 0)