[BACK]Return to mdesc.h CVS log [TXT][DIR] Up to [Development] / linux-2.6-xfs / include / asm-sparc64

File: [Development] / linux-2.6-xfs / include / asm-sparc64 / Attic / mdesc.h (download)

Revision 1.2, Wed Jul 4 15:54:07 2007 UTC (10 years, 3 months ago) by tes.longdrop.melbourne.sgi.com
Branch: MAIN
Changes since 1.1: +1 -0 lines

Merge up to 2.6.22-rc7
Merge of 2.6.x-xfs-melb:linux:29062a by kenmcd.

#ifndef _SPARC64_MDESC_H
#define _SPARC64_MDESC_H

#include <linux/types.h>
#include <asm/prom.h>

struct mdesc_node;
struct mdesc_arc {
	const char		*name;
	struct mdesc_node	*arc;
};

struct mdesc_node {
	const char		*name;
	u64			node;
	unsigned int		unique_id;
	unsigned int		num_arcs;
	unsigned int		irqs[2];
	struct property		*properties;
	struct mdesc_node	*hash_next;
	struct mdesc_node	*allnodes_next;
	struct mdesc_arc	arcs[0];
};

extern struct mdesc_node *md_find_node_by_name(struct mdesc_node *from,
					       const char *name);
#define md_for_each_node_by_name(__mn, __name) \
	for (__mn = md_find_node_by_name(NULL, __name); __mn; \
	     __mn = md_find_node_by_name(__mn, __name))

extern struct property *md_find_property(const struct mdesc_node *mp,
					 const char *name,
					 int *lenp);
extern const void *md_get_property(const struct mdesc_node *mp,
				   const char *name,
				   int *lenp);

extern void sun4v_mdesc_init(void);

#endif