Re: [PATCH] mmc: mmc: do not use CMD13 to get status after speed mode switch

2016-05-12 Thread Chaotian Jing
On Thu, 2016-05-12 at 13:29 +0300, Adrian Hunter wrote: > On 12/05/16 10:00, Chaotian Jing wrote: > > On Wed, 2016-05-11 at 10:50 +0300, Adrian Hunter wrote: > >> On 04/05/16 09:54, Chaotian Jing wrote: > >>> Per JEDEC spec, it is not recommended to use CMD13 to get card status > >>> after speed

Re: [PATCH] mmc: mmc: do not use CMD13 to get status after speed mode switch

2016-05-12 Thread Chaotian Jing
On Thu, 2016-05-12 at 13:29 +0300, Adrian Hunter wrote: > On 12/05/16 10:00, Chaotian Jing wrote: > > On Wed, 2016-05-11 at 10:50 +0300, Adrian Hunter wrote: > >> On 04/05/16 09:54, Chaotian Jing wrote: > >>> Per JEDEC spec, it is not recommended to use CMD13 to get card status > >>> after speed

Re: [PATCH] mmc: mmc: do not use CMD13 to get status after speed mode switch

2016-05-12 Thread Adrian Hunter
On 12/05/16 10:00, Chaotian Jing wrote: > On Wed, 2016-05-11 at 10:50 +0300, Adrian Hunter wrote: >> On 04/05/16 09:54, Chaotian Jing wrote: >>> Per JEDEC spec, it is not recommended to use CMD13 to get card status >>> after speed mode switch. below are two reason about this: >>> 1. CMD13 cannot

Re: [PATCH] mmc: mmc: do not use CMD13 to get status after speed mode switch

2016-05-12 Thread Adrian Hunter
On 12/05/16 10:00, Chaotian Jing wrote: > On Wed, 2016-05-11 at 10:50 +0300, Adrian Hunter wrote: >> On 04/05/16 09:54, Chaotian Jing wrote: >>> Per JEDEC spec, it is not recommended to use CMD13 to get card status >>> after speed mode switch. below are two reason about this: >>> 1. CMD13 cannot

Re: [PATCH] mmc: mmc: do not use CMD13 to get status after speed mode switch

2016-05-12 Thread Chaotian Jing
On Wed, 2016-05-11 at 10:50 +0300, Adrian Hunter wrote: > On 04/05/16 09:54, Chaotian Jing wrote: > > Per JEDEC spec, it is not recommended to use CMD13 to get card status > > after speed mode switch. below are two reason about this: > > 1. CMD13 cannot be guaranteed due to the asynchronous

Re: [PATCH] mmc: mmc: do not use CMD13 to get status after speed mode switch

2016-05-12 Thread Chaotian Jing
On Wed, 2016-05-11 at 10:50 +0300, Adrian Hunter wrote: > On 04/05/16 09:54, Chaotian Jing wrote: > > Per JEDEC spec, it is not recommended to use CMD13 to get card status > > after speed mode switch. below are two reason about this: > > 1. CMD13 cannot be guaranteed due to the asynchronous

Re: [PATCH] mmc: mmc: do not use CMD13 to get status after speed mode switch

2016-05-11 Thread Adrian Hunter
On 04/05/16 09:54, Chaotian Jing wrote: > Per JEDEC spec, it is not recommended to use CMD13 to get card status > after speed mode switch. below are two reason about this: > 1. CMD13 cannot be guaranteed due to the asynchronous operation. > Therefore it is not recommended to use CMD13 to check

Re: [PATCH] mmc: mmc: do not use CMD13 to get status after speed mode switch

2016-05-11 Thread Adrian Hunter
On 04/05/16 09:54, Chaotian Jing wrote: > Per JEDEC spec, it is not recommended to use CMD13 to get card status > after speed mode switch. below are two reason about this: > 1. CMD13 cannot be guaranteed due to the asynchronous operation. > Therefore it is not recommended to use CMD13 to check

Re: [PATCH] mmc: mmc: do not use CMD13 to get status after speed mode switch

2016-05-08 Thread Shawn Lin
+ linux-rockchip I just hacked my local branch to fix the issues found on rockchip platform. The reaseon is that mmc core fail to get status after switching from hs200 to hs. So I disabled sending status for it just like what Chaotian does here. But I didn't deeply dig out the root cause but I

Re: [PATCH] mmc: mmc: do not use CMD13 to get status after speed mode switch

2016-05-08 Thread Shawn Lin
+ linux-rockchip I just hacked my local branch to fix the issues found on rockchip platform. The reaseon is that mmc core fail to get status after switching from hs200 to hs. So I disabled sending status for it just like what Chaotian does here. But I didn't deeply dig out the root cause but I

[PATCH] mmc: mmc: do not use CMD13 to get status after speed mode switch

2016-05-04 Thread Chaotian Jing
Per JEDEC spec, it is not recommended to use CMD13 to get card status after speed mode switch. below are two reason about this: 1. CMD13 cannot be guaranteed due to the asynchronous operation. Therefore it is not recommended to use CMD13 to check busy completion of the timing change indication. 2.

[PATCH] mmc: mmc: do not use CMD13 to get status after speed mode switch

2016-05-04 Thread Chaotian Jing
Per JEDEC spec, it is not recommended to use CMD13 to get card status after speed mode switch. below are two reason about this: 1. CMD13 cannot be guaranteed due to the asynchronous operation. Therefore it is not recommended to use CMD13 to check busy completion of the timing change indication. 2.