Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752505AbaAGOX2 (ORCPT ); Tue, 7 Jan 2014 09:23:28 -0500 Received: from mailout1.samsung.com ([203.254.224.24]:61814 "EHLO mailout1.samsung.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751911AbaAGOXS (ORCPT ); Tue, 7 Jan 2014 09:23:18 -0500 X-AuditID: cbfee61b-b7f456d000006dfd-c1-52cc0dd4cb81 From: Bartlomiej Zolnierkiewicz To: Yuvaraj Kumar Cc: Kishon Vijay Abraham I , "kgene.kim@samsung.com" , linux-kernel@vger.kernel.org, "linux-arm-kernel@lists.infradead.org" , "devicetree@vger.kernel.org" , linux-doc@vger.kernel.org, Mark Rutland , Jingoo Han , sunil joshi , Tomasz Figa , Stephen Warren , Rob Herring , Grant Likely , Christoffer Dall , Yuvaraj Kumar C D , Girish K S , Vasanth Ananthan , linux-ide@vger.kernel.org Subject: Re: [PATCH V4 1/2] Phy: Exynos: Add Exynos5250 sata phy driver Date: Tue, 07 Jan 2014 15:22:58 +0100 Message-id: <2078358.4WniMksEuS@amdc1032> User-Agent: KMail/4.8.4 (Linux/3.2.0-54-generic-pae; KDE/4.8.5; i686; ; ) In-reply-to: References: <1388408823-4963-1-git-send-email-yuvaraj.cd@samsung.com> <11600750.UKZ7EpemHS@amdc1032> MIME-version: 1.0 Content-transfer-encoding: 7Bit Content-type: text/plain; charset=ISO-8859-1 X-Brightmail-Tracker: H4sIAAAAAAAAA+NgFlrBIsWRmVeSWpSXmKPExsVy+t9jQd0rvGeCDF79FbF48fofo8X8I+dY LQ782cFocXnhJVaL77u+sFv0LrjKZnHhaQ+bxfyjO5gsNj2+xmqxsG0Ji8WxHY+YLC7vmsNm sfT6RSaLwysOMFm8OtjGYrF+xmsWi1XrDrNZPDzazWpx9lS5g7DHmnlrGD0WfL7C7rFz1l12 jzvX9rB5bF5S79G3ZRWjx/Eb25k8Pm+S89g4NzSAM4rLJiU1J7MstUjfLoErY+/q+2wFjyQq FswLaGC8IdzFyMkhIWAi0fL1GRuELSZx4d56MFtIYDqjxIlW4y5GLiC7hUniauNqJpAEm4CV xMT2VYwgtoiAhsTR43eZQYqYBb6xSkzdcAHI4eAQFnCXODyPD6SGRUBV4tDco6wgNq+ApsTN PSuZQWxRAU+JHdtXgi3jFAiWOHv0CxPEsrWMEv9/bWKEaBCU+DH5HguIzSwgL7Fv/1RWCFtH Yn/rNLYJjAKzkJTNQlI2C0nZAkbmVYyiqQXJBcVJ6blGesWJucWleel6yfm5mxjB8fdMegfj qgaLQ4wCHIxKPLwv9p4KEmJNLCuuzD3EKMHBrCTCy3zjdJAQb0piZVVqUX58UWlOavEhRmkO FiVx3oOt1oFCAumJJanZqakFqUUwWSYOTqkGxvDn3MzXav7m1h771st3Meym9rKaL+nlaloX Qk0fZuVyxhUc+MTn28j8wOhH9kzbjPkaU6qmpbS58gRX7fNpDJGMYTt3Xeqli8la5Y2pS10T S9IufveaH5d38suTqI+tC/r0P/K2Kya/vTg9Q/Xcr+OlTvfcNS23O360qN3cKmW1RS2685a/ EktxRqKhFnNRcSIAX2F8NrsCAAA= Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Hi, On Thursday, January 02, 2014 07:03:23 PM Yuvaraj Kumar wrote: > On Tue, Dec 31, 2013 at 9:00 PM, Bartlomiej Zolnierkiewicz > wrote: > >> @@ -8,3 +8,4 @@ obj-$(CONFIG_PHY_EXYNOS_MIPI_VIDEO) += phy-exynos-mipi-video.o > >> obj-$(CONFIG_PHY_MVEBU_SATA) += phy-mvebu-sata.o > >> obj-$(CONFIG_OMAP_USB2) += phy-omap-usb2.o > >> obj-$(CONFIG_TWL4030_USB) += phy-twl4030-usb.o > >> +obj-$(CONFIG_EXYNOS5250_SATA_PHY) += sata_phy_exynos5250.o exynos5250_phy_i2c.o > > > > Will this compile/work without I2C support? > No.I missed this.It will not compile without I2C support. > How about below change in drivers/phy/Kconfig ? > config EXYNOS5250_SATA_PHY > select I2C > select I2C_S3C2410 Fine with me. > > CONFIG_EXYNOS5250_SATA_PHY doesn't require it currently. > I didnt get this. what it doesn't require? It doesn't require I2C. If you add above I2C selects it will be OK. > >> +struct i2c_driver sataphy_i2c_driver = { > > > > Keeping it global together with sataphy_attach_i2c_client() is not very > > nice. I've talked with our local device tree guru (a.k.a. Tomasz Figa) > > about this and it may be that this i2c driver is not even necessary. > Can you elaborate more on this? The usage of the global i2c driver is not a proper solution. i2c driver should register itself in the driver init function (which is not present currently) instead of being registered by the SATA PHY driver. The SATA PHY driver should find i2c client device using DT. sataphy_attach_i2c_client() should then be removed. > > If you manage to extract i2c adapter and address data from the device > > tree (using proper of_* methods) they can be used instead of i2c client > > data in the SATA PHY driver. > I think the above is true, if the complete SATA PHY controller sits on > the i2c adapter. > But in Exynos5250 case,only the few configurations ( CMU and TRSV > blocks ) SATA PHY > are done through I2C(channel 9). Correct me if i am wrong. Well, it shouldn't matter if all or only some of the configuration of the SATA PHY controller is done through i2c. Anyway, how about another idea -> adding a new phandle of i2c client device to SATA PHY DT entry and using DT in the SATA PHY driver to find i2c client device? i.e. "samsung,exynos-sataphy-i2c-phandle" property in SATA PHY controller DT entry can point at existing "sata-phy@38" sataphy i2c client DT entry (by adding new label to it, i.e. "sata_phy_i2c"). Such new phandle can be used first to find the DT device node of i2c device (by using of_parse_phandle(), if it returns NULL the error should be returned) and then later to find proper i2c client device (by using of_find_i2c_device_by_node(), if it returns NULL deferred probing should be requested by returning -EPROBE_DEFER). i2c@121D0000 { ... sata_phy_i2c: sata-phy@38 { ... }; ... }; sata_phy: sata-phy@12170000 { ... samsung,exynos-sataphy-i2c-phandle = <&sata_phy_i2c>; ... }; Best regards, -- Bartlomiej Zolnierkiewicz Samsung R&D Institute Poland Samsung Electronics -- 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/