From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1757889Ab3BFTB7 (ORCPT ); Wed, 6 Feb 2013 14:01:59 -0500 Received: from mail-ia0-f169.google.com ([209.85.210.169]:62192 "EHLO mail-ia0-f169.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755064Ab3BFTBz convert rfc822-to-8bit (ORCPT ); Wed, 6 Feb 2013 14:01:55 -0500 MIME-Version: 1.0 X-Originating-IP: [2620:0:1000:1b02:ae16:2dff:fe07:4e83] In-Reply-To: <5111C67B.3060909@samsung.com> References: <1360107777-17490-1-git-send-email-seanpaul@chromium.org> <1360107777-17490-2-git-send-email-seanpaul@chromium.org> <5111A23F.50300@wwwdotorg.org> <5111A6D9.7090700@wwwdotorg.org> <5111C67B.3060909@samsung.com> Date: Wed, 6 Feb 2013 11:01:55 -0800 Message-ID: Subject: Re: [PATCH v3 1/3] drm/exynos: Get HDMI version from device tree From: Olof Johansson To: sw0312.kim@samsung.com Cc: Sean Paul , Stephen Warren , Tomasz Stanislawski , "kgene.kim" , devicetree-discuss@lists.ozlabs.org, Linux Kernel Mailing List , dri-devel@lists.freedesktop.org, Tomasz Figa , linux-samsung-soc@vger.kernel.org, Sylwester Nawrocki , Olof Johansson , linux-arm-kernel@lists.infradead.org, RAHUL SHARMA Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8BIT Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Tue, Feb 5, 2013 at 6:56 PM, 김승우 wrote: > > > On 2013년 02월 06일 09:56, Sean Paul wrote: >> On Tue, Feb 5, 2013 at 4:42 PM, Stephen Warren wrote: >>> On 02/05/2013 05:37 PM, Sean Paul wrote: >>>> On Tue, Feb 5, 2013 at 4:22 PM, Stephen Warren wrote: >>>>> n 02/05/2013 04:42 PM, Sean Paul wrote: >>>>>> Use the compatible string in the device tree to determine which >>>>>> registers/functions to use in the HDMI driver. Also changes the >>>>>> references from v13 to 4210 and v14 to 4212 to reflect the IP >>>>>> block version instead of the HDMI version. >>>>> >>>>>> diff --git a/Documentation/devicetree/bindings/drm/exynos/hdmi.txt b/Documentation/devicetree/bindings/drm/exynos/hdmi.txt >>>>> >>>>> Binding looks sane to me. >>>>> >>>>>> diff --git a/drivers/gpu/drm/exynos/exynos_hdmi.c b/drivers/gpu/drm/exynos/exynos_hdmi.c >>>>> >>>>>> #ifdef CONFIG_OF >>>>>> static struct of_device_id hdmi_match_types[] = { >>>>>> { >>>>>> - .compatible = "samsung,exynos5-hdmi", >>>>>> - .data = (void *)HDMI_TYPE14, >>>>>> + .compatible = "samsung,exynos4-hdmi", >>>>>> }, { >>>>>> /* end node */ >>>>>> } >>>>> >>>>> Why not fill in all the "base" compatible values there (I think you need >>>>> this anyway so that DTs don't all have to be compatible with >>>>> samsung,exynos4-hdmi), with .data containing the HDMI_VER_EXYNOS* >>>>> values, then ... >>>>> >>>> >>>> At the moment, all DTs have to be compatible with exynos4-hdmi since >>>> it provides the base for the current driver. The driver uses 4210 and >>>> 4212 to differentiate between different register addresses and >>>> features, but most things are just exynos4-hdmi compatible. >>> >>> The DT nodes should include only the compatible values that the HW is >>> actually compatible with. If the HW isn't compatible with exynos4-hdmi, >>> that value shouldn't be in the compatible property, but instead whatever >>> the "base" value that the HW really is compatible with. The driver can >>> support multiple "base" compatible values from this table. >>> >> >> All devices that use this driver are compatible, at some level, with >> exynos4-hdmi, so I think its usage is correct here. >> >>>>>> @@ -2218,17 +2217,18 @@ static int hdmi_probe(struct platform_device *pdev) >>>>> >>>>>> + >>>>>> + if (of_device_is_compatible(dev->of_node, "samsung,exynos4210-hdmi")) >>>>>> + hdata->version |= HDMI_VER_EXYNOS4210; >>>>>> + if (of_device_is_compatible(dev->of_node, "samsung,exynos4212-hdmi")) >>>>>> + hdata->version |= HDMI_VER_EXYNOS4212; >>>>>> + if (of_device_is_compatible(dev->of_node, "samsung,exynos5250-hdmi")) >>>>>> + hdata->version |= HDMI_VER_EXYNOS5250; >>>>> >>>>> Instead of that, do roughly: >>>>> >>>>> match = of_match_device(hdmi_match_types, &pdev->dev); >>>>> if (match) >>>>> hdata->version |= (int)match->data; >>>>> >>>>> That way, it's all table-based. Any future additions to >>>>> hdmi_match_types[] won't require another if statement to be added to >>>>> probe(). >>>> >>>> I don't think it's that easy. of_match_device returns the first match >>>> from the device table, so I'd still need to iterate through the >>>> matches. I could still break this out into a table, but I don't think >>>> of_match_device is the right way to probe it. >>> >>> You shouldn't have to iterate over multiple matches. of_match_device() >>> is supposed to return the match for the first entry in the compatible >>> property, then if there was no match, move on to looking at the next >>> entry in the compatible property, etc. In practice, I think it's still >>> not implemented quite correctly for this, but you can make it work by >>> putting the newest compatible value first in the match table. >> >> I think the only way that works is if you hardcode the compatible >> versions in the driver, like this: >> >> static struct of_device_id hdmi_match_types[] = { >> { >> .compatible = "samsung,exynos5250-hdmi", >> .data = (void *)(HDMI_VER_EXYNOS5250 | HDMI_VER_EXYNOS4212); >> }, { >> .compatible = "samsung,exynos4212-hdmi", >> .data = (void *)HDMI_VER_EXYNOS4212; >> }, { >> .compatible = "samsung,exynos4210-hdmi", >> .data = (void *)HDMI_VER_EXYNOS4210; >> }, { >> /* end node */ >> } >> }; > > Actually, I can't understand why there is HDMI_VER_EXYNOS5250 because it > is not used anywhere in your patch. I'm not sure I missed something from > your v2 patch thread, but to me, just hdmi version or hdmi ip version > can be used as data field of struct of_device_id as like your v2 patch > set. and then of_match_device() can be used without | in data field. > > If I have missed some point from v2 thread, please let me know. Exactly. I think that's causing some of this confusion. It'd be easier to just leave any 5250 reference out of this patch. The _only_ place 5250 should be used now is in the 5250 dtsi file, as the most specific compatible field. Compatible there should be, in order: 5250, 4212, 4 (or maybe not 4 at all, if the driver can't successfully drive the hardware in degraded mode using the HDMI 1.3 register maps, etc). ... But there's no need to reference it in the driver. It might be useful in the future to set some quirk or feature bits, but until then it's just there in case. -Olof From mboxrd@z Thu Jan 1 00:00:00 1970 From: olof@lixom.net (Olof Johansson) Date: Wed, 6 Feb 2013 11:01:55 -0800 Subject: [PATCH v3 1/3] drm/exynos: Get HDMI version from device tree In-Reply-To: <5111C67B.3060909@samsung.com> References: <1360107777-17490-1-git-send-email-seanpaul@chromium.org> <1360107777-17490-2-git-send-email-seanpaul@chromium.org> <5111A23F.50300@wwwdotorg.org> <5111A6D9.7090700@wwwdotorg.org> <5111C67B.3060909@samsung.com> Message-ID: To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Tue, Feb 5, 2013 at 6:56 PM, ??? wrote: > > > On 2013? 02? 06? 09:56, Sean Paul wrote: >> On Tue, Feb 5, 2013 at 4:42 PM, Stephen Warren wrote: >>> On 02/05/2013 05:37 PM, Sean Paul wrote: >>>> On Tue, Feb 5, 2013 at 4:22 PM, Stephen Warren wrote: >>>>> n 02/05/2013 04:42 PM, Sean Paul wrote: >>>>>> Use the compatible string in the device tree to determine which >>>>>> registers/functions to use in the HDMI driver. Also changes the >>>>>> references from v13 to 4210 and v14 to 4212 to reflect the IP >>>>>> block version instead of the HDMI version. >>>>> >>>>>> diff --git a/Documentation/devicetree/bindings/drm/exynos/hdmi.txt b/Documentation/devicetree/bindings/drm/exynos/hdmi.txt >>>>> >>>>> Binding looks sane to me. >>>>> >>>>>> diff --git a/drivers/gpu/drm/exynos/exynos_hdmi.c b/drivers/gpu/drm/exynos/exynos_hdmi.c >>>>> >>>>>> #ifdef CONFIG_OF >>>>>> static struct of_device_id hdmi_match_types[] = { >>>>>> { >>>>>> - .compatible = "samsung,exynos5-hdmi", >>>>>> - .data = (void *)HDMI_TYPE14, >>>>>> + .compatible = "samsung,exynos4-hdmi", >>>>>> }, { >>>>>> /* end node */ >>>>>> } >>>>> >>>>> Why not fill in all the "base" compatible values there (I think you need >>>>> this anyway so that DTs don't all have to be compatible with >>>>> samsung,exynos4-hdmi), with .data containing the HDMI_VER_EXYNOS* >>>>> values, then ... >>>>> >>>> >>>> At the moment, all DTs have to be compatible with exynos4-hdmi since >>>> it provides the base for the current driver. The driver uses 4210 and >>>> 4212 to differentiate between different register addresses and >>>> features, but most things are just exynos4-hdmi compatible. >>> >>> The DT nodes should include only the compatible values that the HW is >>> actually compatible with. If the HW isn't compatible with exynos4-hdmi, >>> that value shouldn't be in the compatible property, but instead whatever >>> the "base" value that the HW really is compatible with. The driver can >>> support multiple "base" compatible values from this table. >>> >> >> All devices that use this driver are compatible, at some level, with >> exynos4-hdmi, so I think its usage is correct here. >> >>>>>> @@ -2218,17 +2217,18 @@ static int hdmi_probe(struct platform_device *pdev) >>>>> >>>>>> + >>>>>> + if (of_device_is_compatible(dev->of_node, "samsung,exynos4210-hdmi")) >>>>>> + hdata->version |= HDMI_VER_EXYNOS4210; >>>>>> + if (of_device_is_compatible(dev->of_node, "samsung,exynos4212-hdmi")) >>>>>> + hdata->version |= HDMI_VER_EXYNOS4212; >>>>>> + if (of_device_is_compatible(dev->of_node, "samsung,exynos5250-hdmi")) >>>>>> + hdata->version |= HDMI_VER_EXYNOS5250; >>>>> >>>>> Instead of that, do roughly: >>>>> >>>>> match = of_match_device(hdmi_match_types, &pdev->dev); >>>>> if (match) >>>>> hdata->version |= (int)match->data; >>>>> >>>>> That way, it's all table-based. Any future additions to >>>>> hdmi_match_types[] won't require another if statement to be added to >>>>> probe(). >>>> >>>> I don't think it's that easy. of_match_device returns the first match >>>> from the device table, so I'd still need to iterate through the >>>> matches. I could still break this out into a table, but I don't think >>>> of_match_device is the right way to probe it. >>> >>> You shouldn't have to iterate over multiple matches. of_match_device() >>> is supposed to return the match for the first entry in the compatible >>> property, then if there was no match, move on to looking at the next >>> entry in the compatible property, etc. In practice, I think it's still >>> not implemented quite correctly for this, but you can make it work by >>> putting the newest compatible value first in the match table. >> >> I think the only way that works is if you hardcode the compatible >> versions in the driver, like this: >> >> static struct of_device_id hdmi_match_types[] = { >> { >> .compatible = "samsung,exynos5250-hdmi", >> .data = (void *)(HDMI_VER_EXYNOS5250 | HDMI_VER_EXYNOS4212); >> }, { >> .compatible = "samsung,exynos4212-hdmi", >> .data = (void *)HDMI_VER_EXYNOS4212; >> }, { >> .compatible = "samsung,exynos4210-hdmi", >> .data = (void *)HDMI_VER_EXYNOS4210; >> }, { >> /* end node */ >> } >> }; > > Actually, I can't understand why there is HDMI_VER_EXYNOS5250 because it > is not used anywhere in your patch. I'm not sure I missed something from > your v2 patch thread, but to me, just hdmi version or hdmi ip version > can be used as data field of struct of_device_id as like your v2 patch > set. and then of_match_device() can be used without | in data field. > > If I have missed some point from v2 thread, please let me know. Exactly. I think that's causing some of this confusion. It'd be easier to just leave any 5250 reference out of this patch. The _only_ place 5250 should be used now is in the 5250 dtsi file, as the most specific compatible field. Compatible there should be, in order: 5250, 4212, 4 (or maybe not 4 at all, if the driver can't successfully drive the hardware in degraded mode using the HDMI 1.3 register maps, etc). ... But there's no need to reference it in the driver. It might be useful in the future to set some quirk or feature bits, but until then it's just there in case. -Olof