* [PATCH] Revert "drm/imx: Remove of_node assignment from ipuv3-crtc driver probe"
@ 2016-05-17 17:11 Fabio Estevam
2016-05-18 1:02 ` Chris Ruehl
0 siblings, 1 reply; 5+ messages in thread
From: Fabio Estevam @ 2016-05-17 17:11 UTC (permalink / raw)
To: p.zabel
Cc: airlied, dri-devel, marcel.ziswiler, lw, chris.ruehl,
Fabio Estevam, stable
Commit 407c9eba789767 ("drm/imx: Remove of_node assignment from ipuv3-crtc
driver probe") causes the IPU to be non-functional, so better to
revert it to avoid such regression.
This reverts commit 407c9eba789767feb68b42eb2d65db68584e06c0.
Cc: <stable@vger.kernel.org> # 4.4.x
Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
---
drivers/gpu/drm/imx/ipuv3-crtc.c | 34 ++++++++++++++++++++++++++++++++++
1 file changed, 34 insertions(+)
diff --git a/drivers/gpu/drm/imx/ipuv3-crtc.c b/drivers/gpu/drm/imx/ipuv3-crtc.c
index dee8e8b..006753d 100644
--- a/drivers/gpu/drm/imx/ipuv3-crtc.c
+++ b/drivers/gpu/drm/imx/ipuv3-crtc.c
@@ -520,6 +520,28 @@ err_put_resources:
return ret;
}
+static struct device_node *ipu_drm_get_port_by_id(struct device_node *parent,
+ int port_id)
+{
+ struct device_node *port;
+ int id, ret;
+
+ port = of_get_child_by_name(parent, "port");
+ while (port) {
+ ret = of_property_read_u32(port, "reg", &id);
+ if (!ret && id == port_id)
+ return port;
+
+ do {
+ port = of_get_next_child(parent, port);
+ if (!port)
+ return NULL;
+ } while (of_node_cmp(port->name, "port"));
+ }
+
+ return NULL;
+}
+
static int ipu_drm_bind(struct device *dev, struct device *master, void *data)
{
struct ipu_client_platformdata *pdata = dev->platform_data;
@@ -562,11 +584,23 @@ static const struct component_ops ipu_crtc_ops = {
static int ipu_drm_probe(struct platform_device *pdev)
{
struct device *dev = &pdev->dev;
+ struct ipu_client_platformdata *pdata = dev->platform_data;
int ret;
if (!dev->platform_data)
return -EINVAL;
+ if (!dev->of_node) {
+ /* Associate crtc device with the corresponding DI port node */
+ dev->of_node = ipu_drm_get_port_by_id(dev->parent->of_node,
+ pdata->di + 2);
+ if (!dev->of_node) {
+ dev_err(dev, "missing port@%d node in %s\n",
+ pdata->di + 2, dev->parent->of_node->full_name);
+ return -ENODEV;
+ }
+ }
+
ret = dma_set_coherent_mask(dev, DMA_BIT_MASK(32));
if (ret)
return ret;
--
1.9.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] Revert "drm/imx: Remove of_node assignment from ipuv3-crtc driver probe"
2016-05-17 17:11 [PATCH] Revert "drm/imx: Remove of_node assignment from ipuv3-crtc driver probe" Fabio Estevam
@ 2016-05-18 1:02 ` Chris Ruehl
2016-05-18 8:38 ` Philipp Zabel
0 siblings, 1 reply; 5+ messages in thread
From: Chris Ruehl @ 2016-05-18 1:02 UTC (permalink / raw)
To: Fabio Estevam, p.zabel; +Cc: airlied, dri-devel, marcel.ziswiler, lw, stable
Hi
On Wednesday, May 18, 2016 01:11 AM, Fabio Estevam wrote:
> Commit 407c9eba789767 ("drm/imx: Remove of_node assignment from ipuv3-crtc
> driver probe") causes the IPU to be non-functional, so better to
> revert it to avoid such regression.
>
> This reverts commit 407c9eba789767feb68b42eb2d65db68584e06c0.
>
> Cc: <stable@vger.kernel.org> # 4.4.x
> Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
Revert patch tested with 4.6 - imx6d and imx6dl boards
[ 2.292032] dwhdmi-imx 120000.hdmi: Detected HDMI controller 0x13:0xa:0xa0:0xc1
[ 2.305742] imx-drm display-subsystem: bound 120000.hdmi (ops dw_hdmi_imx_ops)
Regards
Chris
> ---
> drivers/gpu/drm/imx/ipuv3-crtc.c | 34 ++++++++++++++++++++++++++++++++++
> 1 file changed, 34 insertions(+)
>
> diff --git a/drivers/gpu/drm/imx/ipuv3-crtc.c b/drivers/gpu/drm/imx/ipuv3-crtc.c
> index dee8e8b..006753d 100644
> --- a/drivers/gpu/drm/imx/ipuv3-crtc.c
> +++ b/drivers/gpu/drm/imx/ipuv3-crtc.c
> @@ -520,6 +520,28 @@ err_put_resources:
> return ret;
> }
>
> +static struct device_node *ipu_drm_get_port_by_id(struct device_node *parent,
> + int port_id)
> +{
> + struct device_node *port;
> + int id, ret;
> +
> + port = of_get_child_by_name(parent, "port");
> + while (port) {
> + ret = of_property_read_u32(port, "reg", &id);
> + if (!ret && id == port_id)
> + return port;
> +
> + do {
> + port = of_get_next_child(parent, port);
> + if (!port)
> + return NULL;
> + } while (of_node_cmp(port->name, "port"));
> + }
> +
> + return NULL;
> +}
> +
> static int ipu_drm_bind(struct device *dev, struct device *master, void *data)
> {
> struct ipu_client_platformdata *pdata = dev->platform_data;
> @@ -562,11 +584,23 @@ static const struct component_ops ipu_crtc_ops = {
> static int ipu_drm_probe(struct platform_device *pdev)
> {
> struct device *dev = &pdev->dev;
> + struct ipu_client_platformdata *pdata = dev->platform_data;
> int ret;
>
> if (!dev->platform_data)
> return -EINVAL;
>
> + if (!dev->of_node) {
> + /* Associate crtc device with the corresponding DI port node */
> + dev->of_node = ipu_drm_get_port_by_id(dev->parent->of_node,
> + pdata->di + 2);
> + if (!dev->of_node) {
> + dev_err(dev, "missing port@%d node in %s\n",
> + pdata->di + 2, dev->parent->of_node->full_name);
> + return -ENODEV;
> + }
> + }
> +
> ret = dma_set_coherent_mask(dev, DMA_BIT_MASK(32));
> if (ret)
> return ret;
>
--
GTSYS Limited RFID Technology
9/F, Unit E, R07, Kwai Shing Industrial Building Phase 2,
42-46 Tai Lin Pai Road, Kwai Chung, N.T., Hong Kong
Tel (852) 9079 9521
Disclaimer: http://www.gtsys.com.hk/email/classified.html
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Revert "drm/imx: Remove of_node assignment from ipuv3-crtc driver probe"
2016-05-18 1:02 ` Chris Ruehl
@ 2016-05-18 8:38 ` Philipp Zabel
2016-05-18 10:51 ` Fabio Estevam
0 siblings, 1 reply; 5+ messages in thread
From: Philipp Zabel @ 2016-05-18 8:38 UTC (permalink / raw)
To: Chris Ruehl
Cc: Fabio Estevam, airlied, dri-devel, marcel.ziswiler, lw, stable
Hi Fabio, Chris,
Am Mittwoch, den 18.05.2016, 09:02 +0800 schrieb Chris Ruehl:
> Hi
> On Wednesday, May 18, 2016 01:11 AM, Fabio Estevam wrote:
> > Commit 407c9eba789767 ("drm/imx: Remove of_node assignment from ipuv3-crtc
> > driver probe") causes the IPU to be non-functional, so better to
> > revert it to avoid such regression.
> >
> > This reverts commit 407c9eba789767feb68b42eb2d65db68584e06c0.
> >
> > Cc: <stable@vger.kernel.org> # 4.4.x
> > Signed-off-by: Fabio Estevam <fabio.estevam@nxp.com>
>
> Revert patch tested with 4.6 - imx6d and imx6dl boards
>
> [ 2.292032] dwhdmi-imx 120000.hdmi: Detected HDMI controller 0x13:0xa:0xa0:0xc1
> [ 2.305742] imx-drm display-subsystem: bound 120000.hdmi (ops dw_hdmi_imx_ops)
Could you also test https://patchwork.kernel.org/patch/9081661/ ?
regards
Philipp
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Revert "drm/imx: Remove of_node assignment from ipuv3-crtc driver probe"
2016-05-18 8:38 ` Philipp Zabel
@ 2016-05-18 10:51 ` Fabio Estevam
2016-05-18 12:48 ` Philipp Zabel
0 siblings, 1 reply; 5+ messages in thread
From: Fabio Estevam @ 2016-05-18 10:51 UTC (permalink / raw)
To: Philipp Zabel
Cc: Chris Ruehl, stable, Marcel Ziswiler, DRI mailing list,
Fabio Estevam, Lothar Waßmann
Hi Philipp,
On Wed, May 18, 2016 at 5:38 AM, Philipp Zabel <p.zabel@pengutronix.de> wrote:
> Could you also test https://patchwork.kernel.org/patch/9081661/ ?
With this patch applied I still do not get HDMI working on a mx6q sabresd board.
Thanks
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] Revert "drm/imx: Remove of_node assignment from ipuv3-crtc driver probe"
2016-05-18 10:51 ` Fabio Estevam
@ 2016-05-18 12:48 ` Philipp Zabel
0 siblings, 0 replies; 5+ messages in thread
From: Philipp Zabel @ 2016-05-18 12:48 UTC (permalink / raw)
To: Fabio Estevam
Cc: Chris Ruehl, stable, Marcel Ziswiler, DRI mailing list,
Fabio Estevam, Lothar Waßmann
Hi Fabio,
Am Mittwoch, den 18.05.2016, 07:51 -0300 schrieb Fabio Estevam:
> Hi Philipp,
>
> On Wed, May 18, 2016 at 5:38 AM, Philipp Zabel <p.zabel@pengutronix.de> wrote:
>
> > Could you also test https://patchwork.kernel.org/patch/9081661/ ?
>
> With this patch applied I still do not get HDMI working on a mx6q sabresd board.
Thank you for testing. The reason HDMI still doesn't work is that the
ipuv3-crtcs get probed after dw_hdmi-imx, which then calls
drm_of_find_possible_crtcs() in its .bind function. That expects
crtc->port to point to the of_node, which is set by the call to
imx_drm_add_crtc(), still to the crtc devices' of_node instead of the
of_node in platform data. I'll send a new version.
regards
Philipp
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2016-05-18 12:48 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2016-05-17 17:11 [PATCH] Revert "drm/imx: Remove of_node assignment from ipuv3-crtc driver probe" Fabio Estevam
2016-05-18 1:02 ` Chris Ruehl
2016-05-18 8:38 ` Philipp Zabel
2016-05-18 10:51 ` Fabio Estevam
2016-05-18 12:48 ` Philipp Zabel
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox