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/amlogic-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 = Amlogic Meson GX eFuse device tree bindings =
    2 
    3 Required properties:
    4 - compatible: should be "amlogic,meson-gxbb-efuse"
    5 - clocks: phandle to the efuse peripheral clock provided by the
    6           clock controller.
    7 - secure-monitor: phandle to the secure-monitor node
    8 
    9 = Data cells =
   10 Are child nodes of eFuse, bindings of which as described in
   11 bindings/nvmem/nvmem.txt
   12 
   13 Example:
   14 
   15         efuse: efuse {
   16                 compatible = "amlogic,meson-gxbb-efuse";
   17                 clocks = <&clkc CLKID_EFUSE>;
   18                 #address-cells = <1>;
   19                 #size-cells = <1>;
   20                 secure-monitor = <&sm>;
   21 
   22                 sn: sn@14 {
   23                         reg = <0x14 0x10>;
   24                 };
   25 
   26                 eth_mac: eth_mac@34 {
   27                         reg = <0x34 0x10>;
   28                 };
   29 
   30                 bid: bid@46 {
   31                         reg = <0x46 0x30>;
   32                 };
   33         };
   34 
   35         sm: secure-monitor {
   36                 compatible = "amlogic,meson-gxbb-sm";
   37         };
   38 
   39 = Data consumers =
   40 Are device nodes which consume nvmem data cells.
   41 
   42 For example:
   43 
   44         eth_mac {
   45                 ...
   46                 nvmem-cells = <&eth_mac>;
   47                 nvmem-cell-names = "eth_mac";
   48         };

Cache object: e09b54c159e6b5969952b15817a02419


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