80-ieee1394-unit-function.hwdb 45 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324
  1. # This file is part of systemd.
  2. # Description
  3. #
  4. # Each node on IEEE 1394 bus has configuration ROM with information for identification. Although the
  5. # typical content of configuration ROM is defined by 1394 Trading Association, many nodes have own
  6. # quirks. This database includes supplemental information to unit in the node.
  7. # Convention
  8. #
  9. # One entry has two keys. One is customized key to match a node. Another is for kernel alias to
  10. # match an unit included in the node.
  11. #
  12. # The customized key has two formats according to whether the node has model attribute:
  13. # - ven0x000000mo0x000000units0x000000:0x000000
  14. # - ven0x000000units0x000000:0x000000
  15. #
  16. # Even when the node has multiple units, the entry should match to one of the units. In the case,
  17. # the customized key should have wild pattern for units field:
  18. # - ven0x000000mo0x000000units*0x000000:0x000000*
  19. # - ven0x000000units*0x000000:0x000000*
  20. #
  21. # The hexadecimal digits part of the customized key should be lower-case. Linux FireWire subsystem
  22. # uses lower-case value for attributes of sysfs node, and systemd-hwdb parses the custom key by
  23. # case-sensitive way. On the other hand, it parses kernel alias by case-insensitive way.
  24. #
  25. # The entry should have some of IEEE1394_UNIT_FUNCTION_XXX environment variables to express function
  26. # of the unit. The variables are used to decide group owner of special file for character device
  27. # corresponding to node including the unit. At present, below variables are supported:
  28. # - IEEE1394_UNIT_FUNCTION_MIDI
  29. # - For any unit to process MIDI messages. For example, the unit includes AV/C music subunit.
  30. # - IEEE1394_UNIT_FUNCTION_AUDIO
  31. # - For any unit to process audio signal. For example, the unit includes AV/C audio subunit.
  32. # - IEEE1394_UNIT_FUNCTION_VIDEO
  33. # - For any unit to process video signal.
  34. #
  35. # Additionally, ID_VENDOR_FROM_DATABASE and ID_MODEL_FROM_DATABASE environment variables are
  36. # preferable.
  37. #
  38. # General entry for AV/C device compliant to AV/C command set generic specification:
  39. # * Configuration ROM for AV/C Devices 1.0 (Dec. 12, 2000, 1394 Trading Association, TA Document
  40. # 1999027)
  41. #
  42. # Just for backward compatibility. Please invalidate IEEE1394_UNIT_FUNCTION_VIDEO by adding entries
  43. # if it is inconvenient.
  44. ieee1394:node:ven*mo*units*0x00a02d:0x010001*
  45. ieee1394:ven*mo*sp0000A02Dver00010001
  46. IEEE1394_UNIT_FUNCTION_VIDEO=1
  47. #
  48. # General entries for AV/C device with vendor unique command set:
  49. # * IEC 61883-1:1998
  50. #
  51. # Please invalidate IEEE1394_UNIT_FUNCTION_VIDEO by adding entries if it is inconvenient.
  52. ieee1394:node:ven*mo*units*0x00a02d:0x014000*
  53. ieee1394:ven*mo*sp0000A02Dver00014000
  54. IEEE1394_UNIT_FUNCTION_VIDEO=1
  55. # Just for backward compatibility. Please invalidate IEEE1394_UNIT_FUNCTION_VIDEO by adding entries
  56. # if it is inconvenient.
  57. ieee1394:node:ven*mo*units*0x00a02d:0x014001*
  58. ieee1394:ven*mo*sp0000A02Dver00014001
  59. IEEE1394_UNIT_FUNCTION_VIDEO=1
  60. #
  61. # General entry for:
  62. # * 1394-based Digital Camera Specification Version 1.04 (Aug. 9, 1996, 1394 Trading Association)
  63. #
  64. ieee1394:node:ven*units0x00a02d:0x000100
  65. ieee1394:ven*sp0000A02Dver00000100
  66. IEEE1394_UNIT_FUNCTION_VIDEO=1
  67. #
  68. # General entry for:
  69. # * 1394-based Digital Camera Specification Version 1.20 (Jul. 23, 1998, 1394 Trading Association)
  70. #
  71. ieee1394:node:ven*units0x00a02d:0x000101
  72. ieee1394:ven*sp0000A02Dver00000101
  73. IEEE1394_UNIT_FUNCTION_VIDEO=1
  74. #
  75. # General entry for:
  76. # * IIDC Digital Camera Control Specification Ver.1.30 (Jul. 25, 2000, 1394 Trading Association)
  77. # * IIDC Digital Camera Control Specification Ver.1.31 (Feb. 2, 2004, 1394 Trading Association, TA
  78. # Document 2003017)
  79. # * IIDC Digital Camera Control Specification Ver.1.32 (Jul. 24, 2008, 1394 Trading Association,
  80. # Document number 2007009)
  81. #
  82. ieee1394:node:ven*units0x00a02d:0x000102
  83. ieee1394:ven*sp0000A02Dver00000102
  84. IEEE1394_UNIT_FUNCTION_VIDEO=1
  85. #
  86. # General entry for:
  87. # * IIDC2 Digital Camera Control Specification Ver.1.0.0 (Jan 26th, 2012, 1394 Trading Association,
  88. # TS2011001)
  89. # * IIDC2 Digital Camera Control Specification Ver.1.1.0 (May 19th, 2015, 1394 Trading Association,
  90. # TS2015001)
  91. #
  92. ieee1394:node:ven*units0x00a02d:0x000110
  93. ieee1394:ven*sp0000A02Dver00000110
  94. IEEE1394_UNIT_FUNCTION_VIDEO=1
  95. #
  96. # BridgeCo. Enhancement BreakOut Box (BeBoB) for DM1000, DM1100, and DM1500 ASICs.
  97. #
  98. # Match to eAR Master One, Eroica, Figaro, and Ciaccona.
  99. ieee1394:node:ven0x000aacmo0x000002units0x00a02d:0x010001
  100. ieee1394:ven00000AACmo00000002sp0000A02Dver00010001
  101. ID_VENDOR_FROM_DATABASE=Acoustic Reality
  102. ID_MODEL_FROM_DATABASE=eAR FireWire Audio
  103. IEEE1394_UNIT_FUNCTION_AUDIO=1
  104. IEEE1394_UNIT_FUNCTION_VIDEO=0
  105. ieee1394:node:ven0x0003dbmo0x01eeeeunits0x00a02d:0x010001
  106. ieee1394:ven000003DBmo0001EEEEsp0000A02Dver00010001
  107. ID_VENDOR_FROM_DATABASE=Apogee Electronics
  108. ID_MODEL_FROM_DATABASE=Ensemble FireWire
  109. IEEE1394_UNIT_FUNCTION_MIDI=1
  110. IEEE1394_UNIT_FUNCTION_AUDIO=1
  111. IEEE1394_UNIT_FUNCTION_VIDEO=0
  112. # An extension card for Rosetta 200, Rosetta 800, AD16X, DA16X, DD16X, and BigBen.
  113. ieee1394:node:ven0x0003dbmo0x010048units0x00a02d:0x010001
  114. ieee1394:ven000003DBmo00010048sp0000A02Dver00010001
  115. ID_VENDOR_FROM_DATABASE=Apogee Electronics
  116. ID_MODEL_FROM_DATABASE=X-FireWire Card
  117. IEEE1394_UNIT_FUNCTION_MIDI=1
  118. IEEE1394_UNIT_FUNCTION_AUDIO=1
  119. IEEE1394_UNIT_FUNCTION_VIDEO=0
  120. ieee1394:node:ven0x001564mo0x000610units0x00a02d:0x010001
  121. ieee1394:ven00001564mo00000610sp0000A02Dver00010001
  122. ID_VENDOR_FROM_DATABASE=Behringer
  123. ID_MODEL_FROM_DATABASE=F-Control Audio 610
  124. IEEE1394_UNIT_FUNCTION_MIDI=1
  125. IEEE1394_UNIT_FUNCTION_AUDIO=1
  126. IEEE1394_UNIT_FUNCTION_VIDEO=0
  127. ieee1394:node:ven0x001564mo0x001616units0x00a02d:0x010001
  128. ieee1394:ven00001564mo00001616sp0000A02Dver00010001
  129. ID_VENDOR_FROM_DATABASE=Behringer
  130. ID_MODEL_FROM_DATABASE=F-Control Audio 1616
  131. IEEE1394_UNIT_FUNCTION_MIDI=1
  132. IEEE1394_UNIT_FUNCTION_AUDIO=1
  133. IEEE1394_UNIT_FUNCTION_VIDEO=0
  134. ieee1394:node:ven0x001564mo0x001204units0x00a02d:0x010001
  135. ieee1394:ven00001564mo00001204sp0000A02Dver00010001
  136. ID_VENDOR_FROM_DATABASE=Behringer
  137. ID_MODEL_FROM_DATABASE=XENYX UFX1204
  138. IEEE1394_UNIT_FUNCTION_AUDIO=1
  139. IEEE1394_UNIT_FUNCTION_VIDEO=0
  140. ieee1394:node:ven0x001564mo0x001604units0x00a02d:0x010001
  141. ieee1394:ven00001564mo00001604sp0000A02Dver00010001
  142. ID_VENDOR_FROM_DATABASE=Behringer
  143. ID_MODEL_FROM_DATABASE=XENYX UFX1604
  144. IEEE1394_UNIT_FUNCTION_AUDIO=1
  145. IEEE1394_UNIT_FUNCTION_VIDEO=0
  146. # An extension card for Behringer X32.
  147. ieee1394:node:ven0x001564mo0x000006units0x00a02d:0x010001
  148. ieee1394:ven00001564mo00000006sp0000A02Dver00010001
  149. ID_VENDOR_FROM_DATABASE=Behringer
  150. ID_MODEL_FROM_DATABASE=X-UF
  151. IEEE1394_UNIT_FUNCTION_MIDI=1
  152. IEEE1394_UNIT_FUNCTION_AUDIO=1
  153. IEEE1394_UNIT_FUNCTION_VIDEO=0
  154. ieee1394:node:ven0x00000amo0x030000units0x00a02d:0x010001
  155. ieee1394:ven0000000Amo00030000sp0000A02Dver00010001
  156. ID_VENDOR_FROM_DATABASE=CME
  157. ID_MODEL_FROM_DATABASE=Matrix K FW
  158. IEEE1394_UNIT_FUNCTION_AUDIO=1
  159. IEEE1394_UNIT_FUNCTION_VIDEO=0
  160. ieee1394:node:ven0x00a07emo0x0000a9units0x00a02d:0x014001
  161. ieee1394:ven0000A07Emo000000A9sp0000A02Dver00014001
  162. ID_VENDOR_FROM_DATABASE=Digidesign
  163. ID_MODEL_FROM_DATABASE=Mbox 2 Pro
  164. IEEE1394_UNIT_FUNCTION_MIDI=1
  165. IEEE1394_UNIT_FUNCTION_AUDIO=1
  166. IEEE1394_UNIT_FUNCTION_VIDEO=0
  167. ieee1394:node:ven0x0040abmo0x010048units0x00a02d:0x010001
  168. ieee1394:ven000040ABmo00010048sp0000A02Dver00010001
  169. ID_VENDOR_FROM_DATABASE=Edirol
  170. ID_MODEL_FROM_DATABASE=FA-101
  171. IEEE1394_UNIT_FUNCTION_MIDI=1
  172. IEEE1394_UNIT_FUNCTION_AUDIO=1
  173. IEEE1394_UNIT_FUNCTION_VIDEO=0
  174. ieee1394:node:ven0x0040abmo0x010049units0x00a02d:0x010001
  175. ieee1394:ven000040ABmo00010049sp0000A02Dver00010001
  176. ID_VENDOR_FROM_DATABASE=Edirol
  177. ID_MODEL_FROM_DATABASE=FA-66
  178. IEEE1394_UNIT_FUNCTION_MIDI=1
  179. IEEE1394_UNIT_FUNCTION_AUDIO=1
  180. IEEE1394_UNIT_FUNCTION_VIDEO=0
  181. # The value of model field differs depending on firmware.
  182. ieee1394:node:ven0x000f1bmo0x010064units0x00a02d:0x010001
  183. ieee1394:ven00000F1Bmo00010064sp0000A02Dver00010001
  184. ieee1394:node:ven0x000f1bmo0x000210units0x00a02d:0x010001
  185. ieee1394:ven00000F1Bmo00000210sp0000A02Dver00010001
  186. ID_VENDOR_FROM_DATABASE=Ego Systems
  187. ID_MODEL_FROM_DATABASE=QuataFire
  188. IEEE1394_UNIT_FUNCTION_MIDI=1
  189. IEEE1394_UNIT_FUNCTION_AUDIO=1
  190. IEEE1394_UNIT_FUNCTION_VIDEO=0
  191. # Match to Saffire and Saffire LE.
  192. ieee1394:node:ven0x00130emo0x000000units0x00a02d:0x010001
  193. ieee1394:ven0000130Emo00000000sp0000A02Dver00010001
  194. ID_VENDOR_FROM_DATABASE=Focusrite
  195. ID_MODEL_FROM_DATABASE=Saffire
  196. IEEE1394_UNIT_FUNCTION_MIDI=1
  197. IEEE1394_UNIT_FUNCTION_AUDIO=1
  198. IEEE1394_UNIT_FUNCTION_VIDEO=0
  199. ieee1394:node:ven0x00130emo0x000006units0x00a02d:0x010001
  200. ieee1394:ven0000130Emo00000006sp0000A02Dver00010001
  201. ID_VENDOR_FROM_DATABASE=Focusrite
  202. ID_MODEL_FROM_DATABASE=Saffire Pro 10 i/o
  203. IEEE1394_UNIT_FUNCTION_MIDI=1
  204. IEEE1394_UNIT_FUNCTION_AUDIO=1
  205. IEEE1394_UNIT_FUNCTION_VIDEO=0
  206. ieee1394:node:ven0x00130emo0x000003units0x00a02d:0x010001
  207. ieee1394:ven0000130Emo00000003sp0000A02Dver00010001
  208. ID_VENDOR_FROM_DATABASE=Focusrite
  209. ID_MODEL_FROM_DATABASE=Saffire Pro 26 i/o
  210. IEEE1394_UNIT_FUNCTION_MIDI=1
  211. IEEE1394_UNIT_FUNCTION_AUDIO=1
  212. IEEE1394_UNIT_FUNCTION_VIDEO=0
  213. ieee1394:node:ven0x01a9eemo0x000001units0x00a02d:0x010001
  214. ieee1394:ven0001A9EEmo00000001sp0000A02Dver00010001
  215. ID_VENDOR_FROM_DATABASE=ICON
  216. ID_MODEL_FROM_DATABASE=FireXon
  217. IEEE1394_UNIT_FUNCTION_MIDI=1
  218. IEEE1394_UNIT_FUNCTION_AUDIO=1
  219. IEEE1394_UNIT_FUNCTION_VIDEO=0
  220. ieee1394:node:ven0x000d6cmo0x010071units0x00a02d:0x014001
  221. ieee1394:ven00000D6Cmo00010071sp0000A02Dver00014001
  222. ID_VENDOR_FROM_DATABASE=M-Audio
  223. ID_MODEL_FROM_DATABASE=FW 1814
  224. IEEE1394_UNIT_FUNCTION_MIDI=1
  225. IEEE1394_UNIT_FUNCTION_AUDIO=1
  226. IEEE1394_UNIT_FUNCTION_VIDEO=0
  227. # Vendor is BridgeCo Co AG but M-Audio.
  228. ieee1394:node:ven0x0007f5mo0x010046units0x00a02d:0x014001
  229. ieee1394:ven000007F5mo00010046sp0000A02Dver00014001
  230. ID_VENDOR_FROM_DATABASE=M-Audio
  231. ID_MODEL_FROM_DATABASE=FW 410
  232. IEEE1394_UNIT_FUNCTION_MIDI=1
  233. IEEE1394_UNIT_FUNCTION_AUDIO=1
  234. IEEE1394_UNIT_FUNCTION_VIDEO=0
  235. ieee1394:node:ven0x000d6cmo0x010060units0x00a02d:0x014001
  236. ieee1394:ven00000D6Cmo00010060sp0000A02Dver00014001
  237. ID_VENDOR_FROM_DATABASE=M-Audio
  238. ID_MODEL_FROM_DATABASE=FW Audiophile
  239. IEEE1394_UNIT_FUNCTION_MIDI=1
  240. IEEE1394_UNIT_FUNCTION_AUDIO=1
  241. IEEE1394_UNIT_FUNCTION_VIDEO=0
  242. ieee1394:node:ven0x000d6cmo0x010062units0x00a02d:0x010001
  243. ieee1394:ven00000D6Cmo00010062sp0000A02Dver00010001
  244. ID_VENDOR_FROM_DATABASE=M-Audio
  245. ID_MODEL_FROM_DATABASE=FW Solo
  246. IEEE1394_UNIT_FUNCTION_AUDIO=1
  247. IEEE1394_UNIT_FUNCTION_VIDEO=0
  248. ieee1394:node:ven0x000d6cmo0x010081units0x00a02d:0x010001
  249. ieee1394:ven00000D6Cmo00010081sp0000A02Dver00010001
  250. ID_VENDOR_FROM_DATABASE=M-Audio
  251. ID_MODEL_FROM_DATABASE=NRV10
  252. IEEE1394_UNIT_FUNCTION_AUDIO=1
  253. IEEE1394_UNIT_FUNCTION_VIDEO=0
  254. ieee1394:node:ven0x000d6cmo0x00000aunits0x00a02d:0x014001
  255. ieee1394:ven00000D6Cmo0000000Asp0000A02Dver00014001
  256. ID_VENDOR_FROM_DATABASE=M-Audio
  257. ID_MODEL_FROM_DATABASE=Ozonic
  258. IEEE1394_UNIT_FUNCTION_MIDI=1
  259. IEEE1394_UNIT_FUNCTION_AUDIO=1
  260. IEEE1394_UNIT_FUNCTION_VIDEO=0
  261. ieee1394:node:ven0x000d6cmo0x0100a1units0x00a02d:0x014001
  262. ieee1394:ven00000D6Cmo000100A1sp0000A02Dver00014001
  263. ID_VENDOR_FROM_DATABASE=M-Audio
  264. ID_MODEL_FROM_DATABASE=ProFire Lightbridge
  265. IEEE1394_UNIT_FUNCTION_MIDI=1
  266. IEEE1394_UNIT_FUNCTION_AUDIO=1
  267. IEEE1394_UNIT_FUNCTION_VIDEO=0
  268. ieee1394:node:ven0x000d6cmo0x010091units0x00a02d:0x014001
  269. ieee1394:ven00000D6Cmo00010091sp0000A02Dver00014001
  270. ID_VENDOR_FROM_DATABASE=M-Audio
  271. ID_MODEL_FROM_DATABASE=ProjectMix I/O
  272. IEEE1394_UNIT_FUNCTION_MIDI=1
  273. IEEE1394_UNIT_FUNCTION_AUDIO=1
  274. IEEE1394_UNIT_FUNCTION_VIDEO=0
  275. # An extension card for Mackie Onyx 1220, 1620, and 1640.
  276. ieee1394:node:ven0x000ff2mo0x010065units0x00a02d:0x010001
  277. ieee1394:ven00000FF2mo00010065sp0000A02Dver00010001
  278. ID_VENDOR_FROM_DATABASE=Loud Technologies
  279. ID_MODEL_FROM_DATABASE=Mackie Onyx FireWire
  280. IEEE1394_UNIT_FUNCTION_AUDIO=1
  281. IEEE1394_UNIT_FUNCTION_VIDEO=0
  282. # An extension card for Mackie d.2.
  283. ieee1394:node:ven0x000ff2mo0x010067units0x00a02d:0x010001
  284. ieee1394:ven00000FF2mo00010067sp0000A02Dver00010001
  285. ID_VENDOR_FROM_DATABASE=Loud Technologies
  286. ID_MODEL_FROM_DATABASE=Mackie DJ Mixer
  287. IEEE1394_UNIT_FUNCTION_AUDIO=1
  288. IEEE1394_UNIT_FUNCTION_VIDEO=0
  289. # Match to FireFly 202, 302, 808, and 808 Universal.
  290. # Match to HelixBoard 12 mk II, 18 mk II, 24 mk II, 12 Universal, 18 Universal, and 24 Universal.
  291. ieee1394:node:ven0x001496mo0x000000units0x00a02d:0x010001
  292. ieee1394:ven00001496mo00000000sp0000A02Dver00010001
  293. ID_VENDOR_FROM_DATABASE=Phonic
  294. ID_MODEL_FROM_DATABASE=FireFly/Helixboard
  295. IEEE1394_UNIT_FUNCTION_MIDI=1
  296. IEEE1394_UNIT_FUNCTION_AUDIO=1
  297. IEEE1394_UNIT_FUNCTION_VIDEO=0
  298. ieee1394:node:ven0x000a92mo0x010000units0x00a02d:0x010001
  299. ieee1394:ven00000A92mo00010000sp0000A02Dver00010001
  300. ID_VENDOR_FROM_DATABASE=PreSonus
  301. ID_MODEL_FROM_DATABASE=FireBox
  302. IEEE1394_UNIT_FUNCTION_MIDI=1
  303. IEEE1394_UNIT_FUNCTION_AUDIO=1
  304. IEEE1394_UNIT_FUNCTION_VIDEO=0
  305. ieee1394:node:ven0x000a92mo0x010001units0x00a02d:0x010001
  306. ieee1394:ven00000A92mo00010001sp0000A02Dver00010001
  307. ID_VENDOR_FROM_DATABASE=PreSonus
  308. ID_MODEL_FROM_DATABASE=Inspire 1394
  309. IEEE1394_UNIT_FUNCTION_AUDIO=1
  310. IEEE1394_UNIT_FUNCTION_VIDEO=0
  311. ieee1394:node:ven0x001198mo0x010048units0x00a02d:0x010001
  312. ieee1394:ven00001198mo00010048sp0000A02Dver00010001
  313. ID_VENDOR_FROM_DATABASE=Prism Media Products
  314. ID_MODEL_FROM_DATABASE=Orpheus
  315. IEEE1394_UNIT_FUNCTION_AUDIO=1
  316. IEEE1394_UNIT_FUNCTION_VIDEO=0
  317. ieee1394:node:ven0x000a92mo0x010066units0x00a02d:0x010001
  318. ieee1394:ven00000A92mo00010066sp0000A02Dver00010001
  319. ID_VENDOR_FROM_DATABASE=PreSonus
  320. ID_MODEL_FROM_DATABASE=PreSonus FP10
  321. IEEE1394_UNIT_FUNCTION_MIDI=1
  322. IEEE1394_UNIT_FUNCTION_AUDIO=1
  323. IEEE1394_UNIT_FUNCTION_VIDEO=0
  324. ieee1394:node:ven0x001260mo0x000001units0x00a02d:0x010001
  325. ieee1394:ven00001260mo00000001sp0000A02Dver00010001
  326. ID_VENDOR_FROM_DATABASE=Stanton Magnetics
  327. ID_MODEL_FROM_DATABASE=ScratchAmp
  328. IEEE1394_UNIT_FUNCTION_MIDI=1
  329. IEEE1394_UNIT_FUNCTION_AUDIO=1
  330. IEEE1394_UNIT_FUNCTION_VIDEO=0
  331. ieee1394:node:ven0x010065mo0x010067units0x00a02d:0x010001
  332. ieee1394:ven00010065mo00010067sp0000A02Dver00010001
  333. ID_VENDOR_FROM_DATABASE=Tascam
  334. ID_MODEL_FROM_DATABASE=IF-FW/DM
  335. IEEE1394_UNIT_FUNCTION_MIDI=1
  336. IEEE1394_UNIT_FUNCTION_AUDIO=1
  337. IEEE1394_UNIT_FUNCTION_VIDEO=0
  338. ieee1394:node:ven0x000aacmo0x000003units0x00a02d:0x010001
  339. ieee1394:ven00000AACmo00000003sp0000A02Dver00010001
  340. ID_VENDOR_FROM_DATABASE=TerraTec Electronic
  341. ID_MODEL_FROM_DATABASE=PHASE 88 FW
  342. IEEE1394_UNIT_FUNCTION_MIDI=1
  343. IEEE1394_UNIT_FUNCTION_AUDIO=1
  344. IEEE1394_UNIT_FUNCTION_VIDEO=0
  345. ieee1394:node:ven0x000aacmo0x000004units0x00a02d:0x010001
  346. ieee1394:ven00000AACmo00000004sp0000A02Dver00010001
  347. ID_VENDOR_FROM_DATABASE=TerraTec Electronic
  348. ID_MODEL_FROM_DATABASE=PHASE 24 FW
  349. IEEE1394_UNIT_FUNCTION_MIDI=1
  350. IEEE1394_UNIT_FUNCTION_AUDIO=1
  351. IEEE1394_UNIT_FUNCTION_VIDEO=0
  352. ieee1394:node:ven0x000aacmo0x000007units0x00a02d:0x010001
  353. ieee1394:ven00000AACmo00000007sp0000A02Dver00010001
  354. ID_VENDOR_FROM_DATABASE=TerraTec Electronic
  355. ID_MODEL_FROM_DATABASE=PHASE X24 FW
  356. IEEE1394_UNIT_FUNCTION_MIDI=1
  357. IEEE1394_UNIT_FUNCTION_AUDIO=1
  358. IEEE1394_UNIT_FUNCTION_VIDEO=0
  359. ieee1394:node:ven0x002327mo0x020002units0x00a02d:0x010001
  360. ieee1394:ven00002327mo00020002sp0000A02Dver00010001
  361. ID_VENDOR_FROM_DATABASE=ToneWeal
  362. ID_MODEL_FROM_DATABASE=FW66
  363. IEEE1394_UNIT_FUNCTION_MIDI=1
  364. IEEE1394_UNIT_FUNCTION_AUDIO=1
  365. IEEE1394_UNIT_FUNCTION_VIDEO=0
  366. ieee1394:node:ven0x00a0demo0x10000bunits0x00a02d:0x010001
  367. ieee1394:ven0000A0DEmo0010000Bsp0000A02Dver00010001
  368. ID_VENDOR_FROM_DATABASE=Yamaha
  369. ID_MODEL_FROM_DATABASE=GO44
  370. IEEE1394_UNIT_FUNCTION_MIDI=1
  371. IEEE1394_UNIT_FUNCTION_AUDIO=1
  372. IEEE1394_UNIT_FUNCTION_VIDEO=0
  373. ieee1394:node:ven0x00a0demo0x10000cunits0x00a02d:0x010001
  374. ieee1394:ven0000A0DEmo0010000Csp0000A02Dver00010001
  375. ID_VENDOR_FROM_DATABASE=Yamaha
  376. ID_MODEL_FROM_DATABASE=GO46
  377. IEEE1394_UNIT_FUNCTION_MIDI=1
  378. IEEE1394_UNIT_FUNCTION_AUDIO=1
  379. IEEE1394_UNIT_FUNCTION_VIDEO=0
  380. #
  381. # Fireworks board module.
  382. #
  383. # DSP model (Texus Instruments TMS320C67) and FPGA model (Xilinx Spartan XC35250E) exists.
  384. # Both models use Texus Instruments TSB43CB43 (IceLynx Micro, iCEM) as communication engine.
  385. #
  386. # Match to DSP model of AudioFire8.
  387. ieee1394:node:ven0x001486mo0x000af8units0x00a02d:0x010000
  388. ieee1394:ven00001486mo00000AF8sp0000A02Dver00010000
  389. ID_VENDOR_FROM_DATABASE=Echo Digital Audio
  390. ID_MODEL_FROM_DATABASE=AudioFire8
  391. IEEE1394_UNIT_FUNCTION_MIDI=1
  392. IEEE1394_UNIT_FUNCTION_AUDIO=1
  393. # Match to both DSP and FPGA models of AudioFire12.
  394. ieee1394:node:ven0x001486mo0x00af12units0x00a02d:0x010000
  395. ieee1394:ven00001486mo0000AF12sp0000A02Dver00010000
  396. ID_VENDOR_FROM_DATABASE=Echo Digital Audio
  397. ID_MODEL_FROM_DATABASE=AudioFire12
  398. IEEE1394_UNIT_FUNCTION_MIDI=1
  399. IEEE1394_UNIT_FUNCTION_AUDIO=1
  400. # DSP model.
  401. ieee1394:node:ven0x000ff2mo0x01200funits0x00a02d:0x010000
  402. ieee1394:ven00000FF2mo0001200Fsp0000A02Dver00010000
  403. ID_VENDOR_FROM_DATABASE=Mackie
  404. ID_MODEL_FROM_DATABASE=Onyx 1200F
  405. IEEE1394_UNIT_FUNCTION_MIDI=1
  406. IEEE1394_UNIT_FUNCTION_AUDIO=1
  407. # DSP model.
  408. ieee1394:node:ven0x000ff2mo0x00400funits0x00a02d:0x010000
  409. ieee1394:ven00000FF2mo0000400Fsp0000A02Dver00010000
  410. ID_VENDOR_FROM_DATABASE=Mackie
  411. ID_MODEL_FROM_DATABASE=Onyx 400F
  412. IEEE1394_UNIT_FUNCTION_MIDI=1
  413. IEEE1394_UNIT_FUNCTION_AUDIO=1
  414. # FPGA model.
  415. ieee1394:node:ven0x001486mo0x000af2units0x00a02d:0x010000
  416. ieee1394:ven00001486mo00000AF2sp0000A02Dver00010000
  417. ID_VENDOR_FROM_DATABASE=Echo Digital Audio
  418. ID_MODEL_FROM_DATABASE=AudioFire2
  419. IEEE1394_UNIT_FUNCTION_MIDI=1
  420. IEEE1394_UNIT_FUNCTION_AUDIO=1
  421. # FPGA model.
  422. ieee1394:node:ven0x001486mo0x000af4units0x00a02d:0x010000
  423. ieee1394:ven00001486mo00000AF4sp0000A02Dver00010000
  424. ID_VENDOR_FROM_DATABASE=Echo Digital Audio
  425. ID_MODEL_FROM_DATABASE=AudioFire4
  426. IEEE1394_UNIT_FUNCTION_MIDI=1
  427. IEEE1394_UNIT_FUNCTION_AUDIO=1
  428. # Match to FPGA model of AudioFire8, and AudioFirePre8.
  429. ieee1394:node:ven0x001486mo0x000af9units0x00a02d:0x010000
  430. ieee1394:ven00001486mo00000AF9sp0000A02Dver00010000
  431. ID_VENDOR_FROM_DATABASE=Echo Digital Audio
  432. ID_MODEL_FROM_DATABASE=AudioFire8/Pre8
  433. IEEE1394_UNIT_FUNCTION_MIDI=1
  434. IEEE1394_UNIT_FUNCTION_AUDIO=1
  435. # FPGA model.
  436. ieee1394:node:ven0x00075bmo0x00afb2units0x00a02d:0x010000
  437. ieee1394:ven0000075Bmo0000AFB2sp0000A02Dver00010000
  438. ID_VENDOR_FROM_DATABASE=Gibson
  439. ID_MODEL_FROM_DATABASE=RIP
  440. IEEE1394_UNIT_FUNCTION_MIDI=1
  441. IEEE1394_UNIT_FUNCTION_AUDIO=1
  442. #
  443. # Oxford Semiconductor FW970/971.
  444. #
  445. ieee1394:node:ven0x0003dbmo0x01ddddunits0x00a02d:0x010001
  446. ieee1394:ven000003DBmo0001DDDDsp0000A02Dver00010001
  447. ID_VENDOR_FROM_DATABASE=Apogee Electronics
  448. ID_MODEL_FROM_DATABASE=Duet FireWire
  449. IEEE1394_UNIT_FUNCTION_AUDIO=1
  450. IEEE1394_UNIT_FUNCTION_VIDEO=0
  451. ieee1394:node:ven0x001564mo0x00fc22units0x00a02d:0x010001
  452. ieee1394:ven00001564mo0000FC22sp0000A02Dver00010001
  453. ID_VENDOR_FROM_DATABASE=Behringer
  454. ID_MODEL_FROM_DATABASE=F-Control Audio 202
  455. IEEE1394_UNIT_FUNCTION_AUDIO=1
  456. IEEE1394_UNIT_FUNCTION_VIDEO=0
  457. ieee1394:node:ven0x001292mo0x00f970units0x00a02d:0x010001
  458. ieee1394:ven00001292mo0000F970sp0000A02Dver00010001
  459. ID_VENDOR_FROM_DATABASE=Griffin Technology
  460. ID_MODEL_FROM_DATABASE=Griffin FireWave
  461. IEEE1394_UNIT_FUNCTION_AUDIO=1
  462. IEEE1394_UNIT_FUNCTION_VIDEO=0
  463. ieee1394:node:ven0x00d04bmo0x00f970units0x00a02d:0x010001
  464. ieee1394:ven0000D04Bmo0000F970sp0000A02Dver00010001
  465. ID_VENDOR_FROM_DATABASE=LaCie
  466. ID_MODEL_FROM_DATABASE=LaCie FireWire Speakers
  467. IEEE1394_UNIT_FUNCTION_AUDIO=1
  468. IEEE1394_UNIT_FUNCTION_VIDEO=0
  469. # Match to former models of Onyx 820i, 1220i, and 1620i.
  470. ieee1394:node:ven0x000ff2mo0x081216units0x00a02d:0x010001
  471. ieee1394:ven00000FF2mo00081216sp0000A02Dver00010001
  472. ID_VENDOR_FROM_DATABASE=Loud Technologies
  473. ID_MODEL_FROM_DATABASE=Mackie Onyx-i series
  474. IEEE1394_UNIT_FUNCTION_AUDIO=1
  475. IEEE1394_UNIT_FUNCTION_VIDEO=0
  476. ieee1394:node:ven0x000ff2mo0x001640units0x00a02d:0x010001
  477. ieee1394:ven00000FF2mo00001640sp0000A02Dver00010001
  478. ID_VENDOR_FROM_DATABASE=Loud Technologies
  479. ID_MODEL_FROM_DATABASE=Mackie Onyx 1640i
  480. IEEE1394_UNIT_FUNCTION_AUDIO=1
  481. IEEE1394_UNIT_FUNCTION_VIDEO=0
  482. ieee1394:node:ven0x000ff2mo0x00200funits0x00a02d:0x010001
  483. ieee1394:ven00000FF2mo0000200Fsp0000A02Dver00010001
  484. ID_VENDOR_FROM_DATABASE=Loud Technologies
  485. ID_MODEL_FROM_DATABASE=Mackie Onyx Satellite
  486. IEEE1394_UNIT_FUNCTION_AUDIO=1
  487. IEEE1394_UNIT_FUNCTION_VIDEO=0
  488. ieee1394:node:ven0x000ff2mo0x000460units0x00a02d:0x010001
  489. ieee1394:ven00000FF2mo00000460sp0000A02Dver00010001
  490. ID_VENDOR_FROM_DATABASE=Loud Technologies
  491. ID_MODEL_FROM_DATABASE=Tapco LINK.firewire 4x6
  492. IEEE1394_UNIT_FUNCTION_AUDIO=1
  493. IEEE1394_UNIT_FUNCTION_VIDEO=0
  494. ieee1394:node:ven0x001260mo0x002000units0x00a02d:0x010001
  495. ieee1394:ven00001260mo00002000sp0000A02Dver00010001
  496. ID_VENDOR_FROM_DATABASE=Stanton Magnetics
  497. ID_MODEL_FROM_DATABASE=SCS.1d
  498. IEEE1394_UNIT_FUNCTION_MIDI=1
  499. IEEE1394_UNIT_FUNCTION_AUDIO=1
  500. IEEE1394_UNIT_FUNCTION_VIDEO=0
  501. ieee1394:node:ven0x001260mo0x001000units0x00a02d:0x010001
  502. ieee1394:ven00001260mo00001000sp0000A02Dver00010001
  503. ID_VENDOR_FROM_DATABASE=Stanton Magnetics
  504. ID_MODEL_FROM_DATABASE=SCS.1m
  505. IEEE1394_UNIT_FUNCTION_MIDI=1
  506. IEEE1394_UNIT_FUNCTION_VIDEO=0
  507. ieee1394:node:ven0x00022emo0x800007units0x00a02d:0x010001
  508. ieee1394:ven0000022Emo00800007sp0000A02Dver00010001
  509. ID_VENDOR_FROM_DATABASE=Tascam
  510. ID_MODEL_FROM_DATABASE=FireOne
  511. IEEE1394_UNIT_FUNCTION_MIDI=1
  512. IEEE1394_UNIT_FUNCTION_AUDIO=1
  513. IEEE1394_UNIT_FUNCTION_VIDEO=0
  514. #
  515. # TC Applied Technologies. Digital Interface Communication Engine (DICE).
  516. #
  517. # DICE with DICE II, TCD2210, TCD2220, and TCD3070 ASICs.
  518. #
  519. ieee1394:node:ven0x0004c4mo0x000000units0x0004c4:0x000001
  520. ieee1394:ven000004C4mo00000000sp000004C4ver00000001
  521. ID_VENDOR_FROM_DATABASE=Allen and Heath
  522. ID_MODEL_FROM_DATABASE=Zed R16
  523. IEEE1394_UNIT_FUNCTION_MIDI=1
  524. IEEE1394_UNIT_FUNCTION_AUDIO=1
  525. # Match to iO 14, iO 26
  526. ieee1394:node:ven0x000595mo0x000001units0x000595:0x000001
  527. ieee1394:ven00000595mo00000001sp00000595ver00000001
  528. ID_VENDOR_FROM_DATABASE=Alesis
  529. ID_MODEL_FROM_DATABASE=iO FireWire
  530. IEEE1394_UNIT_FUNCTION_MIDI=1
  531. IEEE1394_UNIT_FUNCTION_AUDIO=1
  532. ieee1394:node:ven0x000595mo0x000002units0x000595:0x000001
  533. ieee1394:ven00000595mo00000002sp00000595ver00000001
  534. ID_VENDOR_FROM_DATABASE=Alesis
  535. ID_MODEL_FROM_DATABASE=MasterControl
  536. IEEE1394_UNIT_FUNCTION_MIDI=1
  537. IEEE1394_UNIT_FUNCTION_AUDIO=1
  538. # Match to Multimix 8, 12, and 16.
  539. ieee1394:node:ven0x000595mo0x000000units0x000595:0x000001
  540. ieee1394:ven00000595mo00000000sp00000595ver00000001
  541. ID_VENDOR_FROM_DATABASE=Alesis
  542. ID_MODEL_FROM_DATABASE=MultiMix FireWire
  543. IEEE1394_UNIT_FUNCTION_AUDIO=1
  544. ieee1394:node:ven0x00a07emo0x000004units0x00a07e:0x000001
  545. ieee1394:ven0000A07Emo00000004sp0000A07Ever00000001
  546. ID_VENDOR_FROM_DATABASE=Avid
  547. ID_MODEL_FROM_DATABASE=Mbox 3 Pro
  548. IEEE1394_UNIT_FUNCTION_MIDI=1
  549. IEEE1394_UNIT_FUNCTION_AUDIO=1
  550. ieee1394:node:ven0x001c2dmo0x000001units0x001c2d:0x000001
  551. ieee1394:ven00001C2Dmo00000001sp00001C2Dver00000001
  552. ID_VENDOR_FROM_DATABASE=FlexRadio Systems
  553. ID_MODEL_FROM_DATABASE=FLEX-5000
  554. IEEE1394_UNIT_FUNCTION_AUDIO=1
  555. ieee1394:node:ven0x001c2dmo0x000002units0x001c2d:0x000001
  556. ieee1394:ven00001C2Dmo00000002sp00001C2Dver00000001
  557. ID_VENDOR_FROM_DATABASE=FlexRadio Systems
  558. ID_MODEL_FROM_DATABASE=FLEX-3000
  559. IEEE1394_UNIT_FUNCTION_AUDIO=1
  560. ieee1394:node:ven0x00130emo0x000006units0x00130e:0x000001
  561. ieee1394:ven0000130Emo00000006sp0000130Ever00000001
  562. ID_VENDOR_FROM_DATABASE=Focusrite
  563. ID_MODEL_FROM_DATABASE=Liquid Saffire 56
  564. IEEE1394_UNIT_FUNCTION_MIDI=1
  565. IEEE1394_UNIT_FUNCTION_AUDIO=1
  566. ieee1394:node:ven0x00130emo0x000009units0x00130e:0x000001
  567. ieee1394:ven0000130Emo00000009sp0000130Ever00000001
  568. ID_VENDOR_FROM_DATABASE=Focusrite
  569. ID_MODEL_FROM_DATABASE=Saffire Pro 14
  570. IEEE1394_UNIT_FUNCTION_MIDI=1
  571. IEEE1394_UNIT_FUNCTION_AUDIO=1
  572. ieee1394:node:ven0x00130emo0x000007units0x00130e:0x000001
  573. ieee1394:ven0000130Emo00000007sp0000130Ever00000001
  574. ID_VENDOR_FROM_DATABASE=Focusrite
  575. ID_MODEL_FROM_DATABASE=Saffire Pro 24
  576. IEEE1394_UNIT_FUNCTION_MIDI=1
  577. IEEE1394_UNIT_FUNCTION_AUDIO=1
  578. ieee1394:node:ven0x00130emo0x000008units0x00130e:0x000001
  579. ieee1394:ven0000130Emo00000008sp0000130Ever00000001
  580. ID_VENDOR_FROM_DATABASE=Focusrite
  581. ID_MODEL_FROM_DATABASE=Saffire Pro 24 DSP
  582. IEEE1394_UNIT_FUNCTION_MIDI=1
  583. IEEE1394_UNIT_FUNCTION_AUDIO=1
  584. ieee1394:node:ven0x00130emo0x000012units0x00130e:0x000001
  585. ieee1394:ven0000130Emo00000012sp0000130Ever00000001
  586. ID_VENDOR_FROM_DATABASE=Focusrite
  587. ID_MODEL_FROM_DATABASE=Saffire Pro 26
  588. IEEE1394_UNIT_FUNCTION_MIDI=1
  589. IEEE1394_UNIT_FUNCTION_AUDIO=1
  590. # Revision with TCD2210.
  591. ieee1394:node:ven0x00130emo0x000005units0x00130e:0x000001
  592. ieee1394:ven0000130Emo00000005sp0000130Ever00000001
  593. ID_VENDOR_FROM_DATABASE=Focusrite
  594. ID_MODEL_FROM_DATABASE=Saffire Pro 40
  595. IEEE1394_UNIT_FUNCTION_MIDI=1
  596. IEEE1394_UNIT_FUNCTION_AUDIO=1
  597. # Revision with TCD3070.
  598. ieee1394:node:ven0x00130emo0x0000deunits0x00130e:0x000001
  599. ieee1394:ven0000130Emo000000DEsp0000130Ever00000001
  600. ID_VENDOR_FROM_DATABASE=Focusrite
  601. ID_MODEL_FROM_DATABASE=Saffire Pro 40
  602. IEEE1394_UNIT_FUNCTION_MIDI=1
  603. IEEE1394_UNIT_FUNCTION_AUDIO=1
  604. ieee1394:node:ven0x000fd7mo0x000001units0x000fd7:0x000001
  605. ieee1394:ven00000FD7mo00000001sp00000FD7ver00000001
  606. ID_VENDOR_FROM_DATABASE=Harman Music Group
  607. ID_MODEL_FROM_DATABASE=Lexicon I-ONIX FW810S
  608. IEEE1394_UNIT_FUNCTION_MIDI=1
  609. IEEE1394_UNIT_FUNCTION_AUDIO=1
  610. ieee1394:node:ven0x000ff2mo0x000007units0x000ff2:0x000001
  611. ieee1394:ven00000FF2mo00000007sp00000FF2ver00000001
  612. ID_VENDOR_FROM_DATABASE=Loud Technologies
  613. ID_MODEL_FROM_DATABASE=Mackie Onyx Blackbird
  614. IEEE1394_UNIT_FUNCTION_AUDIO=1
  615. # Match to Onyx 1640i, and latter models of Onyx 820i, 1220i, and 1620i.
  616. ieee1394:node:ven0x000ff2mo0x000006units0x000ff2:0x000001
  617. ieee1394:ven00000FF2mo00000006sp00000FF2ver00000001
  618. ID_VENDOR_FROM_DATABASE=Loud Technologies
  619. ID_MODEL_FROM_DATABASE=Mackie Onyx-i series
  620. IEEE1394_UNIT_FUNCTION_AUDIO=1
  621. ieee1394:node:ven0x000d6cmo0x000011units0x000d6c:0x0100d1
  622. ieee1394:ven00000D6Cmo00000011sp00000D6Cver000100D1
  623. ID_VENDOR_FROM_DATABASE=M-Audio
  624. ID_MODEL_FROM_DATABASE=ProFire 610
  625. IEEE1394_UNIT_FUNCTION_MIDI=1
  626. IEEE1394_UNIT_FUNCTION_AUDIO=1
  627. ieee1394:node:ven0x000d6cmo0x000010units0x000d6c:0x0100c1
  628. ieee1394:ven00000D6Cmo00000010sp00000D6Cver000100C1
  629. ID_VENDOR_FROM_DATABASE=M-Audio
  630. ID_MODEL_FROM_DATABASE=ProFire 2626
  631. IEEE1394_UNIT_FUNCTION_MIDI=1
  632. IEEE1394_UNIT_FUNCTION_AUDIO=1
  633. ieee1394:node:ven0x001ee8mo0x000002units0x001ee8:0x000001
  634. ieee1394:ven00001EE8mo00000002sp00001EE8ver00000001
  635. ID_VENDOR_FROM_DATABASE=Mytek
  636. ID_MODEL_FROM_DATABASE=Stereo192-DSD DAC
  637. IEEE1394_UNIT_FUNCTION_AUDIO=1
  638. ieee1394:node:ven0x10c73fmo0x000001units0x10c73f:0x000001
  639. ieee1394:ven0010C73Fmo00000001sp0010C73Fver00000001
  640. ID_VENDOR_FROM_DATABASE=Midas Klark Teknik
  641. ID_MODEL_FROM_DATABASE=VeniceF series
  642. IEEE1394_UNIT_FUNCTION_AUDIO=1
  643. ieee1394:node:ven0x000a92mo0x000008units0x000a92:0x000001
  644. ieee1394:ven00000A92mo00000008sp00000A92ver00000001
  645. ID_VENDOR_FROM_DATABASE=PreSonus
  646. ID_MODEL_FROM_DATABASE=FireStudio
  647. IEEE1394_UNIT_FUNCTION_MIDI=1
  648. IEEE1394_UNIT_FUNCTION_AUDIO=1
  649. ieee1394:node:ven0x000a92mo0x000011units0x000a92:0x000001
  650. ieee1394:ven00000A92mo00000011sp00000A92ver00000001
  651. ID_VENDOR_FROM_DATABASE=PreSonus
  652. ID_MODEL_FROM_DATABASE=FireStudio Mobile
  653. IEEE1394_UNIT_FUNCTION_MIDI=1
  654. IEEE1394_UNIT_FUNCTION_AUDIO=1
  655. ieee1394:node:ven0x000a92mo0x00000bunits0x000a92:0x000001
  656. ieee1394:ven00000A92mo0000000Bsp00000A92ver00000001
  657. ID_VENDOR_FROM_DATABASE=PreSonus
  658. ID_MODEL_FROM_DATABASE=FireStudio Project
  659. IEEE1394_UNIT_FUNCTION_MIDI=1
  660. IEEE1394_UNIT_FUNCTION_AUDIO=1
  661. ieee1394:node:ven0x000a92mo0x00000cunits0x000a92:0x000001
  662. ieee1394:ven00000A92mo0000000Csp00000A92ver00000001
  663. ID_VENDOR_FROM_DATABASE=PreSonus
  664. ID_MODEL_FROM_DATABASE=FireStudio Tube
  665. IEEE1394_UNIT_FUNCTION_MIDI=1
  666. IEEE1394_UNIT_FUNCTION_AUDIO=1
  667. ieee1394:node:ven0x000a92mo0x000010units0x000a92:0x000001
  668. ieee1394:ven00000A92mo00000010sp00000A92ver00000001
  669. ID_VENDOR_FROM_DATABASE=PreSonus
  670. ID_MODEL_FROM_DATABASE=StudioLive 16.4.2
  671. IEEE1394_UNIT_FUNCTION_AUDIO=1
  672. ieee1394:node:ven0x000a92mo0x000012units0x000a92:0x000001
  673. ieee1394:ven00000A92mo00000012sp00000A92ver00000001
  674. ID_VENDOR_FROM_DATABASE=PreSonus
  675. ID_MODEL_FROM_DATABASE=StudioLive 24.4.2
  676. IEEE1394_UNIT_FUNCTION_AUDIO=1
  677. ieee1394:node:ven0x000a92mo0x000013units0x000a92:0x000001
  678. ieee1394:ven00000A92mo00000013sp00000A92ver00000001
  679. ID_VENDOR_FROM_DATABASE=PreSonus
  680. ID_MODEL_FROM_DATABASE=StudioLive 16.0.2
  681. IEEE1394_UNIT_FUNCTION_AUDIO=1
  682. ieee1394:node:ven0x000a92mo0x000014units0x000a92:0x000001
  683. ieee1394:ven00000A92mo00000014sp00000A92ver00000001
  684. ID_VENDOR_FROM_DATABASE=PreSonus
  685. ID_MODEL_FROM_DATABASE=StudioLive 32.4.2AI
  686. IEEE1394_UNIT_FUNCTION_AUDIO=1
  687. # Unregistered OUI. Match to Duende Classic and Duende Mini. They are differentiated by category
  688. # field of GUID (0x51/0x52) in TCAT specification.
  689. ieee1394:node:ven0x0050c2mo0x000070units0x0050c2:0x000001
  690. ieee1394:ven000050C2mo00000070sp000050C2ver00000001
  691. ID_VENDOR_FROM_DATABASE=Solid State Logic
  692. ID_MODEL_FROM_DATABASE=Duende FireWire
  693. IEEE1394_UNIT_FUNCTION_AUDIO=1
  694. ieee1394:node:ven0x000166mo0x000024units0x000166:0x000001
  695. ieee1394:ven00000166mo00000024sp00000166ver00000001
  696. ID_VENDOR_FROM_DATABASE=TC Electronic
  697. ID_MODEL_FROM_DATABASE=Desktop Konnekt 6
  698. IEEE1394_UNIT_FUNCTION_MIDI=1
  699. IEEE1394_UNIT_FUNCTION_AUDIO=1
  700. ieee1394:node:ven0x000166mo0x000030units0x000166:0x000001
  701. ieee1394:ven00000166mo00000030sp00000166ver00000001
  702. ID_VENDOR_FROM_DATABASE=TC Electronic
  703. ID_MODEL_FROM_DATABASE=Digital Konnekt x32
  704. IEEE1394_UNIT_FUNCTION_AUDIO=1
  705. ieee1394:node:ven0x000166mo0x000027units0x000166:0x000001
  706. ieee1394:ven00000166mo00000027sp00000166ver00000001
  707. ID_VENDOR_FROM_DATABASE=TC Electronic
  708. ID_MODEL_FROM_DATABASE=Impact Twin
  709. IEEE1394_UNIT_FUNCTION_MIDI=1
  710. IEEE1394_UNIT_FUNCTION_AUDIO=1
  711. ieee1394:node:ven0x000166mo0x000020units0x000166:0x000001
  712. ieee1394:ven00000166mo00000020sp00000166ver00000001
  713. ID_VENDOR_FROM_DATABASE=TC Electronic
  714. ID_MODEL_FROM_DATABASE=Konnekt 24D
  715. IEEE1394_UNIT_FUNCTION_MIDI=1
  716. IEEE1394_UNIT_FUNCTION_AUDIO=1
  717. ieee1394:node:ven0x000166mo0x000021units0x000166:0x000001
  718. ieee1394:ven00000166mo00000021sp00000166ver00000001
  719. ID_VENDOR_FROM_DATABASE=TC Electronic
  720. ID_MODEL_FROM_DATABASE=Konnekt 8
  721. IEEE1394_UNIT_FUNCTION_MIDI=1
  722. IEEE1394_UNIT_FUNCTION_AUDIO=1
  723. ieee1394:node:ven0x000166mo0x000023units0x000166:0x000001
  724. ieee1394:ven00000166mo00000023sp00000166ver00000001
  725. ID_VENDOR_FROM_DATABASE=TC Electronic
  726. ID_MODEL_FROM_DATABASE=Konnekt Live
  727. IEEE1394_UNIT_FUNCTION_MIDI=1
  728. IEEE1394_UNIT_FUNCTION_AUDIO=1
  729. ieee1394:node:ven0x000166mo0x000022units0x000166:0x000001
  730. ieee1394:ven00000166mo00000022sp00000166ver00000001
  731. ID_VENDOR_FROM_DATABASE=TC Electronic
  732. ID_MODEL_FROM_DATABASE=Studio Konnekt 48
  733. IEEE1394_UNIT_FUNCTION_MIDI=1
  734. IEEE1394_UNIT_FUNCTION_AUDIO=1
  735. ieee1394:node:ven0x001c6amo0x000001units0x001c6a:0x000001
  736. ieee1394:ven00001C6Amo00000001sp00001C6Aver00000001
  737. ID_VENDOR_FROM_DATABASE=Weiss Engineering
  738. ID_MODEL_FROM_DATABASE=ADC2
  739. IEEE1394_UNIT_FUNCTION_AUDIO=1
  740. ieee1394:node:ven0x001c6amo0x000002units0x001c6a:0x000001
  741. ieee1394:ven00001C6Amo00000002sp00001C6Aver00000001
  742. ID_VENDOR_FROM_DATABASE=Weiss Engineering
  743. ID_MODEL_FROM_DATABASE=Vesta
  744. IEEE1394_UNIT_FUNCTION_AUDIO=1
  745. ieee1394:node:ven0x001c6amo0x000003units0x001c6a:0x000001
  746. ieee1394:ven00001C6Amo00000003sp00001C6Aver00000001
  747. ID_VENDOR_FROM_DATABASE=Weiss Engineering
  748. ID_MODEL_FROM_DATABASE=Minerva
  749. IEEE1394_UNIT_FUNCTION_AUDIO=1
  750. ieee1394:node:ven0x001c6amo0x000004units0x001c6a:0x000001
  751. ieee1394:ven00001C6Amo00000004sp00001C6Aver00000001
  752. ID_VENDOR_FROM_DATABASE=Weiss Engineering
  753. ID_MODEL_FROM_DATABASE=AFI1
  754. IEEE1394_UNIT_FUNCTION_AUDIO=1
  755. ieee1394:node:ven0x001c6amo0x000005units0x001c6a:0x000001
  756. ieee1394:ven00001C6Amo00000005sp00001C6Aver00000001
  757. ID_VENDOR_FROM_DATABASE=Weiss Engineering
  758. ID_MODEL_FROM_DATABASE=DAC1
  759. IEEE1394_UNIT_FUNCTION_AUDIO=1
  760. ieee1394:node:ven0x001c6amo0x000006units0x001c6a:0x000001
  761. ieee1394:ven00001C6Amo00000006sp00001C6Aver00000001
  762. ID_VENDOR_FROM_DATABASE=Weiss Engineering
  763. ID_MODEL_FROM_DATABASE=INT202
  764. IEEE1394_UNIT_FUNCTION_AUDIO=1
  765. ieee1394:node:ven0x001c6amo0x000007units0x001c6a:0x000001
  766. ieee1394:ven00001C6Amo00000007sp00001C6Aver00000001
  767. ID_VENDOR_FROM_DATABASE=Weiss Engineering
  768. ID_MODEL_FROM_DATABASE=DAC202
  769. IEEE1394_UNIT_FUNCTION_AUDIO=1
  770. #
  771. # Digidesign Digi00x family.
  772. #
  773. ieee1394:node:ven0x00a07eunits0x0000a3:0x000001
  774. ieee1394:ven0000A07Emo00000001sp000000A3ver00000001
  775. ID_VENDOR_FROM_DATABASE=Digidesign
  776. ID_MODEL_FROM_DATABASE=Digi 002
  777. IEEE1394_UNIT_FUNCTION_MIDI=1
  778. IEEE1394_UNIT_FUNCTION_AUDIO=1
  779. ieee1394:node:ven0x00a07eunits0x0000a4:0x000001
  780. ieee1394:ven0000A07Emo00000002sp000000A4ver00000001
  781. ID_VENDOR_FROM_DATABASE=Digidesign
  782. ID_MODEL_FROM_DATABASE=Digi 002Rack
  783. IEEE1394_UNIT_FUNCTION_MIDI=1
  784. IEEE1394_UNIT_FUNCTION_AUDIO=1
  785. ieee1394:node:ven0x00a07eunits0x0000aa:0x000001
  786. ieee1394:ven0000A07Emo00000001sp000000AAver00000001
  787. ID_VENDOR_FROM_DATABASE=Digidesign
  788. ID_MODEL_FROM_DATABASE=Digi 003
  789. IEEE1394_UNIT_FUNCTION_MIDI=1
  790. IEEE1394_UNIT_FUNCTION_AUDIO=1
  791. ieee1394:node:ven0x00a07eunits0x0000ab:0x000001
  792. ieee1394:ven0000A07Emo00000002sp000000ABver00000001
  793. ID_VENDOR_FROM_DATABASE=Digidesign
  794. ID_MODEL_FROM_DATABASE=Digi 003 Rack
  795. IEEE1394_UNIT_FUNCTION_MIDI=1
  796. IEEE1394_UNIT_FUNCTION_AUDIO=1
  797. #
  798. # Tascam FireWire series.
  799. #
  800. ieee1394:node:ven0x00022eunits0x00022e:0x800001
  801. ieee1394:ven0000022Emo00000000sp0000022Ever00800001
  802. ID_VENDOR_FROM_DATABASE=Tascam
  803. ID_MODEL_FROM_DATABASE=FE-8
  804. IEEE1394_UNIT_FUNCTION_MIDI=1
  805. ieee1394:node:ven0x00022eunits0x00022e:0x800003
  806. ieee1394:ven0000022Emo00000000sp0000022Ever00800003
  807. ID_VENDOR_FROM_DATABASE=Tascam
  808. ID_MODEL_FROM_DATABASE=FW-1082
  809. IEEE1394_UNIT_FUNCTION_MIDI=1
  810. IEEE1394_UNIT_FUNCTION_AUDIO=1
  811. ieee1394:node:ven0x00022eunits0x00022e:0x800004
  812. ieee1394:ven0000022Emo00000000sp0000022Ever00800004
  813. ID_VENDOR_FROM_DATABASE=Tascam
  814. ID_MODEL_FROM_DATABASE=FW-1804
  815. IEEE1394_UNIT_FUNCTION_MIDI=1
  816. IEEE1394_UNIT_FUNCTION_AUDIO=1
  817. ieee1394:node:ven0x00022eunits0x00022e:0x800000
  818. ieee1394:ven0000022Emo00000000sp0000022Ever00800000
  819. ID_VENDOR_FROM_DATABASE=Tascam
  820. ID_MODEL_FROM_DATABASE=FW-1884
  821. IEEE1394_UNIT_FUNCTION_MIDI=1
  822. IEEE1394_UNIT_FUNCTION_AUDIO=1
  823. #
  824. # Mark of the Unicorn FireWire series.
  825. #
  826. # The model field in unit directory should be ignored since it expresses firmware version.
  827. #
  828. ieee1394:node:ven0x0001f2units0x0001f2:0x000001
  829. ieee1394:ven000001F2mo*sp000001F2ver00000001
  830. ID_VENDOR_FROM_DATABASE=MOTU
  831. ID_MODEL_FROM_DATABASE=MOTU 828
  832. IEEE1394_UNIT_FUNCTION_AUDIO=1
  833. ieee1394:node:ven0x0001f2units0x0001f2:0x000002
  834. ieee1394:ven000001F2mo*sp000001F2ver00000002
  835. ID_VENDOR_FROM_DATABASE=MOTU
  836. ID_MODEL_FROM_DATABASE=MOTU 896
  837. IEEE1394_UNIT_FUNCTION_AUDIO=1
  838. ieee1394:node:ven0x0001f2units0x0001f2:0x000003
  839. ieee1394:ven000001F2mo*sp000001F2ver00000003
  840. ID_VENDOR_FROM_DATABASE=MOTU
  841. ID_MODEL_FROM_DATABASE=MOTU 828 mkII
  842. IEEE1394_UNIT_FUNCTION_MIDI=1
  843. IEEE1394_UNIT_FUNCTION_AUDIO=1
  844. ieee1394:node:ven0x0001f2units0x0001f2:0x000005
  845. ieee1394:ven000001F2mo*sp000001F2ver00000005
  846. ID_VENDOR_FROM_DATABASE=MOTU
  847. ID_MODEL_FROM_DATABASE=MOTU 896 HD
  848. IEEE1394_UNIT_FUNCTION_AUDIO=1
  849. ieee1394:node:ven0x0001f2units0x0001f2:0x000009
  850. ieee1394:ven000001F2mo*sp000001F2ver00000009
  851. ID_VENDOR_FROM_DATABASE=MOTU
  852. ID_MODEL_FROM_DATABASE=Traveler
  853. IEEE1394_UNIT_FUNCTION_MIDI=1
  854. IEEE1394_UNIT_FUNCTION_AUDIO=1
  855. ieee1394:node:ven0x0001f2units0x0001f2:0x00000d
  856. ieee1394:ven000001F2mo*sp000001F2ver0000000D
  857. ID_VENDOR_FROM_DATABASE=MOTU
  858. ID_MODEL_FROM_DATABASE=UltraLite
  859. IEEE1394_UNIT_FUNCTION_MIDI=1
  860. IEEE1394_UNIT_FUNCTION_AUDIO=1
  861. ieee1394:node:ven0x0001f2units0x0001f2:0x00000f
  862. ieee1394:ven000001F2mo*sp000001F2ver0000000F
  863. ID_VENDOR_FROM_DATABASE=MOTU
  864. ID_MODEL_FROM_DATABASE=MOTU 8pre
  865. IEEE1394_UNIT_FUNCTION_MIDI=1
  866. IEEE1394_UNIT_FUNCTION_AUDIO=1
  867. ieee1394:node:ven0x0001f2units0x0001f2:0x000015
  868. ieee1394:ven000001F2mo*sp000001F2ver00000015
  869. ID_VENDOR_FROM_DATABASE=MOTU
  870. ID_MODEL_FROM_DATABASE=MOTU 828 mk3 FireWire
  871. IEEE1394_UNIT_FUNCTION_MIDI=1
  872. IEEE1394_UNIT_FUNCTION_AUDIO=1
  873. ieee1394:node:ven0x0001f2units0x0001f2:0x000017
  874. ieee1394:ven000001F2mo*sp000001F2ver00000017
  875. ID_VENDOR_FROM_DATABASE=MOTU
  876. ID_MODEL_FROM_DATABASE=MOTU 896 mk3 FireWire
  877. IEEE1394_UNIT_FUNCTION_MIDI=1
  878. IEEE1394_UNIT_FUNCTION_AUDIO=1
  879. ieee1394:node:ven0x0001f2units0x0001f2:0x000019
  880. ieee1394:ven000001F2mo*sp000001F2ver00000019
  881. ID_VENDOR_FROM_DATABASE=MOTU
  882. ID_MODEL_FROM_DATABASE=UltraLite mk3 FireWire
  883. IEEE1394_UNIT_FUNCTION_MIDI=1
  884. IEEE1394_UNIT_FUNCTION_AUDIO=1
  885. ieee1394:node:ven0x0001f2units0x0001f2:0x00001b
  886. ieee1394:ven000001F2mo*sp000001F2ver0000001B
  887. ID_VENDOR_FROM_DATABASE=MOTU
  888. ID_MODEL_FROM_DATABASE=Traveler mk3
  889. IEEE1394_UNIT_FUNCTION_MIDI=1
  890. IEEE1394_UNIT_FUNCTION_AUDIO=1
  891. ieee1394:node:ven0x0001f2units0x0001f2:0x000030
  892. ieee1394:ven000001F2mo*sp000001F2ver00000030
  893. ID_VENDOR_FROM_DATABASE=MOTU
  894. ID_MODEL_FROM_DATABASE=UltraLite mk3 Hybrid
  895. IEEE1394_UNIT_FUNCTION_MIDI=1
  896. IEEE1394_UNIT_FUNCTION_AUDIO=1
  897. ieee1394:node:ven0x0001f2units0x0001f2:0x000033
  898. ieee1394:ven000001F2mo*sp000001F2ver00000033
  899. ID_VENDOR_FROM_DATABASE=MOTU
  900. ID_MODEL_FROM_DATABASE=Audio Express
  901. IEEE1394_UNIT_FUNCTION_MIDI=1
  902. IEEE1394_UNIT_FUNCTION_AUDIO=1
  903. ieee1394:node:ven0x0001f2units0x0001f2:0x000035
  904. ieee1394:ven000001F2mo*sp000001F2ver00000035
  905. ID_VENDOR_FROM_DATABASE=MOTU
  906. ID_MODEL_FROM_DATABASE=MOTU 828 mk3 Hybrid
  907. IEEE1394_UNIT_FUNCTION_MIDI=1
  908. IEEE1394_UNIT_FUNCTION_AUDIO=1
  909. ieee1394:node:ven0x0001f2units0x0001f2:0x000045
  910. ieee1394:ven000001F2mo*sp000001F2ver00000045
  911. ID_VENDOR_FROM_DATABASE=MOTU
  912. ID_MODEL_FROM_DATABASE=MOTU 4pre
  913. IEEE1394_UNIT_FUNCTION_MIDI=1
  914. IEEE1394_UNIT_FUNCTION_AUDIO=1
  915. #
  916. # RME Fireface series.
  917. #
  918. ieee1394:node:ven0x000a35units0x000a35:0x000001
  919. ieee1394:ven00000A35mo00101800sp00000A35ver00000001
  920. ID_VENDOR_FROM_DATABASE=RME
  921. ID_MODEL_FROM_DATABASE=Fireface 800
  922. IEEE1394_UNIT_FUNCTION_MIDI=1
  923. IEEE1394_UNIT_FUNCTION_AUDIO=1
  924. ieee1394:node:ven0x000a35units0x000a35:0x000002
  925. ieee1394:ven00000A35mo00101800sp00000A35ver00000002
  926. ID_VENDOR_FROM_DATABASE=RME
  927. ID_MODEL_FROM_DATABASE=Fireface 400
  928. IEEE1394_UNIT_FUNCTION_MIDI=1
  929. IEEE1394_UNIT_FUNCTION_AUDIO=1
  930. ieee1394:node:ven0x000a35units0x000a35:0x000003
  931. ieee1394:ven00000A35mo00101800sp00000A35ver00000003
  932. ID_VENDOR_FROM_DATABASE=RME
  933. ID_MODEL_FROM_DATABASE=Fireface UFX
  934. IEEE1394_UNIT_FUNCTION_MIDI=1
  935. IEEE1394_UNIT_FUNCTION_AUDIO=1
  936. ieee1394:node:ven0x000a35units0x000a35:0x000004
  937. ieee1394:ven00000A35mo00101800sp00000A35ver00000004
  938. ID_VENDOR_FROM_DATABASE=RME
  939. ID_MODEL_FROM_DATABASE=Fireface UCX
  940. IEEE1394_UNIT_FUNCTION_MIDI=1
  941. IEEE1394_UNIT_FUNCTION_AUDIO=1
  942. ieee1394:node:ven0x000a35units0x000a35:0x000005
  943. ieee1394:ven00000A35mo00101800sp00000A35ver00000005
  944. ID_VENDOR_FROM_DATABASE=RME
  945. ID_MODEL_FROM_DATABASE=Fireface 802
  946. IEEE1394_UNIT_FUNCTION_MIDI=1
  947. IEEE1394_UNIT_FUNCTION_AUDIO=1
  948. #
  949. # Yamaha mLAN 2nd generation.
  950. #
  951. # The combination of Yamaha mLAN-NC1, Yamaha mLAN-PH2, and Fujifilm PHY MD8408B.
  952. #
  953. ieee1394:node:ven0x000a92mo0x000000units0x00a0de:0xffffff
  954. ieee1394:ven00000A92mo00000000sp0000A0DEver00FFFFFF
  955. ID_VENDOR_FROM_DATABASE=PreSonus
  956. ID_MODEL_FROM_DATABASE=FIREStation
  957. IEEE1394_UNIT_FUNCTION_MIDI=1
  958. IEEE1394_UNIT_FUNCTION_AUDIO=1
  959. ieee1394:node:ven0x00a0demo0x100005units0x00a0de:0xffffff
  960. ieee1394:ven0000A0DEmo00100005sp0000A0DEver00FFFFFF
  961. ID_VENDOR_FROM_DATABASE=Yamaha
  962. ID_MODEL_FROM_DATABASE=01X
  963. IEEE1394_UNIT_FUNCTION_MIDI=1
  964. IEEE1394_UNIT_FUNCTION_AUDIO=1
  965. ieee1394:node:ven0x00a0demo0x100007units0x00a0de:0xffffff
  966. ieee1394:ven0000A0DEmo00100007sp0000A0DEver00FFFFFF
  967. ID_VENDOR_FROM_DATABASE=Yamaha
  968. ID_MODEL_FROM_DATABASE=i88X
  969. IEEE1394_UNIT_FUNCTION_MIDI=1
  970. IEEE1394_UNIT_FUNCTION_AUDIO=1
  971. #
  972. # Yamaha mLAN 3rd generation.
  973. #
  974. # DICE II ASIC is used with specific firmware.
  975. #
  976. ieee1394:node:ven0x00a0demo0x100013units0x00a02d:0x000300
  977. ieee1394:ven0000A0DEmo00100013sp0000A02Dver00000300
  978. ID_VENDOR_FROM_DATABASE=Steinberg
  979. ID_MODEL_FROM_DATABASE=MR816
  980. IEEE1394_UNIT_FUNCTION_MIDI=1
  981. IEEE1394_UNIT_FUNCTION_AUDIO=1
  982. ieee1394:node:ven0x00a0demo0x100010units0x00a02d:0x000300
  983. ieee1394:ven0000A0DEmo00100010sp0000A02Dver00000300
  984. ID_VENDOR_FROM_DATABASE=Yamaha
  985. ID_MODEL_FROM_DATABASE=n8
  986. IEEE1394_UNIT_FUNCTION_MIDI=1
  987. IEEE1394_UNIT_FUNCTION_AUDIO=1
  988. #
  989. # Focusrite Liquid Mix series.
  990. #
  991. # OEM by Sintefex Audio lda.
  992. #
  993. ieee1394:node:ven0x00130eunits0x00130e:0x000700
  994. ieee1394:ven0000130Emo00010204sp0000130Ever00000700
  995. ID_VENDOR_FROM_DATABASE=Focusrite
  996. ID_MODEL_FROM_DATABASE=Liquid Mix 16
  997. IEEE1394_UNIT_FUNCTION_AUDIO=1
  998. ieee1394:node:ven0x00130eunits0x00130e:0x000200
  999. ieee1394:ven0000130Emo00010200sp0000130Ever00000200
  1000. ID_VENDOR_FROM_DATABASE=Focusrite
  1001. ID_MODEL_FROM_DATABASE=Liquid Mix 32
  1002. IEEE1394_UNIT_FUNCTION_AUDIO=1
  1003. #
  1004. # TC Electronic PowerCore series.
  1005. #
  1006. # Consists of NXP PowerQUICC II Processor with PCI interface (XPC8245, MPC8245), Texus Instruments
  1007. # OHCI 1.1, 1394a link layer controller (TSB43AB23). Xilinx Spartan-II FPGA (XC2S50), and some
  1008. # NXP 24-Bit Audio Digital Signal Processor (DSP56367).
  1009. #
  1010. ieee1394:node:ven0x000166mo0x000001units0x00a02d:0x000000
  1011. ieee1394:ven00000166mo00000001sp0000A02Dver00000000
  1012. ID_VENDOR_FROM_DATABASE=TC Electronic
  1013. ID_MODEL_FROM_DATABASE=PowerCore FireWire
  1014. IEEE1394_UNIT_FUNCTION_AUDIO=1
  1015. ieee1394:node:ven0x000166mo0x000002units0x00a02d:0x014000
  1016. ieee1394:ven00000166mo00000002sp0000A02Dver00014000
  1017. ID_VENDOR_FROM_DATABASE=TC Electronic
  1018. ID_MODEL_FROM_DATABASE=PowerCore Compact
  1019. IEEE1394_UNIT_FUNCTION_AUDIO=1
  1020. IEEE1394_UNIT_FUNCTION_VIDEO=0
  1021. # Match to Adrenaline, Mojo, and V10.
  1022. ieee1394:node:ven0x00a07eunits0x00a02d:0x014001
  1023. ieee1394:ven0000A07Emo00000001sp0000A02Dver00014001
  1024. ID_VENDOR_FROM_DATABASE=Avid Technology
  1025. ID_MODEL_FROM_DATABASE=Digital Nonlinear Accelerator
  1026. IEEE1394_UNIT_FUNCTION_AUDIO=1
  1027. IEEE1394_UNIT_FUNCTION_VIDEO=1
  1028. #
  1029. # Point Grey cameras.
  1030. #
  1031. # IIDC v1.04 compatible.
  1032. ieee1394:node:ven0x00b09dmo*units0x00b09d:0x000100
  1033. ieee1394:ven0000B09Dmo*spec0000B09Dver00000100
  1034. ID_VENDOR_FROM_DATABASE=Point Grey Research
  1035. IEEE1394_UNIT_FUNCTION_VIDEO=1
  1036. # IIDC v1.20 compatible.
  1037. ieee1394:node:ven0x00b09dmo*units0x00b09d:0x000101
  1038. ieee1394:ven0000B09Dmo*spec0000B09Dver00000101
  1039. ID_VENDOR_FROM_DATABASE=Point Grey Research
  1040. IEEE1394_UNIT_FUNCTION_VIDEO=1
  1041. # IIDC v1.30/v1.31/v1.32 compatible.
  1042. ieee1394:node:ven0x00b09dmo*units0x00b09d:0x000102
  1043. ieee1394:ven0000B09Dmo*spec0000B09Dver00000102
  1044. ID_VENDOR_FROM_DATABASE=Point Grey Research
  1045. IEEE1394_UNIT_FUNCTION_VIDEO=1
  1046. # Unique protocol.
  1047. ieee1394:node:ven0x00b09dmo*units0x00b09d:0x000114
  1048. ieee1394:ven0000B09Dmo*spec0000B09Dver00000114
  1049. ID_VENDOR_FROM_DATABASE=Point Grey Research
  1050. IEEE1394_UNIT_FUNCTION_VIDEO=1
  1051. #
  1052. # Digital Everywhere FloppyDTV and FireDtv series.
  1053. #
  1054. ieee1394:node:ven0x001287mo0x000024units0x00a02d:0x010001
  1055. ieee1394:ven00001287mo00000024sp0000A02Dver00010001
  1056. ID_VENDOR_FROM_DATABASE=Digital Everywhere
  1057. ID_MODEL_FROM_DATABASE=FloppyDTV S/CI
  1058. IEEE1394_UNIT_FUNCTION_VIDEO=1
  1059. ieee1394:node:ven0x001287mo0x000025units0x00a02d:0x010001
  1060. ieee1394:ven00001287mo00000025sp0000A02Dver00010001
  1061. ID_VENDOR_FROM_DATABASE=Digital Everywhere
  1062. ID_MODEL_FROM_DATABASE=FloppyDTV T/CI
  1063. IEEE1394_UNIT_FUNCTION_VIDEO=1
  1064. ieee1394:node:ven0x001287mo0x000026units0x00a02d:0x010001
  1065. ieee1394:ven00001287mo00000026sp0000A02Dver00010001
  1066. ID_VENDOR_FROM_DATABASE=Digital Everywhere
  1067. ID_MODEL_FROM_DATABASE=FloppyDTV C/CI
  1068. IEEE1394_UNIT_FUNCTION_VIDEO=1
  1069. ieee1394:node:ven0x001287mo0x000034units0x00a02d:0x010001
  1070. ieee1394:ven00001287mo00000034sp0000A02Dver00010001
  1071. ID_VENDOR_FROM_DATABASE=Digital Everywhere
  1072. ID_MODEL_FROM_DATABASE=FireDTV S/CI
  1073. IEEE1394_UNIT_FUNCTION_VIDEO=1
  1074. ieee1394:node:ven0x001287mo0x000035units0x00a02d:0x010001
  1075. ieee1394:ven00001287mo00000035sp0000A02Dver00010001
  1076. ID_VENDOR_FROM_DATABASE=Digital Everywhere
  1077. ID_MODEL_FROM_DATABASE=FireDTV T/CI
  1078. IEEE1394_UNIT_FUNCTION_VIDEO=1
  1079. ieee1394:node:ven0x001287mo0x000036units0x00a02d:0x010001
  1080. ieee1394:ven00001287mo00000036sp0000A02Dver00010001
  1081. ID_VENDOR_FROM_DATABASE=Digital Everywhere
  1082. ID_MODEL_FROM_DATABASE=FireDTV C/CI
  1083. IEEE1394_UNIT_FUNCTION_VIDEO=1
  1084. #
  1085. # Node with multiple units for several functions.
  1086. #
  1087. # When deciding the type of unit, please cooperate with kernel developers working for driver.
  1088. #
  1089. # Apple iSight: unit 0: IIDC v1.30 function.
  1090. ieee1394:node:ven0x080007mo0x000008units*0x00a02d:0x000102*
  1091. ieee1394:ven00080007mo00000008sp0000A02Dver00000102
  1092. ID_VENDOR_FROM_DATABASE=Apple
  1093. ID_MODEL_FROM_DATABASE=iSight
  1094. IEEE1394_UNIT_FUNCTION_VIDEO=1
  1095. # Apple iSight: unit 1: audio function.
  1096. ieee1394:node:ven0x080007mo0x000008units*0x000a27:0x000010*
  1097. ieee1394:ven00080007mo00000008sp00000A27ver00000010
  1098. ID_VENDOR_FROM_DATABASE=Apple
  1099. ID_MODEL_FROM_DATABASE=iSight
  1100. IEEE1394_UNIT_FUNCTION_AUDIO=1
  1101. # Apple iSight: unit 2: factory function.
  1102. ieee1394:node:ven0x080007mo0x000008units*0x000a27:0x000011*
  1103. ieee1394:ven00080007mo00000008sp00000A27ver00000011
  1104. ID_VENDOR_FROM_DATABASE=Apple
  1105. ID_MODEL_FROM_DATABASE=iSight
  1106. IEEE1394_UNIT_FUNCTION_VIDEO=1
  1107. # Apple iSight: unit 3: iris diaphragm function.
  1108. ieee1394:node:ven0x080007mo0x000008units*0x000a27:0x000012*
  1109. ieee1394:ven00080007mo00000008sp00000A27ver00000012
  1110. ID_VENDOR_FROM_DATABASE=Apple
  1111. ID_MODEL_FROM_DATABASE=iSight
  1112. IEEE1394_UNIT_FUNCTION_VIDEO=1
  1113. # MOTU V4HD: unit 0: unknown function.
  1114. ieee1394:node:ven0x0001f2units*0x0001f2:0x000021*
  1115. ieee1394:ven000001F2mo*sp000001F2ver00000021
  1116. ID_VENDOR_FROM_DATABASE=MOTU
  1117. ID_MODEL_FROM_DATABASE=MOTU V4HD
  1118. IEEE1394_UNIT_FUNCTION_VIDEO=1
  1119. # MOTU V4HD: unit 1: unknown function.
  1120. ieee1394:node:ven0x0001f2units*0x0001f2:0x000022*
  1121. ieee1394:ven000001F2mo*sp000001F2ver00000022
  1122. ID_VENDOR_FROM_DATABASE=MOTU
  1123. ID_MODEL_FROM_DATABASE=MOTU V4HD
  1124. IEEE1394_UNIT_FUNCTION_VIDEO=1
  1125. # MOTU V4HD: unit 2: unknown function.
  1126. ieee1394:node:ven0x0001f2units*0x0001f2:0x000023*
  1127. ieee1394:ven000001F2mo*sp000001F2ver00000023
  1128. ID_VENDOR_FROM_DATABASE=MOTU
  1129. ID_MODEL_FROM_DATABASE=MOTU V4HD
  1130. IEEE1394_UNIT_FUNCTION_VIDEO=1
  1131. # MOTU V4HD: unit 3: unknown function.
  1132. ieee1394:node:ven0x0001f2units*0x0001f2:0x000024*
  1133. ieee1394:ven000001F2mo*sp000001F2ver00000024
  1134. ID_VENDOR_FROM_DATABASE=MOTU
  1135. ID_MODEL_FROM_DATABASE=MOTU V4HD
  1136. IEEE1394_UNIT_FUNCTION_VIDEO=1