mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2025-01-05 21:35:04 +08:00
559549b1f2
After commit f1ad5338a4
("of: Fix "dma-ranges" handling for bus
controllers"), the dma-ranges of the leaf node doesn't work. Remove
it for jpeg here.
Currently there is only mt8195 jpeg node has this property in upstream,
and it already uses parent-child node, this property did work. But instead,
MediaTek iommu will control the masters' iova ranges by the master's
larb/port id internally, then this property is unnecessary.
Cc: Mauro Carvalho Chehab <mchehab@kernel.org>
Cc: Matthias Brugger <matthias.bgg@gmail.com>
Cc: Bin Liu <bin.liu@mediatek.com>
Cc: kyrie wu <kyrie.wu@mediatek.corp-partner.google.com>
Cc: Xia Jiang <xia.jiang@mediatek.com>
Signed-off-by: Yong Wu <yong.wu@mediatek.com>
Reviewed-by: AngeloGioacchino Del Regno <angelogioacchino.delregno@collabora.com>
Acked-by: Rob Herring <robh@kernel.org>
Reviewed-by: Hans Verkuil <hverkuil-cisco@xs4all.nl>
Link: https://lore.kernel.org/r/20230411093144.2690-3-yong.wu@mediatek.com
Signed-off-by: Joerg Roedel <jroedel@suse.de>
75 lines
1.8 KiB
YAML
75 lines
1.8 KiB
YAML
# SPDX-License-Identifier: (GPL-2.0 OR BSD-2-Clause)
|
|
%YAML 1.2
|
|
---
|
|
$id: http://devicetree.org/schemas/media/mediatek-jpeg-encoder.yaml#
|
|
$schema: http://devicetree.org/meta-schemas/core.yaml#
|
|
|
|
title: MediaTek JPEG Encoder
|
|
|
|
maintainers:
|
|
- Xia Jiang <xia.jiang@mediatek.com>
|
|
|
|
description: |-
|
|
MediaTek JPEG Encoder is the JPEG encode hardware present in MediaTek SoCs
|
|
|
|
properties:
|
|
compatible:
|
|
items:
|
|
- enum:
|
|
- mediatek,mt2701-jpgenc
|
|
- mediatek,mt8183-jpgenc
|
|
- mediatek,mt8186-jpgenc
|
|
- mediatek,mt8188-jpgenc
|
|
- const: mediatek,mtk-jpgenc
|
|
reg:
|
|
maxItems: 1
|
|
|
|
interrupts:
|
|
maxItems: 1
|
|
|
|
clocks:
|
|
maxItems: 1
|
|
|
|
clock-names:
|
|
items:
|
|
- const: jpgenc
|
|
|
|
power-domains:
|
|
maxItems: 1
|
|
|
|
iommus:
|
|
maxItems: 2
|
|
description: |
|
|
Points to the respective IOMMU block with master port as argument, see
|
|
Documentation/devicetree/bindings/iommu/mediatek,iommu.yaml for details.
|
|
Ports are according to the HW.
|
|
|
|
required:
|
|
- compatible
|
|
- reg
|
|
- interrupts
|
|
- clocks
|
|
- clock-names
|
|
- power-domains
|
|
- iommus
|
|
|
|
additionalProperties: false
|
|
|
|
examples:
|
|
- |
|
|
#include <dt-bindings/clock/mt2701-clk.h>
|
|
#include <dt-bindings/interrupt-controller/arm-gic.h>
|
|
#include <dt-bindings/memory/mt2701-larb-port.h>
|
|
#include <dt-bindings/power/mt2701-power.h>
|
|
jpegenc: jpegenc@1500a000 {
|
|
compatible = "mediatek,mt2701-jpgenc",
|
|
"mediatek,mtk-jpgenc";
|
|
reg = <0x1500a000 0x1000>;
|
|
interrupts = <GIC_SPI 141 IRQ_TYPE_LEVEL_LOW>;
|
|
clocks = <&imgsys CLK_IMG_VENC>;
|
|
clock-names = "jpgenc";
|
|
power-domains = <&scpsys MT2701_POWER_DOMAIN_ISP>;
|
|
iommus = <&iommu MT2701_M4U_PORT_JPGENC_RDMA>,
|
|
<&iommu MT2701_M4U_PORT_JPGENC_BSDMA>;
|
|
};
|