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/media/fsl-pxp.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 Freescale Pixel Pipeline
    2 ========================
    3 
    4 The Pixel Pipeline (PXP) is a memory-to-memory graphics processing engine
    5 that supports scaling, colorspace conversion, alpha blending, rotation, and
    6 pixel conversion via lookup table. Different versions are present on various
    7 i.MX SoCs from i.MX23 to i.MX7.
    8 
    9 Required properties:
   10 - compatible: should be "fsl,<soc>-pxp", where SoC can be one of imx23, imx28,
   11   imx6dl, imx6sl, imx6sll, imx6ul, imx6sx, imx6ull, or imx7d.
   12 - reg: the register base and size for the device registers
   13 - interrupts: the PXP interrupt, two interrupts for imx6ull and imx7d.
   14 - clock-names: should be "axi"
   15 - clocks: the PXP AXI clock
   16 
   17 Example:
   18 
   19 pxp@21cc000 {
   20         compatible = "fsl,imx6ull-pxp";
   21         reg = <0x021cc000 0x4000>;
   22         interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>,
   23                      <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>;
   24         clock-names = "axi";
   25         clocks = <&clks IMX6UL_CLK_PXP>;
   26 };

Cache object: e1fcc55a0905c65fe88af338e384e11d


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