core.h 6.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246
  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. void (*flush_queue_iso)(struct fw_iso_context *ctx);
  82. int (*stop_iso)(struct fw_iso_context *ctx);
  83. };
  84. void fw_card_initialize(struct fw_card *card,
  85. const struct fw_card_driver *driver, struct device *device);
  86. int fw_card_add(struct fw_card *card,
  87. u32 max_receive, u32 link_speed, u64 guid);
  88. void fw_core_remove_card(struct fw_card *card);
  89. int fw_compute_block_crc(__be32 *block);
  90. void fw_schedule_bus_reset(struct fw_card *card, bool delayed, bool short_reset);
  91. void fw_schedule_bm_work(struct fw_card *card, unsigned long delay);
  92. static inline struct fw_card *fw_card_get(struct fw_card *card)
  93. {
  94. kref_get(&card->kref);
  95. return card;
  96. }
  97. void fw_card_release(struct kref *kref);
  98. static inline void fw_card_put(struct fw_card *card)
  99. {
  100. kref_put(&card->kref, fw_card_release);
  101. }
  102. /* -cdev */
  103. extern const struct file_operations fw_device_ops;
  104. void fw_device_cdev_update(struct fw_device *device);
  105. void fw_device_cdev_remove(struct fw_device *device);
  106. void fw_cdev_handle_phy_packet(struct fw_card *card, struct fw_packet *p);
  107. /* -device */
  108. extern struct rw_semaphore fw_device_rwsem;
  109. extern struct idr fw_device_idr;
  110. extern int fw_cdev_major;
  111. struct fw_device *fw_device_get_by_devt(dev_t devt);
  112. int fw_device_set_broadcast_channel(struct device *dev, void *gen);
  113. void fw_node_event(struct fw_card *card, struct fw_node *node, int event);
  114. /* -iso */
  115. int fw_iso_buffer_map(struct fw_iso_buffer *buffer, struct vm_area_struct *vma);
  116. /* -topology */
  117. enum {
  118. FW_NODE_CREATED,
  119. FW_NODE_UPDATED,
  120. FW_NODE_DESTROYED,
  121. FW_NODE_LINK_ON,
  122. FW_NODE_LINK_OFF,
  123. FW_NODE_INITIATED_RESET,
  124. };
  125. struct fw_node {
  126. u16 node_id;
  127. u8 color;
  128. u8 port_count;
  129. u8 link_on:1;
  130. u8 initiated_reset:1;
  131. u8 b_path:1;
  132. u8 phy_speed:2; /* As in the self ID packet. */
  133. u8 max_speed:2; /* Minimum of all phy-speeds on the path from the
  134. * local node to this node. */
  135. u8 max_depth:4; /* Maximum depth to any leaf node */
  136. u8 max_hops:4; /* Max hops in this sub tree */
  137. atomic_t ref_count;
  138. /* For serializing node topology into a list. */
  139. struct list_head link;
  140. /* Upper layer specific data. */
  141. void *data;
  142. struct fw_node *ports[0];
  143. };
  144. static inline struct fw_node *fw_node_get(struct fw_node *node)
  145. {
  146. atomic_inc(&node->ref_count);
  147. return node;
  148. }
  149. static inline void fw_node_put(struct fw_node *node)
  150. {
  151. if (atomic_dec_and_test(&node->ref_count))
  152. kfree(node);
  153. }
  154. void fw_core_handle_bus_reset(struct fw_card *card, int node_id,
  155. int generation, int self_id_count, u32 *self_ids, bool bm_abdicate);
  156. void fw_destroy_nodes(struct fw_card *card);
  157. /*
  158. * Check whether new_generation is the immediate successor of old_generation.
  159. * Take counter roll-over at 255 (as per OHCI) into account.
  160. */
  161. static inline bool is_next_generation(int new_generation, int old_generation)
  162. {
  163. return (new_generation & 0xff) == ((old_generation + 1) & 0xff);
  164. }
  165. /* -transaction */
  166. #define TCODE_LINK_INTERNAL 0xe
  167. #define TCODE_IS_READ_REQUEST(tcode) (((tcode) & ~1) == 4)
  168. #define TCODE_IS_BLOCK_PACKET(tcode) (((tcode) & 1) != 0)
  169. #define TCODE_IS_LINK_INTERNAL(tcode) ((tcode) == TCODE_LINK_INTERNAL)
  170. #define TCODE_IS_REQUEST(tcode) (((tcode) & 2) == 0)
  171. #define TCODE_IS_RESPONSE(tcode) (((tcode) & 2) != 0)
  172. #define TCODE_HAS_REQUEST_DATA(tcode) (((tcode) & 12) != 4)
  173. #define TCODE_HAS_RESPONSE_DATA(tcode) (((tcode) & 12) != 0)
  174. #define LOCAL_BUS 0xffc0
  175. void fw_core_handle_request(struct fw_card *card, struct fw_packet *request);
  176. void fw_core_handle_response(struct fw_card *card, struct fw_packet *packet);
  177. int fw_get_response_length(struct fw_request *request);
  178. void fw_fill_response(struct fw_packet *response, u32 *request_header,
  179. int rcode, void *payload, size_t length);
  180. #define FW_PHY_CONFIG_NO_NODE_ID -1
  181. #define FW_PHY_CONFIG_CURRENT_GAP_COUNT -1
  182. void fw_send_phy_config(struct fw_card *card,
  183. int node_id, int generation, int gap_count);
  184. static inline bool is_ping_packet(u32 *data)
  185. {
  186. return (data[0] & 0xc0ffffff) == 0 && ~data[0] == data[1];
  187. }
  188. #endif /* _FIREWIRE_CORE_H */