Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753006AbaLCQad (ORCPT ); Wed, 3 Dec 2014 11:30:33 -0500 Received: from lucky1.263xmail.com ([211.157.147.132]:53609 "EHLO lucky1.263xmail.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751287AbaLCQab (ORCPT ); Wed, 3 Dec 2014 11:30:31 -0500 X-263anti-spam: KSV:0; X-MAIL-GRAY: 1 X-MAIL-DELIVERY: 0 X-KSVirus-check: 0 X-ABS-CHECKED: 4 X-RL-SENDER: andy.yan@rock-chips.com X-FST-TO: galak@codeaurora.org X-SENDER-IP: 121.15.173.1 X-LOGIN-NAME: andy.yan@rock-chips.com X-UNIQUE-TAG: <9e9eb0ebd5ebf6e75cce28db69ccb3b8> X-ATTACHMENT-NUM: 0 X-DNS-TYPE: 0 Message-ID: <547F3A9F.30701@rock-chips.com> Date: Thu, 04 Dec 2014 00:30:23 +0800 From: Andy Yan User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:31.0) Gecko/20100101 Thunderbird/31.0 MIME-Version: 1.0 To: Russell King - ARM Linux CC: airlied@linux.ie, Philipp Zabel , heiko@sntech.de, fabio.estevam@freescale.com, Greg Kroah-Hartman , Grant Likely , Rob Herring , Shawn Guo , Josh Boyer , Sean Paul , Inki Dae , Dave Airlie , Arnd Bergmann , Lucas Stach , Zubair.Kakakhel@imgtec.com, djkurtz@google.com, ykk@rock-chips.com, linux-kernel@vger.kernel.org, dri-devel@lists.freedesktop.org, devel@driverdev.osuosl.org, devicetree@vger.kernel.org, linux-rockchip@lists.infradead.org, jay.xu@rock-chips.com, Pawel Moll , mark.yao@rock-chips.com, Mark Rutland , Ian Campbell , vladimir_zapolskiy@mentor.com, Kumar Gala Subject: Re: [PATCH v16 03/12] drm: imx: imx-hdmi: convert imx-hdmi to drm_bridge mode References: <1417620408-30354-1-git-send-email-andy.yan@rock-chips.com> <1417620566-30496-1-git-send-email-andy.yan@rock-chips.com> <20141203153847.GC11285@n2100.arm.linux.org.uk> <547F3495.9070206@rock-chips.com> <20141203161122.GF11285@n2100.arm.linux.org.uk> In-Reply-To: <20141203161122.GF11285@n2100.arm.linux.org.uk> Content-Type: text/plain; charset=utf-8; format=flowed Content-Transfer-Encoding: 8bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 2014年12月04日 00:11, Russell King - ARM Linux wrote: > On Thu, Dec 04, 2014 at 12:04:37AM +0800, Andy Yan wrote: >> Hi Russell: >> >> On 2014年12月03日 23:38, Russell King - ARM Linux wrote: >>> On Wed, Dec 03, 2014 at 11:29:26PM +0800, Andy Yan wrote: >>>> +int imx_hdmi_bind(struct device *dev, struct device *master, >>>> + void *data, struct drm_encoder *encoder, >>>> + const struct imx_hdmi_plat_data *plat_data) >>>> { >>>> struct platform_device *pdev = to_platform_device(dev); >>>> - const struct of_device_id *of_id = >>>> - of_match_device(imx_hdmi_dt_ids, dev); >>>> struct drm_device *drm = data; >>>> struct device_node *np = dev->of_node; >>>> struct device_node *ddc_node; >>>> @@ -1594,19 +1566,16 @@ static int imx_hdmi_bind(struct device *dev, struct device *master, void *data) >>>> struct resource *iores; >>>> int ret, irq; >>>> - hdmi = devm_kzalloc(dev, sizeof(*hdmi), GFP_KERNEL); >>>> + hdmi = devm_kzalloc(&pdev->dev, sizeof(*hdmi), GFP_KERNEL); >>>> if (!hdmi) >>>> return -ENOMEM; >>>> - hdmi->dev = dev; >>>> + hdmi->plat_data = plat_data; >>>> + hdmi->dev = &pdev->dev; >>>> + hdmi->dev_type = plat_data->dev_type; >>>> hdmi->sample_rate = 48000; >>>> hdmi->ratio = 100; >>>> - >>>> - if (of_id) { >>>> - const struct platform_device_id *device_id = of_id->data; >>>> - >>>> - hdmi->dev_type = device_id->driver_data; >>>> - } >>>> + hdmi->encoder = encoder; >>> I'd suggest changing imx_hdmi_bind() to take the struct resource and irq >>> number, and avoiding the platform device stuff altogether in here. >>> >> Actually this is what the current code do: the resource and irq number >> are all handled in imx_hdmi_bind > I meant that imx_hdmi_bind should be passed these, so that it needs to > know nothing about the struct device beyond the generic device structure. > In other words, the dw-hdmi core should not assume that the struct device > is part of a platform device. > if so, how about the device tree properties ddc-i2c-bus, reg-io-width, iahb, isfr, they are all found by device? -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/