2020-10-02 19:03:04 +03:00
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
%YAML 1.2
---
2022-12-13 13:28:48 +02:00
$id : http://devicetree.org/schemas/sound/microchip,sama7g5-spdifrx.yaml#
2020-10-02 19:03:04 +03:00
$schema : http://devicetree.org/meta-schemas/core.yaml#
2022-08-25 04:04:27 +02:00
title : Microchip S/PDIF Rx Controller
2020-10-02 19:03:04 +03:00
maintainers :
- Codrin Ciubotariu <codrin.ciubotariu@microchip.com>
description :
2022-04-02 21:28:19 +02:00
The Microchip Sony/Philips Digital Interface Receiver is a serial port
2020-04-20 21:24:47 -05:00
compliant with the IEC-60958 standard.
2020-10-02 19:03:04 +03:00
properties :
"#sound-dai-cells" :
const : 0
compatible :
const : microchip,sama7g5-spdifrx
reg :
maxItems : 1
interrupts :
maxItems : 1
clocks :
items :
- description : Peripheral Bus Clock
- description : Generic Clock
clock-names :
items :
- const : pclk
- const : gclk
dmas :
description : RX DMA Channel
maxItems : 1
dma-names :
const : rx
required :
- "#sound-dai-cells"
- compatible
- reg
- interrupts
- clocks
- clock-names
- dmas
- dma-names
additionalProperties : false
examples :
- |
#include <dt-bindings/clock/at91.h>
#include <dt-bindings/dma/at91.h>
#include <dt-bindings/interrupt-controller/arm-gic.h>
spdifrx : spdifrx@e1614000 {
#sound-dai-cells = <0>;
compatible = "microchip,sama7g5-spdifrx";
reg = <0xe1614000 0x4000>;
interrupts = <GIC_SPI 84 IRQ_TYPE_LEVEL_HIGH>;
dmas = <&dma0 AT91_XDMAC_DT_PERID(49)>;
dma-names = "rx";
clocks = <&pmc PMC_TYPE_PERIPHERAL 84>, <&pmc PMC_TYPE_GCK 84>;
clock-names = "pclk", "gclk";
};