Message ID | 20180810151822.18650-3-p.zabel@pengutronix.de (mailing list archive) |
---|---|
State | New, archived |
Headers | show |
Series | i.MX PXP scaler/CSC driver | expand |
On Fri, Aug 10, 2018 at 05:18:21PM +0200, Philipp Zabel wrote: > Add the device node for the i.MX6ULL Pixel Pipeline (PXP). > > Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> > --- > arch/arm/boot/dts/imx6ul.dtsi | 8 ++++++++ > arch/arm/boot/dts/imx6ull.dtsi | 6 ++++++ > 2 files changed, 14 insertions(+) > > diff --git a/arch/arm/boot/dts/imx6ul.dtsi b/arch/arm/boot/dts/imx6ul.dtsi > index 47a3453a4211..e80a660c14f2 100644 > --- a/arch/arm/boot/dts/imx6ul.dtsi > +++ b/arch/arm/boot/dts/imx6ul.dtsi > @@ -928,6 +928,14 @@ > }; > }; > > + pxp: pxp@21cc000 { > + compatible = "fsl,imx6ul-pxp"; > + reg = <0x021cc000 0x4000>; > + interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>; > + clock-names = "axi"; > + clocks = <&clks IMX6UL_CLK_PXP>; > + }; > + > lcdif: lcdif@21c8000 { In order of unit-address, pxp@21cc000 should go after lcdif@21c8000. Shawn > compatible = "fsl,imx6ul-lcdif", "fsl,imx28-lcdif"; > reg = <0x021c8000 0x4000>; > diff --git a/arch/arm/boot/dts/imx6ull.dtsi b/arch/arm/boot/dts/imx6ull.dtsi > index ebc25c98e5e1..91d2b6dd9b1b 100644 > --- a/arch/arm/boot/dts/imx6ull.dtsi > +++ b/arch/arm/boot/dts/imx6ull.dtsi > @@ -75,3 +75,9 @@ > }; > }; > }; > + > +&pxp { > + compatible = "fsl,imx6ull-pxp"; > + interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>, > + <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>; > +}; > -- > 2.18.0 >
On Mon, 2018-08-27 at 14:59 +0800, Shawn Guo wrote: > On Fri, Aug 10, 2018 at 05:18:21PM +0200, Philipp Zabel wrote: > > Add the device node for the i.MX6ULL Pixel Pipeline (PXP). > > > > Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> > > --- > > arch/arm/boot/dts/imx6ul.dtsi | 8 ++++++++ > > arch/arm/boot/dts/imx6ull.dtsi | 6 ++++++ > > 2 files changed, 14 insertions(+) > > > > diff --git a/arch/arm/boot/dts/imx6ul.dtsi b/arch/arm/boot/dts/imx6ul.dtsi > > index 47a3453a4211..e80a660c14f2 100644 > > --- a/arch/arm/boot/dts/imx6ul.dtsi > > +++ b/arch/arm/boot/dts/imx6ul.dtsi > > @@ -928,6 +928,14 @@ > > }; > > }; > > > > + pxp: pxp@21cc000 { > > + compatible = "fsl,imx6ul-pxp"; > > + reg = <0x021cc000 0x4000>; > > + interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>; > > + clock-names = "axi"; > > + clocks = <&clks IMX6UL_CLK_PXP>; > > + }; > > + > > lcdif: lcdif@21c8000 { > > In order of unit-address, pxp@21cc000 should go after lcdif@21c8000. Thank you, I'll fix this in v2. regards Philipp
diff --git a/arch/arm/boot/dts/imx6ul.dtsi b/arch/arm/boot/dts/imx6ul.dtsi index 47a3453a4211..e80a660c14f2 100644 --- a/arch/arm/boot/dts/imx6ul.dtsi +++ b/arch/arm/boot/dts/imx6ul.dtsi @@ -928,6 +928,14 @@ }; }; + pxp: pxp@21cc000 { + compatible = "fsl,imx6ul-pxp"; + reg = <0x021cc000 0x4000>; + interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>; + clock-names = "axi"; + clocks = <&clks IMX6UL_CLK_PXP>; + }; + lcdif: lcdif@21c8000 { compatible = "fsl,imx6ul-lcdif", "fsl,imx28-lcdif"; reg = <0x021c8000 0x4000>; diff --git a/arch/arm/boot/dts/imx6ull.dtsi b/arch/arm/boot/dts/imx6ull.dtsi index ebc25c98e5e1..91d2b6dd9b1b 100644 --- a/arch/arm/boot/dts/imx6ull.dtsi +++ b/arch/arm/boot/dts/imx6ull.dtsi @@ -75,3 +75,9 @@ }; }; }; + +&pxp { + compatible = "fsl,imx6ull-pxp"; + interrupts = <GIC_SPI 8 IRQ_TYPE_LEVEL_HIGH>, + <GIC_SPI 18 IRQ_TYPE_LEVEL_HIGH>; +};
Add the device node for the i.MX6ULL Pixel Pipeline (PXP). Signed-off-by: Philipp Zabel <p.zabel@pengutronix.de> --- arch/arm/boot/dts/imx6ul.dtsi | 8 ++++++++ arch/arm/boot/dts/imx6ull.dtsi | 6 ++++++ 2 files changed, 14 insertions(+)