nodemgr.h
上传用户:jlfgdled
上传日期:2013-04-10
资源大小:33168k
文件大小:7k
源码类别:

Linux/Unix编程

开发平台:

Unix_Linux

  1. /*
  2.  * Copyright (C) 2000 Andreas E. Bombe
  3.  *               2001 Ben Collins <bcollins@debian.org>
  4.  *
  5.  * This program is free software; you can redistribute it and/or modify
  6.  * it under the terms of the GNU General Public License as published by
  7.  * the Free Software Foundation; either version 2 of the License, or
  8.  * (at your option) any later version.
  9.  *
  10.  * This program is distributed in the hope that it will be useful,
  11.  * but WITHOUT ANY WARRANTY; without even the implied warranty of
  12.  * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
  13.  * GNU General Public License for more details.
  14.  *
  15.  * You should have received a copy of the GNU General Public License
  16.  * along with this program; if not, write to the Free Software Foundation,
  17.  * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  18.  */
  19. #ifndef _IEEE1394_NODEMGR_H
  20. #define _IEEE1394_NODEMGR_H
  21. #define CONFIG_ROM_BUS_INFO_LENGTH(q) ((q) >> 24)
  22. #define CONFIG_ROM_BUS_CRC_LENGTH(q) (((q) >> 16) & 0xff)
  23. #define CONFIG_ROM_BUS_CRC(q) ((q) & 0xffff)
  24. #define CONFIG_ROM_ROOT_LENGTH(q) ((q) >> 16)
  25. #define CONFIG_ROM_ROOT_CRC(q) ((q) & 0xffff)
  26. #define CONFIG_ROM_DIRECTORY_LENGTH(q) ((q) >> 16)
  27. #define CONFIG_ROM_DIRECTORY_CRC(q) ((q) & 0xffff)
  28. #define CONFIG_ROM_LEAF_LENGTH(q) ((q) >> 16)
  29. #define CONFIG_ROM_LEAF_CRC(q) ((q) & 0xffff)
  30. #define CONFIG_ROM_DESCRIPTOR_TYPE(q) ((q) >> 24)
  31. #define CONFIG_ROM_DESCRIPTOR_SPECIFIER_ID(q) ((q) & 0xffffff)
  32. #define CONFIG_ROM_DESCRIPTOR_WIDTH(q) ((q) >> 28)
  33. #define CONFIG_ROM_DESCRIPTOR_CHAR_SET(q) (((q) >> 16) & 0xfff)
  34. #define CONFIG_ROM_DESCRIPTOR_LANG(q) ((q) & 0xffff)
  35. #define CONFIG_ROM_KEY_ID_MASK 0x3f
  36. #define CONFIG_ROM_KEY_TYPE_MASK 0xc0
  37. #define CONFIG_ROM_KEY_TYPE_IMMEDIATE 0x00
  38. #define CONFIG_ROM_KEY_TYPE_OFFSET 0x40
  39. #define CONFIG_ROM_KEY_TYPE_LEAF 0x80
  40. #define CONFIG_ROM_KEY_TYPE_DIRECTORY 0xc0
  41. #define CONFIG_ROM_KEY(q) ((q) >> 24)
  42. #define CONFIG_ROM_VALUE(q) ((q) & 0xffffff)
  43. #define CONFIG_ROM_VENDOR_ID 0x03
  44. #define CONFIG_ROM_MODEL_ID 0x17
  45. #define CONFIG_ROM_NODE_CAPABILITES 0x0C
  46. #define CONFIG_ROM_UNIT_DIRECTORY 0xd1
  47. #define CONFIG_ROM_SPECIFIER_ID 0x12 
  48. #define CONFIG_ROM_UNIT_SW_VERSION 0x13
  49. #define CONFIG_ROM_DESCRIPTOR_LEAF 0x81
  50. #define CONFIG_ROM_DESCRIPTOR_DIRECTORY 0xc1
  51. /* '1' '3' '9' '4' in ASCII */
  52. #define IEEE1394_BUSID_MAGIC 0x31333934
  53. /* This is the start of a Node entry structure. It should be a stable API
  54.  * for which to gather info from the Node Manager about devices attached
  55.  * to the bus.  */
  56. struct bus_options {
  57. u8 irmc; /* Iso Resource Manager Capable */
  58. u8 cmc; /* Cycle Master Capable */
  59. u8 isc; /* Iso Capable */
  60. u8 bmc; /* Bus Master Capable */
  61. u8 pmc; /* Power Manager Capable (PNP spec) */
  62. u8 cyc_clk_acc; /* Cycle clock accuracy */
  63. u8 generation; /* Incremented when configrom changes */
  64. u8 lnkspd; /* Link speed */
  65. u16 max_rec; /* Maximum packet size node can receive */
  66. };
  67. #define UNIT_DIRECTORY_VENDOR_ID 0x01
  68. #define UNIT_DIRECTORY_MODEL_ID 0x02
  69. #define UNIT_DIRECTORY_SPECIFIER_ID 0x04
  70. #define UNIT_DIRECTORY_VERSION 0x08
  71. #define UNIT_DIRECTORY_VENDOR_TEXT 0x10
  72. #define UNIT_DIRECTORY_MODEL_TEXT 0x20
  73. /*
  74.  * A unit directory corresponds to a protocol supported by the
  75.  * node. If a node supports eg. IP/1394 and AV/C, its config rom has a
  76.  * unit directory for each of these protocols.
  77.  * 
  78.  * Unit directories appear on two types of lists: for each node we
  79.  * maintain a list of the unit directories found in its config rom and
  80.  * for each driver we maintain a list of the unit directories
  81.  * (ie. devices) the driver manages.
  82.  */
  83. struct unit_directory {
  84. struct node_entry *ne;  /* The node which this directory belongs to */
  85. octlet_t address; /* Address of the unit directory on the node */
  86. u8 flags; /* Indicates which entries were read */
  87. quadlet_t vendor_id;
  88. const char *vendor_name;
  89. int vendor_name_size;
  90. quadlet_t model_id;
  91. const char *model_name;
  92. int model_name_size;
  93. quadlet_t specifier_id;
  94. quadlet_t version;
  95. struct hpsb_protocol_driver *driver;
  96. void *driver_data;
  97. /* For linking the nodes managed by the driver, or unmanaged nodes */
  98. struct list_head driver_list;
  99. /* For linking directories belonging to a node */
  100. struct list_head node_list;
  101. int count; /* Number of quadlets */
  102. quadlet_t quadlets[0];
  103. };
  104. struct node_entry {
  105. struct list_head list;
  106. u64 guid; /* GUID of this node */
  107. struct hpsb_host *host; /* Host this node is attached to */
  108. nodeid_t nodeid; /* NodeID */
  109. struct bus_options busopt; /* Bus Options */
  110. unsigned int generation; /* Synced with hpsb generation */
  111. /* The following is read from the config rom */
  112. u32 vendor_id;
  113. u32 capabilities;
  114. struct list_head unit_directories;
  115. const char *vendor_name;
  116. quadlet_t quadlets[0];
  117. };
  118. static inline int hpsb_node_entry_valid(struct node_entry *ne)
  119. {
  120. return ne->generation == get_hpsb_generation(ne->host);
  121. }
  122. /*
  123.  * Returns a node entry (which has its reference count incremented) or NULL if
  124.  * the GUID in question is not known.  Getting a valid entry does not mean that
  125.  * the node with this GUID is currently accessible (might be powered down).
  126.  */
  127. struct node_entry *hpsb_guid_get_entry(u64 guid);
  128. /* Same as above, but use the nodeid to get an node entry. This is not
  129.  * fool-proof by itself, since the nodeid can change.  */
  130. struct node_entry *hpsb_nodeid_get_entry(nodeid_t nodeid);
  131. /*
  132.  * If the entry refers to a local host, this function will return the pointer
  133.  * to the hpsb_host structure.  It will return NULL otherwise.  Once you have
  134.  * established it is a local host, you can use that knowledge from then on (the
  135.  * GUID won't wander to an external node).  */
  136. struct hpsb_host *hpsb_get_host_by_ne(struct node_entry *ne);
  137. /*
  138.  * This will fill in the given, pre-initialised hpsb_packet with the current
  139.  * information from the node entry (host, node ID, generation number).  It will
  140.  * return false if the node owning the GUID is not accessible (and not modify the 
  141.  * hpsb_packet) and return true otherwise.
  142.  *
  143.  * Note that packet sending may still fail in hpsb_send_packet if a bus reset
  144.  * happens while you are trying to set up the packet (due to obsolete generation
  145.  * number).  It will at least reliably fail so that you don't accidentally and
  146.  * unknowingly send your packet to the wrong node.
  147.  */
  148. void hpsb_node_fill_packet(struct node_entry *ne, struct hpsb_packet *pkt);
  149. int hpsb_node_read(struct node_entry *ne, u64 addr,
  150.    quadlet_t *buffer, size_t length);
  151. int hpsb_node_write(struct node_entry *ne, u64 addr, 
  152.     quadlet_t *buffer, size_t length);
  153. int hpsb_node_lock(struct node_entry *ne, u64 addr, 
  154.    int extcode, quadlet_t *data, quadlet_t arg);
  155. void init_ieee1394_nodemgr(int disable_hotplug);
  156. void cleanup_ieee1394_nodemgr(void);
  157. #endif /* _IEEE1394_NODEMGR_H */