fw-device-cdev.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146
  1. /* -*- c-basic-offset: 8 -*-
  2. *
  3. * fw-device-cdev.h -- Char device interface.
  4. *
  5. * Copyright (C) 2005-2006 Kristian Hoegsberg <krh@bitplanet.net>
  6. *
  7. * This program is free software; you can redistribute it and/or modify
  8. * it under the terms of the GNU General Public License as published by
  9. * the Free Software Foundation; either version 2 of the License, or
  10. * (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software Foundation,
  19. * Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  20. */
  21. #ifndef __fw_cdev_h
  22. #define __fw_cdev_h
  23. #include <asm/ioctl.h>
  24. #include <asm/types.h>
  25. #define TCODE_WRITE_QUADLET_REQUEST 0
  26. #define TCODE_WRITE_BLOCK_REQUEST 1
  27. #define TCODE_WRITE_RESPONSE 2
  28. #define TCODE_READ_QUADLET_REQUEST 4
  29. #define TCODE_READ_BLOCK_REQUEST 5
  30. #define TCODE_READ_QUADLET_RESPONSE 6
  31. #define TCODE_READ_BLOCK_RESPONSE 7
  32. #define TCODE_CYCLE_START 8
  33. #define TCODE_LOCK_REQUEST 9
  34. #define TCODE_STREAM_DATA 10
  35. #define TCODE_LOCK_RESPONSE 11
  36. #define RCODE_COMPLETE 0x0
  37. #define RCODE_CONFLICT_ERROR 0x4
  38. #define RCODE_DATA_ERROR 0x5
  39. #define RCODE_TYPE_ERROR 0x6
  40. #define RCODE_ADDRESS_ERROR 0x7
  41. #define SCODE_100 0x0
  42. #define SCODE_200 0x1
  43. #define SCODE_400 0x2
  44. #define SCODE_800 0x3
  45. #define SCODE_1600 0x4
  46. #define SCODE_3200 0x5
  47. #define FW_CDEV_EVENT_RESPONSE 0x00
  48. #define FW_CDEV_EVENT_REQUEST 0x01
  49. #define FW_CDEV_EVENT_ISO_INTERRUPT 0x02
  50. /* The 'closure' fields are for user space to use. Data passed in the
  51. * 'closure' field for a request will be returned in the corresponding
  52. * event. It's a 64-bit type so that it's a fixed size type big
  53. * enough to hold a pointer on all platforms. */
  54. struct fw_cdev_event_response {
  55. __u32 type;
  56. __u32 rcode;
  57. __u64 closure;
  58. __u32 length;
  59. __u32 data[0];
  60. };
  61. struct fw_cdev_event_request {
  62. __u32 type;
  63. __u32 tcode;
  64. __u64 offset;
  65. __u64 closure;
  66. __u32 serial;
  67. __u32 length;
  68. __u32 data[0];
  69. };
  70. struct fw_cdev_event_iso_interrupt {
  71. __u32 type;
  72. __u32 cycle;
  73. __u64 closure;
  74. };
  75. #define FW_CDEV_IOC_GET_CONFIG_ROM _IOR('#', 0x00, struct fw_cdev_get_config_rom)
  76. #define FW_CDEV_IOC_SEND_REQUEST _IO('#', 0x01)
  77. #define FW_CDEV_IOC_ALLOCATE _IO('#', 0x02)
  78. #define FW_CDEV_IOC_SEND_RESPONSE _IO('#', 0x03)
  79. #define FW_CDEV_IOC_CREATE_ISO_CONTEXT _IO('#', 0x04)
  80. #define FW_CDEV_IOC_QUEUE_ISO _IO('#', 0x05)
  81. #define FW_CDEV_IOC_SEND_ISO _IO('#', 0x06)
  82. struct fw_cdev_get_config_rom {
  83. __u32 length;
  84. __u32 data[256];
  85. };
  86. struct fw_cdev_send_request {
  87. __u32 tcode;
  88. __u32 length;
  89. __u64 offset;
  90. __u64 closure;
  91. __u64 data;
  92. };
  93. struct fw_cdev_send_response {
  94. __u32 rcode;
  95. __u32 length;
  96. __u64 data;
  97. __u32 serial;
  98. };
  99. struct fw_cdev_allocate {
  100. __u64 offset;
  101. __u64 closure;
  102. __u32 length;
  103. };
  104. struct fw_cdev_create_iso_context {
  105. __u32 buffer_size;
  106. };
  107. struct fw_cdev_iso_packet {
  108. __u16 payload_length; /* Length of indirect payload. */
  109. __u32 interrupt : 1; /* Generate interrupt on this packet */
  110. __u32 skip : 1; /* Set to not send packet at all. */
  111. __u32 tag : 2;
  112. __u32 sy : 4;
  113. __u32 header_length : 8; /* Length of immediate header. */
  114. __u32 header[0];
  115. };
  116. struct fw_cdev_queue_iso {
  117. __u32 size;
  118. __u64 packets;
  119. __u64 data;
  120. };
  121. struct fw_cdev_send_iso {
  122. __u32 channel;
  123. __u32 speed;
  124. __s32 cycle;
  125. };
  126. #endif /* __fw_cdev_h */