Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.
Comment: Updated for 2020.1

The purpose of this page is to describe the audio Linux drivers for HDMI Rx/Tx IP.

Table of contents

Table of Contents
maxLevel2

...

Record (HDMI Rx): Records the audio data into a file.

Code Block
themeMidnight
arecord -Dhw:0,1  -fS24_LE -r 48000 -c 2  -d 30 -t raw <output filename.raw>

Playback (HDMI Tx):  Playing the recorded file from above step

Code Block
themeMidnight
aplay -D hw:0,0 -fS24_LE -r 48000 -c 2 -t raw <output filename.raw> 

Device enumeration:

For record device:

Code Block
themeMidnight
arecord --device="hw:0,1" --dump-hw-params


For playback device:

Code Block
themeMidnight
aplay --device="hw:0,0" --dump-hw-params


...

Driver has been tested on the following boards

  1. ZCU106 Rev 1.0

Change log

2020.1

  • Summary
    • No changes

2019.2

  • Summary
    • No changes

2019.1

  • Summary:
    • Modified lookup table for audio N parameter for hdmi tx audio driver.
  • Commits:
    • cccf4a9 - hdmitx:hdmirx: Adaptation to 4.19 kernel version
    • 6f65b2  - hdmitx: modify lookup table for audio N parameter.

...