25 lines
437 B
Plaintext
25 lines
437 B
Plaintext
/*
|
|
* Copyright (c) 2022 Microchip Technology Inc.
|
|
*
|
|
* SPDX-License-Identifier: Apache-2.0
|
|
*/
|
|
|
|
&spi0 {
|
|
status = "okay";
|
|
compatible = "microchip,xec-qmspi-ldma";
|
|
clock-frequency = <12000000>;
|
|
lines = <1>;
|
|
chip-select = <0>;
|
|
|
|
slow@0 {
|
|
compatible = "test-spi-loopback-slow";
|
|
reg = <0>;
|
|
spi-max-frequency = <500000>;
|
|
};
|
|
fast@0 {
|
|
compatible = "test-spi-loopback-fast";
|
|
reg = <0>;
|
|
spi-max-frequency = <16000000>;
|
|
};
|
|
};
|