]> git.karo-electronics.de Git - karo-tx-linux.git/blob - Documentation/devicetree/bindings/sound/mvebu-audio.txt
cgroup: fix cgroup post-order descendant walk of empty subtree
[karo-tx-linux.git] / Documentation / devicetree / bindings / sound / mvebu-audio.txt
1 * mvebu (Kirkwood, Dove, Armada 370) audio controller
2
3 Required properties:
4
5 - compatible: "marvell,mvebu-audio"
6
7 - reg: physical base address of the controller and length of memory mapped
8   region.
9
10 - interrupts: list of two irq numbers.
11   The first irq is used for data flow and the second one is used for errors.
12
13 - clocks: one or two phandles.
14   The first one is mandatory and defines the internal clock.
15   The second one is optional and defines an external clock.
16
17 - clock-names: names associated to the clocks:
18         "internal" for the internal clock
19         "extclk" for the external clock
20
21 Example:
22
23 i2s1: audio-controller@b4000 {
24         compatible = "marvell,mvebu-audio";
25         reg = <0xb4000 0x2210>;
26         interrupts = <21>, <22>;
27         clocks = <&gate_clk 13>;
28         clock-names = "internal";
29 };