1/*
2 * Copyright (c) 2022 Microchip Technology Inc.
3 *
4 * SPDX-License-Identifier: Apache-2.0
5 */
6
7&spi0 {
8	status = "okay";
9	compatible = "microchip,xec-qmspi-ldma";
10	clock-frequency = <12000000>;
11	lines = <1>;
12	chip-select = <0>;
13
14	slow@0 {
15		compatible = "test-spi-loopback-slow";
16		reg = <0>;
17		spi-max-frequency = <500000>;
18	};
19	fast@0 {
20		compatible = "test-spi-loopback-fast";
21		reg = <0>;
22		spi-max-frequency = <16000000>;
23	};
24};
25