/* * Copyright (c) 2024 Nordic Semiconductor ASA * * SPDX-License-Identifier: Apache-2.0 */ #include / { zephyr,user { miso-gpios = <&gpio0 6 GPIO_ACTIVE_HIGH>; mosi-gpios = <&gpio0 7 GPIO_ACTIVE_HIGH>; }; }; &pinctrl { spi130_default: spi130_default { group1 { psels = , , ; }; }; spi130_sleep: spi130_sleep { group1 { psels = , , ; low-power-enable; }; }; }; &spi130 { pinctrl-0 = <&spi130_default>; pinctrl-1 = <&spi130_sleep>; pinctrl-names = "default", "sleep"; overrun-character = <0x00>; zephyr,pm-device-runtime-auto; status = "okay"; slow@0 { compatible = "test-spi-loopback-slow"; reg = <0>; spi-max-frequency = ; }; fast@0 { compatible = "test-spi-loopback-fast"; reg = <0>; spi-max-frequency = ; }; cs-gpios = <&gpio7 0 0>; }; &gpio0 { status = "okay"; }; &gpio7 { status = "okay"; zephyr,pm-device-runtime-auto; }; &gpiote130 { status = "okay"; };