firewire-constants.h 3.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * IEEE 1394 constants.
  3. *
  4. * Copyright (C) 2005-2007 Kristian Hoegsberg <krh@bitplanet.net>
  5. *
  6. * Permission is hereby granted, free of charge, to any person obtaining a
  7. * copy of this software and associated documentation files (the "Software"),
  8. * to deal in the Software without restriction, including without limitation
  9. * the rights to use, copy, modify, merge, publish, distribute, sublicense,
  10. * and/or sell copies of the Software, and to permit persons to whom the
  11. * Software is furnished to do so, subject to the following conditions:
  12. *
  13. * The above copyright notice and this permission notice (including the next
  14. * paragraph) shall be included in all copies or substantial portions of the
  15. * Software.
  16. *
  17. * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  18. * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  19. * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL
  20. * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR
  21. * OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE,
  22. * ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER
  23. * DEALINGS IN THE SOFTWARE.
  24. */
  25. #ifndef _LINUX_FIREWIRE_CONSTANTS_H
  26. #define _LINUX_FIREWIRE_CONSTANTS_H
  27. #define TCODE_WRITE_QUADLET_REQUEST 0x0
  28. #define TCODE_WRITE_BLOCK_REQUEST 0x1
  29. #define TCODE_WRITE_RESPONSE 0x2
  30. #define TCODE_READ_QUADLET_REQUEST 0x4
  31. #define TCODE_READ_BLOCK_REQUEST 0x5
  32. #define TCODE_READ_QUADLET_RESPONSE 0x6
  33. #define TCODE_READ_BLOCK_RESPONSE 0x7
  34. #define TCODE_CYCLE_START 0x8
  35. #define TCODE_LOCK_REQUEST 0x9
  36. #define TCODE_STREAM_DATA 0xa
  37. #define TCODE_LOCK_RESPONSE 0xb
  38. #define EXTCODE_MASK_SWAP 0x1
  39. #define EXTCODE_COMPARE_SWAP 0x2
  40. #define EXTCODE_FETCH_ADD 0x3
  41. #define EXTCODE_LITTLE_ADD 0x4
  42. #define EXTCODE_BOUNDED_ADD 0x5
  43. #define EXTCODE_WRAP_ADD 0x6
  44. #define EXTCODE_VENDOR_DEPENDENT 0x7
  45. /* Linux firewire-core (Juju) specific tcodes */
  46. #define TCODE_LOCK_MASK_SWAP (0x10 | EXTCODE_MASK_SWAP)
  47. #define TCODE_LOCK_COMPARE_SWAP (0x10 | EXTCODE_COMPARE_SWAP)
  48. #define TCODE_LOCK_FETCH_ADD (0x10 | EXTCODE_FETCH_ADD)
  49. #define TCODE_LOCK_LITTLE_ADD (0x10 | EXTCODE_LITTLE_ADD)
  50. #define TCODE_LOCK_BOUNDED_ADD (0x10 | EXTCODE_BOUNDED_ADD)
  51. #define TCODE_LOCK_WRAP_ADD (0x10 | EXTCODE_WRAP_ADD)
  52. #define TCODE_LOCK_VENDOR_DEPENDENT (0x10 | EXTCODE_VENDOR_DEPENDENT)
  53. #define RCODE_COMPLETE 0x0
  54. #define RCODE_CONFLICT_ERROR 0x4
  55. #define RCODE_DATA_ERROR 0x5
  56. #define RCODE_TYPE_ERROR 0x6
  57. #define RCODE_ADDRESS_ERROR 0x7
  58. /* Linux firewire-core (Juju) specific rcodes */
  59. #define RCODE_SEND_ERROR 0x10
  60. #define RCODE_CANCELLED 0x11
  61. #define RCODE_BUSY 0x12
  62. #define RCODE_GENERATION 0x13
  63. #define RCODE_NO_ACK 0x14
  64. #define SCODE_100 0x0
  65. #define SCODE_200 0x1
  66. #define SCODE_400 0x2
  67. #define SCODE_800 0x3
  68. #define SCODE_1600 0x4
  69. #define SCODE_3200 0x5
  70. #define SCODE_BETA 0x3
  71. #define ACK_COMPLETE 0x1
  72. #define ACK_PENDING 0x2
  73. #define ACK_BUSY_X 0x4
  74. #define ACK_BUSY_A 0x5
  75. #define ACK_BUSY_B 0x6
  76. #define ACK_DATA_ERROR 0xd
  77. #define ACK_TYPE_ERROR 0xe
  78. #define RETRY_1 0x00
  79. #define RETRY_X 0x01
  80. #define RETRY_A 0x02
  81. #define RETRY_B 0x03
  82. #endif /* _LINUX_FIREWIRE_CONSTANTS_H */