From: Felipe Balbi <balbi@ti.com>
To: Praveen Paneri <p.paneri@samsung.com>
Cc: "Kyungmin Park" <kmpark@infradead.org>,
"Felipe Balbi" <balbi@ti.com>,
"Lukasz Majewski" <l.majewski@samsung.com>,
linux-samsung-soc@vger.kernel.org,
"Heiko Stübner" <heiko@sntech.de>,
gregkh@linuxfoundation.org, devicetree-discuss@lists.ozlabs.org,
linux-usb@vger.kernel.org,
"Grant Likely" <grant.likely@secretlab.ca>,
"Kukjin Kim" <kgene.kim@samsung.com>,
"Thomas Abraham" <thomas.abraham@linaro.org>,
"Vivek Gautam" <gautam.vivek@samsung.com>,
ben-linux@fluff.org, broonie@opensource.wolfsonmicro.com,
t.figa@samsung.com, linux-arm-kernel@lists.infradead.org
Subject: Re: [PATCH v7 0/5] usb: phy: samsung: Introducing usb phy driver for samsung SoCs
Date: Fri, 9 Nov 2012 15:54:41 +0200 [thread overview]
Message-ID: <20121109135441.GC8567@arwen.pp.htv.fi> (raw)
In-Reply-To: <CAD6zSYN6xpHt54d-w=6veb6AErTq6ERQcneo7ewC-qsBoMuThQ@mail.gmail.com>
[-- Attachment #1: Type: text/plain, Size: 3289 bytes --]
Hi,
On Fri, Nov 09, 2012 at 06:50:44PM +0530, Praveen Paneri wrote:
> Hi,
>
> On Fri, Nov 9, 2012 at 6:06 PM, Kyungmin Park <kmpark@infradead.org> wrote:
> > On Fri, Nov 9, 2012 at 8:54 PM, Felipe Balbi <balbi@ti.com> wrote:
> >> Hi,
> >>
> >> On Tue, Oct 30, 2012 at 10:27:32AM +0530, Praveen Paneri wrote:
> >>> Changes from v6:
> >>> Modified register definitions according to the existing ones.
> >>> Changed default PHY clk selection for SoCs.
> >>> Improved binding text and rebased to the latest usb-next.
> >>>
> >>> Changes from v5:
> >>> Moved clk_get() to driver's probe function. Now reference clock frequency
> >>> selection value is stored in samsung_usbphy structure for later use. Used
> >>> IS_ENABLED() instead of #ifdef in samsung_usbphy_get_driver_data().
> >>>
> >>> Changes from v4:
> >>> Moved header file contents to driver's source file
> >>> Removed unnecessary print message from driver's probe function
> >>> Dropped the Free Software Foundation address from the header
> >>> Changed the platform data code to use __initdata
> >>>
> >>> Changes from v3:
> >>> Replaced susbsys_initcall()/module_exit() by module_platform_driver().
> >>> Accordingly in the hsotg driver returned -EPROBE_DEFER until phy driver
> >>> is registered
> >>> Removed unnecessary devm_usb_put_phy() call from the hsotg driver remove.
> >>>
> >>> Changes from v2:
> >>> Changed the driver filenames to samsung-usbphy
> >>> Changed 's3c' to 'samsung' for platform device as well as platform data
> >>> Moved platform data structure to a separate file
> >>> Rectified coding style related errors
> >>>
> >>> Changes from v1:
> >>> Rebased patches to latest usb-next branch
> >>> Changed the name 'sec_usbphy' to 'samsung_usbphy'
> >>>
> >>> This patch set introduces a phy driver for samsung SoCs. It uses the existing
> >>> transceiver infrastructure to provide phy control functions. Use of this driver
> >>> can be extended for usb host phy as well. Over the period of time all the phy
> >>> related code for most of the samsung SoCs can be integrated here.
> >>> Removing the existing phy code from mach-s3c64xx. Same can be done for other SoCs
> >>> when they start supporting this phy driver.
> >>> This driver is tested with smdk6410 and Exynos4210(with DT).
> >>>
> >>> Praveen Paneri (5):
> >>> usb: phy: samsung: Introducing usb phy driver for hsotg
> >>> usb: s3c-hsotg: Adding phy driver support
> > For usb parts:
> > Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
> Thanks for the ack.
> >
> >>> ARM: S3C64XX: Removing old phy setup code
> >>> ARM: S3C64XX: Enabling samsung-usbphy driver
> >>> ARM: Exynos4210: Enabling samsung-usbphy driver
> >>
> >> guys I can't wait any longer. If I don't get proper Acks today, I will
> >> go ahead without all the PHY changes from Samsung :-s
> >
> > To Praveen,
> >
> > To remove these dependency and merge issue, please send patches for
> > each subsystem. In this case, usb patches for usb tree and others are
> > for arm arch.
> I will surely take care of this from now onwards. Hope these can be
> taken as it is for now.
Sure, but I still need Kukjin's 'say-so' for the arch/arm/plat-samsung
and arch/arm/mach-exynos part.
--
balbi
[-- Attachment #2: Digital signature --]
[-- Type: application/pgp-signature, Size: 836 bytes --]
WARNING: multiple messages have this Message-ID (diff)
From: balbi@ti.com (Felipe Balbi)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v7 0/5] usb: phy: samsung: Introducing usb phy driver for samsung SoCs
Date: Fri, 9 Nov 2012 15:54:41 +0200 [thread overview]
Message-ID: <20121109135441.GC8567@arwen.pp.htv.fi> (raw)
In-Reply-To: <CAD6zSYN6xpHt54d-w=6veb6AErTq6ERQcneo7ewC-qsBoMuThQ@mail.gmail.com>
Hi,
On Fri, Nov 09, 2012 at 06:50:44PM +0530, Praveen Paneri wrote:
> Hi,
>
> On Fri, Nov 9, 2012 at 6:06 PM, Kyungmin Park <kmpark@infradead.org> wrote:
> > On Fri, Nov 9, 2012 at 8:54 PM, Felipe Balbi <balbi@ti.com> wrote:
> >> Hi,
> >>
> >> On Tue, Oct 30, 2012 at 10:27:32AM +0530, Praveen Paneri wrote:
> >>> Changes from v6:
> >>> Modified register definitions according to the existing ones.
> >>> Changed default PHY clk selection for SoCs.
> >>> Improved binding text and rebased to the latest usb-next.
> >>>
> >>> Changes from v5:
> >>> Moved clk_get() to driver's probe function. Now reference clock frequency
> >>> selection value is stored in samsung_usbphy structure for later use. Used
> >>> IS_ENABLED() instead of #ifdef in samsung_usbphy_get_driver_data().
> >>>
> >>> Changes from v4:
> >>> Moved header file contents to driver's source file
> >>> Removed unnecessary print message from driver's probe function
> >>> Dropped the Free Software Foundation address from the header
> >>> Changed the platform data code to use __initdata
> >>>
> >>> Changes from v3:
> >>> Replaced susbsys_initcall()/module_exit() by module_platform_driver().
> >>> Accordingly in the hsotg driver returned -EPROBE_DEFER until phy driver
> >>> is registered
> >>> Removed unnecessary devm_usb_put_phy() call from the hsotg driver remove.
> >>>
> >>> Changes from v2:
> >>> Changed the driver filenames to samsung-usbphy
> >>> Changed 's3c' to 'samsung' for platform device as well as platform data
> >>> Moved platform data structure to a separate file
> >>> Rectified coding style related errors
> >>>
> >>> Changes from v1:
> >>> Rebased patches to latest usb-next branch
> >>> Changed the name 'sec_usbphy' to 'samsung_usbphy'
> >>>
> >>> This patch set introduces a phy driver for samsung SoCs. It uses the existing
> >>> transceiver infrastructure to provide phy control functions. Use of this driver
> >>> can be extended for usb host phy as well. Over the period of time all the phy
> >>> related code for most of the samsung SoCs can be integrated here.
> >>> Removing the existing phy code from mach-s3c64xx. Same can be done for other SoCs
> >>> when they start supporting this phy driver.
> >>> This driver is tested with smdk6410 and Exynos4210(with DT).
> >>>
> >>> Praveen Paneri (5):
> >>> usb: phy: samsung: Introducing usb phy driver for hsotg
> >>> usb: s3c-hsotg: Adding phy driver support
> > For usb parts:
> > Acked-by: Kyungmin Park <kyungmin.park@samsung.com>
> Thanks for the ack.
> >
> >>> ARM: S3C64XX: Removing old phy setup code
> >>> ARM: S3C64XX: Enabling samsung-usbphy driver
> >>> ARM: Exynos4210: Enabling samsung-usbphy driver
> >>
> >> guys I can't wait any longer. If I don't get proper Acks today, I will
> >> go ahead without all the PHY changes from Samsung :-s
> >
> > To Praveen,
> >
> > To remove these dependency and merge issue, please send patches for
> > each subsystem. In this case, usb patches for usb tree and others are
> > for arm arch.
> I will surely take care of this from now onwards. Hope these can be
> taken as it is for now.
Sure, but I still need Kukjin's 'say-so' for the arch/arm/plat-samsung
and arch/arm/mach-exynos part.
--
balbi
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20121109/e19ac0f0/attachment.sig>
next prev parent reply other threads:[~2012-11-09 14:01 UTC|newest]
Thread overview: 38+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-10-30 4:57 [PATCH v7 0/5] usb: phy: samsung: Introducing usb phy driver for samsung SoCs Praveen Paneri
2012-10-30 4:57 ` Praveen Paneri
2012-10-30 4:57 ` [PATCH v7 1/5] usb: phy: samsung: Introducing usb phy driver for hsotg Praveen Paneri
2012-10-30 4:57 ` Praveen Paneri
[not found] ` <1351573057-22249-2-git-send-email-p.paneri-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2012-11-07 12:59 ` Vivek Gautam
2012-11-07 12:59 ` Vivek Gautam
2012-10-30 4:57 ` [PATCH v7 2/5] usb: s3c-hsotg: Adding phy driver support Praveen Paneri
2012-10-30 4:57 ` Praveen Paneri
[not found] ` <1351573057-22249-3-git-send-email-p.paneri-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2012-10-31 14:05 ` Felipe Balbi
2012-10-31 14:05 ` Felipe Balbi
[not found] ` <20121031140548.GE10998-S8G//mZuvNWo5Im9Ml3/Zg@public.gmane.org>
2012-10-31 14:44 ` Lukasz Majewski
2012-10-31 14:44 ` Lukasz Majewski
2012-11-02 4:26 ` Praveen Paneri
2012-11-02 4:26 ` Praveen Paneri
2012-11-02 5:49 ` [PATCH " Praveen Paneri
2012-11-02 5:49 ` Praveen Paneri
2012-10-30 4:57 ` [PATCH v7 3/5] ARM: S3C64XX: Removing old phy setup code Praveen Paneri
2012-10-30 4:57 ` Praveen Paneri
2012-10-30 4:57 ` [PATCH v7 4/5] ARM: S3C64XX: Enabling samsung-usbphy driver Praveen Paneri
2012-10-30 4:57 ` Praveen Paneri
2012-10-30 4:57 ` [PATCH v7 5/5] ARM: Exynos4210: " Praveen Paneri
2012-10-30 4:57 ` Praveen Paneri
2012-11-09 11:54 ` [PATCH v7 0/5] usb: phy: samsung: Introducing usb phy driver for samsung SoCs Felipe Balbi
2012-11-09 11:54 ` Felipe Balbi
[not found] ` <20121109115440.GC8078-S8G//mZuvNWo5Im9Ml3/Zg@public.gmane.org>
2012-11-09 12:15 ` Praveen Paneri
2012-11-09 12:15 ` Praveen Paneri
2012-11-09 12:36 ` Kyungmin Park
2012-11-09 12:36 ` Kyungmin Park
[not found] ` <CAH9JG2X1a8MqBpnk8uHRjsGnaD7uob5GBhUh_aS5iCprEvi2XQ-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2012-11-09 13:20 ` Praveen Paneri
2012-11-09 13:20 ` Praveen Paneri
2012-11-09 13:54 ` Felipe Balbi [this message]
2012-11-09 13:54 ` Felipe Balbi
2012-11-12 4:41 ` Kukjin Kim
2012-11-12 4:41 ` Kukjin Kim
[not found] ` <004201cdc08f$fa0fd3d0$ee2f7b70$%kim-Sze3O3UU22JBDgjK7y7TUQ@public.gmane.org>
2012-11-14 4:08 ` Praveen Paneri
2012-11-14 4:08 ` Praveen Paneri
[not found] ` <CAD6zSYM5-GdGHYH=W-My34oXRfH0M+rfettFa0fiit3-_V1RDA-JsoAwUIsXosN+BqQ9rBEUg@public.gmane.org>
2012-11-14 4:24 ` Praveen Paneri
2012-11-14 4:24 ` Praveen Paneri
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20121109135441.GC8567@arwen.pp.htv.fi \
--to=balbi@ti.com \
--cc=ben-linux@fluff.org \
--cc=broonie@opensource.wolfsonmicro.com \
--cc=devicetree-discuss@lists.ozlabs.org \
--cc=gautam.vivek@samsung.com \
--cc=grant.likely@secretlab.ca \
--cc=gregkh@linuxfoundation.org \
--cc=heiko@sntech.de \
--cc=kgene.kim@samsung.com \
--cc=kmpark@infradead.org \
--cc=l.majewski@samsung.com \
--cc=linux-arm-kernel@lists.infradead.org \
--cc=linux-samsung-soc@vger.kernel.org \
--cc=linux-usb@vger.kernel.org \
--cc=p.paneri@samsung.com \
--cc=t.figa@samsung.com \
--cc=thomas.abraham@linaro.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.