The Design and Implementation of the FreeBSD Operating System, Second Edition
Now available: The Design and Implementation of the FreeBSD Operating System (Second Edition)


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]

FreeBSD/Linux Kernel Cross Reference
sys/contrib/device-tree/Bindings/clock/lsi,axm5516-clks.txt

Version: -  FREEBSD  -  FREEBSD-13-STABLE  -  FREEBSD-13-0  -  FREEBSD-12-STABLE  -  FREEBSD-12-0  -  FREEBSD-11-STABLE  -  FREEBSD-11-0  -  FREEBSD-10-STABLE  -  FREEBSD-10-0  -  FREEBSD-9-STABLE  -  FREEBSD-9-0  -  FREEBSD-8-STABLE  -  FREEBSD-8-0  -  FREEBSD-7-STABLE  -  FREEBSD-7-0  -  FREEBSD-6-STABLE  -  FREEBSD-6-0  -  FREEBSD-5-STABLE  -  FREEBSD-5-0  -  FREEBSD-4-STABLE  -  FREEBSD-3-STABLE  -  FREEBSD22  -  l41  -  OPENBSD  -  linux-2.6  -  MK84  -  PLAN9  -  xnu-8792 
SearchContext: -  none  -  3  -  10 

    1 AXM5516 clock driver bindings
    2 -----------------------------
    3 
    4 Required properties :
    5 - compatible : shall contain "lsi,axm5516-clks"
    6 - reg : shall contain base register location and length
    7 - #clock-cells : shall contain 1
    8 
    9 The consumer specifies the desired clock by having the clock ID in its "clocks"
   10 phandle cell. See <dt-bindings/clock/lsi,axxia-clock.h> for the list of
   11 supported clock IDs.
   12 
   13 Example:
   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 

Cache object: 435e6865d9455ce3c4e2f241ca3e4610


[ source navigation ] [ diff markup ] [ identifier search ] [ freetext search ] [ file search ] [ list types ] [ track identifier ]


This page is part of the FreeBSD/Linux Linux Kernel Cross-Reference, and was automatically generated using a modified version of the LXR engine.