core.h 6.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243
  1. #ifndef _FIREWIRE_CORE_H
  2. #define _FIREWIRE_CORE_H
  3. #include <linux/fs.h>
  4. #include <linux/list.h>
  5. #include <linux/idr.h>
  6. #include <linux/mm_types.h>
  7. #include <linux/rwsem.h>
  8. #include <linux/slab.h>
  9. #include <linux/types.h>
  10. #include <asm/atomic.h>
  11. struct device;
  12. struct fw_card;
  13. struct fw_device;
  14. struct fw_iso_buffer;
  15. struct fw_iso_context;
  16. struct fw_iso_packet;
  17. struct fw_node;
  18. struct fw_packet;
  19. /* -card */
  20. /* bitfields within the PHY registers */
  21. #define PHY_LINK_ACTIVE 0x80
  22. #define PHY_CONTENDER 0x40
  23. #define PHY_BUS_RESET 0x40
  24. #define PHY_EXTENDED_REGISTERS 0xe0
  25. #define PHY_BUS_SHORT_RESET 0x40
  26. #define PHY_INT_STATUS_BITS 0x3c
  27. #define PHY_ENABLE_ACCEL 0x02
  28. #define PHY_ENABLE_MULTI 0x01
  29. #define PHY_PAGE_SELECT 0xe0
  30. #define BANDWIDTH_AVAILABLE_INITIAL 4915
  31. #define BROADCAST_CHANNEL_INITIAL (1 << 31 | 31)
  32. #define BROADCAST_CHANNEL_VALID (1 << 30)
  33. #define CSR_STATE_BIT_CMSTR (1 << 8)
  34. #define CSR_STATE_BIT_ABDICATE (1 << 10)
  35. struct fw_card_driver {
  36. /*
  37. * Enable the given card with the given initial config rom.
  38. * This function is expected to activate the card, and either
  39. * enable the PHY or set the link_on bit and initiate a bus
  40. * reset.
  41. */
  42. int (*enable)(struct fw_card *card,
  43. const __be32 *config_rom, size_t length);
  44. int (*read_phy_reg)(struct fw_card *card, int address);
  45. int (*update_phy_reg)(struct fw_card *card, int address,
  46. int clear_bits, int set_bits);
  47. /*
  48. * Update the config rom for an enabled card. This function
  49. * should change the config rom that is presented on the bus
  50. * and initiate a bus reset.
  51. */
  52. int (*set_config_rom)(struct fw_card *card,
  53. const __be32 *config_rom, size_t length);
  54. void (*send_request)(struct fw_card *card, struct fw_packet *packet);
  55. void (*send_response)(struct fw_card *card, struct fw_packet *packet);
  56. /* Calling cancel is valid once a packet has been submitted. */
  57. int (*cancel_packet)(struct fw_card *card, struct fw_packet *packet);
  58. /*
  59. * Allow the specified node ID to do direct DMA out and in of
  60. * host memory. The card will disable this for all node when
  61. * a bus reset happens, so driver need to reenable this after
  62. * bus reset. Returns 0 on success, -ENODEV if the card
  63. * doesn't support this, -ESTALE if the generation doesn't
  64. * match.
  65. */
  66. int (*enable_phys_dma)(struct fw_card *card,
  67. int node_id, int generation);
  68. u32 (*read_csr)(struct fw_card *card, int csr_offset);
  69. void (*write_csr)(struct fw_card *card, int csr_offset, u32 value);
  70. struct fw_iso_context *
  71. (*allocate_iso_context)(struct fw_card *card,
  72. int type, int channel, size_t header_size);
  73. void (*free_iso_context)(struct fw_iso_context *ctx);
  74. int (*start_iso)(struct fw_iso_context *ctx,
  75. s32 cycle, u32 sync, u32 tags);
  76. int (*set_iso_channels)(struct fw_iso_context *ctx, u64 *channels);
  77. int (*queue_iso)(struct fw_iso_context *ctx,
  78. struct fw_iso_packet *packet,
  79. struct fw_iso_buffer *buffer,
  80. unsigned long payload);
  81. int (*stop_iso)(struct fw_iso_context *ctx);
  82. };
  83. void fw_card_initialize(struct fw_card *card,
  84. const struct fw_card_driver *driver, struct device *device);
  85. int fw_card_add(struct fw_card *card,
  86. u32 max_receive, u32 link_speed, u64 guid);
  87. void fw_core_remove_card(struct fw_card *card);
  88. int fw_compute_block_crc(__be32 *block);
  89. void fw_schedule_bus_reset(struct fw_card *card, bool delayed, bool short_reset);
  90. void fw_schedule_bm_work(struct fw_card *card, unsigned long delay);
  91. static inline struct fw_card *fw_card_get(struct fw_card *card)
  92. {
  93. kref_get(&card->kref);
  94. return card;
  95. }
  96. void fw_card_release(struct kref *kref);
  97. static inline void fw_card_put(struct fw_card *card)
  98. {
  99. kref_put(&card->kref, fw_card_release);
  100. }
  101. /* -cdev */
  102. extern const struct file_operations fw_device_ops;
  103. void fw_device_cdev_update(struct fw_device *device);
  104. void fw_device_cdev_remove(struct fw_device *device);
  105. void fw_cdev_handle_phy_packet(struct fw_card *card, struct fw_packet *p);
  106. /* -device */
  107. extern struct rw_semaphore fw_device_rwsem;
  108. extern struct idr fw_device_idr;
  109. extern int fw_cdev_major;
  110. struct fw_device *fw_device_get_by_devt(dev_t devt);
  111. int fw_device_set_broadcast_channel(struct device *dev, void *gen);
  112. void fw_node_event(struct fw_card *card, struct fw_node *node, int event);
  113. /* -iso */
  114. int fw_iso_buffer_map(struct fw_iso_buffer *buffer, struct vm_area_struct *vma);
  115. /* -topology */
  116. enum {
  117. FW_NODE_CREATED,
  118. FW_NODE_UPDATED,
  119. FW_NODE_DESTROYED,
  120. FW_NODE_LINK_ON,
  121. FW_NODE_LINK_OFF,
  122. FW_NODE_INITIATED_RESET,
  123. };
  124. struct fw_node {
  125. u16 node_id;
  126. u8 color;
  127. u8 port_count;
  128. u8 link_on:1;
  129. u8 initiated_reset:1;
  130. u8 b_path:1;
  131. u8 phy_speed:2; /* As in the self ID packet. */
  132. u8 max_speed:2; /* Minimum of all phy-speeds on the path from the
  133. * local node to this node. */
  134. u8 max_depth:4; /* Maximum depth to any leaf node */
  135. u8 max_hops:4; /* Max hops in this sub tree */
  136. atomic_t ref_count;
  137. /* For serializing node topology into a list. */
  138. struct list_head link;
  139. /* Upper layer specific data. */
  140. void *data;
  141. struct fw_node *ports[0];
  142. };
  143. static inline struct fw_node *fw_node_get(struct fw_node *node)
  144. {
  145. atomic_inc(&node->ref_count);
  146. return node;
  147. }
  148. static inline void fw_node_put(struct fw_node *node)
  149. {
  150. if (atomic_dec_and_test(&node->ref_count))
  151. kfree(node);
  152. }
  153. void fw_core_handle_bus_reset(struct fw_card *card, int node_id,
  154. int generation, int self_id_count, u32 *self_ids, bool bm_abdicate);
  155. void fw_destroy_nodes(struct fw_card *card);
  156. /*
  157. * Check whether new_generation is the immediate successor of old_generation.
  158. * Take counter roll-over at 255 (as per OHCI) into account.
  159. */
  160. static inline bool is_next_generation(int new_generation, int old_generation)
  161. {
  162. return (new_generation & 0xff) == ((old_generation + 1) & 0xff);
  163. }
  164. /* -transaction */
  165. #define TCODE_LINK_INTERNAL 0xe
  166. #define TCODE_IS_READ_REQUEST(tcode) (((tcode) & ~1) == 4)
  167. #define TCODE_IS_BLOCK_PACKET(tcode) (((tcode) & 1) != 0)
  168. #define TCODE_IS_LINK_INTERNAL(tcode) ((tcode) == TCODE_LINK_INTERNAL)
  169. #define TCODE_IS_REQUEST(tcode) (((tcode) & 2) == 0)
  170. #define TCODE_IS_RESPONSE(tcode) (((tcode) & 2) != 0)
  171. #define TCODE_HAS_REQUEST_DATA(tcode) (((tcode) & 12) != 4)
  172. #define TCODE_HAS_RESPONSE_DATA(tcode) (((tcode) & 12) != 0)
  173. #define LOCAL_BUS 0xffc0
  174. void fw_core_handle_request(struct fw_card *card, struct fw_packet *request);
  175. void fw_core_handle_response(struct fw_card *card, struct fw_packet *packet);
  176. int fw_get_response_length(struct fw_request *request);
  177. void fw_fill_response(struct fw_packet *response, u32 *request_header,
  178. int rcode, void *payload, size_t length);
  179. #define FW_PHY_CONFIG_NO_NODE_ID -1
  180. #define FW_PHY_CONFIG_CURRENT_GAP_COUNT -1
  181. void fw_send_phy_config(struct fw_card *card,
  182. int node_id, int generation, int gap_count);
  183. static inline bool is_ping_packet(u32 *data)
  184. {
  185. return (data[0] & 0xc0ffffff) == 0 && ~data[0] == data[1];
  186. }
  187. #endif /* _FIREWIRE_CORE_H */