Lines Matching full:cell

93  * @brief Get a reset specifier's cell value at an index
117 * @param cell lowercase-and-underscores cell name
118 * @return the cell value at index "idx"
121 #define DT_RESET_CELL_BY_IDX(node_id, idx, cell) \ argument
122 DT_PHA_BY_IDX(node_id, resets, idx, cell)
125 * @brief Get a reset specifier's cell value by name
151 * @param cell lowercase-and-underscores cell name
152 * @return the cell value in the specifier at the named element
155 #define DT_RESET_CELL_BY_NAME(node_id, name, cell) \ argument
156 DT_PHA_BY_NAME(node_id, resets, name, cell)
159 * @brief Equivalent to DT_RESET_CELL_BY_IDX(node_id, 0, cell)
161 * @param cell lowercase-and-underscores cell name
162 * @return the cell value at index 0
165 #define DT_RESET_CELL(node_id, cell) \ argument
166 DT_RESET_CELL_BY_IDX(node_id, 0, cell)
206 * @brief Get a DT_DRV_COMPAT instance's reset specifier's cell value
210 * @param cell lowercase-and-underscores cell name
211 * @return the cell value at index "idx"
214 #define DT_INST_RESET_CELL_BY_IDX(inst, idx, cell) \ argument
215 DT_RESET_CELL_BY_IDX(DT_DRV_INST(inst), idx, cell)
218 * @brief Get a DT_DRV_COMPAT instance's reset specifier's cell value by name
222 * @param cell lowercase-and-underscores cell name
223 * @return the cell value in the specifier at the named element
226 #define DT_INST_RESET_CELL_BY_NAME(inst, name, cell) \ argument
227 DT_RESET_CELL_BY_NAME(DT_DRV_INST(inst), name, cell)
230 * @brief Equivalent to DT_INST_RESET_CELL_BY_IDX(inst, 0, cell)
232 * @param cell lowercase-and-underscores cell name
233 * @return the value of the cell inside the specifier at index 0
235 #define DT_INST_RESET_CELL(inst, cell) \ argument
236 DT_INST_RESET_CELL_BY_IDX(inst, 0, cell)
239 * @brief Get a Reset Controller specifier's id cell at an index
266 * @return the id cell value at index "idx"
275 * @return the id cell value at index 0
282 * @brief Get a DT_DRV_COMPAT instance's Reset Controller specifier's id cell value
286 * @return the id cell value at index "idx"
295 * @return the id cell value at index 0