Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

dt: add clock binding doc to primecell bindings

Add clock binding information for primecell peripherals. For most, a
clock input name of "apb_pclk" is required. Any primecell peripherals
which are different will need to be documented separately.

Signed-off-by: Rob Herring <rob.herring@calxeda.com>
Signed-off-by: Mike Turquette <mturquette@linaro.org>

authored by

Rob Herring and committed by
Mike Turquette
260b6aa0 015ba402

+6
+6
Documentation/devicetree/bindings/arm/primecell.txt
··· 13 13 Optional properties: 14 14 15 15 - arm,primecell-periphid : Value to override the h/w value with 16 + - clocks : From common clock binding. First clock is phandle to clock for apb 17 + pclk. Additional clocks are optional and specific to those peripherals. 18 + - clock-names : From common clock binding. Shall be "apb_pclk" for first clock. 16 19 17 20 Example: 18 21 19 22 serial@fff36000 { 20 23 compatible = "arm,pl011", "arm,primecell"; 21 24 arm,primecell-periphid = <0x00341011>; 25 + clocks = <&pclk>; 26 + clock-names = "apb_pclk"; 27 + 22 28 }; 23 29