zephyr/tests/subsys/usb/uac2/app.overlay
Tomasz Moń 7282e4ee3d tests: usb: uac2: test High-Speed only instance
Add and verify against reference descriptors a High-Speed only 192 kHz
24-bit stereo headphones with explicit feedback UAC2 instance.

Signed-off-by: Tomasz Moń <tomasz.mon@nordicsemi.no>
2024-09-10 14:41:32 +01:00

115 lines
2.8 KiB
Plaintext

/*
* Copyright (c) 2023 Nordic Semiconductor ASA
*
* SPDX-License-Identifier: Apache-2.0
*/
#include <dt-bindings/usb/audio.h>
/ {
uac2_headset: usb_audio2 {
compatible = "zephyr,uac2";
status = "okay";
full-speed;
high-speed;
audio-function = <AUDIO_FUNCTION_HEADSET>;
uac_aclk: aclk {
compatible = "zephyr,uac2-clock-source";
clock-type = "internal-programmable";
frequency-control = "host-programmable";
sampling-frequencies = <48000>;
};
out_terminal: out_terminal {
compatible = "zephyr,uac2-input-terminal";
clock-source = <&uac_aclk>;
terminal-type = <USB_TERMINAL_STREAMING>;
front-left;
front-right;
};
headphones_output: headphones {
compatible = "zephyr,uac2-output-terminal";
data-source = <&out_terminal>;
clock-source = <&uac_aclk>;
terminal-type = <BIDIRECTIONAL_TERMINAL_HEADSET>;
assoc-terminal = <&mic_input>;
};
mic_input: microphone {
compatible = "zephyr,uac2-input-terminal";
clock-source = <&uac_aclk>;
terminal-type = <BIDIRECTIONAL_TERMINAL_HEADSET>;
/* Circular reference, macros will figure it out and
* provide correct associated terminal ID because the
* terminals associations are always 1-to-1.
*
* assoc-terminal = <&headphones_output>;
*/
front-left;
};
in_terminal: in_terminal {
compatible = "zephyr,uac2-output-terminal";
data-source = <&mic_input>;
clock-source = <&uac_aclk>;
terminal-type = <USB_TERMINAL_STREAMING>;
};
as_iso_out: out_interface {
compatible = "zephyr,uac2-audio-streaming";
linked-terminal = <&out_terminal>;
implicit-feedback;
subslot-size = <2>;
bit-resolution = <16>;
};
as_iso_in: in_interface {
compatible = "zephyr,uac2-audio-streaming";
linked-terminal = <&in_terminal>;
implicit-feedback;
subslot-size = <2>;
bit-resolution = <16>;
};
};
};
/ {
hs_uac2_headphones: hs_usb_audio2 {
compatible = "zephyr,uac2";
status = "okay";
high-speed;
audio-function = <AUDIO_FUNCTION_OTHER>;
hs_uac_aclk: hs_aclk {
compatible = "zephyr,uac2-clock-source";
clock-type = "internal-programmable";
frequency-control = "host-programmable";
sampling-frequencies = <192000>;
};
hs_out_terminal: hs_out_terminal {
compatible = "zephyr,uac2-input-terminal";
clock-source = <&hs_uac_aclk>;
terminal-type = <USB_TERMINAL_STREAMING>;
front-left;
front-right;
};
hs_headphones_output: hs_headphones {
compatible = "zephyr,uac2-output-terminal";
data-source = <&hs_out_terminal>;
clock-source = <&hs_uac_aclk>;
terminal-type = <OUTPUT_TERMINAL_HEADPHONES>;
};
hs_as_iso_out: hs_out_interface {
compatible = "zephyr,uac2-audio-streaming";
linked-terminal = <&hs_out_terminal>;
subslot-size = <3>;
bit-resolution = <24>;
};
};
};