1/* 2 * Copyright (c) 2025 Jilay Sandeep Pandya 3 * SPDX-License-Identifier: Apache-2.0 4 */ 5 6#include <zephyr/dt-bindings/gpio/gpio.h> 7 8/ { 9 gpio1: gpio1 { 10 compatible = "zephyr,gpio-emul"; 11 #gpio-cells = <0x2>; 12 status = "okay"; 13 gpio-controller; 14 }; 15 16 gpio2: gpio2 { 17 compatible = "zephyr,gpio-emul"; 18 #gpio-cells = <0x2>; 19 status = "okay"; 20 gpio-controller; 21 }; 22 23 gpio3: gpio3 { 24 compatible = "zephyr,gpio-emul"; 25 #gpio-cells = <0x2>; 26 status = "okay"; 27 gpio-controller; 28 }; 29 30 gpio4: gpio4 { 31 compatible = "zephyr,gpio-emul"; 32 #gpio-cells = <0x2>; 33 status = "okay"; 34 gpio-controller; 35 }; 36}; 37