1 # SPDX-License-Identifier: (GPL-2.0+ OR BSD-2-Clause)
4 $id: http://devicetree.org/schemas/clock/marvell,mmp2-audio-clock.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: Marvell MMP2 Audio Clock Controller
10 - Lubomir Rintel <lkundrak@v3.sk>
13 The audio clock controller generates and supplies the clocks to the audio
16 Each clock is assigned an identifier and client nodes use this identifier
17 to specify the clock which they consume.
19 All these identifiers could be found in
20 <dt-bindings/clock/marvell,mmp2-audio.h>.
25 - marvell,mmp2-audio-clock
32 - description: Audio subsystem clock
33 - description: The crystal oscillator clock
34 - description: First I2S clock
35 - description: Second I2S clock
57 additionalProperties: false
61 #include <dt-bindings/clock/marvell,mmp2-audio.h>
62 #include <dt-bindings/clock/marvell,mmp2.h>
63 #include <dt-bindings/power/marvell,mmp2.h>
65 clock-controller@d42a0c30 {
66 compatible = "marvell,mmp2-audio-clock";
67 reg = <0xd42a0c30 0x10>;
68 clock-names = "audio", "vctcxo", "i2s0", "i2s1";
69 clocks = <&soc_clocks MMP2_CLK_AUDIO>,
70 <&soc_clocks MMP2_CLK_VCTCXO>,
71 <&soc_clocks MMP2_CLK_I2S0>,
72 <&soc_clocks MMP2_CLK_I2S1>;
73 power-domains = <&soc_clocks MMP2_POWER_DOMAIN_AUDIO>;