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/pci/samsung,exynos5440-pcie.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 * Samsung Exynos 5440 PCIe interface
    2 
    3 This PCIe host controller is based on the Synopsys DesignWare PCIe IP
    4 and thus inherits all the common properties defined in designware-pcie.txt.
    5 
    6 Required properties:
    7 - compatible: "samsung,exynos5440-pcie"
    8 - reg: base addresses and lengths of the PCIe controller,
    9 - reg-names : First name should be set to "elbi".
   10         And use the "config" instead of getting the configuration address space
   11         from "ranges".
   12         NOTE: When using the "config" property, reg-names must be set.
   13 - interrupts: A list of interrupt outputs for level interrupt,
   14         pulse interrupt, special interrupt.
   15 - phys: From PHY binding. Phandle for the generic PHY.
   16         Refer to Documentation/devicetree/bindings/phy/samsung-phy.txt
   17 
   18 For other common properties, refer to
   19         Documentation/devicetree/bindings/pci/designware-pcie.txt
   20 
   21 Example:
   22 
   23 SoC-specific DT Entry (with using PHY framework):
   24 
   25         pcie_phy0: pcie-phy@270000 {
   26                 ...
   27                 reg = <0x270000 0x1000>, <0x271000 0x40>;
   28                 reg-names = "phy", "block";
   29                 ...
   30         };
   31 
   32         pcie@290000 {
   33                 compatible = "samsung,exynos5440-pcie", "snps,dw-pcie";
   34                 reg = <0x290000 0x1000>, <0x40000000 0x1000>;
   35                 reg-names = "elbi", "config";
   36                 clocks = <&clock 28>, <&clock 27>;
   37                 clock-names = "pcie", "pcie_bus";
   38                 #address-cells = <3>;
   39                 #size-cells = <2>;
   40                 device_type = "pci";
   41                 phys = <&pcie_phy0>;
   42                 ranges = <0x81000000 0 0          0x60001000 0 0x00010000
   43                           0x82000000 0 0x60011000 0x60011000 0 0x1ffef000>;
   44                 #interrupt-cells = <1>;
   45                 interrupt-map-mask = <0 0 0 0>;
   46                 interrupt-map = <0 0 0 0 &gic GIC_SPI 21 IRQ_TYPE_LEVEL_HIGH>;
   47                 num-lanes = <4>;
   48         };
   49 
   50 Board-specific DT Entry:
   51 
   52         pcie@290000 {
   53                 reset-gpio = <&pin_ctrl 5 0>;
   54         };
   55 
   56         pcie@2a0000 {
   57                 reset-gpio = <&pin_ctrl 22 0>;
   58         };

Cache object: 35e1f69c297b3b14fb21ba5945b68c89


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