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 rising-edge: 12 description: Enables support for rising edge interrupt detection 13 type: boolean 14 15 falling-edge: 16 description: Enables support for falling edge interrupt detection 17 type: boolean 18 19 high-level: 20 description: Enables support for high level interrupt detection 21 type: boolean 22 23 low-level: 24 description: Enables support for low level interrupt detection 25 type: boolean 26 27 "#gpio-cells": 28 const: 2 29 30gpio-cells: 31 - pin 32 - flags 33