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/input/ti,palmas-pwrbutton.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 Texas Instruments Palmas family power button module
    2 
    3 This module is part of the Palmas family of PMICs. For more details
    4 about the whole chip see:
    5 Documentation/devicetree/bindings/mfd/palmas.txt.
    6 
    7 This module provides a simple power button event via an Interrupt.
    8 
    9 Required properties:
   10 - compatible: should be one of the following
   11    - "ti,palmas-pwrbutton": For Palmas compatible power on button
   12 - interrupts: Interrupt number of power button submodule on device.
   13 
   14 Optional Properties:
   15 
   16 - ti,palmas-long-press-seconds: Duration in seconds which the power
   17   button should be kept pressed for Palmas to power off automatically.
   18   NOTE: This depends on OTP support and POWERHOLD signal configuration
   19   on platform. Valid values are 6, 8, 10 and 12.
   20 - ti,palmas-pwron-debounce-milli-seconds: Duration in milliseconds
   21   which the power button should be kept pressed for Palmas to register
   22   a press for debouncing purposes. NOTE: This depends on specific
   23   Palmas variation capability. Valid values are 15, 100, 500 and 1000.
   24 
   25 Example:
   26 
   27 &palmas {
   28         palmas_pwr_button: pwrbutton {
   29                 compatible = "ti,palmas-pwrbutton";
   30                 interrupt-parent = <&tps659038>;
   31                 interrupts = <1 IRQ_TYPE_EDGE_FALLING>;
   32                 ti,palmas-long-press-seconds = <12>;
   33                 ti,palmas-pwron-debounce-milli-seconds = <15>;
   34         };
   35 };

Cache object: 646910d63eb19942c3ce444448721a4f


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