blob: 1acc7272e537bca1bfe095ea24e518b32d837a9b [file] [log] [blame]
David S. Miller5cbc3072007-05-25 15:49:59 -07001#ifndef _SPARC64_MDESC_H
2#define _SPARC64_MDESC_H
3
4#include <linux/types.h>
David S. Miller4f0234f2007-07-13 16:03:42 -07005#include <linux/cpumask.h>
David S. Miller5cbc3072007-05-25 15:49:59 -07006#include <asm/prom.h>
7
David S. Miller43fdf272007-07-12 13:47:50 -07008struct mdesc_handle;
David S. Miller5cbc3072007-05-25 15:49:59 -07009
David S. Miller43fdf272007-07-12 13:47:50 -070010/* Machine description operations are to be surrounded by grab and
11 * release calls. The mdesc_handle returned from the grab is
12 * the first argument to all of the operational calls that work
13 * on mdescs.
14 */
15extern struct mdesc_handle *mdesc_grab(void);
16extern void mdesc_release(struct mdesc_handle *);
David S. Miller5cbc3072007-05-25 15:49:59 -070017
David S. Miller43fdf272007-07-12 13:47:50 -070018#define MDESC_NODE_NULL (~(u64)0)
David S. Miller5cbc3072007-05-25 15:49:59 -070019
David S. Miller43fdf272007-07-12 13:47:50 -070020extern u64 mdesc_node_by_name(struct mdesc_handle *handle,
21 u64 from_node, const char *name);
22#define mdesc_for_each_node_by_name(__hdl, __node, __name) \
23 for (__node = mdesc_node_by_name(__hdl, MDESC_NODE_NULL, __name); \
24 (__node) != MDESC_NODE_NULL; \
25 __node = mdesc_node_by_name(__hdl, __node, __name))
26
David S. Miller83292e02007-07-12 14:16:22 -070027/* Access to property values returned from mdesc_get_property() are
28 * only valid inside of a mdesc_grab()/mdesc_release() sequence.
29 * Once mdesc_release() is called, the memory backed up by these
30 * pointers may reference freed up memory.
31 *
32 * Therefore callers must make copies of any property values
33 * they need.
34 *
35 * These same rules apply to mdesc_node_name().
36 */
David S. Miller43fdf272007-07-12 13:47:50 -070037extern const void *mdesc_get_property(struct mdesc_handle *handle,
38 u64 node, const char *name, int *lenp);
David S. Miller83292e02007-07-12 14:16:22 -070039extern const char *mdesc_node_name(struct mdesc_handle *hp, u64 node);
40
41/* MD arc iteration, the standard sequence is:
42 *
43 * unsigned long arc;
44 * mdesc_for_each_arc(arc, handle, node, MDESC_ARC_TYPE_{FWD,BACK}) {
45 * unsigned long target = mdesc_arc_target(handle, arc);
46 * ...
47 * }
48 */
David S. Miller43fdf272007-07-12 13:47:50 -070049
50#define MDESC_ARC_TYPE_FWD "fwd"
51#define MDESC_ARC_TYPE_BACK "back"
52
53extern u64 mdesc_next_arc(struct mdesc_handle *handle, u64 from,
54 const char *arc_type);
55#define mdesc_for_each_arc(__arc, __hdl, __node, __type) \
56 for (__arc = mdesc_next_arc(__hdl, __node, __type); \
57 (__arc) != MDESC_NODE_NULL; \
58 __arc = mdesc_next_arc(__hdl, __arc, __type))
59
60extern u64 mdesc_arc_target(struct mdesc_handle *hp, u64 arc);
61
David S. Miller43fdf272007-07-12 13:47:50 -070062extern void mdesc_update(void);
David S. Miller5cbc3072007-05-25 15:49:59 -070063
David S. Miller920c3ed2007-07-17 21:37:35 -070064struct mdesc_notifier_client {
65 void (*add)(struct mdesc_handle *handle, u64 node);
66 void (*remove)(struct mdesc_handle *handle, u64 node);
67
68 const char *node_name;
69 struct mdesc_notifier_client *next;
70};
71
72extern void mdesc_register_notifier(struct mdesc_notifier_client *client);
73
David S. Miller4f0234f2007-07-13 16:03:42 -070074extern void mdesc_fill_in_cpu_data(cpumask_t mask);
75
David S. Miller5cbc3072007-05-25 15:49:59 -070076extern void sun4v_mdesc_init(void);
77
78#endif