Re: [PATCH v7 3/3] add support for DWC UFS Host Controller

2016-02-15 Thread Joao Pinto
Hi Akinobu, On 2/13/2016 1:27 PM, Akinobu Mita wrote: > Hi Joao, > > 2016-02-11 21:13 GMT+09:00 Joao Pinto : >> +static int ufshcd_dwc_connection_setup(struct ufs_hba *hba) >> +{ >> + int ret = 0; >> + >> + /* Local side Configuration */ >> + ret =

Re: [PATCH v7 3/3] add support for DWC UFS Host Controller

2016-02-13 Thread Akinobu Mita
Hi Joao, 2016-02-11 21:13 GMT+09:00 Joao Pinto : > +static int ufshcd_dwc_connection_setup(struct ufs_hba *hba) > +{ > + int ret = 0; > + > + /* Local side Configuration */ > + ret = ufshcd_dme_set(hba, UIC_ARG_MIB(T_CONNECTIONSTATE), 0); > + if

Re: [PATCH v7 3/3] add support for DWC UFS Host Controller

2016-02-12 Thread Rob Herring
On Thu, Feb 11, 2016 at 12:13:06PM +, Joao Pinto wrote: > This patch has the goal to add support for DesignWare UFS Controller > specific operations and to add specific platform and pci drivers. > > Signed-off-by: Joao Pinto > --- > Changes v6->v7 (Arnd Bergmann): > -

Re: [PATCH v7 3/3] add support for DWC UFS Host Controller

2016-02-12 Thread Joao Pinto
Hi Rob, On 2/12/2016 4:36 PM, Rob Herring wrote: > On Thu, Feb 11, 2016 at 12:13:06PM +, Joao Pinto wrote: >> +Required properties: >> +- compatible: compatible string ("snps,ufshcd-1.0", >> "snps,ufshcd-1.1" >> + or "snps,ufshcd-2.0") > > History has taught us this needs to have a

Re: [PATCH v7 3/3] add support for DWC UFS Host Controller

2016-02-12 Thread Rob Herring
On Fri, Feb 12, 2016 at 11:52 AM, Joao Pinto wrote: > Hi Rob, > > On 2/12/2016 4:36 PM, Rob Herring wrote: >> On Thu, Feb 11, 2016 at 12:13:06PM +, Joao Pinto wrote: >>> +Required properties: >>> +- compatible: compatible string ("snps,ufshcd-1.0", >>>

[PATCH v7 3/3] add support for DWC UFS Host Controller

2016-02-11 Thread Joao Pinto
This patch has the goal to add support for DesignWare UFS Controller specific operations and to add specific platform and pci drivers. Signed-off-by: Joao Pinto --- Changes v6->v7 (Arnd Bergmann): - Changed DT node name (to ufs only) and the memory address (to 0xd00) -