1/* Copyright (c) 2022 Linumiz
2 * SPDX-License-Identifier: Apache-2.0
3 */
4
5&arduino_spi {
6	status = "okay";
7
8	eth_w5500_arceli_eth_w5500: eth_w5500@0 {
9		compatible = "wiznet,w5500";
10		reg = <0x0>;
11		spi-max-frequency = <80000000>;
12		int-gpios = <&arduino_header 15 GPIO_ACTIVE_LOW>;	/* D9 */
13		reset-gpios = <&arduino_header 14 GPIO_ACTIVE_LOW>;	/* D8 */
14	};
15};
16