irqchip: Fix dependencies for archs w/o HAS_IOMEM
[linux/fpc-iii.git] / Documentation / devicetree / bindings / clock / gpio-mux-clock.txt
blob2be1e038ca62907a3187afce23d46e2c7a62b639
1 Binding for simple gpio clock multiplexer.
3 This binding uses the common clock binding[1].
5 [1] Documentation/devicetree/bindings/clock/clock-bindings.txt
7 Required properties:
8 - compatible : shall be "gpio-mux-clock".
9 - clocks: list of two references to parent clocks.
10 - #clock-cells : from common clock binding; shall be set to 0.
11 - select-gpios : GPIO reference for selecting the parent clock.
13 Example:
14         clock {
15                 compatible = "gpio-mux-clock";
16                 clocks = <&parentclk1>, <&parentclk2>;
17                 #clock-cells = <0>;
18                 select-gpios = <&gpio 1 GPIO_ACTIVE_HIGH>;
19         };