All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/2] Improve Raspberry Pi mmc writes.
       [not found]   ` <20170402065858.16478-1-deymo@google.com>
@ 2017-04-07  4:53     ` Jaehoon Chung
  2017-04-07 18:33       ` Alex Deymo
  2017-04-14  6:24     ` Jaehoon Chung
  1 sibling, 1 reply; 5+ messages in thread
From: Jaehoon Chung @ 2017-04-07  4:53 UTC (permalink / raw)
  To: u-boot

On 04/02/2017 03:58 PM, Alex Deymo wrote:
> When experimenting with fastboot from U-Boot on the Raspberry Pi 3 we
> found that the writes to the sdcard are much more slow than when
> accessing it from the userspace. These two patches speed up the write
> and allow us to reliably write the sdcard from U-Boot.


I'm not sure you can see this email.
If you can't receive this, I will resend with my gmail account.

I want to know the situation after removing the BROKEN_R1B quirks.

Best Regards,
Jaehoon Chung
> 
> Alex Deymo (1):
>   mmc: sdhci: Wait for SDHCI_INT_DATA_END when transferring.
> 
> Jocelyn Bohr (1):
>   mmc: bcm2835_sdhci: Speed up mmc writes.
> 
>  drivers/mmc/bcm2835_sdhci.c |  8 ++++++--
>  drivers/mmc/sdhci.c         | 15 +++++++++++----
>  2 files changed, 17 insertions(+), 6 deletions(-)
> 

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

* [U-Boot] [PATCH 0/2] Improve Raspberry Pi mmc writes.
  2017-04-07  4:53     ` [U-Boot] [PATCH 0/2] Improve Raspberry Pi mmc writes Jaehoon Chung
@ 2017-04-07 18:33       ` Alex Deymo
  2017-04-10 15:00         ` Jaehoon Chung
  0 siblings, 1 reply; 5+ messages in thread
From: Alex Deymo @ 2017-04-07 18:33 UTC (permalink / raw)
  To: u-boot

2017-04-06 21:53 GMT-07:00 Jaehoon Chung <jh80.chung@samsung.com>:

> On 04/02/2017 03:58 PM, Alex Deymo wrote:
> > When experimenting with fastboot from U-Boot on the Raspberry Pi 3 we
> > found that the writes to the sdcard are much more slow than when
> > accessing it from the userspace. These two patches speed up the write
> > and allow us to reliably write the sdcard from U-Boot.
>
>
> I'm not sure you can see this email.
> If you can't receive this, I will resend with my gmail account.
>
I can, I'm on the list. If you cc me directly the chances of me seeing it
are much higher.


I want to know the situation after removing the BROKEN_R1B quirks.
>

How would I test that?
Basically trying to write 100s of MB to mmc on the rpi3 was failing very
often after applying the "Speed up mmc writes" patch. Without said patch
this was not a problem because the write were sooooooo slow that we would
never send two write commands too close to each other. Do you want me
re-test applying only "Speed up mmc writes." on top of master without the
second patch (Wait for SDHCI_INT_DATA_END when transferring)? Or just
re-test the mmc speed/reliability without neither of these patches?
deymo

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

* [U-Boot] [PATCH 0/2] Improve Raspberry Pi mmc writes.
  2017-04-07 18:33       ` Alex Deymo
@ 2017-04-10 15:00         ` Jaehoon Chung
  0 siblings, 0 replies; 5+ messages in thread
From: Jaehoon Chung @ 2017-04-10 15:00 UTC (permalink / raw)
  To: u-boot



On 2017년 04월 08일 03:33, Alex Deymo wrote:
> 2017-04-06 21:53 GMT-07:00 Jaehoon Chung <jh80.chung@samsung.com>:
> 
>> On 04/02/2017 03:58 PM, Alex Deymo wrote:
>>> When experimenting with fastboot from U-Boot on the Raspberry Pi 3 we
>>> found that the writes to the sdcard are much more slow than when
>>> accessing it from the userspace. These two patches speed up the write
>>> and allow us to reliably write the sdcard from U-Boot.
>>
>>
>> I'm not sure you can see this email.
>> If you can't receive this, I will resend with my gmail account.
>>
> I can, I'm on the list. If you cc me directly the chances of me seeing it
> are much higher.

Sorry for sending directly. I have some problem for sending with Samsung account.

> 
> 
> I want to know the situation after removing the BROKEN_R1B quirks.

Refer to below patches..already applied.

https://patchwork.ozlabs.org/patch/647364/
https://patchwork.ozlabs.org/patch/647365/

Exynos boards what used the sdhci controller were very slow before removing BROKEN_R1B.
When i posted the BROKEN_R1B, it was too old..I think this quirk doesn't need anymore.
But i can't test other boards what used this quirks.

If you can test it..it's helpful to me. 

>>
> 
> How would I test that?
> Basically trying to write 100s of MB to mmc on the rpi3 was failing very
> often after applying the "Speed up mmc writes" patch. Without said patch
> this was not a problem because the write were sooooooo slow that we would
> never send two write commands too close to each other. Do you want me
> re-test applying only "Speed up mmc writes." on top of master without the
> second patch (Wait for SDHCI_INT_DATA_END when transferring)? Or just
> re-test the mmc speed/reliability without neither of these patches?
> deymo
> _______________________________________________
> U-Boot mailing list
> U-Boot at lists.denx.de
> https://lists.denx.de/listinfo/u-boot
> 

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

* [U-Boot] [PATCH 0/2] Improve Raspberry Pi mmc writes.
       [not found]   ` <20170402065858.16478-1-deymo@google.com>
  2017-04-07  4:53     ` [U-Boot] [PATCH 0/2] Improve Raspberry Pi mmc writes Jaehoon Chung
@ 2017-04-14  6:24     ` Jaehoon Chung
  1 sibling, 0 replies; 5+ messages in thread
From: Jaehoon Chung @ 2017-04-14  6:24 UTC (permalink / raw)
  To: u-boot

On 04/02/2017 03:58 PM, Alex Deymo wrote:
> When experimenting with fastboot from U-Boot on the Raspberry Pi 3 we
> found that the writes to the sdcard are much more slow than when
> accessing it from the userspace. These two patches speed up the write
> and allow us to reliably write the sdcard from U-Boot.

Applied to u-boot-mmc. Thanks!

Best Regards,
Jaehoon Chung

> 
> Alex Deymo (1):
>   mmc: sdhci: Wait for SDHCI_INT_DATA_END when transferring.
> 
> Jocelyn Bohr (1):
>   mmc: bcm2835_sdhci: Speed up mmc writes.
> 
>  drivers/mmc/bcm2835_sdhci.c |  8 ++++++--
>  drivers/mmc/sdhci.c         | 15 +++++++++++----
>  2 files changed, 17 insertions(+), 6 deletions(-)
> 

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

* [U-Boot] [PATCH 0/2] Improve Raspberry Pi mmc writes
       [not found] <b45d36cb8f3ff07a9de93a9a0acc48c017410b0c>
@ 2017-04-02  8:24 ` Alex Deymo
  0 siblings, 0 replies; 5+ messages in thread
From: Alex Deymo @ 2017-04-02  8:24 UTC (permalink / raw)
  To: u-boot

When experimenting with fastboot from U-Boot on the Raspberry Pi 3 we
found that the writes to the sdcard are much more slow than when
accessing it from the userspace. These two patches speed up the write
and allow us to reliably write the sdcard from U-Boot.

Alex Deymo (1):
  mmc: sdhci: Wait for SDHCI_INT_DATA_END when transferring.

Jocelyn Bohr (1):
  mmc: bcm2835_sdhci: Speed up mmc writes.

 drivers/mmc/bcm2835_sdhci.c |  8 ++++++--
 drivers/mmc/sdhci.c         | 15 +++++++++++----
 2 files changed, 17 insertions(+), 6 deletions(-)

-- 
2.12.2.564.g063fe858b8-goog

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

end of thread, other threads:[~2017-04-14  6:24 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
     [not found] <b45d36cb8f3ff07a9de93a9a0acc48c017410b0c@samsung.com>
     [not found] ` <CGME20170402065917epcas3p4fec5fb619760f1e2df4bf80431720251@epcas3p4.samsung.com>
     [not found]   ` <20170402065858.16478-1-deymo@google.com>
2017-04-07  4:53     ` [U-Boot] [PATCH 0/2] Improve Raspberry Pi mmc writes Jaehoon Chung
2017-04-07 18:33       ` Alex Deymo
2017-04-10 15:00         ` Jaehoon Chung
2017-04-14  6:24     ` Jaehoon Chung
     [not found] <b45d36cb8f3ff07a9de93a9a0acc48c017410b0c>
2017-04-02  8:24 ` Alex Deymo

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.