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/arm/hisilicon/hisilicon-low-pin-count.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 Hisilicon Hip06 Low Pin Count device
    2   Hisilicon Hip06 SoCs implement a Low Pin Count (LPC) controller, which
    3   provides I/O access to some legacy ISA devices.
    4   Hip06 is based on arm64 architecture where there is no I/O space. So, the
    5   I/O ports here are not CPU addresses, and there is no 'ranges' property in
    6   LPC device node.
    7 
    8 Required properties:
    9 - compatible:  value should be as follows:
   10         (a) "hisilicon,hip06-lpc"
   11         (b) "hisilicon,hip07-lpc"
   12 - #address-cells: must be 2 which stick to the ISA/EISA binding doc.
   13 - #size-cells: must be 1 which stick to the ISA/EISA binding doc.
   14 - reg: base memory range where the LPC register set is mapped.
   15 
   16 Note:
   17   The node name before '@' must be "isa" to represent the binding stick to the
   18   ISA/EISA binding specification.
   19 
   20 Example:
   21 
   22 isa@a01b0000 {
   23         compatible = "hisilicon,hip06-lpc";
   24         #address-cells = <2>;
   25         #size-cells = <1>;
   26         reg = <0x0 0xa01b0000 0x0 0x1000>;
   27 
   28         ipmi0: bt@e4 {
   29                 compatible = "ipmi-bt";
   30                 device_type = "ipmi";
   31                 reg = <0x01 0xe4 0x04>;
   32         };
   33 };

Cache object: 2ab183a5553100a1d39af8e34db53c44


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