1# Copyright (c) 2024 Renesas Electronics Corporation
2# SPDX-License-Identifier: Apache-2.0
3
4description: Renesas RA External Interrupt
5
6compatible: "renesas,ra-external-interrupt"
7
8include: [base.yaml]
9
10properties:
11  interrupts:
12    required: true
13
14  reg:
15    required: true
16
17  channel:
18    type: int
19    required: true
20
21  renesas,trigger:
22    type: string
23    enum:
24      - "falling"
25      - "rising"
26      - "both-edges"
27      - "low-level"
28    description: |
29      Select the signal edge or state that triggers an interrupt
30
31  renesas,digital-filtering:
32    type: boolean
33    description: |
34      Select if data noise filter should be enabled.
35
36  renesas,sample-clock-div:
37    type: int
38    enum:
39      - 1
40      - 8
41      - 32
42      - 64
43    description: |
44      Select the clock divider for the digital noise filter. Clock source is system clock.
45