1# Copyright 2024, NXP
2# SPDX-License-Identifier: Apache-2.0
3
4description: Some NXP SoC's have pins dedicated to generate a wakeup interrupt.
5
6compatible: "nxp,aon-wakeup-pin"
7
8include: base.yaml
9
10properties:
11  interrupts:
12    type: array
13    required: true
14    description: Interrupt to wakeup the SoC from low power modes.
15
16  wakeup-level:
17    type: string
18    enum:
19      - "low"
20      - "high"
21    default: "high"
22    description: |
23        Wakeup level on the pin, default is wakeup on high level
24        which is the reset value.
25