brintos

brintos / linux-shallow public Read only

0
0
Text · 801 B · 3ce97cf Raw
30 lines · plain
1AXM5516 clock driver bindings2-----------------------------3 4Required properties :5- compatible : shall contain "lsi,axm5516-clks"6- reg : shall contain base register location and length7- #clock-cells : shall contain 18 9The consumer specifies the desired clock by having the clock ID in its "clocks"10phandle cell. See <dt-bindings/clock/lsi,axxia-clock.h> for the list of11supported clock IDs.12 13Example:14 15	clks: clock-controller@2010020000 {16		compatible = "lsi,axm5516-clks";17		#clock-cells = <1>;18		reg = <0x20 0x10020000 0 0x20000>;19	};20 21	serial0: uart@2010080000 {22		compatible = "arm,pl011", "arm,primecell";23		reg = <0x20 0x10080000 0 0x1000>;24		interrupts = <GIC_SPI 56 IRQ_TYPE_LEVEL_HIGH>;25		clocks = <&clks AXXIA_CLK_PER>;26		clock-names = "apb_pclk";27	};28																																};29 30