Linux Kernel  3.7.1
 All Data Structures Namespaces Files Functions Variables Typedefs Enumerations Enumerator Macros Groups Pages
gct.h
Go to the documentation of this file.
1 #ifndef __ALPHA_GCT_H
2 #define __ALPHA_GCT_H
3 
4 typedef u64 gct_id;
5 typedef u64 gct6_handle;
6 
7 typedef struct __gct6_node {
8  u8 type;
30  u32 magic; /* 'GLXY' */
31 } gct6_node;
32 
33 typedef struct {
34  u8 type;
36  void (*callout)(gct6_node *);
38 
39 #define GCT_NODE_MAGIC 0x59584c47 /* 'GLXY' */
40 
41 /*
42  * node types
43  */
44 #define GCT_TYPE_HOSE 0x0E
45 
46 /*
47  * node subtypes
48  */
49 #define GCT_SUBTYPE_IO_PORT_MODULE 0x2C
50 
51 #define GCT_NODE_PTR(off) ((gct6_node *)((char *)hwrpb + \
52  hwrpb->frut_offset + \
53  (gct6_handle)(off))) \
54 
56 
57 #endif /* __ALPHA_GCT_H */
58