• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/m68k/include/asm/

Lines Matching refs:node

28 /* Root node of the prom device tree, this stays constant after
115 /* Acquire the IDPROM of the root node in the prom device tree. This
171 /* Start the CPU with the given device tree node, context table, and context
177 /* Stop the CPU with the passed device tree node. */
180 /* Idle the CPU with the passed device tree node. */
183 /* Re-Start the CPU with the passed device tree node. */
206 /* Get the child node of the given node, or zero if no child exists. */
209 /* Get the next sibling node of the given node, or zero if no further
212 extern int prom_getsibling(int node);
214 /* Get the length, at the passed node, of the given property type.
215 * Returns -1 on error (ie. no such property at this node).
226 extern int prom_getint(int node, char *property);
229 extern int prom_getintdefault(int node, char *property, int defval);
232 extern int prom_getbool(int node, char *prop);
235 extern void prom_getstring(int node, char *prop, char *buf, int bufsize);
237 /* Does the passed node have the given "name"? YES=1 NO=0 */
240 /* Search all siblings starting at the passed node for "name" matching
241 * the given string. Returns the node on success, zero on failure.
245 /* Return the first property type, as a string, for the given node.
248 extern char *prom_firstprop(int node);
251 * node. Returns null string on failure.
253 extern char *prom_nextprop(int node, char *prev_property);
255 /* Returns 1 if the specified node has given property. */
256 extern int prom_node_has_property(int node, char *property);
258 /* Set the indicated property at the given node with the passed value.
261 extern int prom_setprop(int node, char *prop_name, char *prop_value,
280 /* Apply ranges of any prom node (and optionally parent node as well) to registers. */
281 extern void prom_apply_generic_ranges(int node, int parent,