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/power/reset/ltc2952-poweroff.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 LTC2952 PowerPath controller
    2 
    3 This chip is used to externally trigger a system shut down. Once the trigger has
    4 been sent, the chip's watchdog has to be reset to gracefully shut down.
    5 A full powerdown can be triggered via the kill signal.
    6 
    7 Required properties:
    8 
    9 - compatible:           Must contain: "lltc,ltc2952"
   10 - watchdog-gpios:       phandle + gpio-specifier for the GPIO connected to the
   11                         chip's watchdog line
   12 - kill-gpios:           phandle + gpio-specifier for the GPIO connected to the
   13                         chip's kill line
   14 
   15 Optional properties:
   16 - trigger-gpios:        phandle + gpio-specifier for the GPIO connected to the
   17                         chip's trigger line. If this property is not set, the
   18                         trigger function is ignored and the chip is kept alive
   19                         until an explicit kill signal is received
   20 - trigger-delay-ms      The number of milliseconds to wait after trigger line
   21                         assertion before executing shut down procedure.
   22                         The default is 2500ms.
   23 
   24 Example:
   25 
   26 ltc2952 {
   27         compatible = "lltc,ltc2952";
   28 
   29         trigger-gpios = <&gpio0 1 GPIO_ACTIVE_LOW>;
   30         trigger-delay-ms = <2000>;
   31         watchdog-gpios = <&gpio1 2 GPIO_ACTIVE_HIGH>;
   32         kill-gpios = <&gpio0 2 GPIO_ACTIVE_LOW>;
   33 };

Cache object: 7ac861b0a6b238903e02a05e34cf5598


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