All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH v1 0/8] Support for Exynos specific UFS driver
@ 2016-10-06  8:12 Kiwoong Kim
  2016-10-06 19:13 ` Subhash Jadavani
  0 siblings, 1 reply; 3+ messages in thread
From: Kiwoong Kim @ 2016-10-06  8:12 UTC (permalink / raw)
  To: vinholikatti, Martin K. Petersen, James Bottomley, linux-scsi
  Cc: 추헌광

This series of patches introduce support for Exynos specific UFS driver.
An original version of this has been applied on mass production
of commercial mobile devices.

 Documentation/devicetree/bindings/ufs/ufs-exynos.txt |   93 +
 drivers/scsi/ufs/Kconfig                                      |   10 +
 drivers/scsi/ufs/Makefile                                     |    1 +
 drivers/scsi/ufs/mphy.h                                        |   38 +
 drivers/scsi/ufs/ufs-exynos.c                                | 2084 ++++++++++++++++++++
 drivers/scsi/ufs/ufs-exynos.h                                |  621 ++++++
 drivers/scsi/ufs/ufshcd.c                                     |  146 +-
 drivers/scsi/ufs/ufshcd.h                                     |   62 +
 drivers/scsi/ufs/ufshci.h                                     |   14 +-
 drivers/scsi/ufs/unipro.h                                     |   24 +
 10 files changed, 3073 insertions(+), 20 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/ufs/ufs-exynos.txt
 create mode 100644 drivers/scsi/ufs/mphy.h
 create mode 100644 drivers/scsi/ufs/ufs-exynos.c
 create mode 100644 drivers/scsi/ufs/ufs-exynos.h

-- 
1.7.9.5


^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [PATCH v1 0/8] Support for Exynos specific UFS driver
  2016-10-06  8:12 [PATCH v1 0/8] Support for Exynos specific UFS driver Kiwoong Kim
@ 2016-10-06 19:13 ` Subhash Jadavani
  2016-10-07  1:19   ` Kiwoong Kim
  0 siblings, 1 reply; 3+ messages in thread
From: Subhash Jadavani @ 2016-10-06 19:13 UTC (permalink / raw)
  To: Kiwoong Kim
  Cc: vinholikatti, Martin K. Petersen, James Bottomley, linux-scsi,
	추헌광,
	linux-scsi-owner

Hi Kim,


On 2016-10-06 01:12, Kiwoong Kim wrote:
> This series of patches introduce support for Exynos specific UFS 
> driver.
> An original version of this has been applied on mass production
> of commercial mobile devices.
> 
>  Documentation/devicetree/bindings/ufs/ufs-exynos.txt |   93 +
>  drivers/scsi/ufs/Kconfig                                      |   10 +
>  drivers/scsi/ufs/Makefile                                     |    1 +
>  drivers/scsi/ufs/mphy.h                                        |   38 
> +
>  drivers/scsi/ufs/ufs-exynos.c                                | 2084
> ++++++++++++++++++++
>  drivers/scsi/ufs/ufs-exynos.h                                |  621 
> ++++++
>  drivers/scsi/ufs/ufshcd.c                                     |  146 
> +-
>  drivers/scsi/ufs/ufshcd.h                                     |   62 +
>  drivers/scsi/ufs/ufshci.h                                     |   14 
> +-
>  drivers/scsi/ufs/unipro.h                                     |   24 +
>  10 files changed, 3073 insertions(+), 20 deletions(-)
>  create mode 100644 
> Documentation/devicetree/bindings/ufs/ufs-exynos.txt
>  create mode 100644 drivers/scsi/ufs/mphy.h
>  create mode 100644 drivers/scsi/ufs/ufs-exynos.c
>  create mode 100644 drivers/scsi/ufs/ufs-exynos.h

This supposed to be 8-patch series but i only patch #1 (subject: [PATCH 
v1 1/8] ufs: add some vendor specific operations) on mailing list. Can 
you please send out the full patch series?

-- 
The Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum,
a Linux Foundation Collaborative Project

^ permalink raw reply	[flat|nested] 3+ messages in thread

* RE: [PATCH v1 0/8] Support for Exynos specific UFS driver
  2016-10-06 19:13 ` Subhash Jadavani
@ 2016-10-07  1:19   ` Kiwoong Kim
  0 siblings, 0 replies; 3+ messages in thread
From: Kiwoong Kim @ 2016-10-07  1:19 UTC (permalink / raw)
  To: 'Subhash Jadavani'
  Cc: vinholikatti, 'Martin K. Petersen',
	'James Bottomley', linux-scsi, '???',
	linux-scsi-owner

Hi, Subhash

You're right.
I submitted one of  patches first to link to the previous summary mail
thread,
but it failed. I'll try it again.

Thank you
Regards

> Hi Kim,
> 
> 
> On 2016-10-06 01:12, Kiwoong Kim wrote:
> > This series of patches introduce support for Exynos specific UFS
> > driver.
> > An original version of this has been applied on mass production of
> > commercial mobile devices.
> >
> >  Documentation/devicetree/bindings/ufs/ufs-exynos.txt |   93 +
> >  drivers/scsi/ufs/Kconfig                                      |   10 +
> >  drivers/scsi/ufs/Makefile                                     |    1 +
> >  drivers/scsi/ufs/mphy.h                                        |   38
> > +
> >  drivers/scsi/ufs/ufs-exynos.c                                | 2084
> > ++++++++++++++++++++
> >  drivers/scsi/ufs/ufs-exynos.h                                |  621
> > ++++++
> >  drivers/scsi/ufs/ufshcd.c                                     |  146
> > +-
> >  drivers/scsi/ufs/ufshcd.h                                     |   62 +
> >  drivers/scsi/ufs/ufshci.h                                     |   14
> > +-
> >  drivers/scsi/ufs/unipro.h                                     |   24 +
> >  10 files changed, 3073 insertions(+), 20 deletions(-)  create mode
> > 100644 Documentation/devicetree/bindings/ufs/ufs-exynos.txt
> >  create mode 100644 drivers/scsi/ufs/mphy.h  create mode 100644
> > drivers/scsi/ufs/ufs-exynos.c  create mode 100644
> > drivers/scsi/ufs/ufs-exynos.h
> 
> This supposed to be 8-patch series but i only patch #1 (subject: [PATCH
> v1 1/8] ufs: add some vendor specific operations) on mailing list. Can you
> please send out the full patch series?
> 
> --
> The Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, a
> Linux Foundation Collaborative Project
> --
> To unsubscribe from this list: send the line "unsubscribe linux-scsi" in
> the body of a message to majordomo@vger.kernel.org More majordomo info at
> http://vger.kernel.org/majordomo-info.html



^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2016-10-07  1:19 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2016-10-06  8:12 [PATCH v1 0/8] Support for Exynos specific UFS driver Kiwoong Kim
2016-10-06 19:13 ` Subhash Jadavani
2016-10-07  1:19   ` Kiwoong Kim

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.