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/reset/snps,axs10x-reset.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 Binding for the AXS10x reset controller
    2 
    3 This binding describes the ARC AXS10x boards custom IP-block which allows
    4 to control reset signals of selected peripherals. For example DW GMAC, etc...
    5 This block is controlled via memory-mapped register (AKA CREG) which
    6 represents up-to 32 reset lines.
    7 
    8 As of today only the following lines are used:
    9  - DW GMAC - line 5
   10 
   11 This binding uses the common reset binding[1].
   12 
   13 [1] Documentation/devicetree/bindings/reset/reset.txt
   14 
   15 Required properties:
   16 - compatible: should be "snps,axs10x-reset".
   17 - reg: should always contain pair address - length: for creg reset
   18   bits register.
   19 - #reset-cells: from common reset binding; Should always be set to 1.
   20 
   21 Example:
   22         reset: reset-controller@11220 {
   23                 compatible = "snps,axs10x-reset";
   24                 #reset-cells = <1>;
   25                 reg = <0x11220 0x4>;
   26         };
   27 
   28 Specifying reset lines connected to IP modules:
   29         ethernet@.... {
   30                 ....
   31                 resets = <&reset 5>;
   32                 ....
   33         };

Cache object: 8b641a51ef075da0a0192548c3cd7059


[ 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.