35 lines
651 B
YAML
35 lines
651 B
YAML
# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/ezchip,nps400-ic.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: EZchip NPS Interrupt Controller
|
|
|
|
maintainers:
|
|
- Noam Camus <noamc@ezchip.com>
|
|
|
|
properties:
|
|
compatible:
|
|
const: ezchip,nps400-ic
|
|
|
|
interrupt-controller: true
|
|
|
|
'#interrupt-cells':
|
|
const: 1
|
|
|
|
required:
|
|
- compatible
|
|
- interrupt-controller
|
|
- '#interrupt-cells'
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
interrupt-controller {
|
|
compatible = "ezchip,nps400-ic";
|
|
interrupt-controller;
|
|
#interrupt-cells = <1>;
|
|
};
|