highlevel.h 8.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190
  1. #ifndef IEEE1394_HIGHLEVEL_H
  2. #define IEEE1394_HIGHLEVEL_H
  3. struct hpsb_address_serve {
  4. struct list_head host_list; /* per host list */
  5. struct list_head hl_list; /* hpsb_highlevel list */
  6. struct hpsb_address_ops *op;
  7. struct hpsb_host *host;
  8. /* first address handled and first address behind, quadlet aligned */
  9. u64 start, end;
  10. };
  11. /*
  12. * The above structs are internal to highlevel driver handling. Only the
  13. * following structures are of interest to actual highlevel drivers.
  14. */
  15. struct hpsb_highlevel {
  16. struct module *owner;
  17. const char *name;
  18. /* Any of the following pointers can legally be NULL, except for
  19. * iso_receive which can only be NULL when you don't request
  20. * channels. */
  21. /* New host initialized. Will also be called during
  22. * hpsb_register_highlevel for all hosts already installed. */
  23. void (*add_host) (struct hpsb_host *host);
  24. /* Host about to be removed. Will also be called during
  25. * hpsb_unregister_highlevel once for each host. */
  26. void (*remove_host) (struct hpsb_host *host);
  27. /* Host experienced bus reset with possible configuration changes.
  28. * Note that this one may occur during interrupt/bottom half handling.
  29. * You can not expect to be able to do stock hpsb_reads. */
  30. void (*host_reset) (struct hpsb_host *host);
  31. /* An isochronous packet was received. Channel contains the channel
  32. * number for your convenience, it is also contained in the included
  33. * packet header (first quadlet, CRCs are missing). You may get called
  34. * for channel/host combinations you did not request. */
  35. void (*iso_receive) (struct hpsb_host *host, int channel,
  36. quadlet_t *data, size_t length);
  37. /* A write request was received on either the FCP_COMMAND (direction =
  38. * 0) or the FCP_RESPONSE (direction = 1) register. The cts arg
  39. * contains the cts field (first byte of data). */
  40. void (*fcp_request) (struct hpsb_host *host, int nodeid, int direction,
  41. int cts, u8 *data, size_t length);
  42. /* These are initialized by the subsystem when the
  43. * hpsb_higlevel is registered. */
  44. struct list_head hl_list;
  45. struct list_head irq_list;
  46. struct list_head addr_list;
  47. struct list_head host_info_list;
  48. rwlock_t host_info_lock;
  49. };
  50. struct hpsb_address_ops {
  51. /*
  52. * Null function pointers will make the respective operation complete
  53. * with RCODE_TYPE_ERROR. Makes for easy to implement read-only
  54. * registers (just leave everything but read NULL).
  55. *
  56. * All functions shall return appropriate IEEE 1394 rcodes.
  57. */
  58. /* These functions have to implement block reads for themselves. */
  59. /* These functions either return a response code
  60. or a negative number. In the first case a response will be generated; in the
  61. later case, no response will be sent and the driver, that handled the request
  62. will send the response itself
  63. */
  64. int (*read) (struct hpsb_host *host, int nodeid, quadlet_t *buffer,
  65. u64 addr, size_t length, u16 flags);
  66. int (*write) (struct hpsb_host *host, int nodeid, int destid,
  67. quadlet_t *data, u64 addr, size_t length, u16 flags);
  68. /* Lock transactions: write results of ext_tcode operation into
  69. * *store. */
  70. int (*lock) (struct hpsb_host *host, int nodeid, quadlet_t *store,
  71. u64 addr, quadlet_t data, quadlet_t arg, int ext_tcode, u16 flags);
  72. int (*lock64) (struct hpsb_host *host, int nodeid, octlet_t *store,
  73. u64 addr, octlet_t data, octlet_t arg, int ext_tcode, u16 flags);
  74. };
  75. void highlevel_add_host(struct hpsb_host *host);
  76. void highlevel_remove_host(struct hpsb_host *host);
  77. void highlevel_host_reset(struct hpsb_host *host);
  78. /* these functions are called to handle transactions. They are called, when
  79. a packet arrives. The flags argument contains the second word of the first header
  80. quadlet of the incoming packet (containing transaction label, retry code,
  81. transaction code and priority). These functions either return a response code
  82. or a negative number. In the first case a response will be generated; in the
  83. later case, no response will be sent and the driver, that handled the request
  84. will send the response itself.
  85. */
  86. int highlevel_read(struct hpsb_host *host, int nodeid, void *data,
  87. u64 addr, unsigned int length, u16 flags);
  88. int highlevel_write(struct hpsb_host *host, int nodeid, int destid,
  89. void *data, u64 addr, unsigned int length, u16 flags);
  90. int highlevel_lock(struct hpsb_host *host, int nodeid, quadlet_t *store,
  91. u64 addr, quadlet_t data, quadlet_t arg, int ext_tcode, u16 flags);
  92. int highlevel_lock64(struct hpsb_host *host, int nodeid, octlet_t *store,
  93. u64 addr, octlet_t data, octlet_t arg, int ext_tcode, u16 flags);
  94. void highlevel_iso_receive(struct hpsb_host *host, void *data,
  95. size_t length);
  96. void highlevel_fcp_request(struct hpsb_host *host, int nodeid, int direction,
  97. void *data, size_t length);
  98. /*
  99. * Register highlevel driver. The name pointer has to stay valid at all times
  100. * because the string is not copied.
  101. */
  102. void hpsb_register_highlevel(struct hpsb_highlevel *hl);
  103. void hpsb_unregister_highlevel(struct hpsb_highlevel *hl);
  104. /*
  105. * Register handlers for host address spaces. Start and end are 48 bit pointers
  106. * and have to be quadlet aligned (end points to the first address behind the
  107. * handled addresses. This function can be called multiple times for a single
  108. * hpsb_highlevel to implement sparse register sets. The requested region must
  109. * not overlap any previously allocated region, otherwise registering will fail.
  110. *
  111. * It returns true for successful allocation. There is no unregister function,
  112. * all address spaces are deallocated together with the hpsb_highlevel.
  113. */
  114. u64 hpsb_allocate_and_register_addrspace(struct hpsb_highlevel *hl,
  115. struct hpsb_host *host,
  116. struct hpsb_address_ops *ops,
  117. u64 size, u64 alignment,
  118. u64 start, u64 end);
  119. int hpsb_register_addrspace(struct hpsb_highlevel *hl, struct hpsb_host *host,
  120. struct hpsb_address_ops *ops, u64 start, u64 end);
  121. int hpsb_unregister_addrspace(struct hpsb_highlevel *hl, struct hpsb_host *host,
  122. u64 start);
  123. /*
  124. * Enable or disable receving a certain isochronous channel through the
  125. * iso_receive op.
  126. */
  127. int hpsb_listen_channel(struct hpsb_highlevel *hl, struct hpsb_host *host,
  128. unsigned int channel);
  129. void hpsb_unlisten_channel(struct hpsb_highlevel *hl, struct hpsb_host *host,
  130. unsigned int channel);
  131. /* Retrieve a hostinfo pointer bound to this driver/host */
  132. void *hpsb_get_hostinfo(struct hpsb_highlevel *hl, struct hpsb_host *host);
  133. /* Allocate a hostinfo pointer of data_size bound to this driver/host */
  134. void *hpsb_create_hostinfo(struct hpsb_highlevel *hl, struct hpsb_host *host,
  135. size_t data_size);
  136. /* Free and remove the hostinfo pointer bound to this driver/host */
  137. void hpsb_destroy_hostinfo(struct hpsb_highlevel *hl, struct hpsb_host *host);
  138. /* Set an alternate lookup key for the hostinfo bound to this driver/host */
  139. void hpsb_set_hostinfo_key(struct hpsb_highlevel *hl, struct hpsb_host *host, unsigned long key);
  140. /* Retrieve the alternate lookup key for the hostinfo bound to this driver/host */
  141. unsigned long hpsb_get_hostinfo_key(struct hpsb_highlevel *hl, struct hpsb_host *host);
  142. /* Retrieve a hostinfo pointer bound to this driver using its alternate key */
  143. void *hpsb_get_hostinfo_bykey(struct hpsb_highlevel *hl, unsigned long key);
  144. /* Set the hostinfo pointer to something useful. Usually follows a call to
  145. * hpsb_create_hostinfo, where the size is 0. */
  146. int hpsb_set_hostinfo(struct hpsb_highlevel *hl, struct hpsb_host *host, void *data);
  147. /* Retrieve hpsb_host using a highlevel handle and a key */
  148. struct hpsb_host *hpsb_get_host_bykey(struct hpsb_highlevel *hl, unsigned long key);
  149. #endif /* IEEE1394_HIGHLEVEL_H */