1# Copyright 2020, Friedt Professional Engineering Services, Inc 2# SPDX-License-Identifier: Apache-2.0 3 4description: GPIO Emulator 5 6compatible: "zephyr,gpio-emul" 7 8include: [gpio-controller.yaml, base.yaml] 9 10properties: 11 reg: 12 required: true 13 14 rising-edge: 15 description: Enables support for rising edge interrupt detection 16 type: boolean 17 18 falling-edge: 19 description: Enables support for falling edge interrupt detection 20 type: boolean 21 22 high-level: 23 description: Enables support for high level interrupt detection 24 type: boolean 25 26 low-level: 27 description: Enables support for low level interrupt detection 28 type: boolean 29 30 "#gpio-cells": 31 const: 2 32 33gpio-cells: 34 - pin 35 - flags 36