Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1515872 > unrolled thread
| Started by | Rick Chang <rick.chang@mediatek.com> |
|---|---|
| First post | 2016-11-07 08:00 +0100 |
| Last post | 2016-11-08 03:30 +0100 |
| Articles | 3 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
[PATCH v4 1/3] dt-bindings: mediatek: Add a binding for Mediatek JPEG Decoder Rick Chang <rick.chang@mediatek.com> - 2016-11-07 08:00 +0100
Re: [PATCH v4 1/3] dt-bindings: mediatek: Add a binding for Mediatek JPEG Decoder Matthias Brugger <matthias.bgg@gmail.com> - 2016-11-07 18:10 +0100
Re: [PATCH v4 1/3] dt-bindings: mediatek: Add a binding for Mediatek JPEG Decoder Rick Chang <rick.chang@mediatek.com> - 2016-11-08 03:30 +0100
| From | Rick Chang <rick.chang@mediatek.com> |
|---|---|
| Date | 2016-11-07 08:00 +0100 |
| Subject | [PATCH v4 1/3] dt-bindings: mediatek: Add a binding for Mediatek JPEG Decoder |
| Message-ID | <sAM4p-7QP-3@gated-at.bofh.it> |
Add a DT binding documentation for Mediatek JPEG Decoder of
MT2701 SoC.
Signed-off-by: Rick Chang <rick.chang@mediatek.com>
Signed-off-by: Minghsiu Tsai <minghsiu.tsai@mediatek.com>
---
.../bindings/media/mediatek-jpeg-codec.txt | 35 ++++++++++++++++++++++
1 file changed, 35 insertions(+)
create mode 100644 Documentation/devicetree/bindings/media/mediatek-jpeg-codec.txt
diff --git a/Documentation/devicetree/bindings/media/mediatek-jpeg-codec.txt b/Documentation/devicetree/bindings/media/mediatek-jpeg-codec.txt
new file mode 100644
index 0000000..c7dbcc2
--- /dev/null
+++ b/Documentation/devicetree/bindings/media/mediatek-jpeg-codec.txt
@@ -0,0 +1,35 @@
+* Mediatek JPEG Decoder
+
+Mediatek JPEG Decoder is the JPEG decode hardware present in Mediatek SoCs
+
+Required properties:
+- compatible : "mediatek,jpgdec"
+- reg : physical base address of the jpeg decoder registers and length of
+ memory mapped region.
+- interrupts : interrupt number to the interrupt controller.
+- clocks: device clocks, see
+ Documentation/devicetree/bindings/clock/clock-bindings.txt for details.
+- clock-names: must contain "jpgdec-smi" and "jpgdec".
+- power-domains: a phandle to the power domain, see
+ Documentation/devicetree/bindings/power/power_domain.txt for details.
+- mediatek,larb: must contain the local arbiters in the current Socs, see
+ Documentation/devicetree/bindings/memory-controllers/mediatek,smi-larb.txt
+ for details.
+- iommus: should point to the respective IOMMU block with master port as
+ argument, see Documentation/devicetree/bindings/iommu/mediatek,iommu.txt
+ for details.
+
+Example:
+ jpegdec: jpegdec@15004000 {
+ compatible = "mediatek,jpgdec";
+ reg = <0 0x15004000 0 0x1000>;
+ interrupts = <GIC_SPI 143 IRQ_TYPE_LEVEL_LOW>;
+ clocks = <&imgsys CLK_IMG_JPGDEC_SMI>,
+ <&imgsys CLK_IMG_JPGDEC>;
+ clock-names = "jpgdec-smi",
+ "jpgdec";
+ power-domains = <&scpsys MT2701_POWER_DOMAIN_ISP>;
+ mediatek,larb = <&larb2>;
+ iommus = <&iommu MT2701_M4U_PORT_JPGDEC_WDMA>,
+ <&iommu MT2701_M4U_PORT_JPGDEC_BSDMA>;
+ };
--
1.9.1
[toc] | [next] | [standalone]
| From | Matthias Brugger <matthias.bgg@gmail.com> |
|---|---|
| Date | 2016-11-07 18:10 +0100 |
| Subject | Re: [PATCH v4 1/3] dt-bindings: mediatek: Add a binding for Mediatek JPEG Decoder |
| Message-ID | <sAVAK-62m-19@gated-at.bofh.it> |
| In reply to | #1515872 |
On 07/11/16 07:57, Rick Chang wrote: > Add a DT binding documentation for Mediatek JPEG Decoder of > MT2701 SoC. > > Signed-off-by: Rick Chang <rick.chang@mediatek.com> > Signed-off-by: Minghsiu Tsai <minghsiu.tsai@mediatek.com> > --- > .../bindings/media/mediatek-jpeg-codec.txt | 35 ++++++++++++++++++++++ > 1 file changed, 35 insertions(+) > create mode 100644 Documentation/devicetree/bindings/media/mediatek-jpeg-codec.txt > > diff --git a/Documentation/devicetree/bindings/media/mediatek-jpeg-codec.txt b/Documentation/devicetree/bindings/media/mediatek-jpeg-codec.txt > new file mode 100644 > index 0000000..c7dbcc2 > --- /dev/null > +++ b/Documentation/devicetree/bindings/media/mediatek-jpeg-codec.txt > @@ -0,0 +1,35 @@ > +* Mediatek JPEG Decoder > + > +Mediatek JPEG Decoder is the JPEG decode hardware present in Mediatek SoCs > + > +Required properties: > +- compatible : "mediatek,jpgdec" Is this block in all arm SoCs from Mediatek? If not, then I would prefer to use "mediatek,mtXXXX-jpgdec" where XXXX stands for the oldest model which has this block. In parallel to that the dts should have this compatible plus the one for mt2701, for example: compatible = "mediatek,mt2701-uart", "mediatek,mt6577-uart" Thanks, Matthias
[toc] | [prev] | [next] | [standalone]
| From | Rick Chang <rick.chang@mediatek.com> |
|---|---|
| Date | 2016-11-08 03:30 +0100 |
| Subject | Re: [PATCH v4 1/3] dt-bindings: mediatek: Add a binding for Mediatek JPEG Decoder |
| Message-ID | <sB4kF-3fU-7@gated-at.bofh.it> |
| In reply to | #1516341 |
Dear Matthias, Thank you for your review.I will include your advice in patch v5. On Mon, 2016-11-07 at 18:00 +0100, Matthias Brugger wrote: > > On 07/11/16 07:57, Rick Chang wrote: > > Add a DT binding documentation for Mediatek JPEG Decoder of > > MT2701 SoC. > > > > Signed-off-by: Rick Chang <rick.chang@mediatek.com> > > Signed-off-by: Minghsiu Tsai <minghsiu.tsai@mediatek.com> > > --- > > .../bindings/media/mediatek-jpeg-codec.txt | 35 ++++++++++++++++++++++ > > 1 file changed, 35 insertions(+) > > create mode 100644 Documentation/devicetree/bindings/media/mediatek-jpeg-codec.txt > > > > diff --git a/Documentation/devicetree/bindings/media/mediatek-jpeg-codec.txt b/Documentation/devicetree/bindings/media/mediatek-jpeg-codec.txt > > new file mode 100644 > > index 0000000..c7dbcc2 > > --- /dev/null > > +++ b/Documentation/devicetree/bindings/media/mediatek-jpeg-codec.txt > > @@ -0,0 +1,35 @@ > > +* Mediatek JPEG Decoder > > + > > +Mediatek JPEG Decoder is the JPEG decode hardware present in Mediatek SoCs > > + > > +Required properties: > > +- compatible : "mediatek,jpgdec" > > Is this block in all arm SoCs from Mediatek? JPEG Decoder hardware is in most of Mediatek SoCs, but I can't guarantee that each of them has identical IP. > If not, then I would prefer to use "mediatek,mtXXXX-jpgdec" > where XXXX stands for the oldest model which has this block. > > In parallel to that the dts should have this compatible plus the one for > mt2701, for example: > compatible = "mediatek,mt2701-uart", "mediatek,mt6577-uart" The oldest model that I can make sure this patch series work on is mt8173.I will add it to the compatible string. > Thanks, > Matthias
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web