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