Skip to content
Snippets Groups Projects
  1. Dec 01, 2022
  2. Nov 30, 2022
    • Takashi Sakamoto's avatar
      ALSA: dice: add support for Focusrite Saffire Pro 40 with TCD3070 ASIC · 2133dc91
      Takashi Sakamoto authored and Takashi Iwai's avatar Takashi Iwai committed
      TC Applied Technologies (TCAT) produces TCD3070 as final DICE ASIC for
      communication in IEEE 1394 bus for IEC 61883-1/6 protocol. As long as I
      know, latter model of Focusrite Saffire Pro 40 is an application of the
      ASIC and only in the market for consumers.
      
      This patchset adds support for the device. The device has several
      remarkable points.
      
      1. No support for extended synchronization information section in TCAT
      general protocol. The value of GLOBAL_EXTENDED_STATUS register is always
      zero. Additionally, NOTIFY_EXT_STATUS message is never emitted.
      
      2. No support for TCAT protocol extension. Hard coding is required for
      format of CIP payload.
      
      3. During several seconds after changing sampling rate, the block to
      process PCM frames is under disfunction. When starting packet streaming
      during the state, the block is never function till configuring different
      sampling rate and several seconds.
      
      This commit adds support for the device. The item 1 and 2 can be
      adaptable, while item 3 is not. It's not preferable that user process
      is forced to sleep during the disfunction in the call of ioctl(2) with
      SNDRV_PCM_IOCTL_HW_PARAMS or SNDRV_PCM_IOCTL_PREPARE request. It's
      inconvenient but let user configure preferable sampling rate in advance
      of starting PCM substream.
      
      The content of configuration ROM in the device I used is available at:
       * https://github.com/takaswie/am-config-roms/
      
      
      
      I note that any mixer control operation is implemented by unique
      transaction. The frame of request consists of 16 bytes header followed
      by payload.
      
      header (4 quadlets):
      1st: the type of request, prefixed with 0x8000
      2nd: counter at 2 bytes in MSB side, the length of data at 2 bytes in LSB
           side
      3rd: parameter 0
      4th: parameter 1
      
      payload (variable length if need):
      5th-: data according to parameters
      
      The request frame is sent by block write request to 0x'ffff'e040'01c0.
      
      The frame of response is similar to the frame of request, but it is
      header only, thus fixed to 16 bytes. The response frame is sent to the
      address which is registered by lock transaction to 0x'ffff'e040'0008.
      
      If the operation results in batch of data, the 2nd quadlet of header
      includes the length of data like request. The data is itself readable
      by read block request to 0x'ffff'e040'0030, which includes both
      header and payload for data, thus the length to read should be the
      length of data plus 16 bytes for header
      
      The actual value of request, parameter 0, parameter 1, and data is
      unclear yet.
      
      Signed-off-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
      Link: https://lore.kernel.org/r/20221130143313.43880-1-o-takashi@sakamocchi.jp
      
      
      Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      2133dc91
    • Takashi Sakamoto's avatar
      ALSA: dice: fix regression for Lexicon I-ONIX FW810S · 9b84f0f7
      Takashi Sakamoto authored and Takashi Iwai's avatar Takashi Iwai committed
      
      For Lexicon I-ONIX FW810S, the call of ioctl(2) with
      SNDRV_PCM_IOCTL_HW_PARAMS can returns -ETIMEDOUT. This is a regression due
      to the commit 41319eb5 ("ALSA: dice: wait just for
      NOTIFY_CLOCK_ACCEPTED after GLOBAL_CLOCK_SELECT operation"). The device
      does not emit NOTIFY_CLOCK_ACCEPTED notification when accepting
      GLOBAL_CLOCK_SELECT operation with the same parameters as current ones.
      
      This commit fixes the regression. When receiving no notification, return
      -ETIMEDOUT as long as operating for any change.
      
      Fixes: 41319eb5 ("ALSA: dice: wait just for NOTIFY_CLOCK_ACCEPTED after GLOBAL_CLOCK_SELECT operation")
      Cc: <stable@vger.kernel.org>
      Signed-off-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
      Link: https://lore.kernel.org/r/20221130130604.29774-1-o-takashi@sakamocchi.jp
      
      
      Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      9b84f0f7
  3. Sep 27, 2022
  4. Apr 25, 2022
  5. Mar 04, 2022
    • Takashi Sakamoto's avatar
      ALSA: firewire-lib: fix uninitialized flag for AV/C deferred transaction · bf0cd60b
      Takashi Sakamoto authored and Takashi Iwai's avatar Takashi Iwai committed
      
      AV/C deferred transaction was supported at a commit 00a7bb81 ("ALSA:
      firewire-lib: Add support for deferred transaction") while 'deferrable'
      flag can be uninitialized for non-control/notify AV/C transactions.
      UBSAN reports it:
      
      kernel: ================================================================================
      kernel: UBSAN: invalid-load in /build/linux-aa0B4d/linux-5.15.0/sound/firewire/fcp.c:363:9
      kernel: load of value 158 is not a valid value for type '_Bool'
      kernel: CPU: 3 PID: 182227 Comm: irq/35-firewire Tainted: P           OE     5.15.0-18-generic #18-Ubuntu
      kernel: Hardware name: Gigabyte Technology Co., Ltd. AX370-Gaming 5/AX370-Gaming 5, BIOS F42b 08/01/2019
      kernel: Call Trace:
      kernel:  <IRQ>
      kernel:  show_stack+0x52/0x58
      kernel:  dump_stack_lvl+0x4a/0x5f
      kernel:  dump_stack+0x10/0x12
      kernel:  ubsan_epilogue+0x9/0x45
      kernel:  __ubsan_handle_load_invalid_value.cold+0x44/0x49
      kernel:  fcp_response.part.0.cold+0x1a/0x2b [snd_firewire_lib]
      kernel:  fcp_response+0x28/0x30 [snd_firewire_lib]
      kernel:  fw_core_handle_request+0x230/0x3d0 [firewire_core]
      kernel:  handle_ar_packet+0x1d9/0x200 [firewire_ohci]
      kernel:  ? handle_ar_packet+0x1d9/0x200 [firewire_ohci]
      kernel:  ? transmit_complete_callback+0x9f/0x120 [firewire_core]
      kernel:  ar_context_tasklet+0xa8/0x2e0 [firewire_ohci]
      kernel:  tasklet_action_common.constprop.0+0xea/0xf0
      kernel:  tasklet_action+0x22/0x30
      kernel:  __do_softirq+0xd9/0x2e3
      kernel:  ? irq_finalize_oneshot.part.0+0xf0/0xf0
      kernel:  do_softirq+0x75/0xa0
      kernel:  </IRQ>
      kernel:  <TASK>
      kernel:  __local_bh_enable_ip+0x50/0x60
      kernel:  irq_forced_thread_fn+0x7e/0x90
      kernel:  irq_thread+0xba/0x190
      kernel:  ? irq_thread_fn+0x60/0x60
      kernel:  kthread+0x11e/0x140
      kernel:  ? irq_thread_check_affinity+0xf0/0xf0
      kernel:  ? set_kthread_struct+0x50/0x50
      kernel:  ret_from_fork+0x22/0x30
      kernel:  </TASK>
      kernel: ================================================================================
      
      This commit fixes the bug. The bug has no disadvantage for the non-
      control/notify AV/C transactions since the flag has an effect for AV/C
      response with INTERIM (0x0f) status which is not used for the transactions
      in AV/C general specification.
      
      Fixes: 00a7bb81 ("ALSA: firewire-lib: Add support for deferred transaction")
      Signed-off-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
      Link: https://lore.kernel.org/r/20220304125647.78430-1-o-takashi@sakamocchi.jp
      
      
      Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      bf0cd60b
  6. Nov 11, 2021
    • Takashi Sakamoto's avatar
      ALSA: fireworks: add support for Loud Onyx 1200f quirk · 0ca37273
      Takashi Sakamoto authored and Takashi Iwai's avatar Takashi Iwai committed
      
      Loud Technologies shipped Onyx 1200f 2008 in its Mackie brand and
      already discontinued. The model uses component of Fireworks board
      module as its communication and DSP function.
      
      The latest firmware (v4.6.0) has a quirk that tx packet includes wrong
      value (0x1f) in its dbs field at middle and higher sampling transfer
      frequency. It brings ALSA fireworks driver discontinuity of data block
      counter.
      
      This commit fixes it by assuming it as a quirk of firmware version
      4.6.0.
      
      $ cd linux-firewire-tools/src
      $ python crpp < /sys/bus/firewire/devices/fw1/config_rom
                     ROM header and bus information block
                     -----------------------------------------------------------------
      400  0404b9ef  bus_info_length 4, crc_length 4, crc 47599
      404  31333934  bus_name "1394"
      408  e064a212  irmc 1, cmc 1, isc 1, bmc 0, pmc 0, cyc_clk_acc 100,
                     max_rec 10 (2048), max_rom 2, gen 1, spd 2 (S400)
      40c  000ff209  company_id 000ff2     |
      410  62550ce0  device_id 0962550ce0  | EUI-64 000ff20962550ce0
      
                     root directory
                     -----------------------------------------------------------------
      414  0008088e  directory_length 8, crc 2190
      418  03000ff2  vendor
      41c  8100000f  --> descriptor leaf at 458
      420  1701200f  model
      424  81000018  --> descriptor leaf at 484
      428  0c008380  node capabilities
      42c  8d000003  --> eui-64 leaf at 438
      430  d1000005  --> unit directory at 444
      434  08000ff2  (immediate value)
      
                     eui-64 leaf at 438
                     -----------------------------------------------------------------
      438  000281ae  leaf_length 2, crc 33198
      43c  000ff209  company_id 000ff2     |
      440  62550ce0  device_id 0962550ce0  | EUI-64 000ff20962550ce0
      
                     unit directory at 444
                     -----------------------------------------------------------------
      444  00045d94  directory_length 4, crc 23956
      448  1200a02d  specifier id: 1394 TA
      44c  13010000  version
      450  1701200f  model
      454  8100000c  --> descriptor leaf at 484
      
                     descriptor leaf at 458
                     -----------------------------------------------------------------
      458  000a199d  leaf_length 10, crc 6557
      45c  00000000  textual descriptor
      460  00000000  minimal ASCII
      464  4d61636b  "Mack"
      468  69650000  "ie"
      46c  00000000
      470  00000000
      474  00000000
      478  00000000
      47c  00000000
      480  00000000
      
                     descriptor leaf at 484
                     -----------------------------------------------------------------
      484  000a0964  leaf_length 10, crc 2404
      488  00000000  textual descriptor
      48c  00000000  minimal ASCII
      490  4f6e7978  "Onyx"
      494  20313230  " 120"
      498  30460000  "0F"
      49c  00000000
      4a0  00000000
      4a4  00000000
      4a8  00000000
      4ac  00000000
      
      Signed-off-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
      Link: https://lore.kernel.org/r/20211111103015.7498-1-o-takashi@sakamocchi.jp
      
      
      Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      0ca37273
  7. Nov 08, 2021
    • Takashi Sakamoto's avatar
      ALSA: firewire-motu: add support for MOTU Track 16 · 411ac298
      Takashi Sakamoto authored and Takashi Iwai's avatar Takashi Iwai committed
      
      Mark of the Unicorn designed Track 16 2011 as one of models in third
      generation of its FireWire series. The model is already discontinued.
      It consists of below ICs:
      
       * Texas Instruments TSB41AB1
       * Microchip (SMSC) USB3300
       * Xilinx Spartan-3A FPGA, XC3S700A
       * Texas Instruments TMS320C6722
       * Microchip (Atmel) AT91SAM SAM7S512
      
      It supports sampling transfer frequency up to 192.0 kHz. The packet
      format differs depending on both of current sampling transfer frequency
      and the type of signal in optical interfaces. The model supports
      transmission of PCM frames as well as MIDI messages.
      
      The model supports command mechanism to configure internal DSP. Hardware
      meter information is available in the first 2 chunks of each data block
      of tx packet.
      
      This commit adds support for it.
      
      $ cd linux-firewire-tools/src
      $ python crpp < /sys/bus/firewire/devices/fw1/config_rom
                     ROM header and bus information block
                     -----------------------------------------------------------------
      400  04107d95  bus_info_length 4, crc_length 16, crc 32149
      404  31333934  bus_name "1394"
      408  20ff7000  irmc 0, cmc 0, isc 1, bmc 0, cyc_clk_acc 255, max_rec 7 (256)
      40c  0001f200  company_id 0001f2     |
      410  000a83c4  device_id 00000a83c4  | EUI-64 0001f200000a83c4
      
                     root directory
                     -----------------------------------------------------------------
      414  0004ef04  directory_length 4, crc 61188
      418  030001f2  vendor
      41c  0c0083c0  node capabilities per IEEE 1394
      420  d1000002  --> unit directory at 428
      424  8d000005  --> eui-64 leaf at 438
      
                     unit directory at 428
                     -----------------------------------------------------------------
      428  00035b04  directory_length 3, crc 23300
      42c  120001f2  specifier id
      430  13000039  version
      434  17102800  model
      
                     eui-64 leaf at 438
                     -----------------------------------------------------------------
      438  0002b25f  leaf_length 2, crc 45663
      43c  0001f200  company_id 0001f2     |
      440  000a83c4  device_id 00000a83c4  | EUI-64 0001f200000a83c4
      
      Signed-off-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
      Link: https://lore.kernel.org/r/20211107110644.23511-1-o-takashi@sakamocchi.jp
      
      
      Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      411ac298
  8. Nov 04, 2021
    • Takashi Sakamoto's avatar
      ALSA: firewire-motu: add support for MOTU Traveler mk3 · bf868be7
      Takashi Sakamoto authored and Takashi Iwai's avatar Takashi Iwai committed
      
      Mark of the Unicorn (MOTU) shipped Traveler mk3 as one of models in third
      generation of its FireWire series, and discontinued it already. The model
      consists of below ICs:
      
       * Texas Instruments TSB41AB2
       * Phillips Semiconductors PDI1394L40
       * Altera cyclone EP1C3
       * Texas Instruments TMS320VC5402
      
      It supports sampling transfer frequency up to 192.0 kHz. The packet
      format differs depending on both of current sampling transfer frequency
      and whether to enable ADAT channels in rx/tx packets. The model supports
      transmission of PCM frames as well as MIDI messages.
      
      The model supports command mechanism to configure internal DSP. Hardware
      meter information is available in the first 2 chunks of each data block
      of tx packet.
      
      This commit adds support for it.
      
      $ cd linux-firewire-tools/src
      $ python crpp < /sys/bus/firewire/devices/fw1/config_rom
                     ROM header and bus information block
                     -----------------------------------------------------------------
      400  0410af0a  bus_info_length 4, crc_length 16, crc 44810
      404  31333934  bus_name "1394"
      408  20ff7000  irmc 0, cmc 0, isc 1, bmc 0, cyc_clk_acc 255, max_rec 7 (256)
      40c  0001f200  company_id 0001f2     |
      410  00090911  device_id 0000090911  | EUI-64 0001f20000090911
      
                     root directory
                     -----------------------------------------------------------------
      414  0004ef04  directory_length 4, crc 61188
      418  030001f2  vendor
      41c  0c0083c0  node capabilities per IEEE 1394
      420  d1000002  --> unit directory at 428
      424  8d000005  --> eui-64 leaf at 438
      
                     unit directory at 428
                     -----------------------------------------------------------------
      428  00031733  directory_length 3, crc 5939
      42c  120001f2  specifier id
      430  1300001b  version
      434  17102800  model
      
                     eui-64 leaf at 438
                     -----------------------------------------------------------------
      438  00028484  leaf_length 2, crc 33924
      43c  0001f200  company_id 0001f2     |
      440  00090911  device_id 0000090911  | EUI-64 0001f20000090911
      
      Signed-off-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
      Link: https://lore.kernel.org/r/20211104110627.94469-1-o-takashi@sakamocchi.jp
      
      
      Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      bf868be7
  9. Oct 29, 2021
  10. Oct 28, 2021
    • Takashi Sakamoto's avatar
      ALSA: oxfw: fix functional regression for Mackie Onyx 1640i in v5.14 or later · cddcd547
      Takashi Sakamoto authored and Takashi Iwai's avatar Takashi Iwai committed
      A user reports functional regression for Mackie Onyx 1640i that the device
      generates slow sound with ALSA oxfw driver which supports media clock
      recovery. Although the device is based on OXFW971 ASIC, it does not
      transfer isochronous packet with own event frequency as expected. The
      device seems to adjust event frequency according to events in received
      isochronous packets in the beginning of packet streaming. This is
      unknown quirk.
      
      This commit fixes the regression to turn the recovery off in driver
      side. As a result, nominal frequency is used in duplex packet streaming
      between device and driver. For stability of sampling rate in events of
      transferred isochronous packet, 4,000 isochronous packets are skipped
      in the beginning of packet streaming.
      
      Reference: https://github.com/takaswie/snd-firewire-improve/issues/38
      
      
      Fixes: 029ffc42 ("ALSA: oxfw: perform sequence replay for media clock recovery")
      Signed-off-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
      Link: https://lore.kernel.org/r/20211028130325.45772-1-o-takashi@sakamocchi.jp
      
      
      Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      cddcd547
    • Takashi Sakamoto's avatar
      ALSA: firewire-motu: export meter information to userspace as float value · 407359d4
      Takashi Sakamoto authored and Takashi Iwai's avatar Takashi Iwai committed
      
      In command DSP models, one meter information consists of 4 bytes for
      IEEE 764 floating point (binary32). In previous patch, it is exported
      to userspace as 32 bit storage since the storage is also handled in
      ALSA firewire-motu driver as well in kernel space in which floating point
      arithmetic is not preferable. On the other hand, ALSA firewire-motu driver
      doesn't perform floating point calculation. The driver just gather meter
      information from isochronous packets and fill structure fields for
      userspace.
      
      In 'header' target of Kbuild, UAPI headers are processed before installed.
      In this timing, #ifdef macro with __KERNEL__ is removed. This mechanism
      is useful in the case so that the 32 bit storage can be accessible as u32
      type in kernel space and float type in user space. We can see the same
      usage in ''struct acct_v3' in 'include/uapi/linux/acct.h'.
      
      This commit is for the above idea. Additionally, due to message
      protocol, meter information is filled with 0xffffffff in the end of
      period but 0xffffffff is invalid as binary32. To avoid confusion in
      userspace application, the last two elements are left without any
      assignment.
      
      Suggested-by: default avatarTakashi Iwai <tiwai@suse.de>
      Signed-off-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
      Link: https://lore.kernel.org/r/20211027125529.54295-4-o-takashi@sakamocchi.jp
      
      
      Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      407359d4
    • Takashi Sakamoto's avatar
      ALSA: firewire-motu: refine parser for meter information in register DSP models · 0f166e12
      Takashi Sakamoto authored and Takashi Iwai's avatar Takashi Iwai committed
      
      After further investigation, I realize that the total number of elements
      in array is not enough to store all of related messages from device.
      This commit refines meter array and message parser.
      
      In terms of channel identifier, register DSP models are classified to
      two categories:
      
      1. the target of output is selectable
      
      828mk2, 896hd, and Traveler are in the category. They transfer messages
      with channel identifier between 0x00 and 0x13 for input meters,
      therefore 20 elements are needed to store.
      
      On the other hand, they transfer messages with channel identifier for one
      pair of output meters. The selection is done by asynchronous write
      transaction to offset 0x'ffff'f000'0b2c. The table for relationship
      between written value and available identifiers is below:
      
      =============  ===============
      written value  identifier pair
      =============  ===============
      0x00000b00     0x80/0x81
      0x00000b01     0x82/0x83
      ...            ...
      0x00000b0b     0x96/0x97
      ...            ...
      0x00000b10     0xa0/0xa1
      ...            ...
      0x00000b3f     0xfe/0xff
      ...            ...
      greater        0xfe/0xff
      =============  ===============
      
      Actually in the above three models, 0x96/0x97 pair is the maximum. Thus
      the number of available output meter is 24.
      
      2. all of output is available
      
      8 pre, Ultralite, Audio Express, and 4 pre are in the category. They
      transfer messages for output meters without any selection. The table for
      available identifier for each direction is below:
      
      ==============  =========  ==========
      model           input      output
      ==============  =========  ==========
      8 pre           0x00-0x0f  0x82-0x8d
      Ultralite       0x00-0x09  0x82-0x8f
      Audio Express   0x00-0x09  0x80-0x8d
      4 pre           0x00-0x09  0x80-0x8d
      ==============  =========  ==========
      
      Some of available identifiers might not be used for actual output meters.
      
      Anyway, 24 plus 24 elements accommodate the input/output meters.
      
      I note that isochronous packet from V3HD/V4HD deliver no message.
      Notification by asynchronous transaction to registered address seems to be
      used for the purpose as well as for change of mixer parameter.
      
      Signed-off-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
      Link: https://lore.kernel.org/r/20211027125529.54295-3-o-takashi@sakamocchi.jp
      
      
      Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      0f166e12
    • Takashi Sakamoto's avatar
      ALSA: firewire-motu: fix null pointer dereference when polling hwdep character device · d593f78e
      Takashi Sakamoto authored and Takashi Iwai's avatar Takashi Iwai committed
      
      ALSA firewire-motu driver recently got support for event notification via
      ALSA HwDep interface for register DSP models. However, when polling ALSA
      HwDep cdev, the driver can cause null pointer dereference for the other
      models due to accessing to unallocated memory or uninitialized memory.
      
      This commit fixes the bug by check the type of model before accessing to
      the memory.
      
      Reported-by: default avatarkernel test robot <lkp@intel.com>
      Suggested-by: default avatarTakashi Iwai <tiwai@suse.de>
      Fixes: 634ec0b2 ("ALSA: firewire-motu: notify event for parameter change in register DSP model")
      Signed-off-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
      Link: https://lore.kernel.org/r/20211027125529.54295-2-o-takashi@sakamocchi.jp
      
      
      Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      d593f78e
  11. Oct 15, 2021
  12. Sep 21, 2021
  13. Sep 13, 2021
  14. Aug 23, 2021
    • Takashi Sakamoto's avatar
      ALSA: firewire-motu: add support for MOTU 896HD · 23c671be
      Takashi Sakamoto authored and Takashi Iwai's avatar Takashi Iwai committed
      
      Mark of the Unicorn (MOTU) shipped 896HD 2003 as one of models in second
      generation of its FireWire series, and already discontinued it. The model
      consists of below ICs:
      
       * Texas Instruments TSB41AB2
       * Phillips Semiconductors PDI1394L40
       * Altera cyclone EP1C3
       * Texas Instruments TMS320VC5402
      
      It supports sampling transmission frequency up to 192.0 kHz. The packet
      format differs depending on both of sampling transfer frequency and enabling
      ADAT channels. The model doesn't support MIDI message transmission.
      
      This commit adds support for it.
      
      $ python3 crpp < /sys/bus/firewire/devices/fw1/config_rom
                     ROM header and bus information block
                     -----------------------------------------------------------------
      400  04101b66  bus_info_length 4, crc_length 16, crc 7014
      404  31333934  bus_name "1394"
      408  20001000  irmc 0, cmc 0, isc 1, bmc 0, cyc_clk_acc 0, max_rec 1 (4)
      40c  0001f200  company_id 0001f2     |
      410  0001dbce  device_id 000001dbce  | EUI-64 0001f2000001dbce
      
                     root directory
                     -----------------------------------------------------------------
      414  0004c65c  directory_length 4, crc 50780
      418  030001f2  vendor
      41c  0c0083c0  node capabilities per IEEE 1394
      420  8d000006  --> eui-64 leaf at 438
      424  d1000001  --> unit directory at 428
      
                     unit directory at 428
                     -----------------------------------------------------------------
      428  0003dcc1  directory_length 3, crc 56513
      42c  120001f2  specifier id
      430  13000005  version
      434  17102800  model
      
                     eui-64 leaf at 438
                     -----------------------------------------------------------------
      438  000264f2  leaf_length 2, crc 25842
      43c  0001f200  company_id 0001f2     |
      440  0001dbce  device_id 000001dbce  | EUI-64 0001f2000001dbce
      
      Signed-off-by: default avatarTakashi Sakamoto <o-takashi@sakamocchi.jp>
      Link: https://lore.kernel.org/r/20210823085741.33864-1-o-takashi@sakamocchi.jp
      
      
      Signed-off-by: default avatarTakashi Iwai <tiwai@suse.de>
      23c671be
  15. Aug 12, 2021
  16. Jul 05, 2021
  17. Jun 25, 2021
  18. Jun 23, 2021
Loading