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/mfd/act8945a.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 Device-Tree bindings for Active-semi ACT8945A MFD driver
    2 
    3 Required properties:
    4  - compatible: "active-semi,act8945a".
    5  - reg: the I2C slave address for the ACT8945A chip
    6 
    7 The chip exposes two subdevices:
    8  - a regulators: see ../regulator/act8945a-regulator.txt
    9  - a charger: see ../power/act8945a-charger.txt
   10 
   11 Example:
   12         pmic@5b {
   13                 compatible = "active-semi,act8945a";
   14                 reg = <0x5b>;
   15 
   16                 active-semi,vsel-high;
   17 
   18                 regulators {
   19                         vdd_1v35_reg: REG_DCDC1 {
   20                                 regulator-name = "VDD_1V35";
   21                                 regulator-min-microvolt = <1350000>;
   22                                 regulator-max-microvolt = <1350000>;
   23                                 regulator-always-on;
   24                         };
   25 
   26                         vdd_1v2_reg: REG_DCDC2 {
   27                                 regulator-name = "VDD_1V2";
   28                                 regulator-min-microvolt = <1100000>;
   29                                 regulator-max-microvolt = <1300000>;
   30                                 regulator-always-on;
   31                         };
   32 
   33                         vdd_3v3_reg: REG_DCDC3 {
   34                                 regulator-name = "VDD_3V3";
   35                                 regulator-min-microvolt = <3300000>;
   36                                 regulator-max-microvolt = <3300000>;
   37                                 regulator-always-on;
   38                         };
   39 
   40                         vdd_fuse_reg: REG_LDO1 {
   41                                 regulator-name = "VDD_FUSE";
   42                                 regulator-min-microvolt = <2500000>;
   43                                 regulator-max-microvolt = <2500000>;
   44                                 regulator-always-on;
   45                         };
   46 
   47                         vdd_3v3_lp_reg: REG_LDO2 {
   48                                 regulator-name = "VDD_3V3_LP";
   49                                 regulator-min-microvolt = <3300000>;
   50                                 regulator-max-microvolt = <3300000>;
   51                                 regulator-always-on;
   52                         };
   53 
   54                         vdd_led_reg: REG_LDO3 {
   55                                 regulator-name = "VDD_LED";
   56                                 regulator-min-microvolt = <3300000>;
   57                                 regulator-max-microvolt = <3300000>;
   58                                 regulator-always-on;
   59                         };
   60 
   61                         vdd_sdhc_1v8_reg: REG_LDO4 {
   62                                 regulator-name = "VDD_SDHC_1V8";
   63                                 regulator-min-microvolt = <1800000>;
   64                                 regulator-max-microvolt = <1800000>;
   65                                 regulator-always-on;
   66                         };
   67                 };
   68 
   69                 charger {
   70                         compatible = "active-semi,act8945a-charger";
   71                         pinctrl-names = "default";
   72                         pinctrl-0 = <&pinctrl_charger_chglev &pinctrl_charger_lbo &pinctrl_charger_irq>;
   73                         interrupt-parent = <&pioA>;
   74                         interrupts = <45 IRQ_TYPE_LEVEL_LOW>;
   75 
   76                         active-semi,chglev-gpios = <&pioA 12 GPIO_ACTIVE_HIGH>;
   77                         active-semi,lbo-gpios = <&pioA 72 GPIO_ACTIVE_LOW>;
   78                         active-semi,input-voltage-threshold-microvolt = <6600>;
   79                         active-semi,precondition-timeout = <40>;
   80                         active-semi,total-timeout = <3>;
   81                 };
   82         };

Cache object: f7a1630e5f298fbc03656aa482c0a5db


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