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/sprd,sc27xx-pmic.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 Spreadtrum SC27xx Power Management Integrated Circuit (PMIC)
    2 
    3 The Spreadtrum SC27xx series PMICs contain SC2720, SC2721, SC2723, SC2730
    4 and SC2731. The Spreadtrum PMIC belonging to SC27xx series integrates all
    5 mobile handset power management, audio codec, battery management and user
    6 interface support function in a single chip. It has 6 major functional
    7 blocks:
    8 - DCDCs to support CPU, memory.
    9 - LDOs to support both internal and external requirement.
   10 - Battery management system, such as charger, fuel gauge.
   11 - Audio codec.
   12 - User interface function, such as indicator, flash LED and so on.
   13 - IC level interface, such as power on/off control, RTC and typec and so on.
   14 
   15 Required properties:
   16 - compatible: Should be one of the following:
   17         "sprd,sc2720"
   18         "sprd,sc2721"
   19         "sprd,sc2723"
   20         "sprd,sc2730"
   21         "sprd,sc2731"
   22 - reg: The address of the device chip select, should be 0.
   23 - spi-max-frequency: Typically set to 26000000.
   24 - interrupts: The interrupt line the device is connected to.
   25 - interrupt-controller: Marks the device node as an interrupt controller.
   26 - #interrupt-cells: The number of cells to describe an PMIC IRQ, must be 2.
   27 - #address-cells: Child device offset number of cells, must be 1.
   28 - #size-cells: Child device size number of cells, must be 0.
   29 
   30 Example:
   31 pmic@0 {
   32         compatible = "sprd,sc2731";
   33         reg = <0>;
   34         spi-max-frequency = <26000000>;
   35         interrupts = <GIC_SPI 31 IRQ_TYPE_LEVEL_HIGH>;
   36         interrupt-controller;
   37         #interrupt-cells = <2>;
   38         #address-cells = <1>;
   39         #size-cells = <0>;
   40 };

Cache object: 3944937af3dabbde143b5dd8d1f32cb4


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