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/nvmem/sprd-efuse.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 eFuse device tree bindings =
    2 
    3 Required properties:
    4 - compatible: Should be "sprd,ums312-efuse".
    5 - reg: Specify the address offset of efuse controller.
    6 - clock-names: Should be "enable".
    7 - clocks: The phandle and specifier referencing the controller's clock.
    8 - hwlocks: Reference to a phandle of a hwlock provider node.
    9 
   10 = Data cells =
   11 Are child nodes of eFuse, bindings of which as described in
   12 bindings/nvmem/nvmem.txt
   13 
   14 Example:
   15 
   16         ap_efuse: efuse@32240000 {
   17                 compatible = "sprd,ums312-efuse";
   18                 reg = <0 0x32240000 0 0x10000>;
   19                 clock-names = "enable";
   20                 hwlocks = <&hwlock 8>;
   21                 clocks = <&aonapb_gate CLK_EFUSE_EB>;
   22 
   23                 /* Data cells */
   24                 thermal_calib: calib@10 {
   25                         reg = <0x10 0x2>;
   26                 };
   27         };
   28 
   29 = Data consumers =
   30 Are device nodes which consume nvmem data cells.
   31 
   32 Example:
   33 
   34         thermal {
   35                 ...
   36 
   37                 nvmem-cells = <&thermal_calib>;
   38                 nvmem-cell-names = "calibration";
   39         };

Cache object: 6c484cfff0ed47429368320473656d7e


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