| # Copyright 2025 The Fuchsia Authors. All rights reserved. |
| # Use of this source code is governed by a BSD-style license that can be |
| # found in the LICENSE file. |
| |
| %YAML 1.2 |
| --- |
| $id: http://devicetree.org/schemas/pwm/pwm.yaml# |
| $schema: http://devicetree.org/meta-schemas/core.yaml# |
| |
| title: Fuchsia interrupt wake configuration |
| |
| maintainers: |
| - Christopher Anderson (cja@google.com) |
| - Puneetha Ramachandra (puneetha@google.com) |
| |
| properties: |
| "fuchsia,interrupt-wake-vectors": |
| minimum: 1 |
| description: |
| Interrupts capable of waking the system from suspend. Each string should |
| correspond to the name of an interrupt in the node's interrupt-names |
| property |
| $ref: /schemas/types.yaml#/definitions/string |
| |
| additionalProperties: false |
| |
| examples: |
| - | |
| deviceA: device@ffffa000 |
| interrupts = <CELL0_0 CELL0_1 CELL0_2 |
| CELL1_0 CELL1_1 CELL1_2>; |
| interrupt-names = "int0", "int1"; |
| fuchsia,interrupt-wake-vectors = "int1"; |
| }; |