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/regulator/tps62360-regulator.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 TPS62360 Voltage regulators
    2 
    3 Required properties:
    4 - compatible: Must be one of the following.
    5         "ti,tps62360"
    6         "ti,tps62361",
    7         "ti,tps62362",
    8         "ti,tps62363",
    9 - reg: I2C slave address
   10 
   11 Optional properties:
   12 - ti,enable-vout-discharge: Enable output discharge. This is boolean value.
   13 - ti,enable-pull-down: Enable pull down. This is boolean value.
   14 - ti,vsel0-gpio: GPIO for controlling VSEL0 line.
   15   If this property is missing, then assume that there is no GPIO
   16   for vsel0 control.
   17 - ti,vsel1-gpio: Gpio for controlling VSEL1 line.
   18   If this property is missing, then assume that there is no GPIO
   19   for vsel1 control.
   20 - ti,vsel0-state-high: Initial state of vsel0 input is high.
   21   If this property is missing, then assume the state as low (0).
   22 - ti,vsel1-state-high: Initial state of vsel1 input is high.
   23   If this property is missing, then assume the state as low (0).
   24 
   25 Any property defined as part of the core regulator binding, defined in
   26 regulator.txt, can also be used.
   27 
   28 Example:
   29 
   30         abc: tps62360 {
   31                 compatible = "ti,tps62361";
   32                 reg =  <0x60>;
   33                 regulator-name = "tps62361-vout";
   34                 regulator-min-microvolt = <500000>;
   35                 regulator-max-microvolt = <1500000>;
   36                 regulator-boot-on
   37                 ti,vsel0-gpio = <&gpio1 16 0>;
   38                 ti,vsel1-gpio = <&gpio1 17 0>;
   39                 ti,vsel0-state-high;
   40                 ti,vsel1-state-high;
   41                 ti,enable-pull-down;
   42                 ti,enable-force-pwm;
   43                 ti,enable-vout-discharge;
   44         };

Cache object: ac23d423a080afa6838e61ca8bf530b3


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