1/* 2 * Copyright (c) 2020 Phytec Messtechnik GmbH 3 * 4 * SPDX-License-Identifier: Apache-2.0 5 */ 6 7&spi3 { 8 status = "ok"; 9 cs-gpios = <&gpio1 3 GPIO_ACTIVE_LOW>; 10 sck-pin = <36>; 11 mosi-pin = <37>; 12 miso-pin = <38>; 13 14 winc1500@0 { 15 status = "ok"; 16 compatible = "atmel,winc1500"; 17 reg = <0x0>; 18 label = "winc1500"; 19 spi-max-frequency = <4000000>; 20 irq-gpios = <&gpio1 7 1>; 21 reset-gpios = <&gpio1 8 1>; 22 enable-gpios = <&gpio1 12 0>; 23 24 }; 25}; 26