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/mediatek-jpeg-decoder.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 * Mediatek JPEG Decoder
    2 
    3 Mediatek JPEG Decoder is the JPEG decode hardware present in Mediatek SoCs
    4 
    5 Required properties:
    6 - compatible : must be one of the following string:
    7         "mediatek,mt8173-jpgdec"
    8         "mediatek,mt7623-jpgdec", "mediatek,mt2701-jpgdec"
    9         "mediatek,mt2701-jpgdec"
   10 - reg : physical base address of the jpeg decoder registers and length of
   11   memory mapped region.
   12 - interrupts : interrupt number to the interrupt controller.
   13 - clocks: device clocks, see
   14   Documentation/devicetree/bindings/clock/clock-bindings.txt for details.
   15 - clock-names: must contain "jpgdec-smi" and "jpgdec".
   16 - power-domains: a phandle to the power domain, see
   17   Documentation/devicetree/bindings/power/power_domain.txt for details.
   18 - mediatek,larb: must contain the local arbiters in the current Socs, see
   19   Documentation/devicetree/bindings/memory-controllers/mediatek,smi-larb.yaml
   20   for details.
   21 - iommus: should point to the respective IOMMU block with master port as
   22   argument, see Documentation/devicetree/bindings/iommu/mediatek,iommu.yaml
   23   for details.
   24 
   25 Example:
   26         jpegdec: jpegdec@15004000 {
   27                 compatible = "mediatek,mt2701-jpgdec";
   28                 reg = <0 0x15004000 0 0x1000>;
   29                 interrupts = <GIC_SPI 143 IRQ_TYPE_LEVEL_LOW>;
   30                 clocks =  <&imgsys CLK_IMG_JPGDEC_SMI>,
   31                           <&imgsys CLK_IMG_JPGDEC>;
   32                 clock-names = "jpgdec-smi",
   33                               "jpgdec";
   34                 power-domains = <&scpsys MT2701_POWER_DOMAIN_ISP>;
   35                 mediatek,larb = <&larb2>;
   36                 iommus = <&iommu MT2701_M4U_PORT_JPGDEC_WDMA>,
   37                          <&iommu MT2701_M4U_PORT_JPGDEC_BSDMA>;
   38         };

Cache object: f1c4233b352db8b9b9aefda3023fe094


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