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/memory-controllers/ath79-ddr-controller.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 Binding for Qualcomm  Atheros AR7xxx/AR9xxx DDR controller
    2 
    3 The DDR controller of the AR7xxx and AR9xxx families provides an interface
    4 to flush the FIFO between various devices and the DDR. This is mainly used
    5 by the IRQ controller to flush the FIFO before running the interrupt handler
    6 of such devices.
    7 
    8 Required properties:
    9 
   10 - compatible: has to be "qca,<soc-type>-ddr-controller",
   11   "qca,[ar7100|ar7240]-ddr-controller" as fallback.
   12   On SoC with PCI support "qca,ar7100-ddr-controller" should be used as
   13   fallback, otherwise "qca,ar7240-ddr-controller" should be used.
   14 - reg: Base address and size of the controller's memory area
   15 - #qca,ddr-wb-channel-cells: Specifies the number of cells needed to encode
   16                              the write buffer channel index, should be 1.
   17 
   18 Example:
   19 
   20         ddr_ctrl: memory-controller@18000000 {
   21                 compatible = "qca,ar9132-ddr-controller",
   22                                 "qca,ar7240-ddr-controller";
   23                 reg = <0x18000000 0x100>;
   24 
   25                 #qca,ddr-wb-channel-cells = <1>;
   26         };
   27 
   28         ...
   29 
   30         interrupt-controller {
   31                 ...
   32                 qca,ddr-wb-channel-interrupts = <2>, <3>, <4>, <5>;
   33                 qca,ddr-wb-channels = <&ddr_ctrl 3>, <&ddr_ctrl 2>,
   34                                         <&ddr_ctrl 0>, <&ddr_ctrl 1>;
   35         };

Cache object: 2dbd683ae5fb53e5d747427ddb1197a0


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