1/* SPDX-License-Identifier: Apache-2.0 */
2
3&dmac {
4	status = "okay";
5};
6
7&sercom0 {
8	status = "disabled";
9};
10
11dut: &sercom1 {
12	/* Internally loop-back TX and RX on PAD0 */
13	rxpo = <0>;
14	txpo = <0>;
15
16	/* Configure DMA channels for async operation */
17	dmas = <&dmac 0 3>, <&dmac 1 4>;
18	dma-names = "rx", "tx";
19};
20
21&sercom3 {
22	/* configure DMA channels for async operation */
23	dmas = <&dmac 10 7>, <&dmac 11 8>;
24	dma-names = "rx", "tx";
25};
26